Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hola neo_string es #22

Open
wants to merge 9 commits into
base: kk4.4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
635 changes: 635 additions & 0 deletions res/values-es/neo_strings.xml

Large diffs are not rendered by default.

1,073 changes: 0 additions & 1,073 deletions res/values-es/slim_strings.xml

This file was deleted.

173 changes: 172 additions & 1 deletion res/values-hu/slim_strings.xml

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions res/values-hu/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2044,4 +2044,8 @@
<string name="user_image_take_photo" msgid="1280274310152803669">"Fotó készítése"</string>
<string name="user_image_choose_photo" msgid="7940990613897477057">"Fotó kiválasztása a Galériából"</string>
<string name="regulatory_info_text" msgid="5623087902354026557"></string>

<!-- Setting checkbox summary for displaying USB debugging notification -->
<string name="adb_notify">USB hibakeresés értesítés</string>
<string name="adb_notify_summary">Értesítés kijelzése USB hibakeresés csatlakozásánál</string>
</resources>
2 changes: 2 additions & 0 deletions res/values-ru/slim_strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -917,4 +917,6 @@
<string name="pie_control_summary">Включить управление pie</string>
<string name="pie_warning_no_navigation_present">Не включено никакой навигации. Отключение pie может сделать использование аппарата невозможным. Стоит ли включить строку навигации?</string>
<string name="pie_trigger_warning">Должна быть включена как минимум одна основная точка привязки (внизу, слева или справа).</string>
<string name="pie_disable_ime_triggers_title">Отключить срабатывание на клавиатуре</string>
<string name="pie_disable_ime_triggers_summary">Отключает или уменьшает размер области срабатывания в зоне клавиатуры, когда клавиатура открыта</string>
</resources>
4 changes: 4 additions & 0 deletions res/values/slim_strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1085,4 +1085,8 @@ two in order to insert additional control points. \'Remove\' deletes the selecte
<string name="pie_disable_ime_triggers_title">Reduce trigger size on keyboard</string>
<string name="pie_disable_ime_triggers_summary">Reduces left and right trigger size if keyboard is active</string>

<!-- About phone screen, build date of ROM -->
<string name="build_date">Revolution build date</string>
<string name="build_date_default">2012-01-01-0000</string>

</resources>
6 changes: 6 additions & 0 deletions res/xml/device_info_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@
android:title="@string/build_number"
android:summary="@string/device_info_default"/>

<!-- revolution build date -->
<Preference android:key="build_date"
style="?android:preferenceInformationStyle"
android:title="@string/build_date"
android:summary="@string/build_date_default" />

<!-- SELinux status information -->
<Preference android:key="selinux_status"
style="?android:preferenceInformationStyle"
Expand Down
2 changes: 2 additions & 0 deletions src/com/android/settings/DeviceInfoSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public class DeviceInfoSettings extends RestrictedSettingsFragment {
private static final String KEY_SLIM_VERSION = "slim_version";
private static final String KEY_DEVICE_CPU = "device_cpu";
private static final String KEY_DEVICE_MEMORY = "device_memory";
private static final String KEY_MOD_BUILD_DATE = "build_date";

static final int TAPS_TO_BE_A_DEVELOPER = 7;

Expand Down Expand Up @@ -100,6 +101,7 @@ public void onCreate(Bundle icicle) {
findPreference(KEY_BUILD_NUMBER).setEnabled(true);
findPreference(KEY_KERNEL_VERSION).setSummary(getFormattedKernelVersion());
setValueSummary(KEY_SLIM_VERSION, "ro.slim.version");
setValueSummary(KEY_MOD_BUILD_DATE, "ro.build.date");

if (!SELinux.isSELinuxEnabled()) {
String status = getResources().getString(R.string.selinux_status_disabled);
Expand Down