1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-30 11:14:51 +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,
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
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>
/// Looks up a localized string similar to Import Logins.
/// </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>
/// Looks up a localized string similar to Two-step Login.
/// </summary>

View File

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