forked from organicmaps/organicmaps
Removed obsolete string
This commit is contained in:
parent
e2e889c15c
commit
b81bc8b7d2
2 changed files with 3 additions and 3 deletions
|
@ -755,8 +755,8 @@ public class PlacePageView extends RelativeLayout
|
|||
mReviewAdapter.setItems(new ArrayList<>(Arrays.asList(info.mReviews)));
|
||||
//noinspection ConstantConditions
|
||||
mHotelRating.setText(mSponsored.getRating());
|
||||
String text = getResources().getString(R.string.booking_based_on_reviews,
|
||||
info.mReviewsAmount);
|
||||
String text = getResources().getString(R.string.placepage_summary_rating_description,
|
||||
String.valueOf(info.mReviewsAmount));
|
||||
mHotelRatingBase.setText(text);
|
||||
TextView previewReviewCountView = (TextView) mPreviewRatingInfo.findViewById(R.id.tv__review_count);
|
||||
previewReviewCountView.setText(text);
|
||||
|
|
|
@ -5,6 +5,6 @@ final class PPReviewHeaderCell: UITableViewCell {
|
|||
|
||||
@objc func config(rating: UGCRatingValueType, numberOfReviews: Int) {
|
||||
self.rating.text = rating.value
|
||||
count.text = String(format: L("booking_based_on_reviews"), numberOfReviews)
|
||||
count.text = String(coreFormat: L("placepage_summary_rating_description"), arguments: [numberOfReviews])
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue