summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 19:32:40 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 19:32:40 -0800
commit2dd83ce992eaaf3d44c32bc7468b47e3db014027 (patch)
treef44e5351473a18e86a89e3bfe46914d66e8e1b3b /res
parent1edb39f280d23b3a87db45b63c2f26850d68eafe (diff)
downloadandroid_packages_providers_DownloadProvider-2dd83ce992eaaf3d44c32bc7468b47e3db014027.tar.gz
android_packages_providers_DownloadProvider-2dd83ce992eaaf3d44c32bc7468b47e3db014027.tar.bz2
android_packages_providers_DownloadProvider-2dd83ce992eaaf3d44c32bc7468b47e3db014027.zip
auto import from //depot/cupcake/@135843
Diffstat (limited to 'res')
-rw-r--r--res/layout/status_bar_ongoing_event_progress_bar.xml109
-rw-r--r--res/values-cs/strings.xml31
-rw-r--r--res/values-de/strings.xml31
-rw-r--r--res/values-es/strings.xml31
-rw-r--r--res/values-fr/strings.xml31
-rw-r--r--res/values-it/strings.xml31
-rw-r--r--res/values-ja/strings.xml31
-rw-r--r--res/values-ko/strings.xml31
-rw-r--r--res/values-nb/strings.xml32
-rw-r--r--res/values-nl/strings.xml31
-rw-r--r--res/values-pl/strings.xml31
-rw-r--r--res/values-ru/strings.xml31
-rw-r--r--res/values-zh-rCN/strings.xml31
-rw-r--r--res/values-zh-rTW/strings.xml31
-rw-r--r--res/values/strings.xml119
15 files changed, 632 insertions, 0 deletions
diff --git a/res/layout/status_bar_ongoing_event_progress_bar.xml b/res/layout/status_bar_ongoing_event_progress_bar.xml
new file mode 100644
index 00000000..d81c42ba
--- /dev/null
+++ b/res/layout/status_bar_ongoing_event_progress_bar.xml
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+** Copyright 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.
+*/
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:background="@android:drawable/status_bar_item_app_background"
+ >
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="horizontal"
+ >
+
+ <LinearLayout
+ android:layout_width="40dp"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:paddingTop="8dp"
+ android:focusable="true"
+ android:clickable="true"
+ >
+ <com.android.server.status.AnimatedImageView
+ android:id="@+id/appIcon"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:src="@android:drawable/sym_def_app_icon"
+ />
+ <TextView android:id="@+id/progress_text"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="#ff000000"
+ android:singleLine="true"
+ android:textSize="14sp"
+ android:layout_gravity="center_horizontal"
+ />
+ </LinearLayout>
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:focusable="true"
+ android:clickable="true"
+ >
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:focusable="true"
+ android:clickable="true"
+ android:layout_alignParentTop="true"
+ android:paddingTop="10dp"
+ >
+ <TextView android:id="@+id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:textSize="18sp"
+ android:textColor="#ff000000"
+ android:paddingLeft="2dp"
+ />
+ <TextView android:id="@+id/description"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="#ff000000"
+ android:singleLine="true"
+ android:textSize="14sp"
+ android:paddingLeft="5dp"
+ />
+ </LinearLayout>
+ <ProgressBar android:id="@+id/progress_bar"
+ style="?android:attr/progressBarStyleHorizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:paddingBottom="8dp"
+ android:paddingRight="25dp"
+ />
+ </RelativeLayout>
+ </LinearLayout>
+
+ <com.android.server.status.AnimatedImageView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:src="@android:drawable/divider_horizontal_bright"
+ />
+
+</LinearLayout>
+
diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml
new file mode 100644
index 00000000..96cd35c4
--- /dev/null
+++ b/res/values-cs/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Získat přístup ke správci stahování."</string>
+ <string name="permdesc_downloadManager">"Umožní aplikaci získat přístup ke správci stahování a stahovat pomocí něj soubory. Škodlivé aplikace mohou pomocí tohoto nastavení narušit stahování a získat přístup k soukromým informacím."</string>
+ <string name="permlab_downloadManagerAdvanced">"Pokročilé funkce správce stahování."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Umožňuje aplikaci přístup k pokročilým funkcím správce stahování."\n" Škodlivé aplikace toho mohou využít a narušit stahování nebo získat přístup k "\n" důvěrným informacím."</string>
+ <string name="permlab_cacheFilesystem">"Použít mezipaměť systému."</string>
+ <string name="permdesc_cacheFilesystem">"Umožní aplikaci získat přímý přístup k mezipaměti systému, měnit ji a mazat. Škodlivé aplikace mohou pomocí tohoto nastavení vážně narušit stahování a ostatní aplikace a získat přístup k soukromým datům."</string>
+ <string name="permlab_downloadCompletedIntent">"Odeslat oznámení o stahování."</string>
+ <string name="permdesc_downloadCompletedIntent">"Umožní aplikaci odeslat oznámení o dokončení stahování. Škodlivé aplikace mohou pomocí tohoto nastavení zmást jiné aplikace, které stahují soubory."</string>
+ <string name="download_unknown_title">"&lt;Bez názvu&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" a ještě %d"</string>
+ <string name="notification_download_complete">"Stahování bylo dokončeno"</string>
+ <string name="notification_download_failed">"Stahování bylo neúspěšné"</string>
+</resources>
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
new file mode 100644
index 00000000..224245d0
--- /dev/null
+++ b/res/values-de/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Auf Download-Manager zugreifen"</string>
+ <string name="permdesc_downloadManager">"Ermöglicht der Anwendung den Zugriff auf den Download-Manager zum Herunterladen von Dateien. Diese Funktion kann von bösartigen Anwendungen dazu verwendet werden, Ladevorgänge zu unterbrechen und auf private Daten zuzugreifen."</string>
+ <string name="permlab_downloadManagerAdvanced">"Erweiterte Funktionen des Download-Managers."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Erlaubt der Anwendung, auf die erweiterten Funktionen des Download-Managers zuzugreifen."\n" Schädliche Anwendungen können so Downloads unterbrechen und auf"\n" persönliche Daten zugreifen."</string>
+ <string name="permlab_cacheFilesystem">"Systemcache verwenden"</string>
+ <string name="permdesc_cacheFilesystem">"Ermöglicht es der Anwendung, direkt auf den Systemcache zuzugreifen und diesen zu ändern oder zu löschen. Diese Funktion kann von bösartigen Anwendungen dazu verwendet werden, Ladevorgänge und andere Anwendungen schwerwiegend zu stören sowie auf private Daten zuzugreifen."</string>
+ <string name="permlab_downloadCompletedIntent">"Benachrichtigungen zu Ladevorgängen senden"</string>
+ <string name="permdesc_downloadCompletedIntent">"Ermöglicht es der Anwendung, Benachrichtigungen zu abgeschlossenen Ladevorgängen zu senden. Diese Funktion kann von bösartigen Anwendungen dazu verwendet werden, den Ladevorgang anderer Anwendungen zu stören."</string>
+ <string name="download_unknown_title">"&lt;Unbenannt&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" und %d weitere"</string>
+ <string name="notification_download_complete">"Ladevorgang abgeschlossen"</string>
+ <string name="notification_download_failed">"Fehler beim Ladevorgang"</string>
+</resources>
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
new file mode 100644
index 00000000..61e0dbf4
--- /dev/null
+++ b/res/values-es/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Acceso al administrador de descargas"</string>
+ <string name="permdesc_downloadManager">"Permite que la aplicación acceda al administrador de descargas y lo utilice para descargar archivos. Las aplicaciones malintencionadas pueden utilizar este permiso para provocar daños en las descargas y acceder a información privada."</string>
+ <string name="permlab_downloadManagerAdvanced">"Funciones avanzadas del administrador de descargas"</string>
+ <string name="permdesc_downloadManagerAdvanced">"Permite que la aplicación acceda a las funciones avanzadas de los administradores de descargas."\n" Las aplicaciones malintencionadas pueden utilizar este permiso para provocar daños en las descargas"\n" y acceder a información privada."</string>
+ <string name="permlab_cacheFilesystem">"Uso de la memoria caché del sistema"</string>
+ <string name="permdesc_cacheFilesystem">"Permite que la aplicación acceda directamente a la memoria caché del sistema, la modifique y la elimine. Las aplicaciones malintencionadas pueden utilizar este permiso para provocar graves daños en las descargas y en otras aplicaciones, así como para acceder a datos privados."</string>
+ <string name="permlab_downloadCompletedIntent">"Envío de notificaciones de descarga"</string>
+ <string name="permdesc_downloadCompletedIntent">"Permite que la aplicación envíe notificaciones sobre descargas completadas. Las aplicaciones malintencionadas pueden utilizar este permiso para confundir a otras aplicaciones que descarguen archivos."</string>
+ <string name="download_unknown_title">"&lt;Sin título&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" y %d más"</string>
+ <string name="notification_download_complete">"Descarga completada"</string>
+ <string name="notification_download_failed">"Descarga incorrecta"</string>
+</resources>
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
new file mode 100644
index 00000000..dd1693a3
--- /dev/null
+++ b/res/values-fr/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Accéder au gestionnaire de téléchargement."</string>
+ <string name="permdesc_downloadManager">"Permet à l\'application d\'accéder au gestionnaire de téléchargement et de l\'utiliser pour télécharger des fichiers. Les applications malveillantes peuvent s\'en servir pour entraver les téléchargements et accéder aux informations personnelles."</string>
+ <string name="permlab_downloadManagerAdvanced">"Fonctions avancées du gestionnaire de téléchargement."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Permet à l\'application d\'accéder aux fonctions avancées des gestionnaires de téléchargements."\n" Des applications malveillantes peuvent utiliser cette option pour perturber les téléchargements et accéder"\n" à des informations confidentielles."</string>
+ <string name="permlab_cacheFilesystem">"Utiliser le cache système"</string>
+ <string name="permdesc_cacheFilesystem">"Permet à l\'application d\'accéder directement au cache système, de le modifier et de le supprimer. Les applications malveillantes peuvent s\'en servir pour entraver sévèrement les téléchargements et autres applications et pour accéder à des données personnelles."</string>
+ <string name="permlab_downloadCompletedIntent">"Envoyer des notifications de téléchargement."</string>
+ <string name="permdesc_downloadCompletedIntent">"Permet à l\'application d\'envoyer des notifications concernant les téléchargements effectués. Les applications malveillantes peuvent s\'en servir pour tromper les autres applications de téléchargement de fichiers."</string>
+ <string name="download_unknown_title">"&lt;Sans_titre&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" et %d autres"</string>
+ <string name="notification_download_complete">"Téléchargement terminé."</string>
+ <string name="notification_download_failed">"Échec du téléchargement"</string>
+</resources>
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
new file mode 100644
index 00000000..38b353c6
--- /dev/null
+++ b/res/values-it/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Accedere al gestore dei download."</string>
+ <string name="permdesc_downloadManager">"Consente l\'accesso dell\'applicazione al gestore dei download e il suo utilizzo per scaricare file. Le applicazioni dannose possono sfruttare questa possibilità per interrompere download e accedere a informazioni riservate."</string>
+ <string name="permlab_downloadManagerAdvanced">"Funzioni avanzate del gestore dei download."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Consente l\'accesso dell\'applicazione alle funzioni avanzate del gestore dei download."\n" Le applicazioni dannose possono sfruttare questa possibilità per interrompere download e accedere a"\n" informazioni riservate."</string>
+ <string name="permlab_cacheFilesystem">"Usare la cache del sistema."</string>
+ <string name="permdesc_cacheFilesystem">"Consente l\'accesso diretto dell\'applicazione alla cache del sistema, nonché la modifica e l\'eliminazione della cache. Le applicazioni dannose possono sfruttare questa possibilità per interrompere download e altre applicazioni e accedere a dati riservati."</string>
+ <string name="permlab_downloadCompletedIntent">"Inviare notifiche di download."</string>
+ <string name="permdesc_downloadCompletedIntent">"Consente l\'invio da parte dell\'applicazione di notifiche relative ai download completati. Le applicazioni dannose possono sfruttare questa possibilità per \"confondere\" altre applicazioni usate per scaricare file."</string>
+ <string name="download_unknown_title">"&lt;Senza nome&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" e altri %d"</string>
+ <string name="notification_download_complete">"Download completato"</string>
+ <string name="notification_download_failed">"Download non riuscito"</string>
+</resources>
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
new file mode 100644
index 00000000..ceb551c4
--- /dev/null
+++ b/res/values-ja/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"ダウンロードマネージャーにアクセスします。"</string>
+ <string name="permdesc_downloadManager">"ダウンロードマネージャーにアクセスしてファイルをダウンロードすることをアプリケーションに許可します。悪意のあるアプリケーションがこれを利用して、ダウンロードに深刻な影響を与えたり、個人データにアクセスしたりする恐れがあり。"</string>
+ <string name="permlab_downloadManagerAdvanced">"ダウンロードマネージャーの高度な機能です。"</string>
+ <string name="permdesc_downloadManagerAdvanced">"ダウンロードマネージャーの高度な機能にアプリケーションでアクセスできるようにします。"\n" 悪意のあるアプリケーションではこれを利用して、ダウンロードに深刻な影響を与えたり、"\n" 個人情報にアクセスしたりできます。"</string>
+ <string name="permlab_cacheFilesystem">"システムキャッシュを使用します。"</string>
+ <string name="permdesc_cacheFilesystem">"システムキャッシュの直接アクセス、変更、削除をアプリケーションに許可します。悪意のあるアプリケーションがダウンロードや他のアプリケーションに深刻な影響を与えたり、個人データにアクセスする恐れがあります。"</string>
+ <string name="permlab_downloadCompletedIntent">"ダウンロード通知を送信します。"</string>
+ <string name="permdesc_downloadCompletedIntent">"ダウンロード完了の通知の送信をアプリケーションに許可します。悪意のあるアプリケーションがファイルをダウンロードする他のアプリケーションの処理を妨害する恐れがあります。"</string>
+ <string name="download_unknown_title">"&lt;無題&gt;"</string>
+ <string name="notification_filename_separator">"、 "</string>
+ <string name="notification_filename_extras">" 他%d件"</string>
+ <string name="notification_download_complete">"ダウンロード完了"</string>
+ <string name="notification_download_failed">"ダウンロードに失敗しました"</string>
+</resources>
diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml
new file mode 100644
index 00000000..c37f4bd1
--- /dev/null
+++ b/res/values-ko/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"다운로드 관리자 액세스"</string>
+ <string name="permdesc_downloadManager">"응용 프로그램이 다운로드 관리자에 액세스하여 파일을 다운로드할 수 있습니다. 악성 응용 프로그램은 이 기능을 이용하여 다운로드를 손상시키고 개인 정보에 액세스할 수 있습니다."</string>
+ <string name="permlab_downloadManagerAdvanced">"다운로드 관리자 고급 기능"</string>
+ <string name="permdesc_downloadManagerAdvanced">"응용프로그램이 다운로드 관리자의 고급 기능에 액세스할 수 있습니다."\n" 악성 응용프로그램은 이 기능을 이용하여 다운로드를 중단시키고"\n" 개인 정보에 액세스할 수 있습니다."</string>
+ <string name="permlab_cacheFilesystem">"시스템 캐시 사용"</string>
+ <string name="permdesc_cacheFilesystem">"응용 프로그램이 시스템 캐시에 직접 액세스, 수정 및 삭제할 수 있습니다. 악성 응용 프로그램은 이 기능을 이용하여 다운로드와 기타 응용 프로그램을 심하게 손상시키고 개인 데이터에 액세스할 수 있습니다."</string>
+ <string name="permlab_downloadCompletedIntent">"다운로드 알림 보내기"</string>
+ <string name="permdesc_downloadCompletedIntent">"응용 프로그램이 완료된 다운로드에 대한 알림을 보낼 수 있습니다. 악성 응용 프로그램은 이 기능을 이용하여 파일을 다운로드하는 다른 응용 프로그램과 혼동하도록 할 수 있습니다."</string>
+ <string name="download_unknown_title">"&lt;제목없음&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" 및 %d개 이상"</string>
+ <string name="notification_download_complete">"다운로드 완료"</string>
+ <string name="notification_download_failed">"다운로드 실패"</string>
+</resources>
diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml
new file mode 100644
index 00000000..548d737d
--- /dev/null
+++ b/res/values-nb/strings.xml
@@ -0,0 +1,32 @@
+<?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="permlab_downloadManager">"Få tilgang til nedlasteren."</string>
+ <string name="permdesc_downloadManager">"Gir applikasjonen tilgang til nedlasteren, og å bruke den til å laste ned filer. Ondsinnede programmer kan bruke dette til å forstyrre nedlastinger og få tilgang til privat informasjon."</string>
+ <string name="permlab_downloadManagerAdvanced">"Avansert nedlastingsfunksjonalitet."</string>
+ <!-- no translation found for permdesc_downloadManagerAdvanced (8761177317775872287) -->
+ <skip />
+ <string name="permlab_cacheFilesystem">"Bruke systemets hurtigbuffer."</string>
+ <string name="permdesc_cacheFilesystem">"Gir applikasjonen direkte tilgang til systemets hurtigbuffer, inkludert å redigere og slette den. Ondsinnede applikasjoner kan bruke dette til å forstyrre nedlastinger og andre applikasjoner, og til å få tilgang til privat informasjon."</string>
+ <string name="permlab_downloadCompletedIntent">"Sende nedlastingsvarslinger"</string>
+ <string name="permdesc_downloadCompletedIntent">"Lar applikasjonen sende varslinger om ferdige nedlastinger. Ondsinnede applikasjoner kan bruke dette for å forvirre andre applikasjoner som laster ned filer."</string>
+ <string name="download_unknown_title">"&lt;Uten navn&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" samt %d til"</string>
+ <string name="notification_download_complete">"Ferdig nedlasting"</string>
+ <string name="notification_download_failed">"Mislykket nedlasting"</string>
+</resources>
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
new file mode 100644
index 00000000..cdaaf544
--- /dev/null
+++ b/res/values-nl/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Downloadbeheer weergeven."</string>
+ <string name="permdesc_downloadManager">"Hiermee kan de toepassing Downloadbeheer gebruiken om bestanden te downloaden. Kwaadwillende toepassingen kunnen hiervan gebruikmaken om downloads te verstoren en om toegang te krijgen tot privégegevens."</string>
+ <string name="permlab_downloadManagerAdvanced">"Geavanceerde functies van de downloadbeheerder."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Hiermee krijgt de toepassing toegang tot de geavanceerde functies van de downloadbeheerder."\n" Schadelijke toepassingen kunnen hiermee downloads onderbreken en toegang krijgen tot uw "\n" privégegevens."</string>
+ <string name="permlab_cacheFilesystem">"Systeemcache gebruiken."</string>
+ <string name="permdesc_cacheFilesystem">"Hiermee kan de toepassing rechtstreeks de systeemcache openen, aanpassen of wissen. Kwaadwillende toepassingen kunnen hiervan gebruikmaken om downloads en andere toepassingen te verstoren en om toegang te krijgen tot privégegevens."</string>
+ <string name="permlab_downloadCompletedIntent">"Downloadmeldingen verzenden."</string>
+ <string name="permdesc_downloadCompletedIntent">"Hiermee ontvangt u een melding zodra een download is voltooid. Kwaadwillende toepassingen kunnen hiervan gebruikmaken om andere toepassingen die bestanden downloaden, in de war te brengen."</string>
+ <string name="download_unknown_title">"&lt;Zonder titel&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" en nog %d"</string>
+ <string name="notification_download_complete">"Downloaden is voltooid"</string>
+ <string name="notification_download_failed">"Downloaden is mislukt."</string>
+</resources>
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
new file mode 100644
index 00000000..6e77eafc
--- /dev/null
+++ b/res/values-pl/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Dostęp do menedżera pobierania."</string>
+ <string name="permdesc_downloadManager">"Umożliwia programowi dostęp do menedżera pobierania i pobieranie plików przy jego użyciu. Szkodliwe programy mogą w ten sposób zakłócić pobieranie i uzyskać dostęp do prywatnych informacji."</string>
+ <string name="permlab_downloadManagerAdvanced">"Zaawansowane funkcje menedżera pobierania."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Zezwala aplikacji na dostęp do zaawansowanych funkcji menedżera pobierania."\n" Złośliwe aplikacje mogą to wykorzystać do przerywania pobierania i uzyskiwania dostępu do"\n" informacji poufnych."</string>
+ <string name="permlab_cacheFilesystem">"Korzystanie z systemowej pamięci podręcznej."</string>
+ <string name="permdesc_cacheFilesystem">"Umożliwia programowi bezpośredni dostęp do systemowej pamięci podręcznej, jej modyfikację oraz usuwanie. Szkodliwe programy mogą w ten sposób poważnie zakłócić pobieranie plików i działanie innych programów, a także uzyskać dostęp do prywatnych informacji."</string>
+ <string name="permlab_downloadCompletedIntent">"Wysyłanie powiadomień o pobraniu."</string>
+ <string name="permdesc_downloadCompletedIntent">"Umożliwia programowi wysyłanie powiadomień o ukończeniu pobierania. Szkodliwe programy mogą korzystać z tego uprawnienia, aby zakłócić działanie innych programów pobierających pliki."</string>
+ <string name="download_unknown_title">"&lt;Bez nazwy&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" i %d innych"</string>
+ <string name="notification_download_complete">"Pobieranie zakończone."</string>
+ <string name="notification_download_failed">"Pobieranie nie powiodło się"</string>
+</resources>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
new file mode 100644
index 00000000..a76850f2
--- /dev/null
+++ b/res/values-ru/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"Открывать диспетчер загрузок."</string>
+ <string name="permdesc_downloadManager">"Разрешает приложениям доступ к диспетчеру загрузок и его использование для загрузки файлов. Вредоносные приложения могут использовать это для прерывания загрузок и получения доступа к личной информации."</string>
+ <string name="permlab_downloadManagerAdvanced">"Дополнительные функции диспетчера загрузок."</string>
+ <string name="permdesc_downloadManagerAdvanced">"Разрешает приложению доступ к дополнительным функциям диспетчера загрузок."\n" Вредоносное ПО может использовать это для прерывания загрузок и получения доступа"\n" к личной информации."</string>
+ <string name="permlab_cacheFilesystem">"Использовать кэш системы"</string>
+ <string name="permdesc_cacheFilesystem">"Разрешает приложениям прямой доступ, изменение и удаление в системном кэше. Вредоносные приложения могут использовать это для прерывания загрузок и работы других приложений, а также для получения доступа к личной информации."</string>
+ <string name="permlab_downloadCompletedIntent">"Отправлять уведомления о загрузках."</string>
+ <string name="permdesc_downloadCompletedIntent">"Разрешает приложениям отправлять уведомления о завершенных загрузках. Вредоносные приложения могут использовать это, чтобы передавать ложную информацию другим приложениям загрузки файлов."</string>
+ <string name="download_unknown_title">"&lt;Без названия&gt;"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" и еще %d"</string>
+ <string name="notification_download_complete">"Загрузка завершена"</string>
+ <string name="notification_download_failed">"Загрузка не удалась"</string>
+</resources>
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
new file mode 100644
index 00000000..7802b9bd
--- /dev/null
+++ b/res/values-zh-rCN/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"访问下载管理程序。"</string>
+ <string name="permdesc_downloadManager">"允许应用程序访问下载管理程序以及将其用于下载文件。恶意应用程序可以使用该功能干扰下载,以及访问隐私信息。"</string>
+ <string name="permlab_downloadManagerAdvanced">"高级下载管理程序功能。"</string>
+ <string name="permdesc_downloadManagerAdvanced">"允许应用程序访问下载管理程序高级功能。"\n" 恶意应用程序可能会使用此权限干扰下载,以及"\n" 访问隐私信息。"</string>
+ <string name="permlab_cacheFilesystem">"使用系统缓存。"</string>
+ <string name="permdesc_cacheFilesystem">"允许应用程序直接访问、修改和删除系统缓存。恶意应用程序可以使用该功能严重干扰下载和其他应用程序,以及访问隐私数据。"</string>
+ <string name="permlab_downloadCompletedIntent">"发送下载通知。"</string>
+ <string name="permdesc_downloadCompletedIntent">"允许应用程序发送关于已完成下载的通知。恶意应用程序可以使用该功能干扰其他下载文件的应用程序。"</string>
+ <string name="download_unknown_title">"&lt;未命名&gt;"</string>
+ <string name="notification_filename_separator">"、 "</string>
+ <string name="notification_filename_extras">" 以及另外 %d 个"</string>
+ <string name="notification_download_complete">"下载完成"</string>
+ <string name="notification_download_failed">"下载不成功"</string>
+</resources>
diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml
new file mode 100644
index 00000000..0bf222bc
--- /dev/null
+++ b/res/values-zh-rTW/strings.xml
@@ -0,0 +1,31 @@
+<?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="permlab_downloadManager">"存取下載管理員。"</string>
+ <string name="permdesc_downloadManager">"允許應用程式存取下載管理員,並使用它下載檔案。惡意程式可使用此功能,影響下載並存取個人資料。"</string>
+ <string name="permlab_downloadManagerAdvanced">"下載管理員進階功能。"</string>
+ <string name="permdesc_downloadManagerAdvanced">"允許應用程式存取下載管理員的進階功能。"\n" 惡意應用程式可能使用此功能讓下載發生錯誤並存取私人資訊。"\n</string>
+ <string name="permlab_cacheFilesystem">"使用系統快取。"</string>
+ <string name="permdesc_cacheFilesystem">"允許應用程式直接存取、修改與刪除系統快取。惡意程式可使用此功能,嚴重影響下載與其他應用程式,並存取個人資料。"</string>
+ <string name="permlab_downloadCompletedIntent">"傳送下載通知。"</string>
+ <string name="permdesc_downloadCompletedIntent">"下載完成時,允許應用程式送出通知。惡意程式可使用此功能干擾其他正在下載檔案的應用程式。"</string>
+ <string name="download_unknown_title">"(未命名)"</string>
+ <string name="notification_filename_separator">", "</string>
+ <string name="notification_filename_extras">" 還有 %d 項下載"</string>
+ <string name="notification_download_complete">"下載已完成。"</string>
+ <string name="notification_download_failed">"下載失敗"</string>
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 00000000..3a8fa076
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,119 @@
+<?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.
+-->
+
+<resources>
+ <!-- This is the short description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission controls access to the Download Manager by
+ applications that initiate downloads. -->
+ <string name="permlab_downloadManager">Access download manager.</string>
+ <!-- This is the long description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission controls access to the Download Manager by
+ applications that initiate downloads. -->
+ <string name="permdesc_downloadManager">Allows the application to
+ access the download manager and to use it to download files.
+ Malicious applications can use this to disrupt downloads and access
+ private information.</string>
+
+ <!-- This is the short description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission controls access to some advanced (and
+ dangerous) features from the Download Manager that are needed by
+ system applications but aren't necessary for regular applications
+ that just initiate plain downloads. -->
+ <string name="permlab_downloadManagerAdvanced">Advanced download
+ manager functions.</string>
+ <!-- This is the long description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission controls access to some advanced (and
+ dangerous) features from the Download Manager that are needed by
+ system applications but aren't necessary for regular applications
+ that just initiate plain downloads. -->
+ <string name="permdesc_downloadManagerAdvanced">Allows the application to
+ access the download manager's advanced functions.
+ Malicious applications can use this to disrupt downloads and access
+ private information.</string>
+
+ <!-- This is the short description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission controls access to the Download Manager's
+ private storage area. -->
+ <string name="permlab_cacheFilesystem">Use system cache.</string>
+ <!-- This is the long description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission controls access to the Download Manager's
+ private storage area. -->
+ <string name="permdesc_cacheFilesystem">Allows the application
+ to directly access, modify and delete the system cache. Malicious
+ applications can use this to severely disrupt downloads and
+ other applications, and to access private data.</string>
+
+ <string name="permlab_downloadCompletedIntent">Send download
+ notifications.</string>
+ <!-- This is the long description of a permission associated with the
+ Android Download Manager. It is displayed as part of the description
+ of any application that was granted that permission.
+ This specific permission allows an application to tell other
+ applications that their downloads have completed. -->
+ <string name="permdesc_downloadCompletedIntent">Allows the application
+ to send notifications about completed downloads. Malicious applications
+ can use this to confuse other applications that download
+ files.</string>
+
+ <!-- This is the title that is used when displaying the notification
+ for a download that doesn't have a title associated with it. -->
+ <string name="download_unknown_title">&lt;Untitled&gt;</string>
+
+ <!-- When there are multiple simultaneous outstanding downloads from a
+ single application, they are displayed as a single notification,
+ and the expanded notification view displays the first two download
+ names separated with this string, i.e. "[title], [title]"
+ or "[title], [title] and [n] more". This is the comma + space
+ that separates the first two titles, and it's used both when there
+ are exactly two and more than two titles. -->
+ <string name="notification_filename_separator">", "</string>
+
+ <!-- When there are three or more simultaneous outstanding downloads from a
+ single application, they are displayed as a single notification,
+ and the expanded notification view uses this string to indicate
+ downloads beyond the first two, i.e. "[title], [title] and [n] more".
+ This is the " and [n] more" part, including the leading space, and it's
+ used regardless of the number of additional downloads. -->
+ <string name="notification_filename_extras">" and %d more"</string>
+
+ <!-- When a download completes, a notification is displayed, and this
+ string is used to indicate that the download successfully completed.
+ Note that such a download could have been initiated by a variety of
+ applications, including (but not limited to) the browser, an email
+ application, a content marketplace. -->
+ <string name="notification_download_complete">Download complete</string>
+
+ <!-- When a download completes, a notification is displayed, and this
+ string is used to indicate that the download failed.
+ Note that such a download could have been initiated by a variety of
+ applications, including (but not limited to) the browser, an email
+ application, a content marketplace. -->
+ <string name="notification_download_failed">Download unsuccessful</string>
+
+
+</resources>