forked from organicmaps/organicmaps
[iOS] Fix Invalid character error
This commit is contained in:
parent
280bd94581
commit
d17d75c8d6
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ extension MWMCategory {
|
|||
if (bookmarksCount > 0 && trackCount > 0) ||
|
||||
(bookmarksCount == 0 && trackCount == 0) {
|
||||
return String(format: L("objects"), bookmarksCount + trackCount)
|
||||
} else if (bookmarksCount > 0) {
|
||||
} else if (bookmarksCount > 0) {
|
||||
return String(format: L("bookmarks_places"), bookmarksCount)
|
||||
} else {
|
||||
return String(format: L("tracks"), trackCount)
|
||||
|
|
Loading…
Add table
Reference in a new issue