diff --git a/java/res/values/donottranslate-debug-settings.xml b/java/res/values/donottranslate-debug-settings.xml new file mode 100644 index 000000000..35e6efa77 --- /dev/null +++ b/java/res/values/donottranslate-debug-settings.xml @@ -0,0 +1,59 @@ + + + + + Android Keyboard Debug settings + Debug Mode + Force non-distinct multitouch + Force physical keyboard special key + Show UI to accept typed word + + Show slide indicator + + Display visual cue while sliding from Shift or Symbol keys + + Key long press delay + + Customize key preview animation + + Key popup show up duration + + Key popup dismiss duration + + Key popup show up start X scale + + Key popup show up start Y scale + + Key popup dismiss end X scale + + Key popup dismiss end Y scale + + Read external dictionary file + + No dictionary files in the Downloads folder + + Select a dictionary file to install + + Really install this file for %s? + + There was an error + + Dump dictionary + diff --git a/java/res/values/donottranslate.xml b/java/res/values/donottranslate.xml index d4d638542..74988f90f 100644 --- a/java/res/values/donottranslate.xml +++ b/java/res/values/donottranslate.xml @@ -22,13 +22,6 @@ See {@link SettingsValues#needsToShowVoiceInputKey(SharedPreferences,Resources)} --> 0 - - Android Keyboard Debug settings - Debug Mode - Force non-distinct multitouch - Force physical keyboard special key - Show UI to accept typed word - Show when multiple input languages are enabled - - Show slide indicator - - Display visual cue while sliding from Shift or Symbol keys - Key popup dismiss delay @@ -330,38 +325,10 @@ mobile devices. [CHAR LIMIT=25] --> "The same input style already exists: %s" - - Key long press delay Keypress vibration duration Keypress sound volume - - Customize key preview animation - - Key popup show up duration - - Key popup dismiss duration - - Key popup show up start X scale - - Key popup show up start Y scale - - Key popup dismiss end X scale - - Key popup dismiss end Y scale - - Read external dictionary file - - No dictionary files in the Downloads folder - - Select a dictionary file to install - - Really install this file for %s? - - There was an error - - Dump dictionary Default diff --git a/java/src/com/android/inputmethod/latin/debug/ExternalDictionaryGetterForDebug.java b/java/src/com/android/inputmethod/latin/debug/ExternalDictionaryGetterForDebug.java index 7071d8689..a87785b1a 100644 --- a/java/src/com/android/inputmethod/latin/debug/ExternalDictionaryGetterForDebug.java +++ b/java/src/com/android/inputmethod/latin/debug/ExternalDictionaryGetterForDebug.java @@ -168,7 +168,7 @@ public class ExternalDictionaryGetterForDebug { } catch (IOException e) { // There was an error: show a dialog new AlertDialog.Builder(DialogUtils.getPlatformDialogThemeContext(context)) - .setTitle(R.string.error) + .setTitle(R.string.read_external_dictionary_error) .setMessage(e.toString()) .setPositiveButton(android.R.string.ok, new OnClickListener() { @Override