summaryrefslogtreecommitdiff
path: root/vdrmanager/res
diff options
context:
space:
mode:
Diffstat (limited to 'vdrmanager/res')
-rw-r--r--vdrmanager/res/anim/slide_down_in.xml19
-rw-r--r--vdrmanager/res/anim/slide_down_out.xml19
-rw-r--r--vdrmanager/res/anim/slide_left_in.xml19
-rw-r--r--vdrmanager/res/anim/slide_left_out.xml19
-rw-r--r--vdrmanager/res/anim/slide_right_in.xml19
-rw-r--r--vdrmanager/res/anim/slide_right_out.xml19
-rw-r--r--vdrmanager/res/anim/slide_up_in.xml19
-rw-r--r--vdrmanager/res/anim/slide_up_out.xml19
-rw-r--r--vdrmanager/res/drawable/ic_menu_refresh.pngbin0 -> 3289 bytes
-rw-r--r--vdrmanager/res/drawable/imdb.pngbin3122 -> 2204 bytes
-rw-r--r--vdrmanager/res/layout/epg_detail.xml2
-rw-r--r--vdrmanager/res/layout/event_epg_list.xml101
-rw-r--r--vdrmanager/res/menu/recording_list_item_menu.xml2
-rw-r--r--vdrmanager/res/values-de/action_menu.xml11
-rw-r--r--vdrmanager/res/values-de/application.xml4
-rw-r--r--vdrmanager/res/values-de/channel_list.xml18
-rw-r--r--vdrmanager/res/values-de/common.xml12
-rw-r--r--vdrmanager/res/values-de/epg.xml30
-rw-r--r--vdrmanager/res/values-de/epg_list.xml5
-rw-r--r--vdrmanager/res/values-de/epg_list_menu.xml15
-rw-r--r--vdrmanager/res/values-de/epg_search_times.xml6
-rw-r--r--vdrmanager/res/values-de/errors.xml6
-rw-r--r--vdrmanager/res/values-de/livetv.xml38
-rw-r--r--vdrmanager/res/values-de/main_menu.xml8
-rw-r--r--vdrmanager/res/values-de/preferences.xml126
-rw-r--r--vdrmanager/res/values-de/preferences_keys.xml31
-rw-r--r--vdrmanager/res/values-de/progress.xml27
-rw-r--r--vdrmanager/res/values-de/recording_list_menu.xml5
-rw-r--r--vdrmanager/res/values-de/timers.xml13
-rw-r--r--vdrmanager/res/values/common.xml4
-rw-r--r--vdrmanager/res/values/preferences.xml210
-rw-r--r--vdrmanager/res/values/progress.xml4
-rw-r--r--vdrmanager/res/xml/preferences.xml15
33 files changed, 707 insertions, 138 deletions
diff --git a/vdrmanager/res/anim/slide_down_in.xml b/vdrmanager/res/anim/slide_down_in.xml
new file mode 100644
index 0000000..dd1ca08
--- /dev/null
+++ b/vdrmanager/res/anim/slide_down_in.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromYDelta="-100%p" android:toYDelta="0" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_down_out.xml b/vdrmanager/res/anim/slide_down_out.xml
new file mode 100644
index 0000000..188c817
--- /dev/null
+++ b/vdrmanager/res/anim/slide_down_out.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromYDelta="0" android:toYDelta="100%p" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_left_in.xml b/vdrmanager/res/anim/slide_left_in.xml
new file mode 100644
index 0000000..c72fd87
--- /dev/null
+++ b/vdrmanager/res/anim/slide_left_in.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_left_out.xml b/vdrmanager/res/anim/slide_left_out.xml
new file mode 100644
index 0000000..e4308ec
--- /dev/null
+++ b/vdrmanager/res/anim/slide_left_out.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="0" android:toXDelta="-100%p" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_right_in.xml b/vdrmanager/res/anim/slide_right_in.xml
new file mode 100644
index 0000000..f2f97fc
--- /dev/null
+++ b/vdrmanager/res/anim/slide_right_in.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="-100%p" android:toXDelta="0" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_right_out.xml b/vdrmanager/res/anim/slide_right_out.xml
new file mode 100644
index 0000000..1807f10
--- /dev/null
+++ b/vdrmanager/res/anim/slide_right_out.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="0" android:toXDelta="100%p" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_up_in.xml b/vdrmanager/res/anim/slide_up_in.xml
new file mode 100644
index 0000000..675908f
--- /dev/null
+++ b/vdrmanager/res/anim/slide_up_in.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromYDelta="100%p" android:toYDelta="0" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/anim/slide_up_out.xml b/vdrmanager/res/anim/slide_up_out.xml
new file mode 100644
index 0000000..a1303a5
--- /dev/null
+++ b/vdrmanager/res/anim/slide_up_out.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2007 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromYDelta="0" android:toYDelta="-100%p" android:duration="400"/>
+</set>
diff --git a/vdrmanager/res/drawable/ic_menu_refresh.png b/vdrmanager/res/drawable/ic_menu_refresh.png
new file mode 100644
index 0000000..bbb08f1
--- /dev/null
+++ b/vdrmanager/res/drawable/ic_menu_refresh.png
Binary files differ
diff --git a/vdrmanager/res/drawable/imdb.png b/vdrmanager/res/drawable/imdb.png
index b0652a5..e1e0853 100644
--- a/vdrmanager/res/drawable/imdb.png
+++ b/vdrmanager/res/drawable/imdb.png
Binary files differ
diff --git a/vdrmanager/res/layout/epg_detail.xml b/vdrmanager/res/layout/epg_detail.xml
index b7761be..d763429 100644
--- a/vdrmanager/res/layout/epg_detail.xml
+++ b/vdrmanager/res/layout/epg_detail.xml
@@ -93,7 +93,7 @@
android:layout_height="wrap_content"
android:layout_weight="1">
- <TextView android:textSize="17dip"
+ <TextView android:textSize="16dip"
android:id="@+id/epg_detail_description"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
diff --git a/vdrmanager/res/layout/event_epg_list.xml b/vdrmanager/res/layout/event_epg_list.xml
index eb9e23b..436ca23 100644
--- a/vdrmanager/res/layout/event_epg_list.xml
+++ b/vdrmanager/res/layout/event_epg_list.xml
@@ -1,49 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
+<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/flipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:orientation="vertical">
+ android:orientation="vertical" >
- <Spinner
- android:id="@+id/epg_list_channel_spinner"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:prompt="@string/epg_list_channel_spinner"/>
-
- <ListView
- android:id="@+id/whatson_list"
+ <LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:layout_below="@id/epg_list_channel_spinner"
- android:layout_alignWithParentIfMissing="true"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:cacheColorHint="?android:attr/colorBackground"/>
-
- <TextView
- android:id="@+id/epg_list_search_label"
+ android:orientation="vertical" >
+
+ <Spinner
+ android:id="@+id/epg_list_channel_spinner"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:prompt="@string/epg_list_channel_spinner" />
+
+ <ListView
+ android:id="@+id/whatson_list"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:layout_alignParentTop="true"
+ android:layout_alignWithParentIfMissing="true"
+ android:layout_below="@id/epg_list_channel_spinner"
+ android:layout_centerHorizontal="true"
+ android:cacheColorHint="?android:attr/colorBackground" />
+
+ <TextView
+ android:id="@+id/epg_list_search_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="@string/epg_list_search_label"/>
-
- <LinearLayout android:orientation="vertical"
- android:id="@+id/no_connection_layout" android:layout_width="fill_parent"
- android:layout_height="fill_parent" android:visibility="gone">
- <LinearLayout android:layout_height="fill_parent"
- android:gravity="center" android:layout_width="fill_parent"
- android:orientation="horizontal">
- <TextView android:text="@string/no_connection"
- android:layout_height="wrap_content" android:layout_width="wrap_content"
- android:textSize="18dip" />
- <ImageView android:src="@drawable/sad"
- android:layout_height="wrap_content" android:layout_width="wrap_content" />
- <Button android:text="@string/no_connection_retry"
- android:textSize="18dip" android:layout_height="wrap_content"
- android:layout_width="wrap_content" android:id="@+id/retry_button" />
-
- </LinearLayout>
- </LinearLayout>
-
-
-</LinearLayout>
+ android:text="@string/epg_list_search_label" />
+ </LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/no_connection_layout"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical">
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:gravity="center"
+ android:orientation="horizontal" >
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/no_connection"
+ android:textSize="18dip" />
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/sad" />
+
+ <Button
+ android:id="@+id/retry_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/no_connection_retry"
+ android:textSize="18dip" />
+ </LinearLayout>
+ </LinearLayout>
+</ViewFlipper> \ No newline at end of file
diff --git a/vdrmanager/res/menu/recording_list_item_menu.xml b/vdrmanager/res/menu/recording_list_item_menu.xml
index 4c664ea..c94161a 100644
--- a/vdrmanager/res/menu/recording_list_item_menu.xml
+++ b/vdrmanager/res/menu/recording_list_item_menu.xml
@@ -3,5 +3,5 @@
<item android:id="@+id/recording_item_menu_delete" android:title="@string/recording_item_menu_delete"/>
<item android:id="@+id/recording_item_menu_stream" android:title="@string/recording_item_menu_stream"/>
-
+ <item android:id="@+id/epg_item_menu_live_tv" android:title="@string/livetv" android:visible="false" />
</menu> \ No newline at end of file
diff --git a/vdrmanager/res/values-de/action_menu.xml b/vdrmanager/res/values-de/action_menu.xml
new file mode 100644
index 0000000..4a45dec
--- /dev/null
+++ b/vdrmanager/res/values-de/action_menu.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="action_menu_channels">Kanäle</string>
+ <string name="action_menu_timers">Timers</string>
+ <string name="action_menu_recordings">Aufnahmen</string>
+ <string name="action_menu_epg">EPG Liste</string>
+ <string name="action_menu_search">EPG Suche</string>
+ <string name="action_menu_wakeup">Aufwecken</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/application.xml b/vdrmanager/res/values-de/application.xml
new file mode 100644
index 0000000..a09283c
--- /dev/null
+++ b/vdrmanager/res/values-de/application.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="app_name">VDR-Manager</string>
+</resources>
diff --git a/vdrmanager/res/values-de/channel_list.xml b/vdrmanager/res/values-de/channel_list.xml
new file mode 100644
index 0000000..556dcaf
--- /dev/null
+++ b/vdrmanager/res/values-de/channel_list.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="channel_item_menu_epg">Zeige EPG</string>
+ <string name="channel_item_menu_stream">Zeige Livestream</string>
+ <string name="channel_item_menu_hide">Verbergen</string>
+ <string name="channel_item_menu_hide_permanent">Permanent verbergen</string>
+
+ <string name="channel_group_menu_hide">Verbergen</string>
+ <string name="channel_group_menu_hide_permanent">Permanent verbergen</string>
+
+ <string name="menu_groupby">Anordnen nach</string>
+ <string name="groupby_group">Gruppe</string>
+ <string name="groupby_provider">Provider</string>
+ <string name="groupby_name">Name</string>
+ <string name="groupby_name_all_channels_group">Alle Kanäle</string>
+ <string name="groupby_window_title_templte">Nach %1$s anordnen</string>
+</resources>
diff --git a/vdrmanager/res/values-de/common.xml b/vdrmanager/res/values-de/common.xml
new file mode 100644
index 0000000..5a5952d
--- /dev/null
+++ b/vdrmanager/res/values-de/common.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="common_delete">Löschen</string>
+ <string name="prefs_current_value">Aktuell:</string>
+ <string name="prefs_current_value_template">Aktuell: %1$s</string>
+ <string name="no_connection">Keine Verbindung</string>
+ <string name="no_connection_retry">Wiederholen</string>
+ <string name="refresh">Auffrischen</string>
+ <string name="done">Fertig</string>
+ <string name="share">Share</string>
+ <string name="share_chooser">Share EPG Eintrag</string>
+</resources>
diff --git a/vdrmanager/res/values-de/epg.xml b/vdrmanager/res/values-de/epg.xml
new file mode 100644
index 0000000..3c2e905
--- /dev/null
+++ b/vdrmanager/res/values-de/epg.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <!-- What's on display -->
+ <string name="epg_list_time_label">Was kommt</string>
+ <string name="epg_list_time_now">jetzt</string>
+ <string name="epg_list_time_next">als nächstes</string>
+ <string name="epg_list_channel_spinner">Kanal</string>
+ <string name="epg_list_search_label">Suchergebnisse</string>
+
+ <!-- create timer -->
+ <string name="epg_event_share_text">Share</string>
+ <string name="epg_event_imdb_text">IMDB Suche</string>
+ <string name="epg_eent_livetv_text">Stream</string>
+ <string name="epg_event_create_timer_text">Timer hinzufügen</string>
+ <string name="epg_event_modify_timer_text">Timer modifizieren</string>
+
+ <!-- search -->
+ <string name="epg_search_button">Suchen</string>
+ <string name="epg_duration_template">%1$s min</string>
+ <string name="epg_duration_template_live">%1$s/%2$s min</string>
+ <string name="epg_of_a_channel">EPG -> %1$s</string>
+ <string name="epg_by_channel">EPG nach Kanälen</string>
+ <string name="epg_by_search">EPG Suche</string>
+ <string name="epg_by_search_param">EPG Suche: \'%1$s\'</string>
+ <string name="epg_by_time">EPG nach Zeit</string>
+ <string name="search_epg_hint">Suche EPG</string>
+ <string name="epg_search_settings_description">Suche VDR EPG</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/epg_list.xml b/vdrmanager/res/values-de/epg_list.xml
new file mode 100644
index 0000000..431f57b
--- /dev/null
+++ b/vdrmanager/res/values-de/epg_list.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="navigae_at_the_end">Ende</string>
+ <string name="navigae_at_the_start">Anfang</string>
+</resources>
diff --git a/vdrmanager/res/values-de/epg_list_menu.xml b/vdrmanager/res/values-de/epg_list_menu.xml
new file mode 100644
index 0000000..0a7e8df
--- /dev/null
+++ b/vdrmanager/res/values-de/epg_list_menu.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="epg_menu_search">Suche EPG</string>
+ <string name="epg_menu_times">Zeiten einstellen</string>
+
+ <string name="epg_item_menu_timer_add">Erzeuge Timer</string>
+ <string name="epg_item_menu_timer_delete">Lösche Timer</string>
+ <string name="epg_item_menu_timer_modify">Bearbeite Timer</string>
+ <string name="epg_item_menu_timer_enable">Aktiviere Timer</string>
+ <string name="epg_item_menu_timer_disable">Deaktiviere Timer</string>
+ <string name="epg_no_items">Nichts gefunden…</string>
+ <string name="epg_client_errors">Ein Fehler ist aufgetreten, prüfe Log…</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/epg_search_times.xml b/vdrmanager/res/values-de/epg_search_times.xml
new file mode 100644
index 0000000..c44d2ab
--- /dev/null
+++ b/vdrmanager/res/values-de/epg_search_times.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="epg_search_times_add">Zeit hinzufügen</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/errors.xml b/vdrmanager/res/values-de/errors.xml
new file mode 100644
index 0000000..9e774b5
--- /dev/null
+++ b/vdrmanager/res/values-de/errors.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="vdr_error_text">Bei der Kommunikation mit dem VDR ist ein Fehler aufgetreten: %1$s</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/livetv.xml b/vdrmanager/res/values-de/livetv.xml
new file mode 100644
index 0000000..fd08ffe
--- /dev/null
+++ b/vdrmanager/res/values-de/livetv.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="livetv">Live TV</string>
+ <string name="settings_livetv_summary">Benötigt Streamdev-server auf dem VDR und ein externes Wiedergabeprogramm wie z.B. VPlayer</string>
+ <string name="settings_livetv_streamformat">Stream-Format</string>
+ <string name="settings_livetv_port">Stream-Port</string>
+ <string name="settings_livetv_port_summary">Default 3000. Der Zugriff muss in der Datei
+ streamdevhosts.conf aktiviert sein.</string>
+ <string-array name="livetv_streamformat">
+ <item>TS</item>
+ <item>PES</item>
+ <item>ES</item>
+ <item>PS</item>
+ </string-array>
+ <string-array name="livetv_streamformat_values">
+ <item>TS</item>
+ <item>PES</item>
+ <item>ES</item>
+ <item>PS</item>
+ </string-array>
+ <string name="key_remux_enable">remux_enable</string>
+ <string name="key_remux_command">remux_command</string>
+ <string name="key_remux_parameter">remux_parameter</string>
+
+ <string name="stream_via_as">Stream</string>
+ <string name="stream_via">über %s</string>
+ <string name="stream_as">als %s</string>
+ <string name="remux_title">Remux</string>
+ <string name="remux_enable_title">Aktiviere Remux</string>
+ <string name="remux_enable_summary">Aktiviere Streaming mittels remux (z.B. externremux.sh)</string>
+
+ <string name="remux_command_title">Format</string>
+ <string name="remux_command_summary">Typischerweise EXT oder Extern z.B. http://vdr:3000/Extern/1</string>
+
+ <string name="remux_parameter_title">Parameter</string>
+ <string name="remux_parameter_summary">Steuert Streaming Qualität. z.B. http://vdr:3000/Extern;DSL1000/1</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/main_menu.xml b/vdrmanager/res/values-de/main_menu.xml
new file mode 100644
index 0000000..098dda0
--- /dev/null
+++ b/vdrmanager/res/values-de/main_menu.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="main_menu_preferences">Einstellungen</string>
+ <string name="main_menu_info">Infomationen</string>
+ <string name="main_menu_exit">Beenden</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/preferences.xml b/vdrmanager/res/values-de/preferences.xml
new file mode 100644
index 0000000..4ee50fe
--- /dev/null
+++ b/vdrmanager/res/values-de/preferences.xml
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <!-- VDR plugin preferences -->
+ <string name="vdr_preferences">Netzwerkeinstellungen</string>
+ <string name="vdr_host_title">VDR Rechner</string>
+ <string name="vdr_host_summary">Host running VDR</string>
+ <string name="vdr_port_title">VDR Plugin port </string>
+ <string name="vdr_port_summary">Port für Verbindungen zum VDR Plugin</string>
+ <string name="vdr_port_default">6420</string>
+ <string name="vdr_password_title">VDR Plugin Passwort</string>
+ <string name="vdr_password_summary">Passwort für das VDR Plugin</string>
+ <string name="vdr_ssl_title">Sichere Verbindung</string>
+ <string name="vdr_ssl_summary">Verwende SSL für Verbindungen</string>
+
+ <!-- channel filter preferences -->
+ <string name="channel_filter_preferences">Kanaleinstellungen</string>
+ <string name="channel_filter_filter_title">Begrenze Kanäle</string>
+ <string name="channel_filter_filter_summary">Nur ausgewählte Kanäle verwenden</string>
+ <string name="channel_filter_last_title">Kanalfilter</string>
+ <string name="channel_filter_last_summary">Kommagetrennte Kanalnummern oder Bereiche (\'-\'). z.B. 1,2,4-10</string>
+
+ <!-- wakeup -->
+ <string name="wakeup_preferences">Ferngesteueren VDR Rechner wecken</string>
+ <string name="wakeup_enabled_title">VDR kann geweckt werden</string>
+ <string name="wakeup_enabled_summary">Aktiviert das Wecken des ferngesteuerten VDR Rechners</string>
+ <string name="wakeup_url_title">URL für Wecken in der Ferne</string>
+ <string name="wakeup_url_summary">URL für die Aufforderung zum Wecken</string>
+ <string name="wakeup_user_title">Nutzeraccount</string>
+ <string name="wakeup_user_summary">Account für Remote-Wecken</string>
+ <string name="wakeup_password_title">Passwort</string>
+ <string name="wakeup_password_summary">Passwort für Remote-Wecken</string>
+ <string name="wakeup_method_key">key_wakeup_method</string>
+ <string name="wakeup_method_title">Weckmethode</string>
+ <string name="wakeup_method_summary">Wähle eine Methode zum Wecken des VDR Rechners</string>
+ <string-array name="wakeup_methods">
+ <item>Rufe ein URL auf</item>
+ <item>WOL</item>
+ </string-array>
+ <string-array name="wakeup_methods_values">
+ <item>url</item>
+ <item>wol</item>
+ </string-array>
+ <string name="default_wakeup_method">url</string>
+ <string name="wakeup_wol_custom_broadcast_key">key_wol_custom_broadcast</string>
+ <string name="wakeup_wol_custom_boradcast_title">Eigene WOL-Netzwerkadresse</string>
+ <string name="wakeup_wol_custom_boradcast_summary">Eine WOL-Netzwerkadresse von 255.255.255.255 abweichend. Zum Beispiel sinnvoll für VPN Verbindungen.</string>
+ <string name="wakeup_wol_custom_boradcast_summary_on">Broadcast </string>
+
+
+ <string name="wakeup_wol_mac_key">key_wakeup_wol_mac</string>
+ <string name="wakeup_wol_mac_title">MAC-Adresse</string>
+ <string name="wakeup_wol_mac_summary">MAC-Adresse des VDR Rechners. Verwende \':\' , \'-\' oder ein Leerzeichen als Trennzeichen.</string>
+
+ <!-- timer -->
+ <string name="timer_preferences">Voreinstellungen für Timer</string>
+ <string name="timer_pre_start_buffer_title">Vorlaufzeit</string>
+ <string name="timer_pre_start_buffer_summary">Minuten der Aufzeichnung vor dem Beginn der Sendung</string>
+ <string name="timer_post_end_buffer_title">Nachlaufzeit</string>
+ <string name="timer_post_end_buffer_summary">Minuten der Aufzeichnung nach dem Ende der Sendung</string>
+ <string name="timer_default_priority_title">Priorität</string>
+ <string name="timer_default_priority_summary">Standardmässig verwendete Priorität</string>
+ <string name="timer_default_primary_limit_title">Primärlimit</string>
+ <string name="timer_default_primary_limit_summary">Standardmässig verwendetes Primärlimit</string>
+ <string name="timer_default_lifetime_title">Lebenszeit</string>
+ <string name="timer_default_lifetime_summary">Standardmässig verwendete Lebenszeit</string>
+
+ <!-- GUI -->
+ <string name="gui_preferences">Einstellungen der Benutzeroberfläche</string>
+ <string name="gui_enable_24h_format_key">key_enable_24h</string>
+ <string name="gui_enable_24h_format_title">Verwende 24-h Format</string>
+ <string name="gui_enable_24h_format_summary_on">13:00</string>
+ <string name="gui_enable_24h_format_summary_off">1:00 PM</string>
+ <string name="gui_channels_show_channel_numbers_key">key_channels_show_channel_numbers</string>
+ <string name="gui_channels_show_channel_numbers_title">Zeige Kanalnummern</string>
+ <string name="gui_channels_show_channel_numbers_summary">Zeige Kanalnummern in der Kanalliste.</string>
+
+ <string name="qui_quit_on_back_key">key_gui_quit_on_back</string>
+ <string name="gui_quit_on_back_title">Beenden mit Zurück Button</string>
+ <string name="gui_quit_on_back_summary_on">Zurück Button schließt den VDR-Manager</string>
+ <string name="gui_quit_on_back_summary_off">Zurück Button beendet den VDR-Manager nicht</string>
+
+ <string name="qui_show_imdb_button_key">key_qui_show_imdb_button</string>
+ <string name="qui_show_imdb_button_title">Zeige IMDB Button</string>
+ <string name="qui_show_imdb_button_summary_on">IMDB Button anzeigen</string>
+ <string name="qui_show_imdb_button_summary_off">IMDB Button nicht anzeigen</string>
+
+ <string name="qui_imdb_url_key">key_qui_imdb_url</string>
+ <string name="qui_imdb_url_title">IMDb Seite</string>
+ <string name="qui_imdb_url_summary">Welche IMDb Seite für die Suche verwenden.</string>
+ <string name="gui_custom_locale_title">Andere Sprache</string>
+ <string name="gui_custom_locale_sum">Eine andere Sprache aktivieren.</string>
+
+ <string-array name="imdb_urls">
+ <item>imdb.com</item>
+ <item>uk.imdb.com</item>
+ <item>imdb.de</item>
+ <item>imdb.es</item>
+ <item>imdb.fr</item>
+ <item>imdb.it</item>
+ <item>imdb.pt</item>
+ </string-array>
+
+ <string-array name="imdb_urls_values">
+ <item>International</item>
+ <item>imdb.com</item>
+ <item>uk.imdb.com</item>
+ <item>imdb.de</item>
+ <item>imdb.es</item>
+ <item>imdb.fr</item>
+ <item>imdb.it</item>
+ <item>imdb.pt</item>
+ </string-array>
+
+ <string-array name="lang_values">
+ <item></item>
+ <item>en</item>
+ <item>de</item>
+ </string-array>
+ <string-array name="lang">
+ <item>Voreinstellung</item>
+ <item>Englisch</item>
+ <item>Deutsch</item>
+ </string-array>
+
+</resources>
diff --git a/vdrmanager/res/values-de/preferences_keys.xml b/vdrmanager/res/values-de/preferences_keys.xml
new file mode 100644
index 0000000..7eb0c6d
--- /dev/null
+++ b/vdrmanager/res/values-de/preferences_keys.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="vdr_host_key">svdrp_host</string>
+ <string name="vdr_port_key">svdrp_port </string>
+ <string name="vdr_password_key">svdrp_password</string>
+ <string name="vdr_ssl_key">svdrp_ssl</string>
+ <string name="vdr_stream_format">stream_format</string>
+ <string name="vdr_stream_port">stream_port</string>
+
+ <string name="alive_check_enabled_key">alive_check_enabled</string>
+ <string name="alive_check_interval_key">alive_check_interval</string>
+
+ <string name="channel_filter_filter_key">limit_channels</string>
+ <string name="channel_filter_last_key">last_channel</string>
+
+ <string name="wakeup_enabled_key">wakeup_enabled</string>
+
+ <string name="wakeup_url_key">wakeup_url</string>
+ <string name="wakeup_user_key">wakeup_user</string>
+ <string name="wakeup_password_key">wakeup_password</string>
+
+ <string name="timer_pre_start_buffer_key">timer_pre_start_buffer</string>
+ <string name="timer_post_end_buffer_key">timer_post_end_buffer</string>
+ <string name="timer_default_priority_key">timer_default_priority</string>
+ <string name="timer_default_primary_limit_key">timer_default_primary_limit</string>
+ <string name="timer_default_lifetime_key">timer_default_lifetime</string>
+
+ <string name="epg_search_times_key">epg_search_times</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/progress.xml b/vdrmanager/res/values-de/progress.xml
new file mode 100644
index 0000000..89bdb39
--- /dev/null
+++ b/vdrmanager/res/values-de/progress.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <!-- progress -->
+ <string name="progress_connect">Verbinde…</string>
+ <string name="progress_connect_error">Verbindung fehlgeschlagen</string>
+ <string name="progress_login">Anmelden.</string>
+ <string name="progress_login_error">Anmelden fehlgeschlagen.</string>
+ <string name="progress_whatson_loading">Lade EPG…</string>
+ <string name="progress_timers_loading">Lade Timer…</string>
+ <string name="progress_recordings_loading">Lade Aufnahmen…</string>
+ <string name="progress_channels_loading">Lade Kanäle…</string>
+ <string name="progress_disconnect">Trenne…</string>
+ <string name="progress_wakeup_sending">Initalisiere aufwecken…</string>
+ <string name="progress_wakeup_sent">Aufforderung zum Wecken gesendet</string>
+ <string name="progress_wakeup_error">Fehler beim Senden der Aufforderung zum Wecken: %1$s</string>
+ <string name="progress_timer_save">Speichere Timer…</string>
+ <string name="progress_timer_delete">Lösche Timer…</string>
+ <string name="progress_recording_delete">Lösche Aufnahme…</string>
+ <string name="progress_timer_enable">Aktiviere Timer…</string>
+ <string name="progress_timer_modify">Modifiziere Timer…</string>
+ <string name="progress_timer_disable">Deaktiviere Timer…</string>
+ <string name="progress_connect_finished_abnormal">Verbindung unnormal beeendet…</string>
+ <string name="progress_connect_finished_abnormal_arg">Verbindung unnormal beeendet: %1$s</string>
+ <string name="progress_cache_hit">Lade aus Cache.</string>
+
+</resources>
diff --git a/vdrmanager/res/values-de/recording_list_menu.xml b/vdrmanager/res/values-de/recording_list_menu.xml
new file mode 100644
index 0000000..ce91bc8
--- /dev/null
+++ b/vdrmanager/res/values-de/recording_list_menu.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="recording_item_menu_delete">Löschen</string>
+ <string name="recording_item_menu_stream">Stream</string>
+</resources>
diff --git a/vdrmanager/res/values-de/timers.xml b/vdrmanager/res/values-de/timers.xml
new file mode 100644
index 0000000..3410395
--- /dev/null
+++ b/vdrmanager/res/values-de/timers.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <string name="timer_detail_title_title">Titel:</string>
+ <string name="timer_detail_channel_title">Kanal:</string>
+ <string name="timer_detail_start_title">Start:</string>
+ <string name="timer_detail_end_title">Ende:</string>
+
+ <string name="timer_details_create_title">Erzeuge Timer</string>
+ <string name="timer_details_save_title">Speichere Änderungen</string>
+ <string name="timer_details_delete_title">Lösche Timer</string>
+
+</resources>
diff --git a/vdrmanager/res/values/common.xml b/vdrmanager/res/values/common.xml
index 9d1670e..6808c70 100644
--- a/vdrmanager/res/values/common.xml
+++ b/vdrmanager/res/values/common.xml
@@ -2,8 +2,10 @@
<resources>
<string name="common_delete">Delete</string>
<string name="prefs_current_value">Current:</string>
- <string name="prefs_current_value_template">Current: %1$s</string>
+ <string name="prefs_current_value_template">\nCurrent: %1$s</string>
+ <string name="prefs_current_value_not_set">&lt;not set&gt;</string>
<string name="no_connection">No connection</string>
+ <string name="aborted">Connection aborted.</string>
<string name="no_connection_retry">Retry</string>
<string name="refresh">Refresh</string>
<string name="done">Done</string>
diff --git a/vdrmanager/res/values/preferences.xml b/vdrmanager/res/values/preferences.xml
index a1d3f81..45d0b34 100644
--- a/vdrmanager/res/values/preferences.xml
+++ b/vdrmanager/res/values/preferences.xml
@@ -1,105 +1,135 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <!-- VDR plugin preferences -->
- <string name="vdr_preferences">Network settings</string>
- <string name="vdr_host_title">VDR host</string>
- <string name="vdr_host_summary">Host running VDR</string>
- <string name="vdr_port_title">VDR plugin port </string>
- <string name="vdr_port_summary">Port for connections to VDR plugin</string>
- <string name="vdr_port_default">6420</string>
- <string name="vdr_password_title">VDR plugin password</string>
- <string name="vdr_password_summary">Password for the VDR plugin</string>
- <string name="vdr_ssl_title">Secure connect</string>
- <string name="vdr_ssl_summary">Use SSL for connections</string>
+ <!-- VDR plugin preferences -->
+ <string name="vdr_preferences">Network settings</string>
+ <string name="vdr_host_title">VDR host</string>
+ <string name="vdr_host_summary">Host running VDR</string>
+ <string name="vdr_port_title">VDR plugin port </string>
+ <string name="vdr_port_summary">Port for connections to VDR plugin</string>
+ <string name="vdr_port_default">6420</string>
+ <string name="vdr_password_title">VDR plugin password</string>
+ <string name="vdr_password_summary">Password for the VDR plugin</string>
+ <string name="vdr_ssl_title">Secure connect</string>
+ <string name="vdr_ssl_summary">Use SSL for connections</string>
- <!-- channel filter preferences -->
- <string name="channel_filter_preferences">Channel settings</string>
- <string name="channel_filter_filter_title">Limit channels</string>
- <string name="channel_filter_filter_summary">Use only given channels</string>
- <string name="channel_filter_last_title">Channel filter</string>
- <string name="channel_filter_last_summary">Comma separated channelnumbers or ranges (separator \'-\'). A.e. 1,2,4-10</string>
+ <!-- channel filter preferences -->
+ <string name="channel_filter_preferences">Channel settings</string>
+ <string name="channel_filter_filter_title">Limit channels</string>
+ <string name="channel_filter_filter_summary">Use only given channels</string>
+ <string name="channel_filter_last_title">Channel filter</string>
+ <string name="channel_filter_last_summary">Comma separated channelnumbers or ranges (separator \'-\'). A.e. 1,2,4-10</string>
- <!-- wakeup -->
- <string name="wakeup_preferences">Remote VDR host wakeup</string>
- <string name="wakeup_enabled_title">Can remote wakeup VDR</string>
- <string name="wakeup_enabled_summary">Enables to remote wakeup the VDR host</string>
- <string name="wakeup_url_title">URL for remote wakeup</string>
- <string name="wakeup_url_summary">URL for a request doing the wakeup</string>
- <string name="wakeup_user_title">Wakeup user</string>
- <string name="wakeup_user_summary">User for remote wakeup</string>
- <string name="wakeup_password_title">Wakeup password</string>
- <string name="wakeup_password_summary">Password for remote wakeup</string>
- <string name="wakeup_method_key">key_wakeup_method</string>
- <string name="wakeup_method_title">Wakeup method</string>
- <string name="wakeup_method_summary">Choose a method to wakeup the vdr host</string>
- <string-array name="wakeup_methods">
- <item>Call a URL</item>
- <item>WOL</item>
- </string-array>
- <string-array name="wakeup_methods_values">
- <item>url</item>
- <item>wol</item>
- </string-array>
- <string name="default_wakeup_method">url</string>
- <string name="wakeup_wol_custom_broadcast_key">key_wol_custom_broadcast</string>
+ <!-- wakeup -->
+ <string name="wakeup_preferences">Remote VDR host wakeup</string>
+ <string name="wakeup_enabled_title">Can remote wakeup VDR</string>
+ <string name="wakeup_enabled_summary">Enables to remote wakeup the VDR host</string>
+ <string name="wakeup_url_title">URL for remote wakeup</string>
+ <string name="wakeup_url_summary">URL for a request doing the wakeup</string>
+ <string name="wakeup_user_title">Wakeup user</string>
+ <string name="wakeup_user_summary">User for remote wakeup</string>
+ <string name="wakeup_password_title">Wakeup password</string>
+ <string name="wakeup_password_summary">Password for remote wakeup</string>
+ <string name="wakeup_method_key">key_wakeup_method</string>
+ <string name="wakeup_method_title">Wakeup method</string>
+ <string name="wakeup_method_summary">Choose a method to wakeup the vdr host</string>
+
+ <string-array name="wakeup_methods">
+ <item>Call a URL</item>
+ <item>WOL</item>
+ </string-array>
+ <string-array name="wakeup_methods_values">
+ <item>url</item>
+ <item>wol</item>
+ </string-array>
+
+ <string name="default_wakeup_method">url</string>
+ <string name="wakeup_wol_custom_broadcast_key">key_wol_custom_broadcast</string>
<string name="wakeup_wol_custom_boradcast_title">Custom broadcast address</string>
<string name="wakeup_wol_custom_boradcast_summary">Enter custom broadcast address rather then 255.255.255.255. Useful for VPN connection as example.</string>
<string name="wakeup_wol_custom_boradcast_summary_on">Broadcast </string>
-
-
- <string name="wakeup_wol_mac_key">key_wakeup_wol_mac</string>
+ <string name="wakeup_wol_mac_key">key_wakeup_wol_mac</string>
<string name="wakeup_wol_mac_title">MAC-Address</string>
- <string name="wakeup_wol_mac_summary">MAC-Address of the VDR host. User \':\' or \'-\' or a space as separator.</string>
+ <string name="wakeup_wol_mac_summary">MAC-Address of the VDR host. Use \':\' or \'-\' or a space as separator.</string>
- <!-- timer -->
- <string name="timer_preferences">Timer defaults</string>
- <string name="timer_pre_start_buffer_title">Margin at start</string>
- <string name="timer_pre_start_buffer_summary">Minutes recording starts before the beginning of
+ <!-- timer -->
+ <string name="timer_preferences">Timer defaults</string>
+ <string name="timer_pre_start_buffer_title">Margin at start</string>
+ <string name="timer_pre_start_buffer_summary">Minutes recording starts before the beginning of
the broadcast</string>
- <string name="timer_post_end_buffer_title">Margin at stop</string>
- <string name="timer_post_end_buffer_summary">Minutes recording stops after the end of the
+ <string name="timer_post_end_buffer_title">Margin at stop</string>
+ <string name="timer_post_end_buffer_summary">Minutes recording stops after the end of the
broadcast</string>
- <string name="timer_default_priority_title">Default priority</string>
- <string name="timer_default_priority_summary">Default priority</string>
- <string name="timer_default_primary_limit_title">Default primary limit</string>
- <string name="timer_default_primary_limit_summary">Default primary limit</string>
- <string name="timer_default_lifetime_title">Default lifetime</string>
- <string name="timer_default_lifetime_summary">Default lifetime</string>
+ <string name="timer_default_priority_title">Default priority</string>
+ <string name="timer_default_priority_summary">Default priority</string>
+ <string name="timer_default_primary_limit_title">Default primary limit</string>
+ <string name="timer_default_primary_limit_summary">Default primary limit</string>
+ <string name="timer_default_lifetime_title">Default lifetime</string>
+ <string name="timer_default_lifetime_summary">Default lifetime</string>
- <!-- GUI -->
- <string name="gui_preferences">GUI Settings</string>
- <string name="gui_enable_24h_format_key">key_enable_24h</string>
- <string name="gui_enable_24h_format_title">Use 24-hour format</string>
- <string name="gui_enable_24h_format_summary_on">13:00</string>
- <string name="gui_enable_24h_format_summary_off">1:00 PM</string>
- <string name="gui_channels_show_channel_numbers_key">key_channels_show_channel_numbers</string>
- <string name="gui_channels_show_channel_numbers_title">Show channel numbers</string>
+ <!-- GUI -->
+ <string name="gui_preferences">GUI Settings</string>
+ <string name="gui_enable_24h_format_key">key_enable_24h</string>
+ <string name="gui_enable_24h_format_title">Use 24-hour format</string>
+ <string name="gui_enable_24h_format_summary_on">13:00</string>
+ <string name="gui_enable_24h_format_summary_off">1:00 PM</string>
+ <string name="gui_channels_show_channel_numbers_key">key_channels_show_channel_numbers</string>
+ <string name="gui_channels_show_channel_numbers_title">Show channel numbers</string>
<string name="gui_channels_show_channel_numbers_summary">Show channel numbers in the channel list.</string>
-
- <string name="qui_quit_on_back_key">key_gui_quit_on_back</string>
- <string name="gui_quit_on_back_title">Quit on back button</string>
- <string name="gui_quit_on_back_summary_on">Back button quits the VDR-Manager</string>
- <string name="gui_quit_on_back_summary_off">Back button does not quit VDR-Manager</string>
-
- <string name="qui_show_imdb_button_key">key_qui_show_imdb_button</string>
- <string name="qui_show_imdb_button_title">Show IMDB Button</string>
- <string name="qui_show_imdb_button_summary_on">IMDB Button is shown</string>
- <string name="qui_show_imdb_button_summary_off">IMDB Button is not shown</string>
-
- <string name="qui_imdb_url_key">key_qui_imdb_url</string>
- <string name="qui_imdb_url_title">IMDb Site</string>
- <string name="qui_imdb_url_summary">Which IMDb site to search.</string>
-
-
- <string-array name="imdb_urls">
- <item>imdb.com</item>
- <item>uk.imdb.com</item>
- <item>imdb.de</item>
- <item>imdb.es</item>
- <item>imdb.fr</item>
- <item>imdb.it</item>
- <item>imdb.pt</item>
- </string-array>
+ <string name="qui_quit_on_back_key">key_gui_quit_on_back</string>
+ <string name="gui_quit_on_back_title">Quit on back button</string>
+ <string name="gui_quit_on_back_summary_on">Back button quits the VDR-Manager</string>
+ <string name="gui_quit_on_back_summary_off">Back button does not quit VDR-Manager</string>
+ <string name="qui_show_imdb_button_key">key_qui_show_imdb_button</string>
+ <string name="qui_show_imdb_button_title">Show IMDB Button</string>
+ <string name="qui_show_imdb_button_summary_on">IMDB Button is shown</string>
+ <string name="qui_show_imdb_button_summary_off">IMDB Button is not shown</string>
+ <string name="qui_imdb_url_key">key_qui_imdb_url</string>
+ <string name="qui_imdb_url_title">IMDb Site</string>
+ <string name="qui_imdb_url_summary">Which IMDb site to search.</string>
+ <string name="gui_custom_locale_key">key_gui_custom_locale</string>
+ <string name="gui_custom_locale_title">Custom language</string>
+ <string name="gui_custom_locale_sum">Set a custom language.</string>
+
+ <string-array name="imdb_urls">
+ <item>akas.imdb.com</item>
+ <item>imdb.com</item>
+ <item>uk.imdb.com</item>
+ <item>imdb.de</item>
+ <item>imdb.es</item>
+ <item>imdb.fr</item>
+ <item>imdb.it</item>
+ <item>imdb.pt</item>
+ </string-array>
+ <string-array name="imdb_urls_values">
+ <item>International</item>
+ <item>imdb.com</item>
+ <item>uk.imdb.com</item>
+ <item>imdb.de</item>
+ <item>imdb.es</item>
+ <item>imdb.fr</item>
+ <item>imdb.it</item>
+ <item>imdb.pt</item>
+ </string-array>
+ <string-array name="lang_values">
+ <item>DEFAULT</item>
+ <item>en</item>
+ <item>de</item>
+ </string-array>
+ <string-array name="lang">
+ <item>Default language</item>
+ <item>English</item>
+ <item>German</item>
+ </string-array>
+
+ <string name="vdr_conntimeout_key">key_conntimeout_key</string>
+ <string name="vdr_conntimeout_title">Connection Timeout</string>
+ <string name="vdr_conntimeout_sum">How long (in seconds) to wait before the connection is established?</string>
+ <string name="vdr_readtimeout_key">key_vdr_readtimeout</string>
+ <string name="vdr_readtimeout_title">Read Timeout</string>
+ <string name="vdr_readtimeout_sum">How long (in seconds) to wait for every read line operation?</string>
+ <string name="vdr_timeout_key">key_vdr_timeout</string>
+ <string name="vdr_timeout_title">Total timeout</string>
+ <string name="vdr_timeout_sum">How long (in seconds) to wait for a whole I/O operation, before it gets aborted?</string>
-</resources>
+</resources> \ No newline at end of file
diff --git a/vdrmanager/res/values/progress.xml b/vdrmanager/res/values/progress.xml
index 8edb21c..9074a7a 100644
--- a/vdrmanager/res/values/progress.xml
+++ b/vdrmanager/res/values/progress.xml
@@ -20,8 +20,8 @@
<string name="progress_timer_enable">Enabling timer…</string>
<string name="progress_timer_modify">Updating timer…</string>
<string name="progress_timer_disable">Disabling timer…</string>
- <string name="progress_connect_finished_abnormal">Connection finished abnormal…</string>
+ <string name="progress_connect_finished_abnormal">Connection finished abnormal</string>
<string name="progress_connect_finished_abnormal_arg">Connection finished abnormal: %1$s</string>
- <string name="progress_cache_hit">Loader from cache.</string>
+ <string name="progress_cache_hit">Loaded from cache.</string>
</resources>
diff --git a/vdrmanager/res/xml/preferences.xml b/vdrmanager/res/xml/preferences.xml
index b0383de..001b2f9 100644
--- a/vdrmanager/res/xml/preferences.xml
+++ b/vdrmanager/res/xml/preferences.xml
@@ -14,6 +14,11 @@
android:password="true" />
<CheckBoxPreference android:key="@string/vdr_ssl_key"
android:title="@string/vdr_ssl_title" android:summary="@string/vdr_ssl_summary" />
+ <PreferenceScreen android:title="Advanced">
+ <EditTextPreference android:key="@string/vdr_conntimeout_key" android:title="@string/vdr_conntimeout_title" android:summary="@string/vdr_conntimeout_sum" android:defaultValue="10" android:inputType="number" />
+ <EditTextPreference android:key="@string/vdr_readtimeout_key" android:title="@string/vdr_readtimeout_title" android:summary="@string/vdr_readtimeout_sum" android:defaultValue="10" android:inputType="number" />
+ <EditTextPreference android:key="@string/vdr_timeout_key" android:title="@string/vdr_timeout_title" android:summary="@string/vdr_timeout_sum" android:defaultValue="120" android:inputType="number" />
+ </PreferenceScreen>
</PreferenceCategory>
@@ -88,15 +93,20 @@
<ListPreference android:key="@string/qui_imdb_url_key"
android:title="@string/qui_imdb_url_title" android:summaryOn="@string/qui_imdb_url_summary"
- android:entries="@array/imdb_urls" android:entryValues="@array/imdb_urls"
+ android:entries="@array/imdb_urls_values" android:entryValues="@array/imdb_urls"
android:dependency="@string/qui_show_imdb_button_key"
- android:defaultValue="imdb.de" />
+ android:defaultValue="akas.imdb.com" />
<CheckBoxPreference android:key="@string/qui_quit_on_back_key"
android:title="@string/gui_quit_on_back_title"
android:summaryOn="@string/gui_quit_on_back_summary_on"
android:summaryOff="@string/gui_quit_on_back_summary_off"
android:defaultValue="true" />
+
+ <ListPreference android:key="@string/gui_custom_locale_key"
+ android:title="@string/gui_custom_locale_title" android:summary="@string/gui_custom_locale_sum"
+ android:entries="@array/lang" android:entryValues="@array/lang_values" android:defaultValue="DEFAULT" />
+
</PreferenceCategory>
<PreferenceCategory android:title="@string/livetv">
@@ -112,6 +122,7 @@
<CheckBoxPreference android:key="remux_enable"
android:title="@string/remux_enable_title" android:summary="@string/remux_enable_summary" />
+
<EditTextPreference android:dependency="remux_enable"
android:key="remux_command" android:title="@string/remux_command_title"
android:defaultValue="EXT" android:summary="@string/remux_command_summary" />