diff --git a/platform/localization.mm b/platform/localization.mm index 6854418b0e..0b4881ffb8 100644 --- a/platform/localization.mm +++ b/platform/localization.mm @@ -39,10 +39,9 @@ std::string GetCurrencySymbol(std::string const & currencyCode) std::string GetLocalizedMyPositionBookmarkName() { - NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init]; - dateFormatter.dateStyle = NSDateFormatterLongStyle; - dateFormatter.timeStyle = NSDateFormatterShortStyle; NSDate * now = [NSDate date]; - return [dateFormatter stringFromDate:now].UTF8String; + return [NSDateFormatter localizedStringFromDate:now + dateStyle:NSDateFormatterLongStyle + timeStyle:NSDateFormatterShortStyle].UTF8String; } } // namespace platform