diff --git a/OsmAnd/res/layout/plugins_list_item.xml b/OsmAnd/res/layout/plugins_list_item.xml
index 8a38f5b32b..42a93ea4f4 100644
--- a/OsmAnd/res/layout/plugins_list_item.xml
+++ b/OsmAnd/res/layout/plugins_list_item.xml
@@ -2,12 +2,12 @@
-
-
+ android:layout_marginLeft="4dp" >
+
+
+ android:maxLines="7" android:layout_height="wrap_content" android:textSize="16sp" >
diff --git a/OsmAnd/res/values-nl/strings.xml b/OsmAnd/res/values-nl/strings.xml
index ce18c1e2f3..f0c7eda349 100644
--- a/OsmAnd/res/values-nl/strings.xml
+++ b/OsmAnd/res/values-nl/strings.xml
@@ -135,10 +135,10 @@
Europa
Europa - Frankrijk
Europa - Duitsland
- Europa/Azi렭 Rusland
+ Europa/Azië Rusland
Afrika
- Azi뼯
- Oceani뼯
+ Azië
+ Oceanië
Wereldkaart en topografische kaart
Wereldwijde Wikipedia
Stembestanden (opnamen)
diff --git a/OsmAnd/src/net/osmand/plus/activities/PluginsActivity.java b/OsmAnd/src/net/osmand/plus/activities/PluginsActivity.java
index bd5b313890..79aa77e835 100644
--- a/OsmAnd/src/net/osmand/plus/activities/PluginsActivity.java
+++ b/OsmAnd/src/net/osmand/plus/activities/PluginsActivity.java
@@ -86,9 +86,9 @@ public class PluginsActivity extends OsmandListActivity {
description.setText(plugin.getDescription());
boolean enabled = enabledPlugins.contains(plugin.getId());
boolean toBeEnabled = restartPlugins.contains(plugin.getId());
- description.setTextColor(toBeEnabled? colorGreen : Color.GRAY);
- nameView.setTextColor(toBeEnabled? colorGreen : Color.GRAY);
- description.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
+ description.setTextColor(toBeEnabled? colorGreen : (enabled? Color.LTGRAY : Color.GRAY));
+ nameView.setTextColor(toBeEnabled? colorGreen : (enabled? Color.LTGRAY : Color.GRAY));
+// description.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
nameView.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
return row;