Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2018-04-24 15:18:46 +0300
committerAleksandr Zatsepin <alexzatsepin@users.noreply.github.com>2018-04-25 15:38:50 +0300
commit9e93bce37a707ef3b4fadbff4715e59c4c809fb7 (patch)
tree597adaba2f93aebd9f565f8a44fc5b5a84f19048 /iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC
parentc82204adb31185d7ad64bbcd52f6585cbcf7e148 (diff)
Added support of new plurals
Diffstat (limited to 'iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC')
-rw-r--r--iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCSummaryRatingCell.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCSummaryRatingCell.swift b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCSummaryRatingCell.swift
index 2d3a4bdc91..c976c4c69d 100644
--- a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCSummaryRatingCell.swift
+++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/UGCSummaryRatingCell.swift
@@ -45,7 +45,7 @@ final class UGCSummaryRatingCell: MWMTableViewCell {
}
@objc func config(reviewsCount: UInt, summaryRating: UGCRatingValueType, ratings: [UGCRatingStars]) {
- countLabel.text = String(coreFormat: L("placepage_summary_rating_description"), arguments: [reviewsCount])
+ countLabel.text = String(format:L("placepage_summary_rating_description"), reviewsCount)
ratingSummaryView.value = summaryRating.value
ratingSummaryView.type = summaryRating.type
self.ratings = ratings