1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-02 11:34:54 +02:00

Added translators to credits page

This commit is contained in:
Kyle Spearrin 2016-12-30 22:44:17 -05:00
parent 082826287e
commit dae5453e13
3 changed files with 31 additions and 1 deletions

View File

@ -22,7 +22,13 @@ namespace Bit.App.Pages
EnableSelection = false, EnableSelection = false,
Root = new TableRoot Root = new TableRoot
{ {
new TableSection("Icons") new TableSection(AppResources.Translations)
{
new CustomViewCell(@"@felixqu - Chinese
@Primokorn - French
@King-Tut-Tut - Swedish")
},
new TableSection(AppResources.Icons)
{ {
new CustomViewCell(@"Tools by Alex Auda Samora from the Noun Project new CustomViewCell(@"Tools by Alex Auda Samora from the Noun Project
Fingerprint by masterpage.com from the Noun Project") Fingerprint by masterpage.com from the Noun Project")

View File

@ -781,6 +781,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Icons.
/// </summary>
public static string Icons {
get {
return ResourceManager.GetString("Icons", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Import Logins. /// Looks up a localized string similar to Import Logins.
/// </summary> /// </summary>
@ -1582,6 +1591,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Translations.
/// </summary>
public static string Translations {
get {
return ResourceManager.GetString("Translations", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Two-step Login. /// Looks up a localized string similar to Two-step Login.
/// </summary> /// </summary>

View File

@ -751,4 +751,10 @@
<data name="ExtensionActivated" xml:space="preserve"> <data name="ExtensionActivated" xml:space="preserve">
<value>Extension Activated!</value> <value>Extension Activated!</value>
</data> </data>
<data name="Icons" xml:space="preserve">
<value>Icons</value>
</data>
<data name="Translations" xml:space="preserve">
<value>Translations</value>
</data>
</root> </root>