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

i18n resource strings for tools pages

This commit is contained in:
Kyle Spearrin
2016-11-25 16:32:13 -05:00
parent 071ec61683
commit 620d421a4b
7 changed files with 464 additions and 41 deletions

View File

@@ -3,6 +3,7 @@ using Bit.App.Controls;
using Xamarin.Forms;
using XLabs.Ioc;
using Bit.App.Abstractions;
using Bit.App.Resources;
namespace Bit.App.Pages
{
@@ -21,7 +22,7 @@ namespace Bit.App.Pages
{
var serviceLabel = new Label
{
Text = "Use the bitwarden accessibility service to auto-fill your logins across apps and the web.",
Text = AppResources.AutofillDescription,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
@@ -31,7 +32,7 @@ namespace Bit.App.Pages
var comingSoonLabel = new Label
{
Text = "Coming Soon!",
Text = AppResources.ComingSoon,
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
@@ -42,7 +43,7 @@ namespace Bit.App.Pages
var progressButton = new ExtendedButton
{
Text = "See Development Progress",
Text = AppResources.SeeDevProgress,
Command = new Command(() =>
{
_googleAnalyticsService.TrackAppEvent("SeeAutofillProgress");
@@ -63,7 +64,7 @@ namespace Bit.App.Pages
VerticalOptions = LayoutOptions.FillAndExpand
};
Title = "Auto-fill Service";
Title = AppResources.AutofillService;
Content = new ScrollView { Content = stackLayout };
}
}