From ceeaed1badb1217e4752e6f76e76f011a1114431 Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Fri, 2 Mar 2018 12:39:46 +0300 Subject: [PATCH] [device-model] [ios] Fixed bookmarks categories string key. --- .../Maps/Bookmarks/Categories/Categories/BMCCategoryCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Bookmarks/Categories/Categories/BMCCategoryCell.swift b/iphone/Maps/Bookmarks/Categories/Categories/BMCCategoryCell.swift index ec75d2724d..39350f435c 100644 --- a/iphone/Maps/Bookmarks/Categories/Categories/BMCCategoryCell.swift +++ b/iphone/Maps/Bookmarks/Categories/Categories/BMCCategoryCell.swift @@ -56,7 +56,7 @@ final class BMCCategoryCell: UITableViewCell { extension BMCCategoryCell: BMCCategoryObserver { func categoryUpdated() { title.text = category.title - count.text = String(coreFormat: L("%s bookmarks_places"), arguments: [category.count]) + count.text = String(coreFormat: L("bookmarks_places"), arguments: [category.count]) if category.isVisible { visibility.tintColor = .linkBlue()