Fix some unlocalized strings

Fixes #3858
This commit is contained in:
Francis Lachapelle 2016-10-21 10:55:59 -04:00
parent 24e4c60baa
commit 36c5f72317
4 changed files with 12 additions and 9 deletions

View file

@ -146,6 +146,7 @@
/* Mailer */ /* Mailer */
"Labels" = "Labels"; "Labels" = "Labels";
"Label" = "Label"; "Label" = "Label";
"New label" = "New label";
"Show subscribed mailboxes only" = "Show subscribed mailboxes only"; "Show subscribed mailboxes only" = "Show subscribed mailboxes only";
"Synchronize only default mail folders (EAS)" = "Synchronize only default mail folders (EAS)"; "Synchronize only default mail folders (EAS)" = "Synchronize only default mail folders (EAS)";
"Sort messages by threads" = "Sort messages by threads"; "Sort messages by threads" = "Sort messages by threads";
@ -212,6 +213,7 @@
/* Event+task categories */ /* Event+task categories */
"Calendar Category" = "Calendar Category"; "Calendar Category" = "Calendar Category";
"Add Calendar Category" = "Add Calendar Category"; "Add Calendar Category" = "Add Calendar Category";
"New category" = "New category";
"Remove Calendar Category" = "Remove Calendar Category"; "Remove Calendar Category" = "Remove Calendar Category";
"Contact Category" = "Contact Category"; "Contact Category" = "Contact Category";
"Add Contact Category" = "Add Contact Category"; "Add Contact Category" = "Add Contact Category";

View file

@ -250,6 +250,7 @@
</div> </div>
<div class="md-toolbar-tools"> <div class="md-toolbar-tools">
<md-chips class="md-flex" <md-chips class="md-flex"
ng-show="app.search.params.length != 0 || app.currentSearchParam"
ng-model="app.search.params" ng-model="app.search.params"
md-transform-chip="app.newSearchParam($chip)" md-transform-chip="app.newSearchParam($chip)"
sg-transform-on-blur="sg-transform-on-blur"> sg-transform-on-blur="sg-transform-on-blur">

View file

@ -70,8 +70,8 @@
} }
function newAddressbook() { function newAddressbook() {
Dialog.prompt(l('New addressbook'), Dialog.prompt(l('New Addressbook...'),
l('Name of new addressbook')) l('Name of the Address Book'))
.then(function(name) { .then(function(name) {
var addressbook = new AddressBook( var addressbook = new AddressBook(
{ {

View file

@ -43,12 +43,12 @@
vm.hideAdvancedSearch = hideAdvancedSearch; vm.hideAdvancedSearch = hideAdvancedSearch;
vm.toggleAdvancedSearch = toggleAdvancedSearch; vm.toggleAdvancedSearch = toggleAdvancedSearch;
vm.search = { vm.search = {
options: {'': l('Select a criteria'), options: {'': '', // no placeholder when no criteria is active
subject: l('Enter Subject'), subject: l('Enter Subject'),
from: l('Enter From'), from: l('Enter From'),
to: l('Enter To'), to: l('Enter To'),
cc: l('Enter Cc'), cc: l('Enter Cc'),
body: l('Enter Body') body: l('Enter Body')
}, },
mailbox: 'INBOX', mailbox: 'INBOX',
subfolders: 1, subfolders: 1,
@ -223,8 +223,8 @@
} }
function newFolder(parentFolder) { function newFolder(parentFolder) {
Dialog.prompt(l('New folder'), Dialog.prompt(l('New Folder...'),
l('Enter the new name of your folder :')) l('Enter the new name of your folder'))
.then(function(name) { .then(function(name) {
parentFolder.$newMailbox(parentFolder.id, name) parentFolder.$newMailbox(parentFolder.id, name)
.then(function() { .then(function() {