Add missing localized strings in Calendar module

pull/237/head
Francis Lachapelle 2017-07-19 17:10:06 -04:00
parent 1a76ade0ec
commit 589c5f8ae0
2 changed files with 13 additions and 1 deletions

View File

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

View File

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