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:
authorAlexander Zatsepin <az@mapswithme.com>2018-08-09 20:56:06 +0300
committerAleksey Belousov <beloal@users.noreply.github.com>2018-08-10 20:16:14 +0300
commitbeda1fae2a4ecd1b44c96e36f45a8277261a5b98 (patch)
tree5d21891157c571e4e0ad9de44b1569a0e079d091 /android/src
parent65a69a78ecbebdaedeefefb7e8d01ba47339aae0 (diff)
[android] Updated strings for bookmarks catalog ui
Diffstat (limited to 'android/src')
-rw-r--r--android/src/com/mapswithme/maps/MwmActivity.java2
-rw-r--r--android/src/com/mapswithme/maps/bookmarks/AdapterResourceProvider.java4
-rw-r--r--android/src/com/mapswithme/maps/bookmarks/BookmarksPageFactory.java4
-rw-r--r--android/src/com/mapswithme/maps/bookmarks/CatalogListenerDecorator.java2
4 files changed, 6 insertions, 6 deletions
diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java
index 316f77a31d..6a8e7ec79d 100644
--- a/android/src/com/mapswithme/maps/MwmActivity.java
+++ b/android/src/com/mapswithme/maps/MwmActivity.java
@@ -1199,7 +1199,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
if (!successful)
return;
- Toast.makeText(this, R.string.bookmarks_downloaded_title, Toast.LENGTH_LONG).show();
+ Toast.makeText(this, R.string.guide_downloaded_title, Toast.LENGTH_LONG).show();
Statistics.INSTANCE.trackEvent(Statistics.EventName.BM_GUIDEDOWNLOADTOAST_SHOWN);
}
diff --git a/android/src/com/mapswithme/maps/bookmarks/AdapterResourceProvider.java b/android/src/com/mapswithme/maps/bookmarks/AdapterResourceProvider.java
index 6c6e7f8120..c355fa09de 100644
--- a/android/src/com/mapswithme/maps/bookmarks/AdapterResourceProvider.java
+++ b/android/src/com/mapswithme/maps/bookmarks/AdapterResourceProvider.java
@@ -66,7 +66,7 @@ public interface AdapterResourceProvider
@Override
public int getHeaderText()
{
- return R.string.bookmarks_groups_cached;
+ return R.string.guides_groups_cached;
}
@Override
@@ -78,7 +78,7 @@ public interface AdapterResourceProvider
@Override
public int getFooterText()
{
- return R.string.downloader_download_routers;
+ return R.string.download_guides;
}
}
diff --git a/android/src/com/mapswithme/maps/bookmarks/BookmarksPageFactory.java b/android/src/com/mapswithme/maps/bookmarks/BookmarksPageFactory.java
index 1792d805a2..8f9556e58f 100644
--- a/android/src/com/mapswithme/maps/bookmarks/BookmarksPageFactory.java
+++ b/android/src/com/mapswithme/maps/bookmarks/BookmarksPageFactory.java
@@ -22,7 +22,7 @@ public enum BookmarksPageFactory
@Override
public int getTitle()
{
- return R.string.bookmarks_page_my;
+ return R.string.bookmarks;
}
},
CATALOG(new Analytics(Statistics.ParamValue.DOWNLOADED), new AdapterResourceProvider.Catalog())
@@ -37,7 +37,7 @@ public enum BookmarksPageFactory
@Override
public int getTitle()
{
- return R.string.bookmarks_page_downloaded;
+ return R.string.guides;
}
};
diff --git a/android/src/com/mapswithme/maps/bookmarks/CatalogListenerDecorator.java b/android/src/com/mapswithme/maps/bookmarks/CatalogListenerDecorator.java
index ae9a6642a6..ad50d92a55 100644
--- a/android/src/com/mapswithme/maps/bookmarks/CatalogListenerDecorator.java
+++ b/android/src/com/mapswithme/maps/bookmarks/CatalogListenerDecorator.java
@@ -69,6 +69,6 @@ class CatalogListenerDecorator extends BookmarkManager.DefaultBookmarksCatalogLi
{
DialogUtils.showAlertDialog(fragment.getActivity(),
R.string.title_error_downloading_bookmarks,
- R.string.subtitle_error_downloading_bookmarks);
+ R.string.subtitle_error_downloading_guide);
}
}