Update NL strings

This commit is contained in:
Victor Shcherb 2012-05-23 00:11:45 +02:00
parent e2636bccb7
commit 8ee008695a
3 changed files with 11 additions and 11 deletions

View file

@ -2,12 +2,12 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:orientation="vertical">
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_marginLeft="3dp" >
<ImageView android:layout_marginLeft="4dp" 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"
android:textSize="17sp"></TextView>
android:layout_marginLeft="4dp" >
<ImageView android:id="@+id/plugin_icon" 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="18sp"></TextView>
</LinearLayout>
<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>

View file

@ -135,10 +135,10 @@
<string name="index_name_europe">Europa</string>
<string name="index_name_france">Europa - Frankrijk</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_asia">Azi</string>
<string name="index_name_oceania">Oceani</string>
<string name="index_name_asia">Azië</string>
<string name="index_name_oceania">Oceanië</string>
<string name="index_name_other">Wereldkaart en topografische kaart</string>
<string name="index_name_wiki">Wereldwijde Wikipedia</string>
<string name="index_name_voice">Stembestanden (opnamen)</string>

View file

@ -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;