diff --git a/UI/Contacts/English.lproj/Localizable.strings b/UI/Contacts/English.lproj/Localizable.strings index cd613e5b1..c23a24066 100644 --- a/UI/Contacts/English.lproj/Localizable.strings +++ b/UI/Contacts/English.lproj/Localizable.strings @@ -225,3 +225,4 @@ "Add Screen Name" = "Add Screen Name"; "Synchronization" = "Synchronization"; "Synchronize" = "Synchronize"; +"Successfully subscribed to address book" = "Successfully subscribed to address book"; diff --git a/UI/MailerUI/English.lproj/Localizable.strings b/UI/MailerUI/English.lproj/Localizable.strings index be17e7891..7a30cb616 100644 --- a/UI/MailerUI/English.lproj/Localizable.strings +++ b/UI/MailerUI/English.lproj/Localizable.strings @@ -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"; diff --git a/UI/Scheduler/English.lproj/Localizable.strings b/UI/Scheduler/English.lproj/Localizable.strings index 5eac7f432..d0f65cf4b 100644 --- a/UI/Scheduler/English.lproj/Localizable.strings +++ b/UI/Scheduler/English.lproj/Localizable.strings @@ -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"; diff --git a/UI/WebServerResources/js/Contacts/AddressBooksController.js b/UI/WebServerResources/js/Contacts/AddressBooksController.js index 203954265..85819d5d7 100644 --- a/UI/WebServerResources/js/Contacts/AddressBooksController.js +++ b/UI/WebServerResources/js/Contacts/AddressBooksController.js @@ -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)); }); diff --git a/UI/WebServerResources/js/Scheduler/CalendarsController.js b/UI/WebServerResources/js/Scheduler/CalendarsController.js index fba392128..2813a4d20 100644 --- a/UI/WebServerResources/js/Scheduler/CalendarsController.js +++ b/UI/WebServerResources/js/Scheduler/CalendarsController.js @@ -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)); });