1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-08 03:23:23 +00:00

handle conditions when no data

This commit is contained in:
Kyle Spearrin
2017-11-27 15:05:12 -05:00
parent b07dc8443e
commit 92b7b1d603
4 changed files with 86 additions and 24 deletions

View File

@@ -2113,6 +2113,24 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to There are no items in this collection..
/// </summary>
public static string NoItemsCollection {
get {
return ResourceManager.GetString("NoItemsCollection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no items in this folder..
/// </summary>
public static string NoItemsFolder {
get {
return ResourceManager.GetString("NoItemsFolder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There are no items in your vault for {0}..
/// </summary>

View File

@@ -1203,4 +1203,10 @@
<data name="DefaultPageVaultDescription" xml:space="preserve">
<value>Default to the "My Vault" page instead of "Favorites" whenever I open the app.</value>
</data>
<data name="NoItemsCollection" xml:space="preserve">
<value>There are no items in this collection.</value>
</data>
<data name="NoItemsFolder" xml:space="preserve">
<value>There are no items in this folder.</value>
</data>
</root>