Skip to content

Commit

Permalink
Fix some unlocalized strings
Browse files Browse the repository at this point in the history
Fixes #3858
  • Loading branch information
cgx committed Oct 21, 2016
1 parent 24e4c60 commit 36c5f72
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 2 additions & 0 deletions UI/PreferencesUI/English.lproj/Localizable.strings
Expand Up @@ -146,6 +146,7 @@
/* Mailer */
"Labels" = "Labels";
"Label" = "Label";
"New label" = "New label";
"Show subscribed mailboxes only" = "Show subscribed mailboxes only";
"Synchronize only default mail folders (EAS)" = "Synchronize only default mail folders (EAS)";
"Sort messages by threads" = "Sort messages by threads";
Expand Down Expand Up @@ -212,6 +213,7 @@
/* Event+task categories */
"Calendar Category" = "Calendar Category";
"Add Calendar Category" = "Add Calendar Category";
"New category" = "New category";
"Remove Calendar Category" = "Remove Calendar Category";
"Contact Category" = "Contact Category";
"Add Contact Category" = "Add Contact Category";
Expand Down
1 change: 1 addition & 0 deletions UI/Templates/MailerUI/UIxMailMainFrame.wox
Expand Up @@ -250,6 +250,7 @@
</div>
<div class="md-toolbar-tools">
<md-chips class="md-flex"
ng-show="app.search.params.length != 0 || app.currentSearchParam"
ng-model="app.search.params"
md-transform-chip="app.newSearchParam($chip)"
sg-transform-on-blur="sg-transform-on-blur">
Expand Down
4 changes: 2 additions & 2 deletions UI/WebServerResources/js/Contacts/AddressBooksController.js
Expand Up @@ -70,8 +70,8 @@
}

function newAddressbook() {
Dialog.prompt(l('New addressbook'),
l('Name of new addressbook'))
Dialog.prompt(l('New Addressbook...'),
l('Name of the Address Book'))
.then(function(name) {
var addressbook = new AddressBook(
{
Expand Down
14 changes: 7 additions & 7 deletions UI/WebServerResources/js/Mailer/MailboxesController.js
Expand Up @@ -43,12 +43,12 @@
vm.hideAdvancedSearch = hideAdvancedSearch;
vm.toggleAdvancedSearch = toggleAdvancedSearch;
vm.search = {
options: {'': l('Select a criteria'),
options: {'': '', // no placeholder when no criteria is active
subject: l('Enter Subject'),
from: l('Enter From'),
to: l('Enter To'),
cc: l('Enter Cc'),
body: l('Enter Body')
from: l('Enter From'),
to: l('Enter To'),
cc: l('Enter Cc'),
body: l('Enter Body')
},
mailbox: 'INBOX',
subfolders: 1,
Expand Down Expand Up @@ -223,8 +223,8 @@
}

function newFolder(parentFolder) {
Dialog.prompt(l('New folder'),
l('Enter the new name of your folder :'))
Dialog.prompt(l('New Folder...'),
l('Enter the new name of your folder'))
.then(function(name) {
parentFolder.$newMailbox(parentFolder.id, name)
.then(function() {
Expand Down

0 comments on commit 36c5f72

Please sign in to comment.