Android TV keyboard initial import
D-pad aware input method for Android TV based devices. Bug: 146451908 Test: manual Change-Id: Ic602672c679e355461079bc74a2f08777e67e956
29
Android.bp
Normal file
@@ -0,0 +1,29 @@
|
||||
version_name = "1.00-aosp"
|
||||
version_code = "100"
|
||||
|
||||
android_app {
|
||||
name: "LeanbackIME",
|
||||
|
||||
sdk_version: "system_current",
|
||||
|
||||
srcs: [
|
||||
"src/**/*.java",
|
||||
],
|
||||
|
||||
optimize: {
|
||||
proguard_flags_files: ["proguard.cfg"],
|
||||
enabled: false,
|
||||
},
|
||||
|
||||
resource_dirs: ["res"],
|
||||
|
||||
aaptflags: [
|
||||
"--auto-add-overlay",
|
||||
|
||||
"--version-name",
|
||||
version_name,
|
||||
|
||||
"--version-code",
|
||||
version_code,
|
||||
]
|
||||
}
|
||||
44
AndroidManifest.xml
Normal file
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.inputmethod.leanback" >
|
||||
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="16"
|
||||
android:targetSdkVersion="23" />
|
||||
|
||||
<application
|
||||
android:label="@string/ime_name" >
|
||||
<service
|
||||
android:name="com.android.inputmethod.leanback.service.LeanbackImeService"
|
||||
android:label="@string/ime_service_name"
|
||||
android:permission="android.permission.BIND_INPUT_METHOD" >
|
||||
<intent-filter>
|
||||
<action android:name="android.view.InputMethod" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.view.im"
|
||||
android:resource="@xml/method" />
|
||||
</service>
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
1
CONTRIBUTING.md
Normal file
@@ -0,0 +1 @@
|
||||
See https://source.android.com/setup/contribute
|
||||
202
LICENSE
Normal file
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
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.
|
||||
14
proguard.cfg
Normal file
@@ -0,0 +1,14 @@
|
||||
-optimizationpasses 5
|
||||
-dontusemixedcaseclassnames
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-dontpreverify
|
||||
-verbose
|
||||
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
|
||||
|
||||
-keep public class * extends android.app.Service
|
||||
-keep public class * extends android.content.BroadcastReceiver
|
||||
-keep public class BinaryDictionary
|
||||
-keep public class Dictionary
|
||||
|
||||
-dontwarn org.bouncycastle.jce.provider.BouncyCastleProvider
|
||||
-dontwarn org.bouncycastle.x509.X509V3CertificateGenerator
|
||||
BIN
res/drawable-hdpi/ic_ime_accent_close.png
Normal file
|
After Width: | Height: | Size: 759 B |
BIN
res/drawable-hdpi/ic_ime_alphabet.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
res/drawable-hdpi/ic_ime_delete.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
res/drawable-hdpi/ic_ime_left_arrow.png
Normal file
|
After Width: | Height: | Size: 626 B |
BIN
res/drawable-hdpi/ic_ime_right_arrow.png
Normal file
|
After Width: | Height: | Size: 608 B |
BIN
res/drawable-hdpi/ic_ime_shift_lock_on.png
Normal file
|
After Width: | Height: | Size: 896 B |
BIN
res/drawable-hdpi/ic_ime_shift_off.png
Normal file
|
After Width: | Height: | Size: 902 B |
BIN
res/drawable-hdpi/ic_ime_shift_on.png
Normal file
|
After Width: | Height: | Size: 795 B |
BIN
res/drawable-hdpi/ic_ime_space.png
Normal file
|
After Width: | Height: | Size: 683 B |
BIN
res/drawable-hdpi/ic_ime_symbols.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
res/drawable-hdpi/ic_voice_available.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
res/drawable-hdpi/ic_voice_focus.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
BIN
res/drawable-hdpi/ic_voice_off.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
res/drawable-hdpi/ic_voice_recording.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
res/drawable-hdpi/key_selector.9.png
Normal file
|
After Width: | Height: | Size: 710 B |
BIN
res/drawable-hdpi/touch_selector.9.png
Normal file
|
After Width: | Height: | Size: 769 B |
BIN
res/drawable-hdpi/vs_reactive_dark.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
res/drawable-hdpi/vs_reactive_light.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
res/drawable-mdpi/ic_ime_accent_close.png
Normal file
|
After Width: | Height: | Size: 670 B |
BIN
res/drawable-mdpi/ic_ime_alphabet.png
Normal file
|
After Width: | Height: | Size: 756 B |
BIN
res/drawable-mdpi/ic_ime_delete.png
Normal file
|
After Width: | Height: | Size: 836 B |
BIN
res/drawable-mdpi/ic_ime_left_arrow.png
Normal file
|
After Width: | Height: | Size: 557 B |
BIN
res/drawable-mdpi/ic_ime_right_arrow.png
Normal file
|
After Width: | Height: | Size: 548 B |
BIN
res/drawable-mdpi/ic_ime_shift_lock_on.png
Normal file
|
After Width: | Height: | Size: 762 B |
BIN
res/drawable-mdpi/ic_ime_shift_off.png
Normal file
|
After Width: | Height: | Size: 731 B |
BIN
res/drawable-mdpi/ic_ime_shift_on.png
Normal file
|
After Width: | Height: | Size: 637 B |
BIN
res/drawable-mdpi/ic_ime_space.png
Normal file
|
After Width: | Height: | Size: 616 B |
BIN
res/drawable-mdpi/ic_ime_symbols.png
Normal file
|
After Width: | Height: | Size: 765 B |
BIN
res/drawable-mdpi/ic_voice_available.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
res/drawable-mdpi/ic_voice_focus.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
res/drawable-mdpi/ic_voice_off.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
res/drawable-mdpi/ic_voice_recording.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
res/drawable-mdpi/key_selector.9.png
Normal file
|
After Width: | Height: | Size: 471 B |
BIN
res/drawable-mdpi/touch_selector.9.png
Normal file
|
After Width: | Height: | Size: 527 B |
BIN
res/drawable-mdpi/vs_reactive_dark.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
res/drawable-mdpi/vs_reactive_light.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
res/drawable-xhdpi/ic_ime_accent_close.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
res/drawable-xhdpi/ic_ime_alphabet.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-xhdpi/ic_ime_delete.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-xhdpi/ic_ime_left_arrow.png
Normal file
|
After Width: | Height: | Size: 727 B |
BIN
res/drawable-xhdpi/ic_ime_right_arrow.png
Normal file
|
After Width: | Height: | Size: 703 B |
BIN
res/drawable-xhdpi/ic_ime_shift_lock_on.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
res/drawable-xhdpi/ic_ime_shift_off.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
res/drawable-xhdpi/ic_ime_shift_on.png
Normal file
|
After Width: | Height: | Size: 886 B |
BIN
res/drawable-xhdpi/ic_ime_space.png
Normal file
|
After Width: | Height: | Size: 849 B |
BIN
res/drawable-xhdpi/ic_ime_symbols.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable-xhdpi/ic_voice_available.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
res/drawable-xhdpi/ic_voice_focus.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
res/drawable-xhdpi/ic_voice_off.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
res/drawable-xhdpi/ic_voice_recording.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
res/drawable-xhdpi/key_selector.9.png
Normal file
|
After Width: | Height: | Size: 922 B |
BIN
res/drawable-xhdpi/touch_selector.9.png
Normal file
|
After Width: | Height: | Size: 1017 B |
BIN
res/drawable-xhdpi/vs_reactive_dark.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
res/drawable-xhdpi/vs_reactive_light.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
res/drawable-xxhdpi/ic_ime_accent_close.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable-xxhdpi/ic_ime_alphabet.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
res/drawable-xxhdpi/ic_ime_delete.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
res/drawable-xxhdpi/ic_ime_left_arrow.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable-xxhdpi/ic_ime_right_arrow.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable-xxhdpi/ic_ime_shift_lock_on.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable-xxhdpi/ic_ime_shift_off.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
res/drawable-xxhdpi/ic_ime_shift_on.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-xxhdpi/ic_ime_space.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable-xxhdpi/ic_ime_symbols.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable-xxhdpi/key_selector.9.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
res/drawable-xxhdpi/touch_selector.9.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
22
res/drawable/selector_caps_shift.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:drawable="@drawable/ic_ime_shift_on" android:state_selected="false"/>
|
||||
<item android:drawable="@drawable/ic_ime_shift_lock_on"/>
|
||||
|
||||
</selector>
|
||||
12
res/drawable/vs_micbtn_off_selector.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2012 Google Inc.
|
||||
All Rights Reserved.
|
||||
-->
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_focused="true"
|
||||
android:drawable="@drawable/ic_voice_focus" />
|
||||
|
||||
<item android:drawable="@drawable/ic_voice_available" />
|
||||
</selector>
|
||||
24
res/drawable/vs_micbtn_on_selector.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_focused="true"
|
||||
android:drawable="@drawable/ic_voice_focus" />
|
||||
|
||||
<item android:drawable="@drawable/ic_voice_available" />
|
||||
</selector>
|
||||
27
res/drawable/vs_micbtn_rec_selector.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_focused="true"
|
||||
android:drawable="@drawable/ic_voice_recording" />
|
||||
|
||||
<item android:state_pressed="true"
|
||||
android:drawable="@drawable/ic_voice_recording" />
|
||||
|
||||
<item android:drawable="@drawable/ic_voice_available" />
|
||||
</selector>
|
||||
43
res/layout/candidate.xml
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginLeft="@dimen/candidate_margin_horizontal"
|
||||
android:layout_marginRight="@dimen/candidate_margin_horizontal"
|
||||
android:clipChildren="false"
|
||||
android:focusable="true"
|
||||
android:paddingLeft="@dimen/candidate_padding_horizontal"
|
||||
android:paddingRight="@dimen/candidate_padding_horizontal" >
|
||||
|
||||
<Button
|
||||
android:id="@+id/text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/candidate_height"
|
||||
android:background="@android:color/transparent"
|
||||
android:clipChildren="false"
|
||||
android:ellipsize="none"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:gravity="center"
|
||||
android:singleLine="true"
|
||||
android:textAllCaps="false"
|
||||
android:textColor="@color/candidate_font_color"
|
||||
android:textSize="@dimen/candidate_font_size" />
|
||||
|
||||
</RelativeLayout>
|
||||
80
res/layout/input_leanback.xml
Normal file
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:leanbackime="http://schemas.android.com/apk/res/com.android.inputmethod.leanback"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipChildren="false"
|
||||
android:focusable="false"
|
||||
android:gravity="bottom" >
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/keyboard"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:clipChildren="false"
|
||||
android:orientation="horizontal" >
|
||||
|
||||
<com.android.inputmethod.leanback.LeanbackKeyboardView
|
||||
android:id="@+id/main_keyboard"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipChildren="false"
|
||||
leanbackime:columnCount="11"
|
||||
leanbackime:rowCount="5" />
|
||||
</LinearLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignBottom="@id/keyboard"
|
||||
android:layout_alignTop="@id/keyboard"
|
||||
android:layout_centerHorizontal="true" >
|
||||
|
||||
<com.android.inputmethod.leanback.voice.RecognizerView
|
||||
android:id="@+id/voice"
|
||||
android:layout_width="@dimen/recognizer_size"
|
||||
android:layout_height="@dimen/recognizer_size"
|
||||
android:layout_gravity="center"
|
||||
android:visibility="invisible" />
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignBottom="@id/keyboard"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignTop="@id/keyboard"
|
||||
android:layout_toRightOf="@id/keyboard" >
|
||||
|
||||
<Button
|
||||
android:id="@+id/enter"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/enter_key_height"
|
||||
android:layout_gravity="center"
|
||||
android:background="@null"
|
||||
android:fontFamily="sans-serif-regular"
|
||||
android:paddingLeft="@dimen/enter_key_padding_horizontal"
|
||||
android:paddingRight="@dimen/enter_key_padding_horizontal"
|
||||
android:text="@string/label_next_key"
|
||||
android:textColor="@color/enter_key_font_color"
|
||||
android:textSize="@dimen/enter_key_font_size" />
|
||||
</FrameLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
35
res/layout/recognizer_view.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright 2012 Google Inc. All Rights Reserved. -->
|
||||
<!-- Inline keyboard layout chrome, which includes the backspace and mode switcher buttons -->
|
||||
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:recognizer="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="96dp"
|
||||
android:layout_height="96dp"
|
||||
android:gravity="center"
|
||||
android:keepScreenOn="true"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<com.android.inputmethod.leanback.voice.BitmapSoundLevelView
|
||||
android:id="@+id/microphone"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
recognizer:disabledBackgroundColor="@android:color/transparent"
|
||||
recognizer:enabledBackgroundColor="@android:color/transparent"
|
||||
recognizer:minLevelRadius="28dip"
|
||||
recognizer:primaryLevels="?soundPrimaryLevel"
|
||||
recognizer:trailLevels="?soundTrailLevel" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/recognizer_mic_button"
|
||||
android:layout_width="@dimen/action_button_size"
|
||||
android:layout_height="@dimen/action_button_size"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:scaleType="fitXY"
|
||||
android:src="@drawable/ic_voice_available" >
|
||||
|
||||
<requestFocus />
|
||||
</ImageView>
|
||||
|
||||
</merge>
|
||||
79
res/layout/root_leanback.xml
Normal file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/root_ime"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom|center_horizontal"
|
||||
android:background="@color/keyboard_background"
|
||||
android:clipChildren="false"
|
||||
android:clipToPadding="false"
|
||||
android:focusable="true"
|
||||
android:gravity="bottom|center_horizontal"
|
||||
android:orientation="vertical"
|
||||
android:paddingBottom="@dimen/keyboard_bottom_spacing" >
|
||||
|
||||
<View
|
||||
android:id="@+id/candidate_background"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignBottom="@+id/suggestions_container"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:background="@color/candidate_background" />
|
||||
|
||||
<HorizontalScrollView
|
||||
android:id="@+id/suggestions_container"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/key_height"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginLeft="@dimen/candidate_scroll_view_horz_spacing"
|
||||
android:layout_marginRight="@dimen/candidate_scroll_view_horz_spacing"
|
||||
android:clipChildren="false"
|
||||
android:fillViewport="false"
|
||||
android:gravity="center"
|
||||
android:scrollbars="none" >
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/suggestions"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipChildren="false"
|
||||
android:divider="@null"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal"
|
||||
android:showDividers="middle" />
|
||||
</HorizontalScrollView>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/keyboard"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/suggestions_container"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:clipChildren="false"
|
||||
android:gravity="center"
|
||||
android:paddingTop="@dimen/keyboard_top_spacing" >
|
||||
|
||||
<include layout="@layout/input_leanback" />
|
||||
</LinearLayout>
|
||||
|
||||
<include layout="@layout/selector"/>
|
||||
</RelativeLayout>
|
||||
32
res/layout/selector.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 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.
|
||||
-->
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/selector"
|
||||
android:layout_width="@dimen/selector_size"
|
||||
android:layout_height="@dimen/selector_size"
|
||||
android:clipChildren="false" >
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/key_selector"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:clipChildren="false"
|
||||
android:scaleType="centerInside"
|
||||
android:background="@drawable/key_selector" />
|
||||
|
||||
</FrameLayout>
|
||||
BIN
res/raw/domain_en.dict
Normal file
40
res/values-af/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g>-sleutelbord"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g>-sleutelbord"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Gaan"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Volgende"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Stuur"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Soek"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Klaar"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Sleutelbordopsies"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Bewegingsensitiwiteit"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Aan"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Af"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Spasie"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Delete"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Modus verander"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Hoofletterslot"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Links"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Regs"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Prop \'n oorfoonstel in om te hoor hoe wagwoordsleutels hardop gesê word."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punt."</string>
|
||||
</resources>
|
||||
40
res/values-am/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"የ<xliff:g id="APP_NAME">Leanback</xliff:g> ቁልፍ ሰሌዳ"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"የ<xliff:g id="APP_NAME">Leanback</xliff:g> ቁልፍ ሰሌዳ"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"ሂድ"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"ቀጣይ"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"ላክ"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"ፍለጋ"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"ተከናውኗል"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"የቁልፍ ሰሌዳ አማራጮች"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"የእንቅስቃሴ ትብነት"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"በርቷል"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"ጠፍቷል"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"ክፍተት"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"ሰርዝ"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"ሁነታ ቀይር"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"ግራ"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"ቀኝ"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"የይለፍ ቃል ቁልፎች ሲነገሩ ለመስማት የጆሮ ማዳመጫ ይሰኩ።"</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"ነጥብ።"</string>
|
||||
</resources>
|
||||
40
res/values-ar/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"لوحة مفاتيح <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"لوحة مفاتيح <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"انتقال"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"التالي"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"إرسال"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"بحث"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"تم"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"خيارات لوحة المفاتيح"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"حساسية الحركة"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"تشغيل"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"إيقاف"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"مسافة"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"حذف"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"تغيير الوضع"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"لليسار"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"لليمين"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"يمكنك توصيل سماعة رأس لسماع مفاتيح كلمة المرور عندما يتم نطقها."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"نقطة"</string>
|
||||
</resources>
|
||||
40
res/values-bg/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Клавиатура за <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Клавиатура за <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Старт"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Напред"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Изпращане"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Търсене"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Готово"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Опции за клавиатурата"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Чувствителност на движението"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Включено"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Изключено"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Space"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Изтриване"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Промяна на режима"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Left"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Right"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Включете слушалки, за да чуете изговарянето на клавишите за паролата."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Точка."</string>
|
||||
</resources>
|
||||
40
res/values-bn-rBD/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g> কীবোর্ড"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g> কীবোর্ড"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"যান"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"পরবর্তী"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"পাঠান"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"অনুসন্ধান করুন"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"সম্পন্ন হয়েছে"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"কীবোর্ড বিকল্পগুলি"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"নড়াচড়ার সংবেদনশীলতা"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"চালু করুন"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"বন্ধ করুন"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"ব্যবধান"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Delete বোতাম"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Mode change বোতাম"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift বোতাম"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"বাম"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"ডান"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"উচ্চারিত পাসওয়ার্ডের কীগুলি শোনার জন্য একটি হেডসেট সংযুক্ত করুন৷"</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Dot."</string>
|
||||
</resources>
|
||||
40
res/values-ca/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Teclat <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Teclat <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Vés-hi"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Següent"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Envia"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Cerca"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Fet"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Opcions del teclat"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Sensibilitat del moviment"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Activa"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Desactiva"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Espai"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Suprimeix"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Canvi de mode"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Maj"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Bloq Maj"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Esquerra"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Dreta"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Connecta un auricular per escoltar les claus de la contrasenya en veu alta."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punt."</string>
|
||||
</resources>
|
||||
40
res/values-cs/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Klávesnice <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Klávesnice <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Jít"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Další"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Odeslat"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Hledat"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Hotovo"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Možnosti klávesnice"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Citlivost pohybu"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Zapnout"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Vypnout"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Mezerník"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Smazat"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Změna režimu"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Vlevo"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Vpravo"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Chcete-li slyšet zadávání hesla, připojte sluchátka."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Tečka."</string>
|
||||
</resources>
|
||||
40
res/values-da/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g>-tastatur"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g>-tastatur"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Start"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Næste"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Send"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Søg"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Færdig"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Valgmuligheder for tastatur"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Bevægelsesfølsomhed"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Til"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Fra"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Mellemrum"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Slet"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Ændring af tilstand"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Venstre"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Højre"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Tilslut et headset for at høre tasterne blive læst højt ved angivelse af adgangskode."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punktum."</string>
|
||||
</resources>
|
||||
40
res/values-de/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g>-Tastatur"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g>-Tastatur"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Los"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Weiter"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Senden"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Suchen"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Fertig"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Tastaturoptionen"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Bewegungsempfindlichkeit"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"An"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Aus"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Leertaste"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Löschen"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Modusänderung"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Feststelltaste"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Nach links"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Nach rechts"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Schließen Sie ein Headset an, um das Passwort gesprochen zu hören."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punkt."</string>
|
||||
</resources>
|
||||
40
res/values-el/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Πληκτρολόγιο <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Πληκτρολόγιο <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Μετάβαση"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Επόμενο"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Αποστολή"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Αναζήτηση"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Τέλος"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Επιλογές πληκτρολογίου"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Ευαισθησία κίνησης"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Ενεργοποίηση"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Απενεργοποίηση"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Πλήκτρο διαστήματος"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Διαγραφή"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Αλλαγή τρόπου"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Αριστερά"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Δεξιά"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Συνδέστε ακουστικά για να ακούσετε τα πλήκτρα του κωδικού πρόσβασης να εκφωνούνται."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Τελεία."</string>
|
||||
</resources>
|
||||
44
res/values-en-rAU/strings.xml
Normal file
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g> Keyboard"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g> Keyboard"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Go"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Next"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Send"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Search"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Finished"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Keyboard Options"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Movement sensitivity"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"On"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Off"</string>
|
||||
<!-- no translation found for keyboardview_keycode_space (5107808792477329036) -->
|
||||
<skip />
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Delete"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Mode change"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<!-- no translation found for keyboardview_keycode_caps (3870171746305993229) -->
|
||||
<skip />
|
||||
<!-- no translation found for keyboardview_keycode_left (5982531325934405109) -->
|
||||
<skip />
|
||||
<!-- no translation found for keyboardview_keycode_right (7152000779741202144) -->
|
||||
<skip />
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Plug in a headset to hear password keys spoken."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Dot"</string>
|
||||
</resources>
|
||||
40
res/values-en-rGB/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g> keyboard"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g> keyboard"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Go"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Next"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Send"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Search"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Finished"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Keyboard Options"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Movement sensitivity"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"On"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Off"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Space"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Delete"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Mode change"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Left"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Right"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Plug in a headset to hear password keys spoken."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Dot"</string>
|
||||
</resources>
|
||||
40
res/values-en-rIN/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g> keyboard"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g> keyboard"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Go"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Next"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Send"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Search"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Finished"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Keyboard Options"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Movement sensitivity"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"On"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Off"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Space"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Delete"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Mode change"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Shift"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Caps Lock"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Left"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Right"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Plug in a headset to hear password keys spoken."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Dot"</string>
|
||||
</resources>
|
||||
40
res/values-es-rUS/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Teclado de <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Teclado de <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Ir"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Siguiente"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Enviar"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Buscar"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Listo"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Opciones del teclado"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Sensibilidad de movimiento"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Activar"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Desactivar"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Barra espaciadora"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Eliminar"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Cambio de modo"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Mayúscula"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Bloqueo de mayúscula"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Izquierda"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Derecha"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Conecta los auriculares para escuchar las contraseñas."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punto"</string>
|
||||
</resources>
|
||||
40
res/values-es/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Teclado de <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Teclado de <xliff:g id="APP_NAME">Leanback</xliff:g>"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Ir"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Siguiente"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Enviar"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Buscar"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Listo"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Opciones del teclado"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Sensibilidad al movimiento"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Sí"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"No"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Espacio"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Eliminar"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Cambio de modo"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Mayús"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Bloq Mayús"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Flecha hacia la izquierda"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Flecha hacia la derecha"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Conecta un auricular para escuchar las contraseñas."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punto"</string>
|
||||
</resources>
|
||||
40
res/values-et-rEE/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"Rakend. <xliff:g id="APP_NAME">Leanback</xliff:g> klaviatuur"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"Rakend. <xliff:g id="APP_NAME">Leanback</xliff:g> klaviatuur"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Mine"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Järgmine"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Saada"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Otsi"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Valmis"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Klaviatuuri valikud"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Liikumistundlikkus"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Sees"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Väljas"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Tühik"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Kustutamine"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Režiimi muutmine"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Tõstuklahv"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Suurklahvilukk"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Vasak"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Parem"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Paroolide kuulamiseks ühendage peakomplekt."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Punkt."</string>
|
||||
</resources>
|
||||
40
res/values-eu-rES/strings.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2019 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="ime_name" msgid="5170587665791476108">"<xliff:g id="APP_NAME">Leanback</xliff:g> teklatua"</string>
|
||||
<string name="ime_service_name" msgid="3865311183421593944">"<xliff:g id="APP_NAME">Leanback</xliff:g> teklatua"</string>
|
||||
<string name="label_go_key" msgid="7845894543312353655">"Joan"</string>
|
||||
<string name="label_next_key" msgid="8149787729891612242">"Hurrengoa"</string>
|
||||
<string name="label_send_key" msgid="1803138506603147503">"Bidali"</string>
|
||||
<string name="label_search_key" msgid="8540828292920277213">"Bilatu"</string>
|
||||
<string name="label_done_key" msgid="4570417022685876778">"Eginda"</string>
|
||||
<string name="settings_title" msgid="8361325634803696047">"Teklatu-aukerak"</string>
|
||||
<string name="title_movement_sensitivity" msgid="4289584473719351587">"Mugimendu-sentsibilitatea"</string>
|
||||
<string name="btn_on" msgid="5962775761492765922">"Aktibatuta"</string>
|
||||
<string name="btn_off" msgid="2029716012096104384">"Desaktibatuta"</string>
|
||||
<string name="keyboardview_keycode_space" msgid="5107808792477329036">"Zuriunea"</string>
|
||||
<string name="keyboardview_keycode_delete" msgid="8234736233323594641">"Ezabatu"</string>
|
||||
<string name="keyboardview_keycode_mode_change" msgid="1942413151586211565">"Modu-aldaketa"</string>
|
||||
<string name="keyboardview_keycode_shift" msgid="1088869515399768583">"Maius"</string>
|
||||
<string name="keyboardview_keycode_caps" msgid="3870171746305993229">"Blok Maius"</string>
|
||||
<string name="keyboardview_keycode_left" msgid="5982531325934405109">"Ezkerrera"</string>
|
||||
<string name="keyboardview_keycode_right" msgid="7152000779741202144">"Eskuinera"</string>
|
||||
<string name="keyboard_headset_required_to_hear_password" msgid="2529485509348781553">"Konektatu entzungailua pasahitzaren teklak ozen entzuteko."</string>
|
||||
<string name="keyboard_password_character_no_headset" msgid="7230328211341305612">"Puntu."</string>
|
||||
</resources>
|
||||