mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-13 19:01:23 +00:00
committed by
Ludovic Marcotte
parent
d82f05de75
commit
4e68ec9d52
1
NEWS
1
NEWS
@@ -17,6 +17,7 @@ Bug fixes
|
||||
- fixed freebusy data when 'busy off hours' is enabled and period starts during the weekend
|
||||
- fixed fetching of freebusy data from the Web interface
|
||||
- fixed EAS handling of Bcc in emails (#3138)
|
||||
- fixed Language-Region tags in Web interface (#3121)
|
||||
|
||||
2.2.16 (2015-02-12)
|
||||
-------------------
|
||||
|
||||
@@ -230,7 +230,9 @@ static NSArray *infoKeys = nil;
|
||||
- (NSString *) localeCode
|
||||
{
|
||||
// WARNING : NSLocaleCode is not defined in <Foundation/NSUserDefaults.h>
|
||||
return [locale objectForKey: @"NSLocaleCode"];
|
||||
// Region subtag must be separated by a dash
|
||||
NSString *s = [locale objectForKey: @"NSLocaleCode"];
|
||||
return [s stringByReplacingOccurrencesOfString: @"_" withString: @"-"];
|
||||
}
|
||||
|
||||
- (void) setFrom: (NSString *) newFrom
|
||||
|
||||
@@ -82,7 +82,9 @@
|
||||
- (NSString *) localeCode
|
||||
{
|
||||
// WARNING : NSLocaleCode is not defined in <Foundation/NSUserDefaults.h>
|
||||
return [locale objectForKey: @"NSLocaleCode"];
|
||||
// Region subtag must be separated by a dash
|
||||
NSString *s = [locale objectForKey: @"NSLocaleCode"];
|
||||
return [s stringByReplacingOccurrencesOfString: @"_" withString: @"-"];
|
||||
}
|
||||
|
||||
- (NSArray *) monthMenuItems
|
||||
|
||||
Reference in New Issue
Block a user