From ce3765e186c954540deb98de3294b4156c04e1ec Mon Sep 17 00:00:00 2001 From: Dmitry Donskoy Date: Tue, 9 Jun 2020 14:22:56 +0300 Subject: [PATCH] [android] Changed strings --- android/src/com/mapswithme/maps/gallery/Holders.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/src/com/mapswithme/maps/gallery/Holders.java b/android/src/com/mapswithme/maps/gallery/Holders.java index f87585cd93..3e220ba426 100644 --- a/android/src/com/mapswithme/maps/gallery/Holders.java +++ b/android/src/com/mapswithme/maps/gallery/Holders.java @@ -723,8 +723,8 @@ public class Holders { boolean isCity = item.getGuideType() == GuidesGallery.Type.City; SpannableStringBuilder builder = - new SpannableStringBuilder(isCity ? context.getString(R.string.type_place_city) - : context.getString(R.string.type_shop_outdoor)); + new SpannableStringBuilder(isCity ? context.getString(R.string.routes_card_city) + : context.getString(R.string.routes_card_outdoor)); Resources res = context.getResources(); int color = isCity ? res.getColor(R.color.city_color)