summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/drawable-hdpi/ic_launcher_live_wallpaper.pngbin0 -> 6333 bytes
-rw-r--r--res/drawable-hdpi/livewallpaper_placeholder.pngbin0 -> 4814 bytes
-rw-r--r--res/drawable-mdpi/ic_launcher_live_wallpaper.pngbin0 -> 3259 bytes
-rw-r--r--res/drawable-mdpi/livewallpaper_placeholder.pngbin0 -> 2478 bytes
-rw-r--r--res/layout/live_wallpaper_entry.xml72
-rw-r--r--res/layout/live_wallpaper_list.xml38
-rw-r--r--res/layout/live_wallpaper_loading.xml24
-rw-r--r--res/layout/live_wallpaper_preview.xml45
-rw-r--r--res/values-cs/strings.xml27
-rw-r--r--res/values-da/strings.xml27
-rw-r--r--res/values-de/strings.xml27
-rw-r--r--res/values-el/strings.xml27
-rw-r--r--res/values-es-rUS/strings.xml27
-rw-r--r--res/values-es/strings.xml27
-rw-r--r--res/values-fr/strings.xml27
-rw-r--r--res/values-it/strings.xml27
-rw-r--r--res/values-ja/strings.xml27
-rw-r--r--res/values-ko/strings.xml27
-rw-r--r--res/values-nb/strings.xml27
-rw-r--r--res/values-nl/strings.xml27
-rw-r--r--res/values-pl/strings.xml27
-rw-r--r--res/values-pt-rPT/strings.xml29
-rw-r--r--res/values-pt/strings.xml29
-rw-r--r--res/values-ru/strings.xml27
-rw-r--r--res/values-sv/strings.xml27
-rw-r--r--res/values-tr/strings.xml27
-rw-r--r--res/values-zh-rCN/strings.xml27
-rw-r--r--res/values-zh-rTW/strings.xml27
-rw-r--r--res/values/colors.xml24
-rw-r--r--res/values/dimensions.xml25
-rw-r--r--res/values/strings.xml43
-rw-r--r--res/values/styles.xml36
32 files changed, 851 insertions, 0 deletions
diff --git a/res/drawable-hdpi/ic_launcher_live_wallpaper.png b/res/drawable-hdpi/ic_launcher_live_wallpaper.png
new file mode 100644
index 0000000..6277411
--- /dev/null
+++ b/res/drawable-hdpi/ic_launcher_live_wallpaper.png
Binary files differ
diff --git a/res/drawable-hdpi/livewallpaper_placeholder.png b/res/drawable-hdpi/livewallpaper_placeholder.png
new file mode 100644
index 0000000..3743489
--- /dev/null
+++ b/res/drawable-hdpi/livewallpaper_placeholder.png
Binary files differ
diff --git a/res/drawable-mdpi/ic_launcher_live_wallpaper.png b/res/drawable-mdpi/ic_launcher_live_wallpaper.png
new file mode 100644
index 0000000..6de7aaf
--- /dev/null
+++ b/res/drawable-mdpi/ic_launcher_live_wallpaper.png
Binary files differ
diff --git a/res/drawable-mdpi/livewallpaper_placeholder.png b/res/drawable-mdpi/livewallpaper_placeholder.png
new file mode 100644
index 0000000..6a51d0b
--- /dev/null
+++ b/res/drawable-mdpi/livewallpaper_placeholder.png
Binary files differ
diff --git a/res/layout/live_wallpaper_entry.xml b/res/layout/live_wallpaper_entry.xml
new file mode 100644
index 0000000..529371e
--- /dev/null
+++ b/res/layout/live_wallpaper_entry.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+
+ android:paddingLeft="6dip"
+ android:paddingRight="6dip"
+ android:paddingTop="6dip"
+ android:paddingBottom="6dip"
+
+ android:minHeight="?android:attr/listPreferredItemHeight">
+
+ <ImageView
+ android:id="@+id/thumbnail"
+
+ android:layout_width="@dimen/live_wallpaper_thumbnail_width"
+ android:layout_height="@dimen/live_wallpaper_thumbnail_width"
+
+ android:layout_gravity="center_vertical"
+
+ android:scaleType="centerCrop" />
+
+ <LinearLayout
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+
+ android:layout_marginLeft="10dip"
+ android:layout_marginRight="8dip"
+ android:layout_centerVertical="true"
+ android:layout_toRightOf="@id/thumbnail"
+
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/title_author"
+
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+
+ android:textAppearance="?android:attr/textAppearanceMedium"
+
+ android:singleLine="true"
+ android:ellipsize="marquee" />
+
+ <TextView
+ android:id="@+id/description"
+
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+
+ android:textAppearance="?android:attr/textAppearanceSmall"
+
+ android:maxLines="3" />
+
+ </LinearLayout>
+
+</RelativeLayout>
diff --git a/res/layout/live_wallpaper_list.xml b/res/layout/live_wallpaper_list.xml
new file mode 100644
index 0000000..bab79ff
--- /dev/null
+++ b/res/layout/live_wallpaper_list.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+
+<merge xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <ListView
+ android:id="@android:id/list"
+
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+
+ android:drawSelectorOnTop="false" />
+
+ <TextView
+ android:id="@android:id/empty"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+
+ android:gravity="center"
+ android:visibility="gone"
+
+ android:text="@string/live_wallpaper_empty"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+</merge> \ No newline at end of file
diff --git a/res/layout/live_wallpaper_loading.xml b/res/layout/live_wallpaper_loading.xml
new file mode 100644
index 0000000..7dd375e
--- /dev/null
+++ b/res/layout/live_wallpaper_loading.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+
+ android:gravity="center"
+
+ android:text="@string/live_wallpaper_loading"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
diff --git a/res/layout/live_wallpaper_preview.xml b/res/layout/live_wallpaper_preview.xml
new file mode 100644
index 0000000..d5da853
--- /dev/null
+++ b/res/layout/live_wallpaper_preview.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+
+ android:layout_gravity="center_horizontal|bottom"
+
+ android:paddingBottom="4dip">
+
+ <Button
+ android:layout_width="160dip"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+
+ android:text="@string/wallpaper_instructions"
+
+ android:onClick="setLiveWallpaper" />
+
+ <Button
+ android:id="@+id/configure"
+
+ android:layout_width="160dip"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+
+ android:text="@string/configure_wallpaper"
+
+ android:onClick="configureLiveWallpaper" />
+
+</LinearLayout>
diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml
new file mode 100644
index 0000000..8b98a41
--- /dev/null
+++ b/res/values-cs/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Aktivní tapety"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Náhled aktivní tapety"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Nastavení…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Nastavit tapetu"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Žádné aktivní tapety."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Nastavit tapetu"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> (autor: <xliff:g id="AUTHOR">%2$s</xliff:g>)"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Načítání aktivní tapety…"</string>
+</resources>
diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml
new file mode 100644
index 0000000..aa242c2
--- /dev/null
+++ b/res/values-da/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Live tapet"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Eksempelvisning af Levende tapet"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Indstillinger …"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Angiv tapet"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Intet levende tapet"</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Angiv tapet"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>af <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Indlæser levende tapet…"</string>
+</resources>
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
new file mode 100644
index 0000000..b6b65fb
--- /dev/null
+++ b/res/values-de/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Live-Hintergrundbilder"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Vorschau für Live-Hintergrundbild"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Einstellungen…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Hintergrund festlegen"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Keine Live-Hintergrundbilder"</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Hintergrundbild festlegen"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> von <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Live-Hintergrundbild wird geladen…"</string>
+</resources>
diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml
new file mode 100644
index 0000000..3a389db
--- /dev/null
+++ b/res/values-el/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Επιλογέας ταπετσαρίας Live"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Κινούμενες ταπετσαρίες του "</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Προεπισκόπηση κινούμενης ταπετσαρίας"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Ρυθμίσεις…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Ορισμός ταπετσαρίας"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Δεν υπάρχουν ζωντανές ταπετσαρίες."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Ορισμός ταπετσαρίας"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>του/της <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Φόρτωση κινούμενης ταπετσαρίας…"</string>
+</resources>
diff --git a/res/values-es-rUS/strings.xml b/res/values-es-rUS/strings.xml
new file mode 100644
index 0000000..336e250
--- /dev/null
+++ b/res/values-es-rUS/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Fondos de pantalla animados"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Vista previa del fondo de pantalla animado"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Configuración…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Definir papel tapiz"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"No se han elegido como fondos de pantalla."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Definir como fondo de pantalla"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>por <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Cargando fondo de pantalla animado…"</string>
+</resources>
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
new file mode 100644
index 0000000..652f24c
--- /dev/null
+++ b/res/values-es/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Selector de fondo de pantalla animado"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Fondos de pantalla animados"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Vista previa de fondo de pantalla animado"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Configuración…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Establecer fondo de pantalla"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"No hay ningún fondo de pantalla animado."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Establecer fondo de pantalla"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> de <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Cargando fondo de pantalla animado…"</string>
+</resources>
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
new file mode 100644
index 0000000..bb63382
--- /dev/null
+++ b/res/values-fr/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Sélecteur de fond d\'écran animé"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Fonds d\'écran animés"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Aperçu du fond d\'écran animé"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Paramètres…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Sélectionner"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Sans fond d\'écran animé"</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Sélectionner"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> de <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Chargement du fond d\'écran animé…"</string>
+</resources>
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
new file mode 100644
index 0000000..a92b0e2
--- /dev/null
+++ b/res/values-it/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Selettore sfondo animato"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Sfondi live"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Anteprima sfondo live"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Impostazioni…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Imposta sfondo"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Nessuno sfondo animato."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Imposta sfondo"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> di <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Caricamento sfondo live in corso…"</string>
+</resources>
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
new file mode 100644
index 0000000..9f040d3
--- /dev/null
+++ b/res/values-ja/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"ライブ壁紙"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"ライブ壁紙のプレビュー"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"設定..."</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"壁紙に設定"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"ライブ壁紙がありません。"</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"壁紙を設定"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>(作成者: <xliff:g id="AUTHOR">%2$s</xliff:g>)"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"ライブ壁紙を読み込み中…"</string>
+</resources>
diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml
new file mode 100644
index 0000000..e0c635a
--- /dev/null
+++ b/res/values-ko/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"라이브 배경화면 선택기"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"라이브 배경화면"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"라이브 배경화면 미리보기"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"설정…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"배경화면 설정"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"라이브 배경화면이 없습니다."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"배경화면 설정"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> 개발자: <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"라이브 배경화면 로드 중..."</string>
+</resources>
diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml
new file mode 100644
index 0000000..1ceb08e
--- /dev/null
+++ b/res/values-nb/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Aktive bakgrunner"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Forhåndsvisning av aktive bakgrunner"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Innstillinger"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Velg bakgrunnsbilde"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Ingen levende bakgrunnsbilder."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Velg bakgrunnsbilde"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> av <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Laster inn aktive bakgrunner ..."</string>
+</resources>
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
new file mode 100644
index 0000000..136f0b1
--- /dev/null
+++ b/res/values-nl/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live achtergrondkiezer"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Live achtergronden"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Voorbeeld van live achtergrond"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Instellingen…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Achtergrond instellen"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Geen live achtergronden."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Achtergrond instellen"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> door <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Live achtergrond laden…"</string>
+</resources>
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
new file mode 100644
index 0000000..13999f1
--- /dev/null
+++ b/res/values-pl/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Aktywne tapety"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Podgląd animowanej tapety"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Ustawienia…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Ustaw tapetę"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Brak aktywnych tapet."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Ustaw tapetę"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>, autor: <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Wczytywanie aktywnej tapety…"</string>
+</resources>
diff --git a/res/values-pt-rPT/strings.xml b/res/values-pt-rPT/strings.xml
new file mode 100644
index 0000000..d6b3fe9
--- /dev/null
+++ b/res/values-pt-rPT/strings.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <!-- no translation found for live_wallpaper_picker_title (6161053357728149149) -->
+ <skip />
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Pré-visualização da imagem de fundo activa"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Definições…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Definir imagem de fundo"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Não há imagens de fundo em directo."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Definir imagem de fundo"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> de <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <!-- no translation found for live_wallpaper_loading (2488371303130330734) -->
+ <skip />
+</resources>
diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml
new file mode 100644
index 0000000..4e268fd
--- /dev/null
+++ b/res/values-pt/strings.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Selecionador de plano de fundo ativo"</string>
+ <!-- no translation found for live_wallpaper_picker_title (6161053357728149149) -->
+ <skip />
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Visualização do plano de fundo ativo"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Configurações…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Definir papel de parede"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Não há planos de fundo ativos."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Definir plano de fundo"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> por <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <!-- no translation found for live_wallpaper_loading (2488371303130330734) -->
+ <skip />
+</resources>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
new file mode 100644
index 0000000..96ee0ad
--- /dev/null
+++ b/res/values-ru/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Анимированные фоновые рисунки"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Предварительный просмотр анимированного фонового рисунка"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Настройки…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Установить обои"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Анимированные фоновые рисунки отсутствуют."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Установить фоновый рисунок"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>, автор: <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Загрузка анимированного фонового рисунка…"</string>
+</resources>
diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml
new file mode 100644
index 0000000..160ae89
--- /dev/null
+++ b/res/values-sv/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Live Wallpaper Picker"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Rörliga bakgrunder"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Förhandsgranskning av rörlig bakgrund"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Inställningar…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Ange bakgrund"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Inga live-bakgrunder."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Ange bakgrund"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> av <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Läser in bakgrund…"</string>
+</resources>
diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml
new file mode 100644
index 0000000..913f299
--- /dev/null
+++ b/res/values-tr/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"Canlı Duvar Kağıdı Seçicisi"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"Canlı duvar kağıtları"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"Canlı duvar kağıdı önizlemesi"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"Ayarlar…"</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"Duvar kağıdını ayarla"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"Canlı duvar kağıdı yok."</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"Duvar kağıdını ayarla"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> Oluşturan: <xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"Canlı duvar kağıdı yükleniyor…"</string>
+</resources>
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
new file mode 100644
index 0000000..711d812
--- /dev/null
+++ b/res/values-zh-rCN/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"动态壁纸选择器"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"当前壁纸"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"当前壁纸预览"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"设置..."</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"设置壁纸"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"无当前壁纸。"</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"设置壁纸"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g>提供者:<xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"正在载入当前壁纸…"</string>
+</resources>
diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml
new file mode 100644
index 0000000..2348596
--- /dev/null
+++ b/res/values-zh-rTW/strings.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+<resources xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <string name="application_name" msgid="4119979710394894209">"即時桌布挑選器"</string>
+ <string name="live_wallpaper_picker_title" msgid="6161053357728149149">"即時桌布"</string>
+ <string name="live_wallpaper_preview_title" msgid="1130080613611954763">"即時桌布預覽"</string>
+ <string name="configure_wallpaper" msgid="7396598925806288258">"設定..."</string>
+ <string name="wallpaper_instructions" msgid="4215640646180727542">"設定桌布"</string>
+ <string name="live_wallpaper_empty" msgid="4278728108785853407">"沒有即時桌布。"</string>
+ <string name="set_live_wallpaper" msgid="2381437614949033266">"設定桌布"</string>
+ <string name="wallpaper_title_and_author" msgid="8891734217843935304">"<xliff:g id="TITLE">%1$s</xliff:g> 製作者:<xliff:g id="AUTHOR">%2$s</xliff:g>"</string>
+ <string name="live_wallpaper_loading" msgid="2488371303130330734">"正在載入即時桌布..."</string>
+</resources>
diff --git a/res/values/colors.xml b/res/values/colors.xml
new file mode 100644
index 0000000..d49e104
--- /dev/null
+++ b/res/values/colors.xml
@@ -0,0 +1,24 @@
+<?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.
+*/
+-->
+
+<resources>
+ <color name="live_wallpaper_thumbnail_background">#CC666666</color>
+ <color name="live_wallpaper_thumbnail_text_color">#FFFFFFFF</color>
+</resources>
+
diff --git a/res/values/dimensions.xml b/res/values/dimensions.xml
new file mode 100644
index 0000000..d0ee3a6
--- /dev/null
+++ b/res/values/dimensions.xml
@@ -0,0 +1,25 @@
+<?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.
+*/
+-->
+
+<resources>
+ <dimen name="live_wallpaper_thumbnail_text_size">14dip</dimen>
+ <dimen name="live_wallpaper_thumbnail_text_offset">12dip</dimen>
+ <dimen name="live_wallpaper_thumbnail_width">75dip</dimen>
+ <dimen name="live_wallpaper_thumbnail_height">75dip</dimen>
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..c070c61
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,43 @@
+<?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.
+*/
+-->
+
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <!-- General -->
+ <skip />
+ <!-- Application name -->
+ <string name="application_name">Live Wallpaper Picker</string>
+ <!-- Title for the screen that lets the user choose a live wallpaper to use
+ for the system. -->
+ <string name="live_wallpaper_picker_title">Live wallpapers</string>
+ <!-- Title for the screen that lets the user preview a live wallpaper. -->
+ <string name="live_wallpaper_preview_title">Live wallpaper preview</string>
+ <!-- List item for configuring the current wallpaper -->
+ <string name="configure_wallpaper">Settings…</string>
+ <!-- Button label on Wallpaper Gallery screen; user selects this button to set a specific wallpaper -->
+ <string name="wallpaper_instructions">Set wallpaper</string>
+ <!-- Warning message, no live wallpapers available. -->
+ <string name="live_wallpaper_empty">No live wallpapers.</string>
+ <!-- Button label, action, sets the currently selected wallpaper. -->
+ <string name="set_live_wallpaper">Set wallpaper</string>
+ <!-- Label, title and author of the live wallpaper -->
+ <string name="wallpaper_title_and_author"><xliff:g id="title" example="Galaxy">%1$s</xliff:g> by <xliff:g id="author" example="Google">%2$s</xliff:g></string>
+ <!-- Message, tells the user the selected live wallpaper is loading. -->
+ <string name="live_wallpaper_loading">Loading live wallpaper…</string>
+
+</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 0000000..a55fbdb
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,36 @@
+<?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.
+*/
+-->
+
+<resources>
+ <style name="WallpaperTitle">
+ <item name="android:textSize">20dip</item>
+ <item name="android:shadowColor">#FF000000</item>
+ <item name="android:shadowRadius">2.5</item>
+ <item name="android:shadowDx">0</item>
+ <item name="android:shadowDy">0</item>
+ <item name="android:textColor">#FFFFFFFF</item>
+ <item name="android:gravity">left</item>
+ </style>
+
+ <style name="Preview" parent="@android:style/Theme.NoTitleBar">
+ <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:colorBackgroundCacheHint">@null</item>
+ <item name="android:windowAnimationStyle">@android:style/Animation.Activity</item>
+ </style>
+</resources>