Extracting strings to xml translation file to allow easy translation

(i18n).
master
Tomasz Półgrabia 2016-09-20 21:11:26 +02:00
parent b4a9d54a27
commit ed21000b3b
6 changed files with 73 additions and 37 deletions

View File

@ -19,7 +19,7 @@
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content" <TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Title: "/> android:text="@string/title_label"/>
<TextView android:id="@+id/photo_title" <TextView android:id="@+id/photo_title"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -30,7 +30,7 @@
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content" <TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Author: "/> android:text="@string/author_label"/>
<TextView android:id="@+id/photo_author" <TextView android:id="@+id/photo_author"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -41,7 +41,7 @@
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content" <TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Upload date: "/> android:text="@string/upload_date_label"/>
<TextView android:id="@+id/photo_upload" <TextView android:id="@+id/photo_upload"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -52,7 +52,7 @@
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content" <TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Location: "/> android:text="@string/location_label"/>
<TextView android:id="@+id/photo_location" <TextView android:id="@+id/photo_location"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -64,7 +64,7 @@
android:layout_height="wrap_content"> android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content" <TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Panoramio url"/> android:text="@string/panoramio_url"/>
<TextView android:id="@+id/photo_url" <TextView android:id="@+id/photo_url"
android:layout_width="wrap_content" android:layout_width="wrap_content"

View File

@ -7,7 +7,7 @@
<TextView android:id="@+id/wiki_current_location" <TextView android:id="@+id/wiki_current_location"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Location:"/> android:text="@string/location_label"/>
<ListView android:id="@+id/wiki_places" <ListView android:id="@+id/wiki_places"
android:layout_width="match_parent" android:layout_width="match_parent"

View File

@ -14,6 +14,6 @@
android:id="@+id/location_description" android:id="@+id/location_description"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Test"/> android:text="@string/test_string"/>
</LinearLayout> </LinearLayout>

View File

@ -18,12 +18,12 @@
<TextView android:id="@+id/wiki_locs_item_title" <TextView android:id="@+id/wiki_locs_item_title"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Fill Title" /> android:text="@string/wiki_location_fill_title" />
<TextView android:id="@+id/wiki_locs_item_distance" <TextView android:id="@+id/wiki_locs_item_distance"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Fill Distance" /> android:text="@string/wiki_location_fill_distance" />
</LinearLayout> </LinearLayout>

View File

@ -107,4 +107,40 @@
</string> </string>
<string name="refresh">Refresh</string> <string name="refresh">Refresh</string>
<string name="settings">Settings</string> <string name="settings">Settings</string>
<string name="test_string">Test string</string>
<string name="wiki_location_fill_title">Fill Title</string>
<string name="wiki_location_fill_distance">Fill Distance</string>
<string name="panoramio_search_settings">Panoramio search settings</string>
<string name="panoramio_radiusx_title">Radius X</string>
<string name="panoramio_radiusx_summary">Radius X</string>
<string name="panoramio_radiusy_title">Radius Y</string>
<string name="panoramio_radiusy_summary">Radius Y</string>
<string name="panoramio_bulk_size_title">Panoramio bulk size</string>
<string name="panoramio_bulk_size_summary">Panoramio bulk size</string>
<string name="wiki_search_settings">Wiki search settings</string>
<string name="wiki_search_radius_title">Wiki search radius</string>
<string name="wiki_search_radius_summary">Wiki search radius[km]</string>
<string name="wiki_search_results_limit_title">Wiki search results limit</string>
<string name="wiki_search_results_limit_summary">Limit of wiki results</string>
<string name="location_tracking_settings">GPS tracking settings</string>
<string name="location_update_time_freq_title">GPS update frequency</string>
<string name="location_update_time_freq_summary">Update time of GPS location in minutes</string>
<string name="location_update_distance_freq_title">GPS distance frequency</string>
<string name="location_update_distance_freq_summary">Update distance of GPS location in meters</string>
<string name="network_proxy_settings">Network proxy settings</string>
<string name="http_proxy_is_enabled_title">Proxy enabled</string>
<string name="http_proxy_is_enabled_summary">Proxy enabled</string>
<string name="http_proxy_host_title">Proxy host</string>
<string name="http_proxy_host_summary">Proxy host</string>
<string name="http_proxy_port_title">Proxy port</string>
<string name="http_proxy_port_summary">Proxy port</string>
<string name="http_proxy_user_title">Proxy user</string>
<string name="http_proxy_user_summary">Proxy user</string>
<string name="http_proxy_password_title">Proxy password</string>
<string name="http_proxy_password_summary">Proxy password</string>
<string name="title_label">Title:</string>
<string name="author_label">Author:</string>
<string name="upload_date_label">Upload date:</string>
<string name="location_label">Location:</string>
<string name="panoramio_url">Panoramio url:</string>
</resources> </resources>

View File

@ -2,67 +2,67 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory <PreferenceCategory
android:title="Panoramio search settings" android:title="@string/panoramio_search_settings"
android:key="pref_panoramio_settings"> android:key="pref_panoramio_settings">
<EditTextPreference <EditTextPreference
android:key="pref_panoramio_radiusx" android:key="pref_panoramio_radiusx"
android:title="Radius X" android:title="@string/panoramio_radiusx_title"
android:summary="Radius X" android:summary="@string/panoramio_radiusx_summary"
android:defaultValue="0.05" android:defaultValue="0.05"
android:inputType="numberDecimal" /> android:inputType="numberDecimal" />
<EditTextPreference <EditTextPreference
android:key="pref_panoramio_radiusy" android:key="pref_panoramio_radiusy"
android:title="Radius Y" android:title="@string/panoramio_radiusy_title"
android:summary="Radius Y" android:summary="@string/panoramio_radiusy_summary"
android:defaultValue="0.05" android:defaultValue="0.05"
android:inputType="numberDecimal" /> android:inputType="numberDecimal" />
<EditTextPreference <EditTextPreference
android:key="pref_panoramio_bulk_size" android:key="pref_panoramio_bulk_size"
android:title="Radius Y" android:title="@string/panoramio_bulk_size_title"
android:summary="Radius Y" android:summary="@string/panoramio_bulk_size_summary"
android:defaultValue="50" android:defaultValue="50"
android:inputType="number" /> android:inputType="number" />
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory
android:title="Wiki search settings" android:title="@string/wiki_search_settings"
android:key="pref_wiki_settings"> android:key="pref_wiki_settings">
<EditTextPreference <EditTextPreference
android:key="pref_wiki_radius" android:key="pref_wiki_radius"
android:title="Wiki search radius" android:title="@string/wiki_search_radius_title"
android:summary="Wiki search radius[km]" android:summary="@string/wiki_search_radius_summary"
android:defaultValue="10.0" android:defaultValue="10.0"
android:inputType="numberDecimal" /> android:inputType="numberDecimal" />
<EditTextPreference <EditTextPreference
android:key="pref_wiki_limit" android:key="pref_wiki_limit"
android:title="Wiki search results limit" android:title="@string/wiki_search_results_limit_title"
android:summary="Limit of wiki results" android:summary="@string/wiki_search_results_limit_summary"
android:defaultValue="100" android:defaultValue="100"
android:inputType="number" /> android:inputType="number" />
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory
android:title="GPS tracking settings" android:title="@string/location_tracking_settings"
android:key="pref_gps_settings"> android:key="pref_gps_settings">
<EditTextPreference <EditTextPreference
android:key="pref_gps_update_freq" android:key="pref_gps_update_freq"
android:title="GPS update frequency" android:title="@string/location_update_time_freq_title"
android:summary="Update time of GPS location in minutes" android:summary="@string/location_update_time_freq_summary"
android:defaultValue="15.0" android:defaultValue="15.0"
android:inputType="numberDecimal" /> android:inputType="numberDecimal" />
<EditTextPreference <EditTextPreference
android:key="pref_gps_distance_freq" android:key="pref_gps_distance_freq"
android:title="GPS distance frequency" android:title="@string/location_update_distance_freq_title"
android:summary="Update distance of GPS location in meters" android:summary="@string/location_update_distance_freq_summary"
android:defaultValue="100.0" android:defaultValue="100.0"
android:inputType="numberDecimal" /> android:inputType="numberDecimal" />
@ -70,40 +70,40 @@
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory
android:title="Network proxy settings" android:title="@string/network_proxy_settings"
android:key="pref_proxy_settings"> android:key="pref_proxy_settings">
<CheckBoxPreference <CheckBoxPreference
android:key="pref_proxy_enabled" android:key="pref_proxy_enabled"
android:title="Proxy enabled" android:title="@string/http_proxy_is_enabled_title"
android:summary="Proxy enabled" /> android:summary="@string/http_proxy_is_enabled_summary" />
<EditTextPreference <EditTextPreference
android:key="pref_proxy_host" android:key="pref_proxy_host"
android:title="Proxy host" android:title="@string/http_proxy_host_title"
android:summary="Proxy host" android:summary="@string/http_proxy_host_summary"
android:defaultValue="localhost" android:defaultValue="localhost"
android:dependency="pref_proxy_enabled" /> android:dependency="pref_proxy_enabled" />
<EditTextPreference <EditTextPreference
android:key="pref_proxy_port" android:key="pref_proxy_port"
android:title="Proxy port" android:title="@string/http_proxy_port_title"
android:summary="Proxy port" android:summary="@string/http_proxy_port_summary"
android:defaultValue="8123" android:defaultValue="8123"
android:inputType="number" android:inputType="number"
android:dependency="pref_proxy_enabled" /> android:dependency="pref_proxy_enabled" />
<EditTextPreference <EditTextPreference
android:key="pref_proxy_user" android:key="pref_proxy_user"
android:title="Proxy user" android:title="@string/http_proxy_user_title"
android:summary="Proxy user" android:summary="@string/http_proxy_user_summary"
android:defaultValue="" android:defaultValue=""
android:dependency="pref_proxy_enabled" /> android:dependency="pref_proxy_enabled" />
<EditTextPreference <EditTextPreference
android:key="pref_proxy_pass" android:key="pref_proxy_pass"
android:title="Proxy password" android:title="@string/http_proxy_password_title"
android:summary="Proxy password" android:summary="@string/http_proxy_password_summary"
android:defaultValue="" android:defaultValue=""
android:inputType="textPassword" android:inputType="textPassword"
android:dependency="pref_proxy_enabled" /> android:dependency="pref_proxy_enabled" />