diff options
author | 2012-02-01 19:43:58 +0900 | |
---|---|---|
committer | 2012-02-01 22:58:16 +0900 | |
commit | 71c695da22fd99e56ba5b267ad21b750ab1534b5 (patch) | |
tree | c5e66729dca93601a040fdd41003e036b34f32ec /java/res/xml/keys_curly_brackets.xml | |
parent | 40e9012276b1df9be8c1a9069eaeb16027549a85 (diff) | |
download | latinime-71c695da22fd99e56ba5b267ad21b750ab1534b5.tar.gz latinime-71c695da22fd99e56ba5b267ad21b750ab1534b5.tar.xz latinime-71c695da22fd99e56ba5b267ad21b750ab1534b5.zip |
Remove BIDI mirroring hack from Key
This change also removes isRtlKeyboard attribute from <Keyboard/>
Bug: 5948247
Change-Id: I85998f17ae146a4c8cd0f419ab820b746cb8974f
Diffstat (limited to 'java/res/xml/keys_curly_brackets.xml')
-rw-r--r-- | java/res/xml/keys_curly_brackets.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/java/res/xml/keys_curly_brackets.xml b/java/res/xml/keys_curly_brackets.xml new file mode 100644 index 000000000..b43fbb1fe --- /dev/null +++ b/java/res/xml/keys_curly_brackets.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** 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. +*/ +--> + +<merge + xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" +> + <Key + latin:keyLabel="{" + latin:keyOutputText="@string/output_text_for_left_curly_bracket" /> + <Key + latin:keyLabel="}" + latin:keyOutputText="@string/output_text_for_right_curly_bracket" /> +</merge> |