Update local index

This commit is contained in:
Victor Shcherb 2015-10-28 09:33:16 +05:30
parent 0dc4244620
commit 707c262b7a
3 changed files with 3 additions and 2 deletions

View file

@ -9,6 +9,7 @@
3. All your modified/created strings are in the top of the file (to make easier find what\'s translated).
PLEASE: Have a look at http://code.google.com/p/osmand/wiki/UIConsistency, it may really improve your and our work :-) Thx - Hardy
-->
<string name="shared_string_qr_code">QR-code</string>
<string name="map_downloaded">Map downloaded</string>
<string name="map_downloaded_descr">Map of %1$s has been downloaded. Go back to the map to start using it.</string>
<string name="go_to_map">Go to the map</string>

View file

@ -55,7 +55,7 @@ public class FileNameTranslationHelper {
}
public static String getHillShadeName(Context ctx, OsmandRegions regions, String basename) {
String hillsh = ctx.getString(R.string.download_hillshade_item) + " ";
String hillsh = ctx.getString(R.string.download_hillshade_maps) + " ";
String locName = regions.getLocaleName(basename.trim(), true);
return hillsh + locName;
}

View file

@ -27,7 +27,7 @@ public class ShareMenu extends BaseMenuController {
MESSAGE(R.drawable.ic_action_message, R.string.shared_string_send),
CLIPBOARD(R.drawable.ic_action_copy, R.string.shared_string_copy),
GEO(R.drawable.ic_world_globe_dark, R.string.share_geo),
QR_CODE(R.drawable.ic_action_qrcode, R.string.share_qr_code);
QR_CODE(R.drawable.ic_action_qrcode, R.string.shared_string_qr_code);
final int iconResourceId;
final int titleResourceId;