diff options
Diffstat (limited to 'GNexusParts/res')
22 files changed, 911 insertions, 0 deletions
diff --git a/GNexusParts/res/drawable/blue_tuning_preview.xml b/GNexusParts/res/drawable/blue_tuning_preview.xml new file mode 100755 index 0000000..98ea313 --- /dev/null +++ b/GNexusParts/res/drawable/blue_tuning_preview.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape + xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient + android:angle="0" + android:startColor="#000000" + android:endColor="#0000FF" /> +</shape>
\ No newline at end of file diff --git a/GNexusParts/res/drawable/color_tuning_preview.xml b/GNexusParts/res/drawable/color_tuning_preview.xml new file mode 100644 index 0000000..2d83c10 --- /dev/null +++ b/GNexusParts/res/drawable/color_tuning_preview.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape + xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient + android:angle="0" + android:startColor="#000000" + android:endColor="#FFFFFF" /> +</shape>
\ No newline at end of file diff --git a/GNexusParts/res/drawable/green_tuning_preview.xml b/GNexusParts/res/drawable/green_tuning_preview.xml new file mode 100755 index 0000000..4f09471 --- /dev/null +++ b/GNexusParts/res/drawable/green_tuning_preview.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape + xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient + android:angle="0" + android:startColor="#000000" + android:endColor="#00FF00" /> +</shape>
\ No newline at end of file diff --git a/GNexusParts/res/drawable/ic_launcher_cmdevicesettings.png b/GNexusParts/res/drawable/ic_launcher_cmdevicesettings.png Binary files differnew file mode 100755 index 0000000..66de9c3 --- /dev/null +++ b/GNexusParts/res/drawable/ic_launcher_cmdevicesettings.png diff --git a/GNexusParts/res/drawable/red_tuning_preview.xml b/GNexusParts/res/drawable/red_tuning_preview.xml new file mode 100755 index 0000000..a55ea12 --- /dev/null +++ b/GNexusParts/res/drawable/red_tuning_preview.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape + xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient + android:angle="0" + android:startColor="#000000" + android:endColor="#FF0000" /> +</shape>
\ No newline at end of file diff --git a/GNexusParts/res/layout/preference_colorgamma_presets.xml b/GNexusParts/res/layout/preference_colorgamma_presets.xml new file mode 100755 index 0000000..af85740 --- /dev/null +++ b/GNexusParts/res/layout/preference_colorgamma_presets.xml @@ -0,0 +1,134 @@ +<?xml version="1.0" encoding="utf-8"?> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <RelativeLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center_horizontal" + android:paddingBottom="20dip"> + + <ImageView + android:id="@+id/imageView0" + android:layout_width="match_parent" + android:layout_height="200dp" + android:paddingLeft="20dip" + android:paddingRight="20dip" + android:paddingTop="5dip" + android:src="@drawable/color_tuning_preview" /> + + <ImageView + android:id="@+id/imageView1" + android:layout_width="match_parent" + android:layout_height="50dp" + android:paddingLeft="20dip" + android:paddingRight="20dip" + android:paddingTop="5dip" + android:src="@drawable/red_tuning_preview" /> + + <ImageView + android:id="@+id/imageView2" + android:layout_width="match_parent" + android:layout_height="50dp" + android:layout_below="@+id/imageView1" + android:paddingLeft="20dip" + android:paddingRight="20dip" + android:paddingTop="5dip" + android:src="@drawable/green_tuning_preview" /> + + <ImageView + android:id="@+id/imageView3" + android:layout_width="match_parent" + android:layout_height="50dp" + android:layout_below="@+id/imageView2" + android:paddingLeft="20dip" + android:paddingRight="20dip" + android:paddingTop="5dip" + android:src="@drawable/blue_tuning_preview" /> + + <LinearLayout + android:id="@+id/linearLayout1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_below="@+id/imageView0" + android:gravity="center_horizontal" > + + <Button + android:id="@+id/btnPreset1" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/preset1_default_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnPreset2" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/preset2_default_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnPreset3" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/preset3_default_title" + android:textSize="12dp" + android:width="100dp"/> + </LinearLayout> + + <LinearLayout + android:id="@+id/linearLayout2" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@+id/linearLayout1" + android:gravity="center_horizontal" > + + <Button + android:id="@+id/btnPreset4" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/preset4_default_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnPreset5" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/preset5_default_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnPreset6" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/preset6_default_title" + android:textSize="12dp" + android:width="100dp"/> + </LinearLayout> + + <LinearLayout + android:layout_width="320dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_below="@+id/linearLayout2" > + + <TextView + android:id="@+id/textView1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingLeft="10dip" + android:text="@string/credits_presets" + android:textSize="12dp"/> + + </LinearLayout> + + </RelativeLayout> + +</ScrollView> diff --git a/GNexusParts/res/layout/preference_dialog_color_tuning.xml b/GNexusParts/res/layout/preference_dialog_color_tuning.xml new file mode 100644 index 0000000..51883d1 --- /dev/null +++ b/GNexusParts/res/layout/preference_dialog_color_tuning.xml @@ -0,0 +1,142 @@ +<?xml version="1.0" encoding="utf-8"?> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <RelativeLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center_horizontal" + android:paddingBottom="20dip"> + + <TextView android:id="@+id/color_red_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color_red_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/color_red_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/color_red_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/color_red_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <TextView android:id="@+id/color_green_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/color_red_seekbar" + android:text="@string/color_green_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/color_green_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/color_red_seekbar" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/color_green_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/color_green_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <TextView android:id="@+id/color_blue_text" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/color_green_seekbar" + android:text="@string/color_blue_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/color_blue_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/color_green_seekbar" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/color_blue_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/color_blue_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <ImageView android:id="@+id/black_scale_picture_color" + android:src="@drawable/color_tuning_preview" + android:layout_width="match_parent" + android:layout_height="40dip" + android:layout_below="@id/color_blue_seekbar" + android:paddingTop="20dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <LinearLayout + android:id="@+id/linearLayout1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_horizontal" + android:layout_below="@+id/black_scale_picture_color" > + + <Button + android:id="@+id/btnColor1" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color1_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnColor2" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color2_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnColor3" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color3_title" + android:textSize="12dp" + android:width="100dp"/> + + </LinearLayout> + + <LinearLayout + android:layout_width="320dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_below="@+id/linearLayout1"> + + <TextView + android:id="@+id/textView1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingLeft="10dip" + android:text="@string/color_warning" + android:textSize="12dp"/> + + </LinearLayout> + + </RelativeLayout> +</ScrollView> diff --git a/GNexusParts/res/layout/preference_dialog_gamma_tuning.xml b/GNexusParts/res/layout/preference_dialog_gamma_tuning.xml new file mode 100644 index 0000000..c18682f --- /dev/null +++ b/GNexusParts/res/layout/preference_dialog_gamma_tuning.xml @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="utf-8"?> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <RelativeLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center_horizontal" + android:paddingBottom="20dip"> + + <TextView android:id="@+id/gamma_red_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/color_red_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/gamma_red_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/gamma_red_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_red_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <TextView android:id="@+id/gamma_green_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_red_seekbar" + android:text="@string/color_green_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/gamma_green_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_red_seekbar" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/gamma_green_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_green_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <TextView android:id="@+id/gamma_blue_text" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_green_seekbar" + android:text="@string/color_blue_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/gamma_blue_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_green_seekbar" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/gamma_blue_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_blue_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <TextView android:id="@+id/gamma_dss_text" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_blue_seekbar" + android:text="@string/gamma_dss_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/gamma_dss_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_blue_seekbar" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/gamma_dss_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/gamma_dss_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <ImageView android:id="@+id/black_scale_picture" + android:src="@drawable/color_tuning_preview" + android:layout_width="match_parent" + android:layout_height="40dip" + android:layout_below="@id/gamma_dss_seekbar" + android:paddingTop="20dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <LinearLayout + android:id="@+id/linearLayout1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_horizontal" + android:layout_below="@+id/black_scale_picture" > + + <Button + android:id="@+id/btnGamma1" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/gamma1_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnGamma2" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/gamma2_title" + android:textSize="12dp" + android:width="100dp"/> + + <Button + android:id="@+id/btnGamma3" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/gamma3_title" + android:textSize="12dp" + android:width="100dp"/> + + </LinearLayout> + + </RelativeLayout> +</ScrollView> diff --git a/GNexusParts/res/layout/preference_dialog_vibrator_tuning.xml b/GNexusParts/res/layout/preference_dialog_vibrator_tuning.xml new file mode 100644 index 0000000..9ffc414 --- /dev/null +++ b/GNexusParts/res/layout/preference_dialog_vibrator_tuning.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> + +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <RelativeLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center_horizontal" + android:paddingBottom="20dip"> + + <TextView android:id="@+id/vibrator_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/vibrator_title" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <TextView android:id="@+id/vibrator_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:paddingTop="10dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + <SeekBar android:id="@+id/vibrator_seekbar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_below="@id/vibrator_text" + android:paddingTop="2dip" + android:paddingLeft="20dip" + android:paddingRight="20dip" /> + + <LinearLayout + android:id="@+id/linearLayout1" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_horizontal" + android:layout_below="@+id/vibrator_seekbar" > + + <Button + android:id="@+id/btnvibratorDefault" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/vibrator_default_title" + android:textSize="12dp" + android:width="100dp" /> + + <Button + android:id="@+id/btnvibratorTest" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/vibrator_test_title" + android:textSize="12dp" + android:width="100dp" /> + + </LinearLayout> + + </RelativeLayout> +</ScrollView> diff --git a/GNexusParts/res/layout/top.xml b/GNexusParts/res/layout/top.xml new file mode 100755 index 0000000..744b568 --- /dev/null +++ b/GNexusParts/res/layout/top.xml @@ -0,0 +1,5 @@ +<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/viewPager" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + diff --git a/GNexusParts/res/values-de/strings.xml b/GNexusParts/res/values-de/strings.xml new file mode 100644 index 0000000..89d6fc3 --- /dev/null +++ b/GNexusParts/res/values-de/strings.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Galaxy Nexus Einstellungen</string> + + <string name="color_tuning_title_head">Farbmultiplikator</string> + <string name="color_tuning_summary_head">Farbmultiplikator einstellen</string> + <string name="gamma_tuning_title_head">Gammakorrektur</string> + <string name="gamma_tuning_summary_head">Gammawert einstellen</string> + <string name="color_hack_presets_title_head">Farb-Voreinstellungen</string> + <string name="color_hack_presets_summary_head">Voreinstellungen für Gammakorrektur und Farbmultiplikator</string> + <string name="color_red_title">Rot</string> + <string name="color_green_title">Grün</string> + <string name="color_blue_title">Blau</string> + <string name="gamma1_title">Standard</string> + <string name="gamma2_title">CM</string> + <string name="gamma3_title">Natural</string> + <string name="color1_title">Standard</string> + <string name="color2_title">CM</string> + <string name="color3_title">Natural</string> + <string name="gamma_dss_title">DSS Gammawert</string> + + <string name="preset1_default_title">Standard</string> + <string name="preset2_default_title">Maximal</string> + <string name="preset3_default_title">Real</string> + <string name="preset4_default_title">Warm</string> + <string name="preset5_default_title">Kalt</string> + <string name="preset6_default_title">Natürlich</string> + <string name="credits_presets">Dank an: ale.landra91 cpaixao provolinoo</string> + + <string name="category_radio_title">Mobilfunk</string> + <string name="hspa_title_head">HSPA</string> + <string name="hspa_summary_head">HSDPA/HSUPA aktivieren</string> + +</resources> diff --git a/GNexusParts/res/values-es/arrays.xml b/GNexusParts/res/values-es/arrays.xml new file mode 100644 index 0000000..5279aa3 --- /dev/null +++ b/GNexusParts/res/values-es/arrays.xml @@ -0,0 +1,7 @@ +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string-array name="gpu_overclock_entries"> + <item>307,2 MHz (por defecto)</item> + <item>384,0 MHz</item> + <item>512,0 MHz</item> + </string-array> +</resources> diff --git a/GNexusParts/res/values-es/strings.xml b/GNexusParts/res/values-es/strings.xml new file mode 100644 index 0000000..bea15f1 --- /dev/null +++ b/GNexusParts/res/values-es/strings.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Ajustes Galaxy Nexus</string> + + <string name="category_display_title">Pantalla</string> + <string name="color_tuning_title_head">Multiplicadores del color</string> + <string name="color_tuning_summary_head">Calibrar los multiplicadores del color</string> + <string name="gamma_tuning_title_head">Gamma</string> + <string name="gamma_tuning_summary_head">Calibrar la corrección gamma</string> + <string name="color_hack_presets_title_head">Ajustes preconfigurados</string> + <string name="color_hack_presets_summary_head">Ajustes de gamma y multiplicadores probados por otros usuarios</string> + <string name="color_red_title">Rojo</string> + <string name="color_green_title">Verde</string> + <string name="color_blue_title">Azul</string> + <string name="gamma1_title">Predet.</string> + <string name="gamma2_title">Cyanogen</string> + <string name="gamma3_title">Natural</string> + <string name="color1_title">Predet.</string> + <string name="color2_title">Cyanogen</string> + <string name="color3_title">Natural</string> + <string name="color_warning">No son recomendables valores mayores de 200</string> + <string name="gamma_dss_title">Gamma DSS</string> + + <string name="category_hardware_title">Sistema</string> + <string name="vibrator_tuning_title_head">Respuesta háptica</string> + <string name="vibrator_tuning_summary_head">Establece la fuerza predeterminada para la respuesta háptica (vibración)</string> + + <string name="vibrator_title">Vibración %</string> + <string name="vibrator_default_title">Predet.</string> + <string name="vibrator_test_title">Probar</string> + + <string name="preset1_default_title">Predet.</string> + <string name="preset2_default_title">Máximo</string> + <string name="preset3_default_title">Real</string> + <string name="preset4_default_title">Cálido</string> + <string name="preset5_default_title">Frío</string> + <string name="preset6_default_title">Natural</string> + <string name="credits_presets">Créditos: ale.landra91, cpaixao, provolinoo</string> + + <string name="category_touchkey_title">Teclas táctiles</string> + <string name="touchkey_notification_title_head">Notificaciones luminosas</string> + <string name="touchkey_notification_summary_head">El teclado táctil se activará cuando haya una notificación</string> + + <string name="category_radio_title">Radio</string> + <string name="hspa_title_head">HSPA</string> + <string name="hspa_summary_head">Habilitar HSDPA/HSUPA</string> + + <string name="category_gpu_title">GPU</string> + <string name="gpu_overclock_title">Velocidad del procesador gráfico</string> + +</resources> diff --git a/GNexusParts/res/values-fr/strings.xml b/GNexusParts/res/values-fr/strings.xml new file mode 100644 index 0000000..fd86175 --- /dev/null +++ b/GNexusParts/res/values-fr/strings.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Paramètres du Galaxy Nexus</string> + + <string name="category_display_title">Affichage</string> + <string name="color_tuning_title_head">Réglage des multiplcateurs de couleur de l\'écran</string> + <string name="color_tuning_summary_head">Régle les multiplcateurs de couleur de l\'écran</string> + <string name="gamma_tuning_title_head">Réglage de la Correction Gamma</string> + <string name="gamma_tuning_summary_head">Règle la correction Gamma</string> + <string name="color_hack_presets_title_head">Préréglage des couleurs</string> + <string name="color_hack_presets_summary_head">Préréglages du Gamma et des multiplicateurs testés par d\'autres utilisateurs</string> + <string name="color_red_title">Rouge</string> + <string name="color_green_title">Vert</string> + <string name="color_blue_title">Bleu</string> + <string name="gamma1_title">Défaut</string> + <string name="gamma2_title">Params. CM</string> + <string name="gamma3_title">Naturel</string> + <string name="color1_title">Défaut</string> + <string name="color2_title">Params. CM</string> + <string name="color3_title">Naturel</string> + <string name="color_warning">Les valeurs supérieures à 200 ne sont pas recommandées</string> + <string name="gamma_dss_title">Régl. Gamma DSS</string> + + <string name="category_hardware_title">Matériel</string> + <string name="vibrator_tuning_title_head">Paramétrage du vibreur</string> + <string name="vibrator_tuning_summary_head">Définir l\'intensité du vibreur</string> + + <string name="vibrator_title">Vibreur %</string> + <string name="vibrator_default_title">Défaut</string> + <string name="vibrator_test_title">Test</string> + + <string name="preset1_default_title">Défaut</string> + <string name="preset2_default_title">Maximum</string> + <string name="preset3_default_title">Réel</string> + <string name="preset4_default_title">Chaud</string> + <string name="preset5_default_title">Foncé/froid</string> + <string name="preset6_default_title">Naturel</string> + <string name="credits_presets">Crédits: ale.landra91, cpaixao, provolinoo</string> + + <string name="category_touchkey_title">Touches tactiles</string> + <string name="touchkey_notification_title_head">Notifications par rétro-éclairage</string> + <string name="touchkey_notification_summary_head">Le rétroéclairage des touches tactiles s\'allumera lorsqu\'il y aura une notification</string> + + <string name="category_radio_title">Radio</string> + <string name="hspa_title_head">HSPA</string> + <string name="hspa_summary_head">Activer HSDPA/HSUPA</string> + + <string name="category_gpu_title">GPU</string> + <string name="gpu_overclock_title">Fréquence d\'horloge du GPU</string> + +</resources> diff --git a/GNexusParts/res/values-ja/strings.xml b/GNexusParts/res/values-ja/strings.xml new file mode 100644 index 0000000..4fc5f26 --- /dev/null +++ b/GNexusParts/res/values-ja/strings.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Galaxy Nexus 設定</string> + + <string name="color_tuning_title_head">カラーマルチプライヤチューニング</string> + <string name="color_tuning_summary_head">画面の色味を調整する</string> + <string name="gamma_tuning_title_head">カラーガンマ調整</string> + <string name="gamma_tuning_summary_head">カラーガンマ値を調整する</string> + <string name="color_red_title">赤</string> + <string name="color_green_title">緑</string> + <string name="color_blue_title">青</string> + + <string name="category_radio_title">ラジオ</string> + <string name="hspa_title_head">HSPA</string> + <string name="hspa_summary_head">HSDPA/HSUPAを有効にする</string> + +</resources> diff --git a/GNexusParts/res/values-nl/strings.xml b/GNexusParts/res/values-nl/strings.xml new file mode 100644 index 0000000..0e2718f --- /dev/null +++ b/GNexusParts/res/values-nl/strings.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2012 The CyanogenMod 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> + <string name="app_name">Galaxy Nexus-instellingen</string> + <string name="color_tuning_title_head">Kleurenmultiplicatoren afstemmen</string> + <string name="color_tuning_summary_head">Kalibreer multiplicatoren van schermkleur</string> + <string name="gamma_tuning_title_head">Kleurengamma afstemmen</string> + <string name="gamma_tuning_summary_head">Kalibreer correctie van kleurengamma</string> + <string name="color_red_title">Rood</string> + <string name="color_green_title">Groen</string> + <string name="color_blue_title">Blauw</string> + <string name="hspa_summary_head">Schakel HSDPA/HSUPA in/uit</string> +</resources> diff --git a/GNexusParts/res/values-pt/strings.xml b/GNexusParts/res/values-pt/strings.xml new file mode 100755 index 0000000..af5be55 --- /dev/null +++ b/GNexusParts/res/values-pt/strings.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Configurações Galaxy Nexus</string> + <string name="color_tuning_title_head">Ajustar Multiplicadores de Cor</string> + <string name="color_tuning_summary_head">Calibrar multiplicadores de cor de tela</string> + <string name="gamma_tuning_title_head">Ajustar Cor Gama</string> + <string name="gamma_tuning_summary_head">Calibrar correção de cor gama</string> + <string name="color_hack_presets_title_head">Predefinir hack de cor</string> + <string name="color_hack_presets_summary_head">Predefinições para gama e multiplicadores testado por alguns usuários</string> + <string name="color_red_title">Vermelho</string> + <string name="color_green_title">Verde</string> + <string name="color_blue_title">Azul</string> + <string name="gamma1_title">Padrão</string> + <string name="gamma2_title">Conf. CM</string> + <string name="gamma3_title">Natural</string> + <string name="color1_title">Padrão</string> + <string name="color2_title">Conf. CM</string> + <string name="color3_title">Natural</string> + <string name="color_warning">Dos valores recomendados não são maiores do que 200</string> + <string name="gamma_dss_title">Conf. DSS Gama</string> + <string name="preset1_default_title">Padrão.</string> + <string name="preset2_default_title">Máximo</string> + <string name="preset3_default_title">Real</string> + <string name="preset4_default_title">Quente</string> + <string name="preset5_default_title">Frio</string> + <string name="preset6_default_title">Natural</string> + <string name="credits_presets">Créditos: ale.landra91, cpaixao, provolinoo</string> + <string name="category_touchkey_title">Teclas sensíveis ao toque</string> + <string name="touchkey_notification_title_head">Notificações de luz de fundo</string> + <string name="touchkey_notification_summary_head">A luz de fundo das teclas irão acender quando haver uma notificação.</string> + <string name="category_radio_title">Radio</string> + <string name="hspa_title_head">HSPA</string> + <string name="hspa_summary_head">Ativar HSDPA/HSUPA</string> +</resources> diff --git a/GNexusParts/res/values-ru/arrays.xml b/GNexusParts/res/values-ru/arrays.xml new file mode 100644 index 0000000..8e7f3b6 --- /dev/null +++ b/GNexusParts/res/values-ru/arrays.xml @@ -0,0 +1,8 @@ +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string-array name="gpu_overclock_entries"> + <item>307,2 МГц (по умолчанию)</item> + <item>384,0 МГц</item> + <item>512,0 МГц</item> + </string-array> + +</resources> diff --git a/GNexusParts/res/values-ru/strings.xml b/GNexusParts/res/values-ru/strings.xml new file mode 100644 index 0000000..25c993b --- /dev/null +++ b/GNexusParts/res/values-ru/strings.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Настройки Galaxy Nexus</string> + + <string name="category_display_title">Дисплей</string> + <string name="color_tuning_title_head">Настройка цвета мультипликатора</string> + <string name="color_tuning_summary_head">Калибровка цвета мультипликатора</string> + <string name="gamma_tuning_title_head">Настройка цветовой гаммы</string> + <string name="gamma_tuning_summary_head">Калибровка коррекции цветовой гаммы</string> + <string name="color_hack_presets_title_head">Предустановки настроек</string> + <string name="color_hack_presets_summary_head">Установки для цветовой гаммы и мультипликатора проверенные некоторыми пользователями</string> + <string name="color_red_title">Красный</string> + <string name="color_green_title">Зелёный</string> + <string name="color_blue_title">Синий</string> + <string name="gamma1_title">По умолч.</string> + <string name="gamma2_title">Настр. CM</string> + <string name="gamma3_title">Натур-ый</string> + <string name="color1_title">По умолч.</string> + <string name="color2_title">Настр. CM</string> + <string name="color3_title">Натур-ый</string> + <string name="color_warning">Установка значений выше 200 не рекомендуется</string> + <string name="gamma_dss_title">Настр. DSS гаммы</string> + + <string name="category_hardware_title">Железо</string> + <string name="vibrator_tuning_title_head">Настройка виброотклика</string> + <string name="vibrator_tuning_summary_head">Настройка умолчания силы виброотклика</string> + + <string name="vibrator_title">% вибрации</string> + <string name="vibrator_default_title">По умолч.</string> + <string name="vibrator_test_title">Тест</string> + + <string name="preset1_default_title">По умолч.</string> + <string name="preset2_default_title">Mаксим-ый</string> + <string name="preset3_default_title">Pеальный</string> + <string name="preset4_default_title">Тёплый</string> + <string name="preset5_default_title">Хол. тёмный</string> + <string name="preset6_default_title">Натур-ый</string> + <string name="credits_presets">Участники: ale.landra91, cpaixao, provolinoo</string> + + <string name="category_touchkey_title">Сенсорные копки</string> + <string name="touchkey_notification_title_head">Подсветка уведомлений</string> + <string name="touchkey_notification_summary_head">Подсветка сенсорных клавиш включена, когда есть уведомления</string> + + <string name="category_radio_title">Радио</string> + <string name="hspa_summary_head">Включить HSDPA/HSUPA</string> + + <string name="category_gpu_title">Графический процессор</string> + <string name="gpu_overclock_title">Тактовая частота</string> +</resources> diff --git a/GNexusParts/res/values/arrays.xml b/GNexusParts/res/values/arrays.xml new file mode 100644 index 0000000..9dc3111 --- /dev/null +++ b/GNexusParts/res/values/arrays.xml @@ -0,0 +1,13 @@ +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string-array name="gpu_overclock_entries"> + <item>307,2 MHz (default)</item> + <item>384,0 MHz</item> + <item>512,0 MHz</item> + </string-array> + + <string-array name="gpu_overclock_values" translatable="false"> + <item>0</item> + <item>1</item> + <item>2</item> + </string-array> +</resources> diff --git a/GNexusParts/res/values/strings.xml b/GNexusParts/res/values/strings.xml new file mode 100644 index 0000000..70c1125 --- /dev/null +++ b/GNexusParts/res/values/strings.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Galaxy Nexus Settings</string> + + <string name="category_display_title">Display</string> + <string name="color_tuning_title_head">Color Multipliers Tuning</string> + <string name="color_tuning_summary_head">Calibrate multipliers screen color</string> + <string name="gamma_tuning_title_head">Color Gamma Tuning</string> + <string name="gamma_tuning_summary_head">Calibrate gamma color correction</string> + <string name="color_hack_presets_title_head">Color hack presets</string> + <string name="color_hack_presets_summary_head">Presets for gamma and multipliers tested by some users</string> + <string name="color_red_title">Red</string> + <string name="color_green_title">Green</string> + <string name="color_blue_title">Blue</string> + <string name="gamma1_title">Default</string> + <string name="gamma2_title">CM Sett.</string> + <string name="gamma3_title">Natural</string> + <string name="color1_title">Default</string> + <string name="color2_title">CM Sett.</string> + <string name="color3_title">Natural</string> + <string name="color_warning">Values higher than 200 are not recommended</string> + <string name="gamma_dss_title">DSS Gamma Set.</string> + + <string name="category_hardware_title">Hardware</string> + <string name="vibrator_tuning_title_head">Vibrator feedback tuning</string> + <string name="vibrator_tuning_summary_head">Controls the default power of vibrator feedback</string> + + <string name="vibrator_title">Vibration %</string> + <string name="vibrator_default_title">Default</string> + <string name="vibrator_test_title">Test</string> + + <string name="preset1_default_title">Default</string> + <string name="preset2_default_title">Maximum</string> + <string name="preset3_default_title">Real</string> + <string name="preset4_default_title">Warm</string> + <string name="preset5_default_title">Dark Cold</string> + <string name="preset6_default_title">Natural</string> + <string name="credits_presets">Credits: ale.landra91, cpaixao, provolinoo</string> + + <string name="category_touchkey_title">Touch Keys</string> + <string name="touchkey_notification_title_head">Backlight Notifications</string> + <string name="touchkey_notification_summary_head">The touch key backlights will turn on when there is a notification</string> + + <string name="category_radio_title">Radio</string> + <string name="hspa_title_head">HSPA</string> + <string name="hspa_summary_head">Enable HSDPA/HSUPA</string> + + <string name="category_gpu_title">GPU</string> + <string name="gpu_overclock_title">Clock Speed</string> + +</resources> diff --git a/GNexusParts/res/xml/preferences.xml b/GNexusParts/res/xml/preferences.xml new file mode 100644 index 0000000..a71d274 --- /dev/null +++ b/GNexusParts/res/xml/preferences.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" + android:title="@string/app_name"> + + <!-- Color tuning --> + <PreferenceCategory + android:key="category_display" + android:title="@string/category_display_title" > + <com.cyanogenmod.settings.device.ColorTuningPreference + android:key="color_tuning" + android:title="@string/color_tuning_title_head" + android:summary="@string/color_tuning_summary_head" /> + <com.cyanogenmod.settings.device.GammaTuningPreference + android:key="gamma_tuning" + android:title="@string/gamma_tuning_title_head" + android:summary="@string/gamma_tuning_summary_head" /> + <com.cyanogenmod.settings.device.ColorHackPresets + android:key="colorgamma_presets" + android:title="@string/color_hack_presets_title_head" + android:summary="@string/color_hack_presets_summary_head" /> + </PreferenceCategory> + + <!-- General settings --> + <PreferenceCategory android:key="category_hardware" + android:title="@string/category_hardware_title"> + <com.cyanogenmod.settings.device.VibratorTuningPreference + android:key="vibrator_tuning" + android:title="@string/vibrator_tuning_title_head" + android:summary="@string/vibrator_tuning_summary_head" /> + </PreferenceCategory> + + <!-- GPU --> + <PreferenceCategory android:key="category_gpu" + android:title="@string/category_gpu_title"> + <ListPreference + android:key="gpu_overclock" + android:title="@string/gpu_overclock_title" + android:entries="@array/gpu_overclock_entries" + android:entryValues="@array/gpu_overclock_values" + android:defaultValue="0" /> + </PreferenceCategory> +</PreferenceScreen> |