Update NL strings
This commit is contained in:
parent
e2636bccb7
commit
8ee008695a
3 changed files with 11 additions and 11 deletions
|
@ -2,12 +2,12 @@
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content" android:orientation="vertical">
|
android:layout_height="wrap_content" android:orientation="vertical">
|
||||||
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"
|
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"
|
||||||
android:layout_marginLeft="3dp" >
|
android:layout_marginLeft="4dp" >
|
||||||
<ImageView android:layout_marginLeft="4dp" android:id="@+id/plugin_icon" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
|
<ImageView android:id="@+id/plugin_icon" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
|
||||||
<TextView android:id="@+id/plugin_name" android:gravity="center_horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content"
|
<TextView android:layout_marginLeft="5dp" android:id="@+id/plugin_name" android:gravity="center_horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content"
|
||||||
android:textSize="17sp"></TextView>
|
android:textSize="18sp"></TextView>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<TextView android:id="@+id/plugin_descr" android:layout_width="fill_parent" android:layout_marginLeft="5dp"
|
<TextView android:id="@+id/plugin_descr" android:layout_width="fill_parent" android:layout_marginLeft="5dp"
|
||||||
android:maxLines="7" android:layout_height="wrap_content" android:textSize="15sp" ></TextView>
|
android:maxLines="7" android:layout_height="wrap_content" android:textSize="16sp" ></TextView>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
@ -135,10 +135,10 @@
|
||||||
<string name="index_name_europe">Europa</string>
|
<string name="index_name_europe">Europa</string>
|
||||||
<string name="index_name_france">Europa - Frankrijk</string>
|
<string name="index_name_france">Europa - Frankrijk</string>
|
||||||
<string name="index_name_germany">Europa - Duitsland</string>
|
<string name="index_name_germany">Europa - Duitsland</string>
|
||||||
<string name="index_name_russia">Europa/Azi렭 Rusland</string>
|
<string name="index_name_russia">Europa/Azië Rusland</string>
|
||||||
<string name="index_name_africa">Afrika</string>
|
<string name="index_name_africa">Afrika</string>
|
||||||
<string name="index_name_asia">Azi뼯</string>
|
<string name="index_name_asia">Azië</string>
|
||||||
<string name="index_name_oceania">Oceani뼯</string>
|
<string name="index_name_oceania">Oceanië</string>
|
||||||
<string name="index_name_other">Wereldkaart en topografische kaart</string>
|
<string name="index_name_other">Wereldkaart en topografische kaart</string>
|
||||||
<string name="index_name_wiki">Wereldwijde Wikipedia</string>
|
<string name="index_name_wiki">Wereldwijde Wikipedia</string>
|
||||||
<string name="index_name_voice">Stembestanden (opnamen)</string>
|
<string name="index_name_voice">Stembestanden (opnamen)</string>
|
||||||
|
|
|
@ -86,9 +86,9 @@ public class PluginsActivity extends OsmandListActivity {
|
||||||
description.setText(plugin.getDescription());
|
description.setText(plugin.getDescription());
|
||||||
boolean enabled = enabledPlugins.contains(plugin.getId());
|
boolean enabled = enabledPlugins.contains(plugin.getId());
|
||||||
boolean toBeEnabled = restartPlugins.contains(plugin.getId());
|
boolean toBeEnabled = restartPlugins.contains(plugin.getId());
|
||||||
description.setTextColor(toBeEnabled? colorGreen : Color.GRAY);
|
description.setTextColor(toBeEnabled? colorGreen : (enabled? Color.LTGRAY : Color.GRAY));
|
||||||
nameView.setTextColor(toBeEnabled? colorGreen : Color.GRAY);
|
nameView.setTextColor(toBeEnabled? colorGreen : (enabled? Color.LTGRAY : Color.GRAY));
|
||||||
description.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
|
// description.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
|
||||||
nameView.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
|
nameView.setTypeface(enabled? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
|
||||||
|
|
||||||
return row;
|
return row;
|
||||||
|
|
Loading…
Reference in a new issue