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-10 19:54:37 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2018-04-11 12:27:45 +0300
commit8cfc3d192e3a90bad9a6c5bc838e7640b34bfb10 (patch)
tree17b08e0d0c6f6802a7ab50d7c74bf55ce82fc0bd /android/src
parentee56ab2e1feedc7b95bbe1e1c32367e5ddd94da3 (diff)
Fixed sharing bookmarks string usage
Diffstat (limited to 'android/src')
-rw-r--r--android/src/com/mapswithme/util/sharing/SharingHelper.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/android/src/com/mapswithme/util/sharing/SharingHelper.java b/android/src/com/mapswithme/util/sharing/SharingHelper.java
index 1cb92e4e5b..21098cf202 100644
--- a/android/src/com/mapswithme/util/sharing/SharingHelper.java
+++ b/android/src/com/mapswithme/util/sharing/SharingHelper.java
@@ -214,9 +214,7 @@ public enum SharingHelper
String name = new File(result.getSharingPath()).getName();
shareOutside(new LocalFileShareable(context, result.getSharingPath(),
"application/vnd.google-earth.kmz")
- // TODO fix translation for some languages, that doesn't contain holder
- // for filename
- .setText(context.getString(R.string.share_bookmarks_email_body, name))
+ .setText(context.getString(R.string.share_bookmarks_email_body))
.setSubject(R.string.share_bookmarks_email_subject));
break;
case BookmarkSharingResult.EMPTY_CATEGORY: