omnirom-res: Import frameworks res values
Change-Id: Ib6674a482765bcd476fb1c6ec7d3c717a7e93626
diff --git a/res/values/arrays.xml b/res/values/arrays.xml
new file mode 100644
index 0000000..a67890b
--- /dev/null
+++ b/res/values/arrays.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
+** Not a Contribution.
+**
+** Copyright 2012, 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>
+
+ <string-array translatable="false" name="config_rebootActionsList">
+ <item>restart</item>
+ <item>reboot_recovery</item>
+ <item>reboot_bootloader</item>
+ </string-array>
+
+</resources>
diff --git a/res/values/config.xml b/res/values/config.xml
new file mode 100644
index 0000000..dac1acf
--- /dev/null
+++ b/res/values/config.xml
@@ -0,0 +1,13 @@
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <bool translatable="false" name="config_enableAutoSuspend">true</bool>
+
+ <!-- Path to the library that contains a device specific key handler -->
+ <string name="config_deviceKeyHandlerLib" translatable="false"></string>
+
+ <!-- Name of that key handler class -->
+ <string name="config_deviceKeyHandlerClass" translatable="false"></string>
+
+ <!-- make sure you enable this only if your device supports deep slepp
+ with active proximity sensor event listener -->
+ <bool name="config_proxiSensorWakupCheck">false</bool>
+</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index bee74fc..6fe9232 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -19,4 +19,21 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="omni_system_label">OmniRom System</string>
+
+ <!-- Reboot Confirmation Dialog. Message in the confirmation dialog
+ when the user asks to reboot. [CHAR LIMIT=NONE] -->
+ <string name="reboot_confirm">Do you want to reboot?</string>
+ <string name="reboot_title">Reboot</string>
+ <!-- advanced reboot to bootloader. -->
+ <string name="reboot_to_bootloader_title">Reboot bootloader</string>
+ <string name="reboot_to_bootloader_message">Rebooting to bootloader\u2026</string>
+ <!-- advanced reboot to recovery. -->
+ <string name="reboot_to_recovery_title">Reboot recovery</string>
+ <string name="reboot_to_recovery_message">Rebooting to recovery\u2026</string>
+ <!-- advanced reboot system -->
+ <string name="reboot_system_title">Restart system</string>
+ <string name="reboot_system_message">Restarting system\u2026</string>
+ <!-- advanced reboot to fastboot. -->
+ <string name="reboot_to_fastboot_title">Reboot fastboot</string>
+ <string name="reboot_to_fastboot_message">Rebooting to fastboot\u2026</string>
</resources>
diff --git a/res/values/symbols.xml b/res/values/symbols.xml
index 99da603..6b72c94 100644
--- a/res/values/symbols.xml
+++ b/res/values/symbols.xml
@@ -16,8 +16,27 @@
-->
<resources>
-
+ <!-- OmniLib TaskUtils -->
<java-symbol type="anim" name="last_app_in" />
<java-symbol type="anim" name="last_app_out" />
+ <!-- Device features Support-->
+ <java-symbol type="bool" name="config_enableAutoSuspend" />
+ <java-symbol type="bool" name="config_proxiSensorWakupCheck" />
+ <java-symbol type="string" name="config_deviceKeyHandlerLib" />
+ <java-symbol type="string" name="config_deviceKeyHandlerClass" />
+
+ <!-- Power menu reboot -->
+ <java-symbol type="string" name="reboot_title" />
+ <java-symbol type="string" name="reboot_confirm" />
+ <java-symbol name="reboot_to_bootloader_title" type="string" />
+ <java-symbol name="reboot_to_bootloader_message" type="string" />
+ <java-symbol name="reboot_to_fastboot_title" type="string" />
+ <java-symbol name="reboot_to_fastboot_message" type="string" />
+ <java-symbol name="reboot_to_recovery_title" type="string" />
+ <java-symbol name="reboot_to_recovery_message" type="string" />
+ <java-symbol name="reboot_system_title" type="string" />
+ <java-symbol name="reboot_system_message" type="string" />
+ <java-symbol type="array" name="config_rebootActionsList" />
+
</resources>