diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index 395ffd501d..2b102f4e55 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -14,7 +14,7 @@ Importing data from %1$s Importing OsmAnd check %1$s for duplicates with existing items in the application.\n\nIt may take some time. - Items added: %1$s + Items added Quick action Import complete All data from the %1$s is imported, you can use buttons below to open needed part of the application to manage it. diff --git a/OsmAnd/src/net/osmand/plus/settings/ImportedSettingsItemsAdapter.java b/OsmAnd/src/net/osmand/plus/settings/ImportedSettingsItemsAdapter.java index ed7681c891..c0d37ca935 100644 --- a/OsmAnd/src/net/osmand/plus/settings/ImportedSettingsItemsAdapter.java +++ b/OsmAnd/src/net/osmand/plus/settings/ImportedSettingsItemsAdapter.java @@ -60,7 +60,11 @@ public class ImportedSettingsItemsAdapter extends listener.onItemClick(currentItem.getType()); } }); - holder.subTitle.setText(String.format(app.getString(R.string.items_added), String.valueOf(currentItem.getItems().size()))); + holder.subTitle.setText(String.format( + app.getString(R.string.ltr_or_rtl_combine_via_colon), + app.getString(R.string.items_added), + String.valueOf(currentItem.getItems().size())) + ); switch (currentItem.getType()) { case PROFILE: