diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/keyboard_layout_dialog_switch_hint.xml | 37 | ||||
-rw-r--r-- | res/values/strings.xml | 16 |
2 files changed, 48 insertions, 5 deletions
diff --git a/res/layout/keyboard_layout_dialog_switch_hint.xml b/res/layout/keyboard_layout_dialog_switch_hint.xml new file mode 100644 index 0000000..336d543 --- /dev/null +++ b/res/layout/keyboard_layout_dialog_switch_hint.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 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. +--> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <ImageView android:id="@+id/titleDivider" + android:layout_width="match_parent" + android:layout_height="1dip" + android:scaleType="fitXY" + android:gravity="fill_horizontal" + android:src="@android:drawable/divider_horizontal_dark" /> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/keyboard_layout_dialog_switch_hint" + android:textAppearance="?android:attr/textAppearanceSmall" + android:textColor="?android:attr/textColorAlertDialogListItem" + android:minHeight="48dp" + android:gravity="center" /> + +</LinearLayout>
\ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index 3c46b48..543c659 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -2659,14 +2659,20 @@ <!-- On Language & input settings screen, setting summary. Setting to redirect vibration to input devices. [CHAR LIMIT=100] --> <string name="vibrate_input_devices_summary">Redirect vibrator to game controller when connected.</string> - <!-- Keyboard Layout Picker --> <skip /> - <!-- Title for the keyboard layout picker activity. [CHAR LIMIT=35] --> - <string name="keyboard_layout_picker_title">Choose keyboard layout</string> - <!-- String to show when no keyboard layouts are available. [CHAR LIMIT=60] --> - <string name="keyboard_layout_picker_empty_text">No keyboard layouts are available.</string> + <!-- Keyboard Layout Preference Dialog --> <skip /> + <!-- Title for the keyboard layout preference dialog. [CHAR LIMIT=35] --> + <string name="keyboard_layout_dialog_title">Choose keyboard layout</string> + <!-- Button to configure keyboard layouts. [CHAR LIMIT=35] --> + <string name="keyboard_layout_dialog_setup_button">Set up keyboard layouts</string> + <!-- Hint describing how to switch keyboard layouts using the keyboard. [CHAR LIMIT=35] --> + <string name="keyboard_layout_dialog_switch_hint">(Switch with ctrl-space)</string> <!-- Label of the default keyboard layout. [CHAR LIMIT=35] --> <string name="keyboard_layout_default_label">Default</string> + <!-- Keyboard Layout Picker --> <skip /> + <!-- Title for the keyboard layout picker activity. [CHAR LIMIT=35] --> + <string name="keyboard_layout_picker_title">Keyboard layouts</string> + <!-- User dictionary settings --><skip /> <!-- User dictionary settings, The titlebar text of the User dictionary settings screen. --> <string name="user_dict_settings_titlebar">User dictionary</string> |