1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

i18n resource string for controls

This commit is contained in:
Kyle Spearrin 2016-11-25 17:11:28 -05:00
parent d8559a81f4
commit 29c4b8e6ee

View File

@ -1,4 +1,5 @@
using System;
using Bit.App.Resources;
using System;
using Xamarin.Forms;
namespace Bit.App.Controls
@ -12,7 +13,7 @@ namespace Bit.App.Controls
{
_cancelClickedAction = cancelClickedAction;
_page = page;
Text = text ?? "Close";
Text = text ?? AppResources.Close;
Clicked += ClickedItem;
Priority = -1;
}