(fix) added translations + fixed typos

pull/186/head
Ludovic Marcotte 2016-01-13 12:48:20 -05:00
parent 2c59495005
commit ab23d0f766
5 changed files with 7 additions and 2 deletions

View File

@ -225,3 +225,4 @@
"Add Screen Name" = "Add Screen Name";
"Synchronization" = "Synchronization";
"Synchronize" = "Synchronize";
"Successfully subscribed to address book" = "Successfully subscribed to address book";

View File

@ -312,3 +312,6 @@
"Expanded" = "Expanded";
"Add a Criteria" = "Add a Criteria";
"More search options" = "More search options";
"Your email has been saved" = "Your email has been saved";
"Your email has been sent" = "Your email has been sent";
"Folder compacted" = "Folder compacted";

View File

@ -501,3 +501,4 @@ vtodo_class2 = "(Confidential task)";
"Rename" = "Rename";
"Import Calendar" = "Import Calendar";
"Select an ICS file." = "Select an ICS file.";
"Successfully subscribed to calendar" = "Successfully subscribed to calendar";

View File

@ -301,7 +301,7 @@
AddressBook.$subscribe(addressbookData.owner, addressbookData.name).then(function(data) {
$mdToast.show(
$mdToast.simple()
.content(l('Sucessfully subscribed to address book'))
.content(l('Successfully subscribed to address book'))
.position('top right')
.hideDelay(3000));
});

View File

@ -316,7 +316,7 @@
Calendar.$subscribe(calendarData.owner, calendarData.name).then(function(data) {
$mdToast.show(
$mdToast.simple()
.content(l('Sucessfully subscribed to calendar'))
.content(l('Successfully subscribed to calendar'))
.position('top right')
.hideDelay(3000));
});