auto import from //depot/cupcake/@135843
diff --git a/res/drawable/ic_launcher_sim_toolkit.png b/res/drawable/ic_launcher_sim_toolkit.png
new file mode 100755
index 0000000..0dfec74
--- /dev/null
+++ b/res/drawable/ic_launcher_sim_toolkit.png
Binary files differ
diff --git a/res/layout/stk_event_msg.xml b/res/layout/stk_event_msg.xml
new file mode 100644
index 0000000..f6cc6d4
--- /dev/null
+++ b/res/layout/stk_event_msg.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+**
+** Copyright 2006, Google Inc.
+**
+** 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="horizontal"
+ android:background="@android:drawable/toast_frame">
+
+ <ImageView android:id="@android:id/icon"
+ android:layout_width="32dip"
+ android:layout_height="32dip"
+ android:scaleType="fitCenter" />
+
+ <TextView
+ android:id="@android:id/message"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:textAppearance="@android:style/TextAppearance.Small"
+ android:textColor="@color/bright_foreground_dark"
+ android:shadowColor="#BB000000"
+ android:shadowRadius="2.75"
+ />
+
+</LinearLayout>
\ No newline at end of file
diff --git a/res/layout/stk_input.xml b/res/layout/stk_input.xml
new file mode 100644
index 0000000..fdaa39f
--- /dev/null
+++ b/res/layout/stk_input.xml
@@ -0,0 +1,100 @@
+<?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.
+-->
+
+<ScrollView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="20dip"
+ android:layout_gravity="center_horizontal">
+ <TextView
+ android:id="@+id/prompt"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:textStyle="bold"
+ android:gravity="center_horizontal"
+ android:paddingBottom="30dip" />
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+ <LinearLayout
+ android:id="@+id/normal_layout"
+ android:visibility="visible"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_marginLeft="10dip"
+ android:layout_marginRight="10dip"
+ android:layout_height="wrap_content">
+ <LinearLayout
+ android:id="@+id/input_restriction_info"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="4dip"
+ android:orientation="horizontal">
+ <TextView
+ android:id="@+id/input_type"
+ android:gravity="left"
+ android:textColor="@color/ltgrey"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+ <TextView
+ android:id="@+id/num_of_chars"
+ android:textColor="@color/ltgrey"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="4dip" />
+ </LinearLayout>
+ <EditText
+ android:id="@+id/in_text"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginBottom="20dip"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" />
+ <Button
+ android:id="@+id/button_ok"
+ android:layout_gravity="center_horizontal"
+ android:layout_width="100sp"
+ android:layout_height="wrap_content"
+ android:textStyle="bold"
+ android:text="@string/button_ok" />
+ </LinearLayout>
+ <LinearLayout
+ android:id="@+id/yes_no_layout"
+ android:visibility="gone"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_horizontal">
+ <Button
+ android:id="@+id/button_yes"
+ android:layout_width="100sp"
+ android:layout_height="wrap_content"
+ android:textStyle="bold"
+ android:text="@string/button_yes" />
+ <Button
+ android:id="@+id/button_no"
+ android:layout_marginLeft="10dip"
+ android:layout_width="100sp"
+ android:layout_height="wrap_content"
+ android:textStyle="bold"
+ android:text="@string/button_no" />
+ </LinearLayout>
+ </LinearLayout>
+ </LinearLayout>
+</ScrollView>
diff --git a/res/layout/stk_menu_item.xml b/res/layout/stk_menu_item.xml
new file mode 100644
index 0000000..98d7828
--- /dev/null
+++ b/res/layout/stk_menu_item.xml
@@ -0,0 +1,44 @@
+<?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.
+-->
+
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:gravity="center"
+ android:orientation="horizontal">
+
+ <ImageView
+ android:id="@+id/icon"
+ android:scaleType="fitCenter"
+ android:layout_width="@android:dimen/app_icon_size"
+ android:layout_height="@android:dimen/app_icon_size"
+ android:layout_gravity="center_vertical"
+ android:layout_marginLeft="5dip"
+ />
+
+ <TextView
+ android:id="@+id/text"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:maxLength="234"
+ android:minHeight="?android:attr/listPreferredItemHeight"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:gravity="center_vertical"
+ android:layout_marginLeft="9dip"
+ />
+
+</LinearLayout>
diff --git a/res/layout/stk_menu_list.xml b/res/layout/stk_menu_list.xml
new file mode 100644
index 0000000..50e5717
--- /dev/null
+++ b/res/layout/stk_menu_list.xml
@@ -0,0 +1,42 @@
+<?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.
+-->
+
+
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
+
+ <!-- Include stk title layout. -->
+ <include
+ android:id="@+id/stk_menu_title"
+ layout="@layout/stk_title" />
+
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <ListView android:id="@android:id/list"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" />
+
+ <TextView android:id="@android:id/empty"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:textSize="12sp" />
+ </LinearLayout>
+</LinearLayout>
diff --git a/res/layout/stk_msg_dialog.xml b/res/layout/stk_msg_dialog.xml
new file mode 100644
index 0000000..c8ec5b0
--- /dev/null
+++ b/res/layout/stk_msg_dialog.xml
@@ -0,0 +1,74 @@
+<?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.
+-->
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
+
+ <LinearLayout android:id="@+id/messagePanel"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:orientation="vertical">
+ <ScrollView android:id="@+id/scrollView"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="2dip"
+ android:paddingBottom="12dip"
+ android:paddingLeft="14dip"
+ android:paddingRight="10dip">
+ <TextView android:id="@+id/dialog_message"
+ style="?android:attr/textAppearanceMedium"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="5dip" />
+ </ScrollView>
+ </LinearLayout>
+
+ <LinearLayout android:id="@+id/buttonPanel"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="54dip"
+ android:orientation="vertical" >
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:background="@color/ltgrey"
+ android:paddingTop="4dip"
+ android:paddingLeft="2dip"
+ android:paddingRight="2dip" >
+ <Button
+ android:id="@+id/button_ok"
+ android:layout_width="0dip"
+ android:layout_height="wrap_content"
+ android:layout_gravity="left"
+ android:layout_weight="1"
+ android:maxLines="2"
+ android:text="@string/button_ok" />
+ <Button
+ android:id="@+id/button_cancel"
+ android:layout_width="0dip"
+ android:layout_height="wrap_content"
+ android:layout_gravity="right"
+ android:layout_weight="1"
+ android:maxLines="2"
+ android:text="@string/button_cancel" />
+ </LinearLayout>
+ </LinearLayout>
+</LinearLayout>
diff --git a/res/layout/stk_title.xml b/res/layout/stk_title.xml
new file mode 100644
index 0000000..4d09368
--- /dev/null
+++ b/res/layout/stk_title.xml
@@ -0,0 +1,75 @@
+<?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.
+-->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:fitsSystemWindows="true">
+
+ <LinearLayout android:id="@+id/stk_title"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_centerVertical="true"
+ style="?android:attr/windowTitleBackgroundStyle" >
+
+ <LinearLayout android:id="@+id/left_container"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_weight="1"
+ android:layout_centerVertical="true">
+ <ImageView android:id="@+id/title_icon"
+ android:layout_width="16dip"
+ android:layout_height="16dip"
+ android:layout_marginLeft="2dip"
+ android:layout_marginRight="9dip"
+ android:layout_gravity="center_vertical"
+ android:layout_alignParentLeft="true"
+ android:scaleType="fitCenter" />
+
+ <TextView android:id="@+id/title_text"
+ android:gravity="center_vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ style="@android:style/TextAppearance.WindowTitle" />
+ </LinearLayout>
+
+ <LinearLayout android:id="@+id/right_container"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true">
+
+ <ProgressBar android:id="@+id/progress_bar"
+ style="?android:attr/progressBarStyleSmallTitle"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="5dip"
+ android:layout_centerVertical="true"
+ android:visibility="gone"
+ android:max="10000" />
+ </LinearLayout>
+ </LinearLayout>
+
+ <FrameLayout android:id="@android:id/content"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1"
+ android:foregroundGravity="fill_horizontal|top"
+ android:foreground="?android:attr/windowContentOverlay" />
+</LinearLayout>
diff --git a/res/layout/stk_tone_dialog.xml b/res/layout/stk_tone_dialog.xml
new file mode 100644
index 0000000..6c10110
--- /dev/null
+++ b/res/layout/stk_tone_dialog.xml
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+ * Copyright (C) 2007 Google Inc.
+ *
+ * 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="wrap_content"
+ android:layout_gravity="center"
+ android:orientation="vertical"
+ android:padding="14dip">
+
+ <ImageView
+ android:id="@+id/icon"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:scaleType="fitCenter"
+ android:gravity="center" />
+
+ <TextView
+ android:id="@+id/message"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="14dip"
+ android:gravity="center"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+</LinearLayout>
+
+
diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml
new file mode 100644
index 0000000..cc93b0f
--- /dev/null
+++ b/res/values-cs/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"Nástroje SIM"</string>
+ <string name="menu_end_session">"Ukončit relaci"</string>
+ <string name="help">"Nápověda"</string>
+ <string name="menu_back">"Zpět"</string>
+ <string name="service_name">"Název služby"</string>
+ <string name="stk_no_service">"Žádná služba není dostupná"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Zrušit"</string>
+ <string name="button_yes">"Ano"</string>
+ <string name="button_no">"Ne"</string>
+ <string name="alphabet">"Abecedy"</string>
+ <string name="digits">"Číslice (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Probíhá hovor..."</string>
+ <string name="stk_app_state">"Stav aplikace"</string>
+ <string name="enable_app">"Povoleno"</string>
+ <string name="disable_app">"Vypnuto"</string>
+</resources>
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
new file mode 100644
index 0000000..ee33189
--- /dev/null
+++ b/res/values-de/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM-Toolkit"</string>
+ <string name="menu_end_session">"Sitzung beenden"</string>
+ <string name="help">"Hilfe"</string>
+ <string name="menu_back">"Zurück"</string>
+ <string name="service_name">"Name des Dienstes"</string>
+ <string name="stk_no_service">"Kein Dienst verfügbar"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Abbrechen"</string>
+ <string name="button_yes">"Ja"</string>
+ <string name="button_no">"Nein"</string>
+ <string name="alphabet">"Buchstaben"</string>
+ <string name="digits">"Ziffern (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Verbindungsaufbau..."</string>
+ <string name="stk_app_state">"Status der Anwendung"</string>
+ <string name="enable_app">"Aktiviert"</string>
+ <string name="disable_app">"Deaktiviert"</string>
+</resources>
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
new file mode 100644
index 0000000..ba118c7
--- /dev/null
+++ b/res/values-es/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"Servicios SIM"</string>
+ <string name="menu_end_session">"Finalizar sesión"</string>
+ <string name="help">"Ayuda"</string>
+ <string name="menu_back">"Anterior"</string>
+ <string name="service_name">"Nombre de servicio"</string>
+ <string name="stk_no_service">"Ningún servicio disponible"</string>
+ <string name="button_ok">"Aceptar"</string>
+ <string name="button_cancel">"Cancelar"</string>
+ <string name="button_yes">"Sí"</string>
+ <string name="button_no">"No"</string>
+ <string name="alphabet">"Caracteres alfabéticos"</string>
+ <string name="digits">"Caracteres numéricos (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Llamada en curso..."</string>
+ <string name="stk_app_state">"Estado de la aplicación"</string>
+ <string name="enable_app">"Habilitado"</string>
+ <string name="disable_app">"Inhabilitado"</string>
+</resources>
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
new file mode 100644
index 0000000..09f2ace
--- /dev/null
+++ b/res/values-fr/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"Boîte à outils SIM"</string>
+ <string name="menu_end_session">"Fermer la session"</string>
+ <string name="help">"Aide"</string>
+ <string name="menu_back">"Retour"</string>
+ <string name="service_name">"Nom du service"</string>
+ <string name="stk_no_service">"Aucun service disponible"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Annuler"</string>
+ <string name="button_yes">"Oui"</string>
+ <string name="button_no">"Non"</string>
+ <string name="alphabet">"Alphabets"</string>
+ <string name="digits">"Chiffres (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Appel en cours..."</string>
+ <string name="stk_app_state">"État de l\'application"</string>
+ <string name="enable_app">"Activé"</string>
+ <string name="disable_app">"Désactivé"</string>
+</resources>
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
new file mode 100644
index 0000000..11b5742
--- /dev/null
+++ b/res/values-it/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"Kit strumenti SIM"</string>
+ <string name="menu_end_session">"Termina sessione"</string>
+ <string name="help">"Guida"</string>
+ <string name="menu_back">"Indietro"</string>
+ <string name="service_name">"Nome servizio"</string>
+ <string name="stk_no_service">"Nessun servizio disponibile"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Annulla"</string>
+ <string name="button_yes">"Sì"</string>
+ <string name="button_no">"No"</string>
+ <string name="alphabet">"Caratteri alfabetici"</string>
+ <string name="digits">"Cifre (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Chiamata in corso..."</string>
+ <string name="stk_app_state">"Stato applicazione"</string>
+ <string name="enable_app">"Attivato"</string>
+ <string name="disable_app">"Disattivato"</string>
+</resources>
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
new file mode 100644
index 0000000..8e10981
--- /dev/null
+++ b/res/values-ja/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM Toolkit"</string>
+ <string name="menu_end_session">"セッションを終了"</string>
+ <string name="help">"ヘルプ"</string>
+ <string name="menu_back">"戻る"</string>
+ <string name="service_name">"サービス名"</string>
+ <string name="stk_no_service">"利用できるサービスプランがありません"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"キャンセル"</string>
+ <string name="button_yes">"はい"</string>
+ <string name="button_no">"いいえ"</string>
+ <string name="alphabet">"英字"</string>
+ <string name="digits">"数字 (0-9、*、#、+)"</string>
+ <string name="default_call_setup_msg">"通話中..."</string>
+ <string name="stk_app_state">"アプリケーションの状態"</string>
+ <string name="enable_app">"有効"</string>
+ <string name="disable_app">"無効"</string>
+</resources>
diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml
new file mode 100644
index 0000000..a12bda5
--- /dev/null
+++ b/res/values-ko/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM 툴킷"</string>
+ <string name="menu_end_session">"세션 끝내기"</string>
+ <string name="help">"도움말"</string>
+ <string name="menu_back">"뒤로"</string>
+ <string name="service_name">"서비스 이름"</string>
+ <string name="stk_no_service">"서비스를 사용할 수 없음"</string>
+ <string name="button_ok">"확인"</string>
+ <string name="button_cancel">"취소"</string>
+ <string name="button_yes">"예"</string>
+ <string name="button_no">"아니오"</string>
+ <string name="alphabet">"영문자"</string>
+ <string name="digits">"숫자(0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"전화 거는 중..."</string>
+ <string name="stk_app_state">"응용프로그램 상태"</string>
+ <string name="enable_app">"사용"</string>
+ <string name="disable_app">"사용 안 함"</string>
+</resources>
diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml
new file mode 100644
index 0000000..694e6ff
--- /dev/null
+++ b/res/values-nb/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM-verktøy"</string>
+ <string name="menu_end_session">"Avslutt økt"</string>
+ <string name="help">"Hjelp"</string>
+ <string name="menu_back">"Tilbake"</string>
+ <string name="service_name">"Tjenestenavn"</string>
+ <string name="stk_no_service">"Ingen tjenester er tilgjengelig"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Avbryt"</string>
+ <string name="button_yes">"Ja"</string>
+ <string name="button_no">"Nei"</string>
+ <string name="alphabet">"Alfabeter"</string>
+ <string name="digits">"Siffer (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Anrop underveis…"</string>
+ <string name="stk_app_state">"Applikasjonstilstand"</string>
+ <string name="enable_app">"Aktivert"</string>
+ <string name="disable_app">"Deaktivert"</string>
+</resources>
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
new file mode 100644
index 0000000..cf17363
--- /dev/null
+++ b/res/values-nl/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM-toolkit"</string>
+ <string name="menu_end_session">"Sessie beëindigen"</string>
+ <string name="help">"Help"</string>
+ <string name="menu_back">"Terug"</string>
+ <string name="service_name">"Servicenaam"</string>
+ <string name="stk_no_service">"Geen service beschikbaar"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Annuleren"</string>
+ <string name="button_yes">"Ja"</string>
+ <string name="button_no">"Nee"</string>
+ <string name="alphabet">"Alfabetten"</string>
+ <string name="digits">"Symbolen (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Actieve oproep..."</string>
+ <string name="stk_app_state">"Toepassingsstatus"</string>
+ <string name="enable_app">"Ingeschakeld"</string>
+ <string name="disable_app">"Uitgeschakeld"</string>
+</resources>
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
new file mode 100644
index 0000000..b80fefb
--- /dev/null
+++ b/res/values-pl/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"Zestaw narzędzi SIM"</string>
+ <string name="menu_end_session">"Zakończ sesję"</string>
+ <string name="help">"Pomoc"</string>
+ <string name="menu_back">"Wstecz"</string>
+ <string name="service_name">"Nazwa usługi"</string>
+ <string name="stk_no_service">"Brak dostępnej usługi"</string>
+ <string name="button_ok">"OK"</string>
+ <string name="button_cancel">"Anuluj"</string>
+ <string name="button_yes">"Tak"</string>
+ <string name="button_no">"Nie"</string>
+ <string name="alphabet">"Znaki alfanumeryczne"</string>
+ <string name="digits">"Cyfry (0–9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Połączenie w toku..."</string>
+ <string name="stk_app_state">"Stan aplikacji"</string>
+ <string name="enable_app">"Włączone"</string>
+ <string name="disable_app">"Wyłączone"</string>
+</resources>
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
new file mode 100644
index 0000000..7dcb8e1
--- /dev/null
+++ b/res/values-ru/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"Инструментарий SIM"</string>
+ <string name="menu_end_session">"Завершить сеанс"</string>
+ <string name="help">"Справка"</string>
+ <string name="menu_back">"Назад"</string>
+ <string name="service_name">"Название службы"</string>
+ <string name="stk_no_service">"Нет обслуживания"</string>
+ <string name="button_ok">"ОК"</string>
+ <string name="button_cancel">"Отмена"</string>
+ <string name="button_yes">"Да"</string>
+ <string name="button_no">"Нет"</string>
+ <string name="alphabet">"Буквы"</string>
+ <string name="digits">"Цифры (0-9, *, #, +)"</string>
+ <string name="default_call_setup_msg">"Идет вызов..."</string>
+ <string name="stk_app_state">"Состояние приложения"</string>
+ <string name="enable_app">"Включено"</string>
+ <string name="disable_app">"Отключено"</string>
+</resources>
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
new file mode 100644
index 0000000..1d35740
--- /dev/null
+++ b/res/values-zh-rCN/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM 卡工具包"</string>
+ <string name="menu_end_session">"结束会话"</string>
+ <string name="help">"帮助"</string>
+ <string name="menu_back">"返回"</string>
+ <string name="service_name">"服务名称"</string>
+ <string name="stk_no_service">"没有可用的服务"</string>
+ <string name="button_ok">"确定"</string>
+ <string name="button_cancel">"取消"</string>
+ <string name="button_yes">"是"</string>
+ <string name="button_no">"否"</string>
+ <string name="alphabet">"字母"</string>
+ <string name="digits">"数字(0-9、*、#、+)"</string>
+ <string name="default_call_setup_msg">"正在通话..."</string>
+ <string name="stk_app_state">"应用程序状态"</string>
+ <string name="enable_app">"已启用"</string>
+ <string name="disable_app">"已禁用"</string>
+</resources>
diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml
new file mode 100644
index 0000000..30d035c
--- /dev/null
+++ b/res/values-zh-rTW/strings.xml
@@ -0,0 +1,34 @@
+<?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="app_name">"SIM 工具箱"</string>
+ <string name="menu_end_session">"結束"</string>
+ <string name="help">"幫助"</string>
+ <string name="menu_back">"上一頁"</string>
+ <string name="service_name">"服務名稱"</string>
+ <string name="stk_no_service">"沒有服務"</string>
+ <string name="button_ok">"確定"</string>
+ <string name="button_cancel">"取消"</string>
+ <string name="button_yes">"是"</string>
+ <string name="button_no">"否"</string>
+ <string name="alphabet">"字母"</string>
+ <string name="digits">"數字與符號 (0-9、*、#、+)"</string>
+ <string name="default_call_setup_msg">"通話中..."</string>
+ <string name="stk_app_state">"應用程式狀態"</string>
+ <string name="enable_app">"已啟用"</string>
+ <string name="disable_app">"已停用"</string>
+</resources>
diff --git a/res/values/colors.xml b/res/values/colors.xml
new file mode 100644
index 0000000..9435d30
--- /dev/null
+++ b/res/values/colors.xml
@@ -0,0 +1,20 @@
+<?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="ltgrey">#ffe0e0e0</color>
+ <color name="bright_foreground_dark">#ffffffff</color>
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..1252912
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,48 @@
+<?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>
+ <!-- Default Application label used on home screen with an icon -->
+ <string name="app_name">SIM Toolkit</string>
+ <!-- Menu button option for ending current SIM session -->
+ <string name="menu_end_session">End session</string>
+ <!-- Menu button option for requesting additional help information -->
+ <string name="help">Help</string>
+ <!-- Menu button option to navigate back to the previous screen -->
+ <string name="menu_back">Back</string>
+ <!-- Settings entry which describes the current SIM Toolkit service on the device -->
+ <string name="service_name">Service name</string>
+ <!-- Default description for service_name when no STK service is available -->
+ <string name="stk_no_service">No service available</string>
+ <!-- OK button used to confirm a message dialog -->
+ <string name="button_ok">OK</string>
+ <!-- Cancel button used to dismiss a message dialog and terminate the current SIM session-->
+ <string name="button_cancel">Cancel</string>
+ <!-- Yes button, used on a Yes/No confirmation screen -->
+ <string name="button_yes">Yes</string>
+ <!-- No button, used on a Yes/No confirmation screen -->
+ <string name="button_no">No</string>
+ <!-- Description for the type of text allowed in a form: alphanumeric or digits only -->
+ <string name="alphabet">Alphabets</string>
+ <!-- Type of alphabet text allowed in a form: 0-9, *, #, + characters only -->
+ <string name="digits">Digits (0-9, *, #, +)</string>
+ <!-- Default transition message when launching a call -->
+ <string name="default_call_setup_msg">Call in progress\u2026</string>
+
+ <string name="stk_app_state">Application state</string>
+ <string name="enable_app">Enabled</string>
+ <string name="disable_app">Disabled</string>
+</resources>
diff --git a/res/xml/stk_settings.xml b/res/xml/stk_settings.xml
new file mode 100644
index 0000000..e265406
--- /dev/null
+++ b/res/xml/stk_settings.xml
@@ -0,0 +1,33 @@
+<?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.
+-->
+<PreferenceScreen
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:title="@string/app_name" >
+
+ <PreferenceScreen
+ android:key="service_name"
+ android:title="@string/service_name"
+ android:summary="@string/stk_no_service"
+ android:persistent="false"/>
+
+ <CheckBoxPreference
+ android:key="stk_app_enable_disable"
+ android:title="@string/stk_app_state"
+ android:persistent="false"
+ android:summaryOn="@string/enable_app"
+ android:summaryOff="@string/disable_app"/>
+
+</PreferenceScreen>