From 589c5f8ae038234da081ddb70f902f3b73e2e2fe Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Wed, 19 Jul 2017 17:10:06 -0400 Subject: [PATCH] Add missing localized strings in Calendar module --- UI/Scheduler/English.lproj/Localizable.strings | 12 ++++++++++++ UI/Scheduler/UIxCalListingActions.m | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/UI/Scheduler/English.lproj/Localizable.strings b/UI/Scheduler/English.lproj/Localizable.strings index 62e0cb3cd..9aa011846 100644 --- a/UI/Scheduler/English.lproj/Localizable.strings +++ b/UI/Scheduler/English.lproj/Localizable.strings @@ -64,6 +64,18 @@ "Compose E-Mail to All Attendees" = "Compose E-Mail to All Attendees"; "Compose E-Mail to Undecided Attendees" = "Compose E-Mail to Undecided Attendees"; +/* Relative dates */ +"Yesterday" = "Yesterday"; +"Today" = "Today"; +"Tomorrow" = "Tomorrow"; +"Last Sunday" = "Last Sunday"; +"Last Monday" = "Last Monday"; +"Last Tuesday" = "Last Tuesday"; +"Last Wednesday" = "Last Wednesday"; +"Last Thursday" = "Last Thursday"; +"Last Friday" = "Last Friday"; +"Last Saturday" = "Last Saturday"; + /* Folders */ "Personal calendar" = "Personal calendar"; diff --git a/UI/Scheduler/UIxCalListingActions.m b/UI/Scheduler/UIxCalListingActions.m index 4cf0782fc..2e65e5b6d 100644 --- a/UI/Scheduler/UIxCalListingActions.m +++ b/UI/Scheduler/UIxCalListingActions.m @@ -615,7 +615,7 @@ static NSArray *tasksFields = nil; return dayOfWeek; else // With the past 7 days - return [NSString stringWithFormat: [self labelForKey: @"last %@" inContext: context], dayOfWeek]; + return [NSString stringWithFormat: [self labelForKey: @"Last %@" inContext: context], dayOfWeek]; } else {