1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 06:43:17 +00:00

update resource strings for Logins => Items

This commit is contained in:
Kyle Spearrin
2017-10-18 21:53:44 -04:00
parent 74ac9cbbbe
commit 0ec22a4639
12 changed files with 163 additions and 176 deletions

View File

@@ -54,7 +54,7 @@ namespace Bit.iOS.Extension
_folderService = Resolver.Resolve<IFolderService>();
_googleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
NavItem.Title = AppResources.AddLogin;
NavItem.Title = AppResources.AddItem;
CancelBarButton.Title = AppResources.Cancel;
SaveBarButton.Title = AppResources.Save;
View.BackgroundColor = new UIColor(red: 0.94f, green: 0.94f, blue: 0.96f, alpha: 1.0f);
@@ -306,7 +306,7 @@ namespace Bit.iOS.Extension
{
if(section == 0)
{
return AppResources.LoginInformation;
return AppResources.ItemInformation;
}
else if(section == 2)
{

View File

@@ -36,7 +36,7 @@ namespace Bit.iOS.Extension
public async override void ViewDidLoad()
{
base.ViewDidLoad();
NavItem.Title = AppResources.Logins;
NavItem.Title = AppResources.Items;
if(!CanAutoFill())
{
CancelBarButton.Title = AppResources.Close;
@@ -150,7 +150,7 @@ namespace Bit.iOS.Extension
if(_tableItems == null || _tableItems.Count() == 0)
{
var noDataCell = new UITableViewCell(UITableViewCellStyle.Default, "NoDataCell");
noDataCell.TextLabel.Text = AppResources.NoLoginsTap;
noDataCell.TextLabel.Text = AppResources.NoItemsTap;
noDataCell.TextLabel.TextAlignment = UITextAlignment.Center;
noDataCell.TextLabel.LineBreakMode = UILineBreakMode.WordWrap;
noDataCell.TextLabel.Lines = 0;