Fix some unlocalized strings

Fixes #3858
pull/225/head
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 */
"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";
@ -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";

View File

@ -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">

View File

@ -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(
{

View File

@ -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,
@ -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() {