Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d345f4df authored by fuzz's avatar fuzz Committed by BangL
Browse files

LatinIME: Add ability to use volume rockers as cursor

back-ported from ics http://review.cyanogenmod.com/#change,12974

Change-Id: I8e78323161492003934392eb2d39e75496606684
parent e9dcfc73
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -137,4 +137,6 @@
    <string name="keyboard_layout" msgid="437433231038683666">"Tastaturdesign"</string>
    <string name="subtype_mode_keyboard" msgid="2242090416595003881">"Tastatur"</string>
    <string name="subtype_mode_voice" msgid="4394113125441627771">"Sprache"</string>
    <string name="prefs_volume_cursor">"Lautstärket.-Cursor"</string>
    <string name="prefs_volume_cursor_summary">"Verschieben des Cursors durch Drücken der Lautstärketasten"</string>
</resources>
+2 −0
Original line number Diff line number Diff line
@@ -149,4 +149,6 @@
    <string name="keyboard_layout" msgid="437433231038683666">"Tema de teclado"</string>
    <string name="subtype_mode_keyboard" msgid="2242090416595003881">"teclado"</string>
    <string name="subtype_mode_voice" msgid="4394113125441627771">"voz"</string>
    <string name="prefs_volume_cursor">Movimiento del cursor</string>
    <string name="prefs_volume_cursor_summary">Usar los botones de volumen para mover el cursor</string>
</resources>
+2 −0
Original line number Diff line number Diff line
@@ -137,4 +137,6 @@
    <string name="keyboard_layout" msgid="437433231038683666">"キーボードテーマ"</string>
    <string name="subtype_mode_keyboard" msgid="2242090416595003881">"キーボード"</string>
    <string name="subtype_mode_voice" msgid="4394113125441627771">"音声"</string>
    <string name="prefs_volume_cursor">"音量キー カーソル"</string>
    <string name="prefs_volume_cursor_summary">"音量キーでカーソルを移動させる"</string>
</resources>
+3 −0
Original line number Diff line number Diff line
@@ -387,4 +387,7 @@
    <!-- Title for Latin keyboard debug settings activity / dialog -->
    <string name="english_ime_debug_settings" translatable="false">Android keyboard Debug settings</string>
    <string name="prefs_debug_mode" translatable="false">Debug Mode</string>

    <string name="prefs_volume_cursor">Volume cursor</string>
    <string name="prefs_volume_cursor_summary">Use the volume keys to move the cursor</string>
</resources>
+8 −0
Original line number Diff line number Diff line
@@ -59,6 +59,14 @@
            android:defaultValue="true"
            />

    <CheckBoxPreference
            android:key="volume_cursor"
            android:title="@string/prefs_volume_cursor"
            android:summary="@string/prefs_volume_cursor_summary"
            android:persistent="true"
            android:defaultValue="false"
            />

    <ListPreference
            android:key="settings_key"
            android:title="@string/prefs_settings_key"
Loading