diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..aeae1d1
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..89943a9
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,235 @@
+# Contributing
+
+Thanks for contributing :)
+
+## Building the app
+
+The application uses Gradle and can be used with Android Studio, but using
+Android Studio is not required. The build dependencies are:
+- OpenJDK 17
+- Android SDK: build tools (minimum `28.0.1`), platform `30`
+
+Python 3 is required to update generated files but not to build the app.
+
+For Android Studio users, no more setup is needed.
+
+For Nix users, the right environment can be obtained with `nix-shell ./shell.nix`.
+Instructions to install Nix are [here](https://wiki.nixos.org/wiki/Nix_Installation_Guide).
+
+If you don't use Android Studio or Nix, you have to inform Gradle about the
+location of your Android SDK by either:
+- Setting the `ANDROID_HOME` environment variable to point to the android sdk or
+- Creating the file `local.properties` and writing
+ `sdk.dir=` into it.
+
+Building the debug apk:
+
+```sh
+./gradlew assembleDebug
+```
+
+Nix users can call gradle directly: `gradle assembleDebug`.
+
+If the build succeeds, the debug apk is located in `build/outputs/apk/debug/app-debug.apk`.
+
+## Debugging on your phone
+
+First [Enable adb debugging on your device](https://developer.android.com/studio/command-line/adb#Enabling).
+Then connect your phone to your computer using an USB cable or via wireless
+debugging.
+
+If you use Android Studio, this process will be automatic and you don't have to
+follow this guide anymore.
+
+And finally, install the application with:
+```sh
+./gradlew installDebug
+```
+
+The released version of the application won't be removed, both versions will
+be installed at the same time.
+
+## Debugging the application: INSTALL_FAILED_UPDATE_INCOMPATIBLE
+
+`./gradlew installDebug` can fail with the following error message:
+
+```
+FAILURE: Build failed with an exception.
+* What went wrong:
+Execution failed for task ':installDebug'.
+> java.util.concurrent.ExecutionException: com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing package juloo.keyboard2.debug signatures do not match newer version; ignoring!
+```
+
+The application can't be "updated" because the temporary certificate has been
+lost. The solution is to uninstall and install again.
+The application must be enabled again in the settings.
+
+```sh
+adb uninstall juloo.keyboard2.debug
+./gradlew installDebug
+```
+
+## Specifying a debug signing certificate on Github Actions
+
+It's possible to specify the signing certificate that the automated build
+should use.
+After you successfully run `./gradlew asssembleDebug`, (thus a debug.keystore
+exists) you can use this second command to generate a base64 stringified
+version of it:
+
+```sh
+gpg -c --armor --pinentry-mode loopback --passphrase debug0 --yes "debug.keystore"
+```
+
+This will create the file `debug.keystore.asc`, paste its content into a new
+Github secret named `DEBUG_KEYSTORE`.
+
+## Guidelines
+
+### Adding a layout
+
+Layouts are defined in XML, see `srcs/layouts/latn_qwerty_us.xml`.
+An online tool for editing layout files written by @Lixquid is available
+[here](https://unexpected-keyboard-layout-editor.lixquid.com/).
+
+Makes sure to specify the `name` attribute like in `latn_qwerty_us.xml`,
+otherwise the layout won't be added to the app.
+
+The layout file must be placed in the `srcs/layouts` directory and named
+according to:
+- script (`latn` for latin, etc..)
+- layout name (eg. the name of a standard)
+- country code (or language code if more adequate)
+
+Then, run `./gradlew genLayoutsList` to add the layout to the app.
+
+The last step will update the file `res/values/layouts.xml`, that you should
+not edit directly.
+
+Run `./gradlew checkKeyboardLayouts` to check some properties about your
+layout. This will change the file `check_layout.output`, which you should
+commit.
+
+Layouts are CC0 licensed by default. If you do not want your layout to be
+released into the public domain, add a copyright notice at the top of the file
+and a mention in `srcs/layouts/LICENSE`.
+
+#### Adding a programming layout
+
+A programming layout must contain all ASCII characters.
+The current programming layouts are: QWERTY, Dvorak and Colemak.
+
+See for example, Dvorak, added in https://github.com/Julow/Unexpected-Keyboard/pull/16
+
+It's best to leave free spots on the layout for language-specific symbols that
+are added automatically when necessary.
+These symbols are defined in `res/xml/method.xml` (`extra_keys`).
+
+It's possible to place extra keys with the `loc` prefix. These keys are
+normally hidden unless they are needed.
+
+Some users cannot easily type the characters close the the edges of the screen
+due to a bulky phone case. It is best to avoid placing important characters
+there (such as the digits or punctuation).
+
+#### Adding a localized layout
+
+Localized layouts (a layout specific to a language) are gladly accepted.
+See for example: 4333575 (Bulgarian), 88e2175 (Latvian), 133b6ec (German).
+
+They don't need to contain every ASCII characters (although it's useful in
+passwords) and dead-keys.
+
+### Adding support for a language
+
+Supported locales are defined in `res/xml/method.xml`.
+
+The attributes `languageTag` and `imeSubtypeLocale` define a locale, the
+attribute `imeSubtypeExtraValue` defines the default layout and the dead-keys
+and other extra keys to show.
+
+The list of language tags (generally two letters)
+and locales (generally of the form `xx_XX`)
+can be found in this [stackoverflow answer](https://stackoverflow.com/a/7989085)
+
+### Updating translations
+
+The text used in the app is written in `res/values-/strings.xml`.
+
+The list of language tags can be found in this
+[stackoverflow answer](https://stackoverflow.com/a/7989085)
+
+The first part before the `_` is used, for example,
+`res/values-fr/strings.xml` for French,
+`res/values-lv/strings.xml` for Latvian.
+
+Commented-out lines indicate missing translations:
+
+```xml
+
+```
+
+Remove the `` parts and change the text.
+
+### Adding a translation
+
+The preferred method for translating the app is to use Weblate:
+https://hosted.weblate.org/engage/unexpected-keyboard/
+
+The `res/values-/strings.xml` file must be created by copying the
+default translation in `res/values/strings.xml`, which contain the structure of
+the file and the English strings.
+
+Store descriptions in `fastlane/metadata/android/` are updated automatically.
+Translating changelogs is not useful.
+
+The app name might be partially translated, the "Unexpected" word should remain
+untranslated if possible.
+
+As translations need to be updated regularly, you can subscribe to this issue
+to receive a notification when an update is needed:
+https://github.com/Julow/Unexpected-Keyboard/issues/373
+
+### Adding symbols to Shift, Fn, Compose and other modifiers
+
+New key combinations can be added to builtin modifiers in the following files:
+
+- Shift in `srcs/compose/shift.json`.
+- Fn in `srcs/compose/fn.json`.
+- Compose in `srcs/compose/compose/extra.json`.
+- Other modifiers are defined in the `accent_*.json` files in `srcs/compose`.
+
+Generated code must then be updated by running:
+
+```
+./gradlew compileComposeSequences
+```
+
+These files describe each symbols that get transformed when a given modifier is
+activated, in JSON format. For example:
+
+Example from `fn.json`, when `Fn` is activated, `<` becomes `«`:
+```json
+{
+ "<": "«",
+}
+```
+
+The result of a sequence can be a key name. See the list of key names in
+[doc/Possible-key-values.md](doc/Possible-key-values.md). For example from
+`fn.json`, when `Fn` is activated, space becomes `nbsp`:
+```json
+{
+ " ": "nbsp",
+}
+```
+
+Compose sequences are made of several steps. For example, the sequence
+`Compose V s = Š` is defined as:
+```json
+{
+ "V": {
+ "s": "Š"
+ }
+}
+```
diff --git a/FUNDING.yml b/FUNDING.yml
new file mode 100644
index 0000000..558cae1
--- /dev/null
+++ b/FUNDING.yml
@@ -0,0 +1,3 @@
+github: [ Julow ]
+liberapay: Julow
+custom: [ "https://paypal.me/JulesAguillon" ]
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..f288702
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+ .
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/README.md b/README.md
index b25a495..497ba54 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,40 @@
-# un-key
+# Unexpected Keyboard [ ](https://hosted.weblate.org/engage/unexpected-keyboard/)
-Android Keyboard App
\ No newline at end of file
+[ ](https://f-droid.org/packages/juloo.keyboard2/)
+[ ](https://play.google.com/store/apps/details?id=juloo.keyboard2)
+
+Lightweight and privacy-conscious virtual keyboard for Android.
+
+https://github.com/Julow/Unexpected-Keyboard/assets/2310568/28f8f6fe-ac13-46f3-8c5e-d62443e16d0d
+
+The main feature is that you can type more characters by swiping the keys towards the corners.
+
+This application was originally designed for programmers using Termux.
+Now perfect for everyday use.
+
+This application contains no ads, doesn't make any network requests and is Open Source.
+
+Usage: to apply the symbols located in the corners of each key, slide your finger in the direction of the symbols. For example, the Settings are opened by sliding in the left down corner.
+
+| | | |
+| --- | --- | --- |
+| | | |
+
+## Help translate the application
+
+Improve the application translations [using Weblate](https://hosted.weblate.org/engage/unexpected-keyboard/).
+
+[ ](https://hosted.weblate.org/engage/unexpected-keyboard/)
+
+## Similar apps
+
+* [Calculator++](https://git.bubu1.eu/Bubu/android-calculatorpp) - Calculator with a similar UX, swipe to corners for advanced math symbols and operators.
+
+## Contributing
+
+For instructions on building the application, see
+[Contributing](CONTRIBUTING.md).
diff --git a/assets/special_font.ttf b/assets/special_font.ttf
new file mode 100644
index 0000000..b124fc5
Binary files /dev/null and b/assets/special_font.ttf differ
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..9cad84c
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,197 @@
+plugins {
+ id 'com.android.application' version '8.6.0'
+}
+
+dependencies {
+ implementation "androidx.window:window-java:1.3.0"
+ implementation "androidx.core:core:1.16.0"
+ testImplementation "junit:junit:4.13.2"
+}
+
+android {
+ namespace 'juloo.keyboard2'
+ compileSdk 35
+
+ defaultConfig {
+ applicationId "juloo.keyboard2"
+ minSdk 21
+ targetSdkVersion 35
+ versionCode 50
+ versionName "1.32.1"
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['srcs/juloo.keyboard2']
+ res.srcDirs = ['res', 'build/generated-resources']
+ assets.srcDirs = ['assets']
+ }
+
+ test {
+ java.srcDirs = ['test']
+ }
+ }
+
+ signingConfigs {
+ // Debug builds will always be signed. If no environment variables are set, a default
+ // keystore will be initialized by the task initDebugKeystore and used. This keystore
+ // can be uploaded to GitHub secrets by following instructions in CONTRIBUTING.md
+ // in order to always receive correctly signed debug APKs from the CI.
+ debug {
+ storeFile(System.env.DEBUG_KEYSTORE ? file(System.env.DEBUG_KEYSTORE) : file("debug.keystore"))
+ storePassword(System.env.DEBUG_KEYSTORE_PASSWORD ? "$System.env.DEBUG_KEYSTORE_PASSWORD" : "debug0")
+ keyAlias(System.env.DEBUG_KEY_ALIAS ? "$System.env.DEBUG_KEY_ALIAS" : "debug")
+ keyPassword(System.env.DEBUG_KEY_PASSWORD ? "$System.env.DEBUG_KEY_PASSWORD" : "debug0")
+ }
+
+ release {
+ if (System.env.RELEASE_KEYSTORE) {
+ storeFile file(System.env.RELEASE_KEYSTORE)
+ storePassword "$System.env.RELEASE_KEYSTORE_PASSWORD"
+ keyAlias "$System.env.RELEASE_KEY_ALIAS"
+ keyPassword "$System.env.RELEASE_KEY_PASSWORD"
+ }
+ }
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled true
+ shrinkResources true
+ debuggable false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
+ resValue "string", "app_name", "@string/app_name_release"
+ signingConfig signingConfigs.release
+ }
+
+ debug {
+ minifyEnabled false
+ shrinkResources false
+ debuggable true
+ applicationIdSuffix ".debug"
+ resValue "string", "app_name", "@string/app_name_debug"
+ resValue "bool", "debug_logs", "true"
+ signingConfig signingConfigs.debug
+ }
+ }
+
+ // Name outputs after the application ID.
+ android.applicationVariants.all { variant ->
+ variant.outputs.all {
+ outputFileName = "${applicationId}.apk"
+ }
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ lintOptions {
+ // Translation are already checked by 'syncTranslations'
+ disable 'MissingTranslation'
+ }
+}
+
+tasks.register('buildKeyboardFont') {
+ println "\nBuilding assets/special_font.ttf"
+ mkdir "$buildDir"
+ exec {
+ workingDir "$projectDir/srcs/special_font"
+ def svgFiles = workingDir.listFiles().findAll {
+ it.isFile() && it.name.endsWith(".svg")
+ }
+ commandLine("fontforge", "-lang=ff", "-script", "build.pe", "$buildDir/special_font.ttf", *svgFiles)
+ }
+ copy {
+ from "$buildDir/special_font.ttf"
+ into "assets"
+ }
+}
+
+tasks.register('genEmojis') {
+ println "\nGenerating res/raw/emojis.txt"
+ exec {
+ workingDir = projectDir
+ commandLine "python", "gen_emoji.py"
+ }
+}
+
+tasks.withType(Test).configureEach {
+ dependsOn 'genLayoutsList'
+ dependsOn 'checkKeyboardLayouts'
+ dependsOn 'syncTranslations'
+ dependsOn 'compileComposeSequences'
+}
+
+tasks.register('genLayoutsList') {
+ println "\nGenerating res/values/layouts.xml"
+ exec {
+ workingDir = projectDir
+ commandLine "python", "gen_layouts.py"
+ }
+}
+
+tasks.register('checkKeyboardLayouts') {
+ println "\nChecking layouts"
+ exec {
+ workingDir = projectDir
+ commandLine("python", "check_layout.py")
+ }
+}
+
+tasks.register('syncTranslations') {
+ println "\nUpdating translations"
+ exec {
+ workingDir = projectDir
+ commandLine "python", "sync_translations.py"
+ }
+}
+
+tasks.register('compileComposeSequences') {
+ def out = "srcs/juloo.keyboard2/ComposeKeyData.java"
+ println "\nGenerating ${out}"
+ exec {
+ def sequences = new File(projectDir, "srcs/compose").listFiles().findAll {
+ !it.name.endsWith(".py") && !it.name.endsWith(".md")
+ }
+ workingDir = projectDir
+ commandLine("python", "srcs/compose/compile.py", *sequences)
+ standardOutput = new FileOutputStream("${projectDir}/${out}")
+ }
+}
+
+tasks.named("preBuild") {
+ dependsOn += "initDebugKeystore"
+ dependsOn += "copyRawQwertyUS"
+ dependsOn += "copyLayoutDefinitions"
+}
+
+tasks.register('initDebugKeystore') {
+ if (!file("debug.keystore").exists()) {
+ println "Initializing default debug keystore"
+ exec {
+ // A shell script might be needed if this line requires input from the user
+ commandLine "keytool", "-genkeypair", "-dname", "cn=d, ou=e, o=b, c=ug", "-alias", "debug", "-keypass", "debug0", "-keystore", "debug.keystore", "-keyalg", "rsa", "-storepass", "debug0", "-validity", "10000"
+ }
+ }
+}
+
+// latn_qwerty_us is used as a raw resource by the custom layout option.
+tasks.register('copyRawQwertyUS')
+{
+ copy {
+ from "srcs/layouts/latn_qwerty_us.xml"
+ into "build/generated-resources/raw"
+ }
+}
+
+tasks.register('copyLayoutDefinitions')
+{
+ copy {
+ from "srcs/layouts"
+ include "*.xml"
+ into "build/generated-resources/xml"
+ }
+}
diff --git a/check_layout.output b/check_layout.output
new file mode 100644
index 0000000..84f101e
--- /dev/null
+++ b/check_layout.output
@@ -0,0 +1,25 @@
+arab_alt: Layout includes some ASCII punctuation but not all, missing: !, ", ', +, -, /, :, ;, <, =, >, ?, [, \, ], _, |, ~
+arab_hamvaj_tly: Layout includes some ASCII punctuation but not all, missing: ", %, ', ,, /, ;, <, =, >, ?, [, \, ], _, `, {, |, }
+arab_pc: Layout includes some ASCII punctuation but not all, missing: !, ', +, ;, ?, \, |
+arab_pc_ckb: Layout includes some ASCII punctuation but not all, missing: ", %, ', +, ,, ;, <, =, >, ?, `, |, ~
+arab_pc_ckb_fa: Layout includes some ASCII punctuation but not all, missing: ", #, $, %, &, ', ,, /, ;, ?, @, \, ^, `, |, ~
+arab_pc_hindu: Layout includes some ASCII punctuation but not all, missing: !, ', +, ;, ?, \, |
+arab_pc_ir: Layout includes some ASCII punctuation but not all, missing: ", %, ', ,, /, ;, <, =, >, ?, [, \, ], `, {, |, }
+beng_national: Layout includes some ASCII punctuation but not all, missing: $
+beng_provat: Layout includes some ASCII punctuation but not all, missing: $, &, *, ., /, <, >, [, \, ], `, {, |, }
+cyrl_jcuken_as: Layout includes some ASCII punctuation but not all, missing: ', ^, ~
+cyrl_jcuken_as: Layout contains unknown keys: combining_acute
+cyrl_lynyertdz_mk: Layout includes some ASCII punctuation but not all, missing: "
+cyrl_yaverti: Layout includes some ASCII punctuation but not all, missing: ~
+cyrl_yxukeng_os: Layout includes some ASCII punctuation but not all, missing: ", #, $, &, ', @, [, ], ~
+deva_alt: Layout includes some ASCII punctuation but not all, missing: #, $, %, &, ', (, ), *, +, ., /, :, <, =, >, [, \, ], ^, _, `, {, |, }, ~
+deva_inscript: Layout includes some ASCII punctuation but not all, missing: ", $, ', ^, _, `, |
+hebr_1_il: Layout includes some ASCII punctuation but not all, missing: (, ), <, >, [, ], {, }
+hebr_2_il: Layout includes some ASCII punctuation but not all, missing: (, ), <, >, [, ], {, }
+kann_kannada: Layout includes some ASCII punctuation but not all, missing: #, $, %, (, ), *, +, /, <, =, >, [, \, ], ^, `, {, |, }, ~
+latn_colemak: Some keys contain whitespaces, unexpected: ́
+latn_dvorak: Missing important key, missing: loc capslock
+latn_neo2: Layout redefines the bottom row but some important keys are missing, missing: loc switch_clipboard
+latn_qwertz_cz_multifunctional: Layout includes some ASCII punctuation but not all, missing: `
+latn_qwertz_sk: Layout includes some ASCII punctuation but not all, missing: `
+urdu_phonetic_ur: Layout includes some ASCII punctuation but not all, missing: <, >, ?, `, |, ~
diff --git a/check_layout.py b/check_layout.py
new file mode 100644
index 0000000..0208a97
--- /dev/null
+++ b/check_layout.py
@@ -0,0 +1,139 @@
+import xml.etree.ElementTree as ET
+import sys, os, glob, re
+
+layout_file_name = 0
+warnings = []
+
+KNOWN_NOT_LAYOUT = set([
+ "number_row", "numpad", "pin",
+ "bottom_row", "settings", "method",
+ "greekmath", "numeric", "emoji_bottom_row",
+ "clipboard_bottom_row" ])
+
+KEY_ATTRIBUTES = set([
+ "key0", "key1", "key2", "key3", "key4", "key5", "key6", "key7", "key8",
+ "c", "nw", "ne", "sw", "se", "w", "e", "n", "s"
+ ])
+
+# Keys defined in KeyValue.java
+known_keys = set()
+
+def warn(msg):
+ global warnings
+ warnings.append("%s: %s" % (layout_file_name, msg))
+
+def key_list_str(keys):
+ return ", ".join(sorted(list(keys)))
+
+def missing_some_of(keys, symbols, class_name=None):
+ if class_name is None:
+ class_name = "of [" + ", ".join(symbols) + "]"
+ missing = set(symbols).difference(keys)
+ if len(missing) > 0 and len(missing) != len(symbols):
+ warn("Layout includes some %s but not all, missing: %s" % (
+ class_name, key_list_str(missing)))
+
+def missing_required(keys, symbols, msg):
+ missing = set(symbols).difference(keys)
+ if len(missing) > 0:
+ warn("%s, missing: %s" % (msg, key_list_str(missing)))
+
+def unexpected_keys(keys, symbols, msg):
+ unexpected = set(symbols).intersection(keys)
+ if len(unexpected) > 0:
+ warn("%s, unexpected: %s" % (msg, key_list_str(unexpected)))
+
+# Write to [keys] and [dup].
+def parse_row_from_et(row, keys, dup):
+ for key in row:
+ for attr in key.keys():
+ if attr in KEY_ATTRIBUTES:
+ k = key.get(attr).removeprefix("\\")
+ if k in keys: dup.add(k)
+ keys.add(k)
+
+def parse_layout(fname):
+ keys = set()
+ dup = set()
+ root = ET.parse(fname).getroot()
+ if root.tag != "keyboard":
+ return None
+ for row in root:
+ parse_row_from_et(row, keys, dup)
+ return root, keys, dup
+
+def parse_row(fname):
+ keys = set()
+ dup = set()
+ root = ET.parse(fname).getroot()
+ if root.tag != "row":
+ return None
+ parse_row_from_et(root, keys, dup)
+ return root, keys, dup
+
+def check_layout(layout):
+ root, keys, dup = layout
+ if len(dup) > 0: warn("Duplicate keys: " + key_list_str(dup))
+ missing_some_of(keys, "~!@#$%^&*(){}`[]=\\-_;:/.,?<>'\"+|", "ASCII punctuation")
+ missing_some_of(keys, "0123456789", "digits")
+ missing_required(keys, ["backspace", "delete"], "Layout doesn't define some important keys")
+ unexpected_keys(keys,
+ ["copy", "paste", "cut", "selectAll", "shareText",
+ "pasteAsPlainText", "undo", "redo" ],
+ "Layout contains editing keys")
+ unexpected_keys(keys,
+ [ "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9",
+ "f10", "f11", "f12" ],
+ "Layout contains function keys")
+ unexpected_keys(keys, [""], "Layout contains empty strings")
+ unexpected_keys(keys, ["loc"], "Special keyword cannot be a symbol")
+ unexpected_keys(keys, filter(lambda k: k.strip()!=k, keys), "Some keys contain whitespaces")
+ unexpected_keys(keys, ["f11_placeholder", "f12_placeholder"], "These keys are now added automatically")
+
+ if root.get("script", "latin") == "latin":
+ missing_required(keys, ["shift", "loc capslock"], "Missing important key")
+ missing_required(keys, ["loc esc", "loc tab"], "Missing programming keys")
+
+ _, bottom_row_keys, _ = parse_row("res/xml/bottom_row.xml")
+
+ if root.get("bottom_row") == "false":
+ missing_required(keys, bottom_row_keys,
+ "Layout redefines the bottom row but some important keys are missing")
+ else:
+ unexpected_keys(keys, bottom_row_keys,
+ "Layout contains keys present in the bottom row")
+
+ if root.get("script") == None:
+ warn("Layout doesn't specify a script.")
+
+ keys_without_loc = set(( k.removeprefix("loc ") for k in keys ))
+ # Keys with a len under 3 are often composed characters
+ special_keys = set(( k for k in keys_without_loc if len(k) > 3 and ":" not in k ))
+ unknown = special_keys.difference(known_keys)
+ if len(unknown) > 0:
+ warn("Layout contains unknown keys: %s" % key_list_str(unknown))
+
+# Fill 'known_keys', which is used for some checks
+def parse_known_keys():
+ global known_keys
+ with open("srcs/juloo.keyboard2/KeyValue.java", "r") as f:
+ known_keys = set(
+ ( m.group(1) for m in re.finditer('case "([^"]+)":', f.read()) )
+ )
+
+parse_known_keys()
+
+for fname in sorted(glob.glob("srcs/layouts/*.xml")):
+ layout_id, _ = os.path.splitext(os.path.basename(fname))
+ if layout_id in KNOWN_NOT_LAYOUT:
+ continue
+ layout_file_name = layout_id
+ layout = parse_layout(fname)
+ if layout == None:
+ warn("Not a layout file")
+ else:
+ check_layout(layout)
+
+with open("check_layout.output", "w") as out:
+ for w in warnings:
+ print(w, file=out)
diff --git a/doc/Custom-layouts.md b/doc/Custom-layouts.md
new file mode 100644
index 0000000..1c37b18
--- /dev/null
+++ b/doc/Custom-layouts.md
@@ -0,0 +1,158 @@
+# Custom layouts
+You select a key layout for Unexpected Keyboard by calling up the Settings page (swipe the gear icon) and, at the top of the page, either tapping an existing layout or tapping _Add an alternate layout_. This displays a menu of available layouts. You can define your own layout by choosing _Custom layout_ at the bottom of this menu. Unexpected Keyboard now displays code in the XML format. You make changes by replacing this with different code and tapping OK.
+
+We recommend you keep your work in a file outside Unexpected Keyboard (named something like `MyChanges.xml`). If you installed a new version of Unexpected from a different website (with a different signature), then the work you did solely by editing the XML inside Unexpected would be lost.
+
+Put initial contents into your file in one of these ways:
+* Copypaste the code Unexpected displays for _Custom layout_.
+* Make a copy of one of the built-in layouts found in [`/srcs/layouts`](https://github.com/Julow/Unexpected-Keyboard/tree/master/srcs/layouts).
+* Use the [web-based editor](https://unexpected-keyboard-layout-editor.lixquid.com/). Interact with this web page to define keys and swipes and move keys to desired positions, and it will write the XML code for you. You can make the web page put the XML in a text file or copy it to the clipboard.
+
+When you have prepared suitable XML code in one of these ways, copy it to the clipboard and paste it into Unexpected Keyboard.
+
+## XML language overview
+A layout XML file comprises tags that start with `<` and end with `>`.
+* Every layout file starts with this declaration:
+ ``
+* Certain tags come in pairs—an opening tag and a closing tag—and apply to everything between them.
+ * The ``...` ` pair says that the material between them is the definition of your keyboard. There can be only one of these.
+ * The ``...`
` pair encloses the definition of a single row.
+ * An optional ``...` ` pair contains instructions if you want to change the behavior of a modifier key such as Shift.
+* Stand-alone tags include ` `, which defines a single key.
+
+A tag can have properties, defined using an equals sign and a pair of ASCII double quotes. For example, ` ` defines the "a" key. The `c` property of the `key` tag says which key you are defining, and the tag's location inside ``...`
` specifies where it will go in the row.
+
+### Example
+Here is a complete keyboard file with a single row containing an "a" key on the left and a "b" key on the right:
+
+
+
+
+
+
+
+
+
+## Keyboard metadata
+
+The ``...` ` pair follows the declaration tag and encloses the whole keyboard. The following properties may be used (The first two appear in the example above):
+
+* `name`: The name of the keyboard. The name you specify will appear in the Settings menu. If not present, the layout will just appear as “Custom layout”.
+
+* `script`: The (main) writing system that the keyboard supports. The possible values are `arabic`, `armenian`, `bengali`, `cyrillic`, `devanagari`, `gujarati`, `hangul`, `hebrew`, `latin`, `persian`, `shavian`, and `urdu`. It defaults to `latin`.
+
+* `numpad_script`: The script to use for the numpad. This is useful for scripts where a different, non-ASCII set of numerals is used, like Devanagari and Arabic. It defaults to the same as `script`.
+
+* `bottom_row`: Whether or not to show the built-in bottom row. It accepts `true` or `false`, and defaults to `true`. If your custom layout defines the bottom row, then specify `bottom_row="false"` to disable the built-in bottom row.
+ + We recommend your layout use the built-in bottom row, because it is still evolving and your layout will incorporate innovations in future versions. However, to define your own, the current definition of the bottom row is in [bottom_row.xml](https://github.com/Julow/Unexpected-Keyboard/res/xml/bottom_row.xml). You can copypaste this XML into your custom layout as a starting point.
+ + Likewise, the current definition of the top (number) row is in [number_row.xml](https://github.com/Julow/Unexpected-Keyboard/res/xml/number_row.xml).
+
+* `embedded_number_row`: Whether the layout has an embedded number row, and thus the "Show number row" setting shouldn't add another one. It accepts `true` or `false`, and defaults to `false`.
+
+* `locale_extra_keys`: Whether Unexpected should add language-dependent extra keys from [method.xml](../res/xml/method.xml) to this layout. It accepts `true` or `false`, and defaults to `true`. To disable these automatic additions, specify `locale_extra_keys="false"`.
+
+## Row
+The ``...`
` pair encloses one row on the keyboard. It has the following optional property:
+* `height`: The height of the row: a positive floating-point value.
+
+* `scale`: A positive floating-point value. If present, scale the width of each key so that the total is equal to the specified value, in key width unit.
+
+A row's default height is 1.0 (one quarter of the keyboard height specified on the Settings menu). The `height` property makes the row taller or shorter than this. For example, if you define a 5-row keyboard but one row has `height="0.7"`, then the keyboard's total height is 4.7 units. If the total is different from 4.0, the keyboard will be taller or shorter than that specified in Settings.
+
+## Key
+The ` ` tag defines a key on the keyboard. Its position in the sequence of keys inside ``...`
` indicates its position in the row from left to right. What the key does is defined by optional properties.
+
+### Taps
+What the key does when tapped is defined by the optional `c` property. For example, ` ` defines the "a" key. Unexpected Keyboard provides a legend in the middle of the key.
+
+When the Shift modifier is tapped, the "a" key becomes the "A" key and the legend temporarily changes. The Fn modifier makes a different change. You can override this behavior with a modmap (see below).
+
+### Swipes
+The following optional properties define the effects of swipes:
+* `n`, `ne`, `e`, `se`, `s`, `sw`, `w`, `nw`: What the key should do when it is swiped in the direction of that compass point. ("North" means upward and "East" is to the right.)
+
+
+ nw n ne
+
+
+ w c e
+
+
+ sw s se
+
+
+
+* `key1` through `key8` is an older way to achieve the same effects. The directions are ordered as follows:
+
+
+ key1 key7 key2
+
+
+ key5 key0 key6
+
+
+ key3 key8 key4
+
+
+
+You can define a swipe only once with either compass-point or numeric notation. Unexpected Keyboard automatically puts a small legend in that direction from the center of the key.
+
+* `anticircle`: The key value to send when doing an anti-clockwise gesture on the key.
+
+### Layout
+A key may have the following properties to control the row's layout:
+* `width`: The width of the key, a positive floating-point value. It defaults to 1.0
+* `shift`: How much empty space to add to the left of this key, a non-negative floating-point value. It defaults to 0.0
+
+Normally, a key's width is 1.0 unit. Unexpected Keyboard occupies the full width of the screen, and the row defining the highest number of units (in widths plus shifts) is as wide as the screen. A row whose width is a smaller number of units has empty space on the right.
+
+### Extra legend
+* `indication`: An optional extra legend to show under the main label. For example, ` ` displays ABC at the bottom of the 2 key, as on a pinpad or some telephones. If the key also defines a downward swipe with `s` or `key8`, the legends overlap.
+
+### Possible key values
+Built-in strings that assign a special function to a key are described in [this page](Possible-key-values.md). For example, `se="copy"` means a southeasterly swipe produces the Copy key. If a key value does not match any of the built-in strings, it outputs that text _verbatim_. For example, `c="a"` simply outputs the letter a.
+
+In a layout, a key value can also start with the `loc` prefix. These are place-holders; the tap or swipe does nothing unless enabled through the "Add keys to keyboard" option in the Settings menu, or implicitly enabled by the language the device is set to use. For example, `ne="loc accent_aigu"` says that a northeast swipe produces the acute accent combinatorial key—if enabled.
+
+## Modmap
+The ``...` ` pair encloses custom mappings for modifier keys. The modmap is placed inside the ``...` ` pair, but outside any row. A layout can have at most one modmap. It can contain any number of mappings. Each mapping has an `a` property and a `b` property and maps the `a` key to the `b` key. Valid values are listed in [Possible key values](Possible-key-values.md).
+
+The following mappings are supported:
+
+```xml
+
+```
+This means that when the Shift modifier is on, the key `before` is changed into `after`.
+
+```xml
+
+```
+This means that when the Fn modifier is on, the key `before` is changed into `after`.
+
+```xml
+
+```
+This means that when the Ctrl modifier is on, the key `before` is changed into `after`. The ` ` mapping is special in that the Ctrl modifier is applied to `after` after the mapping.
+
+The clockwise circle and the round-trip gestures are affected by both ` ` and ` ` mappings. The Shift mappings are used first and if that did not modify the key, the Fn mappings are used instead.
+
+### Examples
+① Turkish keyboards use the Latin alphabet, but when "i" is shifted, it should produce "İ". This is achieved with the following mapping:
+
+```xml
+
+```
+② Cyrillic layouts have no V key. A layout can define Ctrl-V with the following mapping:
+
+```xml
+
+```
+This maps Ctrl+в to Ctrl+V—not to v.
+
+## Portrait vs. landscape
+Unexpected Keyboard remembers *separately* which layout has last been used in portrait and landscape orientation. So you may have one custom layout for portrait orientation, but another custom layout for landscape orientation, and Unexpected Keyboard will switch between them without your intervention.
+
+## Contributing your layout
+The Unexpected Keyboard project enthusiastically accepts user contributions, including custom layouts. (See the guidance for layouts at [CONTRIBUTING.md](https://github.com/Julow/Unexpected-Keyboard/blob/master/CONTRIBUTING.md#Adding-a-layout)).
+* Submit a layout that has innovations of possible interest to other users at [Unexpected-Keyboard-layouts](https://github.com/Julow/Unexpected-Keyboard-layouts).
+* Propose that your layout be included in the set of built-in layouts by making a Pull Request for an addition to [srcs/layouts](https://github.com/Julow/Unexpected-Keyboard/tree/master/srcs/layouts). Please show that such a layout is standard in your locale or has a substantial number of users.
diff --git a/doc/Possible-key-values.md b/doc/Possible-key-values.md
new file mode 100644
index 0000000..e59a523
--- /dev/null
+++ b/doc/Possible-key-values.md
@@ -0,0 +1,188 @@
+# Key values
+
+A key value defines what a key on the keyboard does when pressed or swiped.
+
+Key values appear in the following places:
+
+- In custom layouts, they are the value of: the `c` attribute, the compass-point attributes `nw` ... `se`, and the old-style `key0` ... `key8` attributes.
+- Internally, they are used in the definition of the "Add keys to the keyboard" setting.
+
+Key values can be any of the following:
+
+- The name of a special key. A complete list of valid special keys follows.
+
+- An arbitrary sequence of characters not containing `:`.
+ This results in a key that writes the specified characters.
+
+- The syntax `legend:key_def`.
+ `legend` is the visible legend on the keyboard. It cannot contain `:`.
+ `key_def` can be:
+ + The name of a special key, as listed below.
+ + `'string'` An arbitrary string that can contain `:`. `'` can be added to the string as `` \' ``.
+ + `keyevent:keycode` An Android keycode. They are listed as `KEYCODE_...` in [KeyEvent](https://developer.android.com/reference/android/view/KeyEvent#summary).
+
+ Examples:
+ + `⏯:keyevent:85` A play/pause key (which has no effect in most apps).
+ + `my@:'my.email@domain.com'` A key that sends an arbitrary string
+
+- A macro, `legend:key_def1,key_def2,...`.
+ This results in a key with legend `legend` that behaves as if the sequence of `key_def` had been pressed in order.
+
+ Examples:
+ + `CA:ctrl,a,ctrl,c` A key with legend CA that sends the sequence `ctrl+a`, `ctrl+c`.
+ + `Cd:ctrl,backspace` A key with legend Cd that sends the shortcut `ctrl+backspace`.
+
+### Escape codes
+
+When defining a key value, several characters have special effects. If you want a character not to have its usual effect but to be taken literally, you should "escape" it in the usual way for XML:
+
+To get this character... | ...you can type
+:---- | :------
+A literal newline character, which is different from `enter` and `action` in certain apps. | `\n`
+A literal tab character, which is different from `tab` in certain apps. | `\t`
+`&` | `&`
+`<` | `<`
+`>` | `>`
+`"` | `"`
+
+The characters `\` (unless followed by n or t), `?`, `#`, and `@` do not need to be escaped when writing custom layouts. When writing a layout to be included in the app (in [srcs/layouts](https://github.com/Julow/Unexpected-Keyboard/tree/master/srcs/layouts)), they are represented by typing `\\`, `\?`, `\#`, and `\@`.
+
+The characters `,` and `:` can be escaped in a key value, using single quotes. For example, this macro defines a key with legend `http` that sends a string containing `:`: ` ` For simplicity, `,` and `:` cannot be escaped in the key legend.
+
+## Modifiers
+System modifiers are sent to the app, which can take app-specific action.
+
+Value | Meaning
+:---------- | :------
+`shift` | System modifier.
+`ctrl` | System modifier.
+`alt` | System modifier.
+`meta` | System modifier. Equivalent to the Windows key.
+
+The other modifiers take effect only within the keyboard.
+
+Value | Meaning
+:---------- | :------
+`fn` | Activates Fn mode, which assigns letters and symbols to special characters. Example: `fn` `!` = `¡`
+`compose` | Compose key. Enables composing characters using Linux-like shortcuts. Example: `Compose` `A` `'` types `Á` (A with acute accent).
+`capslock` | Activates and locks Shift.
+
+## App function keys
+These keys are sent to apps, which are free to ignore them. The keyboard does not perform editing in response to these keys.
+
+`esc`, `enter`,
+`up`, `right`,
+`down`, `left`,
+`page_up`, `page_down`,
+`home`, `end`,
+`backspace`, `delete`,
+`insert`, `scroll_lock`,
+`f1`-`f12`,
+`tab`, `copy`,
+`paste`, `cut`,
+`selectAll`, `pasteAsPlainText`,
+`undo`, `redo`
+
+## Keyboard editing actions
+In contrast, these keys perform editing on the text without sending anything to the app.
+Value | Meaning
+:-------------------- | :------
+`cursor_left` | Moves the cursor to the left with the slider gesture.
+`cursor_right` | Moves the cursor to the right with the slider gesture.
+`cursor_up` | Moves the cursor up with the slider gesture. Warning: this might make the cursor leave the text box.
+`cursor_down` | Moves the cursor down with the slider gesture. Warning: this might make the cursor leave the text box.
+`delete_word` | Delete the word to the left of the cursor.
+`forward_delete_word` | Delete the word to the right of the cursor.
+
+The values with `cursor_` are new in v1.31.0. Previous custom layouts specified the slider with `slider="true"`, which should be removed.
+
+## Whitespace
+Value | Meaning
+:------ | :------
+`space` | Space bar.
+`nbsp` | Non-breaking space.
+`nnbsp` | Narrow non-breaking space.
+`zwj` | Zero-width joiner.
+`zwnj` | Zero-width non-joiner.
+
+## Other modifiers and diacritics
+Value | Meaning
+:------------------- | :------
+`accent_aigu` | Acute accent. `á`
+`accent_caron` | Háček. `č`
+`accent_cedille` | Cedilla. `ç`
+`accent_circonflexe` | Circumflex. `â`
+`accent_grave` | Grave accent. `à`
+`accent_macron` | Macron. `ā`
+`accent_ring` | Ring accent. `å`
+`accent_tilde` | Tilde. `ã`
+`accent_trema` | Dieresis/umlaut. `ä`
+`accent_ogonek` | Ogonek. `ą`
+`accent_dot_above` | Dot accent. `ż` If applied to the lowercase `i`, removes the dot instead for Turkish. `ı`
+`accent_double_aigu` | Double acute accent. `ő`
+`accent_slash` | Slash through. `ø`
+`accent_arrow_right` | Right arrow above, used to denote a vector. `a⃗`
+`accent_breve` | Breve. `ă`
+`accent_bar` | Bar/strikethrough. `ɨ`
+`accent_dot_below` | Dot below. `ạ`
+`accent_horn` | Horn accent. `ơ`
+`accent_hook_above` | Hook accent. `ả`
+`accent_double_grave` | Double grave accent. `ȁ`
+`superscript` | Superscript. `ᵃ`
+`subscript` | Subscript. `ₐ`
+`ordinal` | Turns `a` and `o` into `ª` and `º`.
+`arrows` | Turns `1`-`4` and `6`-`9` into arrows.
+`box` | Turns `1`-`9`, `0`, and `.` into single-line, thin box-drawing characters.
+
+## Bidirectional
+Value | Meaning
+:------ | :------
+`lrm` | Left-to-right mark.
+`rlm` | Right-to-left mark.
+`b(`, `b)`, `b[`, `b]`, `b{`, `b}`, `blt`, `bgt` | Sends the bracket characters, but with mirrored key legends for right-to-left languages. (`blt` and `bgt` print `<` and `>` respectively.)
+
+## Hebrew
+Keys ending in `_placeholder` are normally hidden unless the Fn key is pressed.
+
+`qamats`, `patah`,
+`sheva`, `dagesh`,
+`hiriq`, `segol`,
+`tsere`, `holam`,
+`qubuts`, `hataf_patah`,
+`hataf_qamats`, `hataf_segol`,
+`shindot`, `shindot_placeholder`,
+`sindot`, `sindot_placeholder`,
+`geresh`, `gershayim`,
+`maqaf`, `rafe`,
+`ole`, `ole_placeholder`,
+`meteg`, `meteg_placeholder`
+
+## Keyboard behavior keys
+Value | Meaning
+:--------------------- | :------
+`config` | Gear icon; opens Unexpected Keyboard settings.
+`switch_text` | Switch to the text layer (main layer).
+`switch_numeric` | Switch to the numeric layer.
+`switch_emoji` | Switch to the emoji layer.
+`switch_back_emoji` | Switch to the text layer from the emoji layer.
+`switch_forward` | Change the keyboard layout, as long as Unexpected Keyboard has multiple keyboard layouts enabled in the settings.
+`switch_backward` | Change the keyboard layout to the previous one in the list.
+`switch_greekmath` | Switch to the Greek & Math Symbols layer.
+`switch_clipboard` | Switch to the clipboard pane.
+`change_method` | Open the input method picker dialog.
+`change_method_prev` | Switch to the previously used input method.
+`action` | Performs a special context-sensitive operation related to the Enter key. For example, in the Twitter (X) app, `enter` adds a new line, while `action` posts.
+`voice_typing` | Begin voice typing.
+`voice_typing_chooser` | Shows a menu where you can choose which voice typing provider to use, then begins voice typing when you make a selection.
+`shareText` | Emit a share Intent for the selected text. **Oddity:** This is in CamelCase.
+
+## Unused
+These keys are known to do nothing.
+
+`replaceText`, `textAssist`,
+`autofill`, `removed`
+
+## Placeholders
+These keys are normally hidden unless the Fn modifier is activated.
+
+`f11_placeholder` | `f12_placeholder`
diff --git a/fastlane/metadata/android/cs-CZ/full_description.txt b/fastlane/metadata/android/cs-CZ/full_description.txt
new file mode 100644
index 0000000..0f83159
--- /dev/null
+++ b/fastlane/metadata/android/cs-CZ/full_description.txt
@@ -0,0 +1,6 @@
+Hlavní funkcí je možnost psát více znaků posunutím kláves směrem k rohům.
+
+Tato aplikace byla původně navržena pro programátory používající Termux.
+Nyní je ideální pro každodenní použití.
+
+Tato aplikace neobsahuje žádné reklamy, nevyužívá připojení k síti a je Open Source.
diff --git a/fastlane/metadata/android/cs-CZ/short_description.txt b/fastlane/metadata/android/cs-CZ/short_description.txt
new file mode 100644
index 0000000..a08cb7f
--- /dev/null
+++ b/fastlane/metadata/android/cs-CZ/short_description.txt
@@ -0,0 +1 @@
+Nenáročná virtuální klávesnice pro vývojáře.
diff --git a/fastlane/metadata/android/cs-CZ/title.txt b/fastlane/metadata/android/cs-CZ/title.txt
new file mode 100644
index 0000000..41e555e
--- /dev/null
+++ b/fastlane/metadata/android/cs-CZ/title.txt
@@ -0,0 +1 @@
+Klávesnice Unexpected
diff --git a/fastlane/metadata/android/de-DE/full_description.txt b/fastlane/metadata/android/de-DE/full_description.txt
new file mode 100644
index 0000000..b445acd
--- /dev/null
+++ b/fastlane/metadata/android/de-DE/full_description.txt
@@ -0,0 +1,6 @@
+Diese Tastatur zeichnet sich dadurch aus, dass man zusätzliche Zeichen durch Wischgesten in Richtung der Tastenecken eingeben kann.
+
+Die Anwendung wurde ursprünglich für das Programmieren in Termux entwickelt.
+Mittlerweile ist sie auch für den täglichen Gebrauch perfekt geeignet.
+
+Diese App enthält keine Werbung, benötigt keinen Netzwerkzugriff und ist quelloffen.
diff --git a/fastlane/metadata/android/de-DE/short_description.txt b/fastlane/metadata/android/de-DE/short_description.txt
new file mode 100644
index 0000000..8fb5817
--- /dev/null
+++ b/fastlane/metadata/android/de-DE/short_description.txt
@@ -0,0 +1 @@
+Eine schlanke, datenschutzfreundliche Bildschirmtastatur für Android.
diff --git a/fastlane/metadata/android/de-DE/title.txt b/fastlane/metadata/android/de-DE/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/de-DE/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/en-US/changelogs/11.txt b/fastlane/metadata/android/en-US/changelogs/11.txt
new file mode 100644
index 0000000..d502a46
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/11.txt
@@ -0,0 +1,3 @@
+- Add support for Spanish and Italian
+- Improved the placement of some characters (especially accents) and added more (french quotes, dash and em-dash).
+- Fixed some bugs (a crash on old versions of Android and a graphical bug due to rotation)
diff --git a/fastlane/metadata/android/en-US/changelogs/12.txt b/fastlane/metadata/android/en-US/changelogs/12.txt
new file mode 100644
index 0000000..4cd703d
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/12.txt
@@ -0,0 +1 @@
+First open-source release!
diff --git a/fastlane/metadata/android/en-US/changelogs/13.txt b/fastlane/metadata/android/en-US/changelogs/13.txt
new file mode 100644
index 0000000..3517dce
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/13.txt
@@ -0,0 +1,3 @@
+- Add support for Swedish
+- Fix keyboard shortcuts not working in some applications
+- Fix a graphical bug and add some tweaks
diff --git a/fastlane/metadata/android/en-US/changelogs/14.txt b/fastlane/metadata/android/en-US/changelogs/14.txt
new file mode 100644
index 0000000..39acd32
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/14.txt
@@ -0,0 +1,8 @@
+New languages: German
+
+New keyboard layouts: QWERTZ
+
+Added themes: White, Dark and OLED Black
+
+Added the Action key near the Enter key, required for some app.
+Improved some options and fixed a few bugs.
diff --git a/fastlane/metadata/android/en-US/changelogs/15.txt b/fastlane/metadata/android/en-US/changelogs/15.txt
new file mode 100644
index 0000000..39acd32
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/15.txt
@@ -0,0 +1,8 @@
+New languages: German
+
+New keyboard layouts: QWERTZ
+
+Added themes: White, Dark and OLED Black
+
+Added the Action key near the Enter key, required for some app.
+Improved some options and fixed a few bugs.
diff --git a/fastlane/metadata/android/en-US/changelogs/16.txt b/fastlane/metadata/android/en-US/changelogs/16.txt
new file mode 100644
index 0000000..5ddd4e3
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/16.txt
@@ -0,0 +1,13 @@
+New languages: Latvian (thanks @eandersons), Bulgarian (thanks Zdravko Iskrenov)
+New layouts: Bulgarian traditional, Latvian
+
+The application can now be translated.
+Translations: French, Latvian (thanks @eandersons)
+
+Improve the behavior of the Action key.
+The globe key now opens the keyboard switching dialog.
+The literal tab character can be typed with Fn+Tab.
+Add options to control the spacing between the keys.
+Better integration with the system theme.
+
+Thanks to all the contributors: @Moini, @sdrapha, @eandersons, @Poussinou, Zdravko Iskrenov
diff --git a/fastlane/metadata/android/en-US/changelogs/17.txt b/fastlane/metadata/android/en-US/changelogs/17.txt
new file mode 100644
index 0000000..257a884
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/17.txt
@@ -0,0 +1,13 @@
+New languages: Portuguese (thanks @sdrapha), Russian (thanks @carrot-cookie), Spanish (thanks @gh0ste)
+New layouts: Dvorak (thanks @AlexandraAlter), Russian Jcuken, Spanish Qwerty
+
+Added the Meta key (the equivalent of the Win on Windows)
+Added ordinal symbols on the number pane (thanks @sdrapha)
+Better position for the arrow keys (thanks @MaxGyver83)
+Improvements to some of the symbols (thanks @MaxGyver83, @Roy-Orbison)
+Improvements to the layouts
+Improvements to the key-repeat for arrows
+Fixed Shift+Arrows for selecting text
+Fixed dark theme bugs on Xiaomi phones
+
+Thanks to all the contributors: @sdrapha, @MaxGyver83, @AlexandraAlter, @Roy-Orbison, @carrot-cookie, @gh0ste
diff --git a/fastlane/metadata/android/en-US/changelogs/18.txt b/fastlane/metadata/android/en-US/changelogs/18.txt
new file mode 100644
index 0000000..78be338
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/18.txt
@@ -0,0 +1,5 @@
+Improved text size, especially on large screens
+Increased contrasts
+Improved symbols (thanks @sdrapha)
+German translation (thanks @polyctena)
+Fix to some layouts.
diff --git a/fastlane/metadata/android/en-US/changelogs/19.txt b/fastlane/metadata/android/en-US/changelogs/19.txt
new file mode 100644
index 0000000..ac71f0a
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/19.txt
@@ -0,0 +1,21 @@
+Translations: Brazilian portuguese (@igorSilCar), Chinese-Simplified (@9-2-1), Korean (@notnickid)
+New layouts: Swedish (@thabubble), Korean (@notnickid)
+
+Improved computation of the swipe gesture and fix unstoppable key-repeat on
+some devices.
+
+Moved keys away from the edges of the screen and other improvements to the layouts.
+
+Improved rendering of some symbols.
+
+Added more characters to the keyboard:
+- New combinations to Fn (@ArenaL5)
+- Currency symbols
+- Added arrow and box symbols (@sdrapha)
+- F11 and F12.
+
+Option for making modifiers lockable. (@sdrapha)
+Fixes to the Spanish layout and other fixes. (@ArenaL5)
+Many other fixes.
+
+Huge thanks to the contributors: @igorSilCar, @sdrapha, @ArenaL5, @notnickid, @9-2-1, @thabubble
diff --git a/fastlane/metadata/android/en-US/changelogs/20.txt b/fastlane/metadata/android/en-US/changelogs/20.txt
new file mode 100644
index 0000000..d4d7b13
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/20.txt
@@ -0,0 +1,25 @@
+Quick fix release.
+
+Previously:
+
+Translations: Brazilian portuguese (@igorSilCar), Chinese-Simplified (@9-2-1), Korean (@notnickid)
+New layouts: Swedish (@thabubble), Korean (@notnickid)
+
+Improved computation of the swipe gesture and fix unstoppable key-repeat on
+some devices.
+
+Moved keys away from the edges of the screen and other improvements to the layouts.
+
+Improved rendering of some symbols.
+
+Added more characters to the keyboard:
+- New combinations to Fn (@ArenaL5)
+- Currency symbols
+- Added arrow and box symbols (@sdrapha)
+- F11 and F12.
+
+Option for making modifiers lockable. (@sdrapha)
+Fixes to the Spanish layout and other fixes. (@ArenaL5)
+Many other fixes.
+
+Huge thanks to the contributors: @igorSilCar, @sdrapha, @ArenaL5, @notnickid, @9-2-1, @thabubble
diff --git a/fastlane/metadata/android/en-US/changelogs/21.txt b/fastlane/metadata/android/en-US/changelogs/21.txt
new file mode 100644
index 0000000..573c019
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/21.txt
@@ -0,0 +1,4 @@
+Fix compatibility with Android 6.
+Translation improvements.
+
+Huge thanks to the contributors: @marciozomb13
diff --git a/fastlane/metadata/android/en-US/changelogs/22.txt b/fastlane/metadata/android/en-US/changelogs/22.txt
new file mode 100644
index 0000000..d2c119c
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/22.txt
@@ -0,0 +1,7 @@
+Support languages: Lithuanian, Hungarian (@tbilles)
+New layouts: Neo2 (@matthiakl)
+
+Translation improvements (@polyctena, @marciozomb13)
+Fix modifiers applied twice when typing quickly. Some other fixes.
+
+Many thanks to the contributors: @matthiakl, @polyctena, @marciozomb13, @dircsem
diff --git a/fastlane/metadata/android/en-US/changelogs/23.txt b/fastlane/metadata/android/en-US/changelogs/23.txt
new file mode 100644
index 0000000..22ab208
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/23.txt
@@ -0,0 +1,9 @@
+New languages: Turkish (@erqan), Dutch (Belgium) (@draxaris1010)
+New layouts: Turkish (@erqan), Colemak (@dircsem), Hungarian QWERTY
+
+Less typos: Select the closest key on swipe (@Rodrigodd)
+Removed settings: Vibration, Show every accents
+More tweaks to the layouts
+Fixes to landscape mode, updated translations and more tweaks.
+
+Thanks to the contributors: @erqan, @draxaris1010, @dircsem, @Rodrigodd, @meanindra
diff --git a/fastlane/metadata/android/en-US/changelogs/24.txt b/fastlane/metadata/android/en-US/changelogs/24.txt
new file mode 100644
index 0000000..786376c
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/24.txt
@@ -0,0 +1,5 @@
+Add back the vibration option.
+Fix localized keys not in predefined positions.
+Improvements to layouts.
+
+Thanks to the contributors: @Thunder-Squirrel
diff --git a/fastlane/metadata/android/en-US/changelogs/25.txt b/fastlane/metadata/android/en-US/changelogs/25.txt
new file mode 100644
index 0000000..5a7c858
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/25.txt
@@ -0,0 +1,12 @@
+New supported languages: Polish, Ukrainian, Bengali, Norwegian
+New layouts: Ukrainian, Bengali, Norwegian, Bone, Czech
+New translations: Brazilian Portuguese, Italian, Russian, Czech
+
+Hold modifiers to lock, double tap on shift disabled by default.
+Option to add more keys to the keyboard.
+Automatic capitalisation at beginning of sentences.
+Added e-ink oriented theme.
+New pane for greek letters and mathematical symbols.
+Improvements to the layouts and various bug fixes.
+
+Thanks to the contributors: @nanno, @Quantenzitrone, @eandersons, @iamrasel, @ChristianGynnild, @igorSilCar, @CastixGitHub, @94KONG, @ptrm, @Validbit
diff --git a/fastlane/metadata/android/en-US/changelogs/26.txt b/fastlane/metadata/android/en-US/changelogs/26.txt
new file mode 100644
index 0000000..0af7c47
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/26.txt
@@ -0,0 +1,7 @@
+New supported languages: Hindi, Greek
+
+Disable fullscreen mode.
+Improvements to layouts and translations.
+Various fixes and improvements.
+
+Thanks to the contributors: @sdrapha, @lpv11, @Raj9039852537, @polyctena
diff --git a/fastlane/metadata/android/en-US/changelogs/27.txt b/fastlane/metadata/android/en-US/changelogs/27.txt
new file mode 100644
index 0000000..b05b825
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/27.txt
@@ -0,0 +1,11 @@
+New layouts: QWERTZ (Deutsch)
+
+Add optional numpad for wide screens.
+Add pin entry layout for numbers.
+Remove option "Lockable modifiers".
+Hide Alt and Meta keys by default.
+Added more optional keys.
+Allow typing password on boot.
+Improvements to the layouts and bug fixes.
+
+Thanks to the contributors: @geroxyz
diff --git a/fastlane/metadata/android/en-US/changelogs/28.txt b/fastlane/metadata/android/en-US/changelogs/28.txt
new file mode 100644
index 0000000..f6ea04a
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/28.txt
@@ -0,0 +1,6 @@
+Updated translations: Latvian
+
+Fix crash when typing device password
+Increase target SDK version to 31
+
+Thanks to the contributors: @eandersons
diff --git a/fastlane/metadata/android/en-US/changelogs/29.txt b/fastlane/metadata/android/en-US/changelogs/29.txt
new file mode 100644
index 0000000..61d5612
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/29.txt
@@ -0,0 +1,10 @@
+New layouts: QWERTY (Polski)
+
+Allow switching quickly between two layouts.
+Allow choosing opacity of the keyboard.
+Improved themes and rendering.
+Updated translations.
+Fixed key repeat bug when holding 3 keys.
+Tweaked the swipe gesture. Added some options.
+
+Thanks to the contributors: @9-2-1, @ChasmSolacer
diff --git a/fastlane/metadata/android/en-US/changelogs/30.txt b/fastlane/metadata/android/en-US/changelogs/30.txt
new file mode 100644
index 0000000..3e561ee
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/30.txt
@@ -0,0 +1 @@
+Bug fix release.
diff --git a/fastlane/metadata/android/en-US/changelogs/31.txt b/fastlane/metadata/android/en-US/changelogs/31.txt
new file mode 100644
index 0000000..2ea5cbb
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/31.txt
@@ -0,0 +1,7 @@
+New layouts: QWERTZ (Slovak)
+
+Bugs fixed.
+Updated translations.
+Tweaked themes and settings.
+
+Thanks to the contributors: Jozef Kundlak, @MAKI1LOVE
diff --git a/fastlane/metadata/android/en-US/changelogs/32.txt b/fastlane/metadata/android/en-US/changelogs/32.txt
new file mode 100644
index 0000000..d887e7e
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/32.txt
@@ -0,0 +1,10 @@
+New translations: Vietnamese
+New layouts: Hebrew, Vietnamese
+
+Move the cursor by sliding on the space bar.
+New ePaper theme.
+Added number row.
+Option to switch to the previous keyboard.
+Updated translations.
+
+Thanks to the contributors: @K4zoku, @rVnPower, @RamKromberg, @MAKI1LOVE
diff --git a/fastlane/metadata/android/en-US/changelogs/33.txt b/fastlane/metadata/android/en-US/changelogs/33.txt
new file mode 100644
index 0000000..2d93153
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/33.txt
@@ -0,0 +1,7 @@
+New layouts: Arabic, Devanagari
+
+Updated translations.
+Updated layouts.
+Bugs fixed.
+
+Thanks to the contributors: @ChasmSolacer, @mostafaayesh, @lrvideckis, @eandersons, @mscheidemann, @JackDotJS
diff --git a/fastlane/metadata/android/en-US/changelogs/34.txt b/fastlane/metadata/android/en-US/changelogs/34.txt
new file mode 100644
index 0000000..4379e1e
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/34.txt
@@ -0,0 +1,3 @@
+Bug fixes.
+
+Thanks to the contributors: @doak
diff --git a/fastlane/metadata/android/en-US/changelogs/35.txt b/fastlane/metadata/android/en-US/changelogs/35.txt
new file mode 100644
index 0000000..57b5e88
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/35.txt
@@ -0,0 +1,9 @@
+New layouts: Persian, Kurdish, Bengali Provat, Romanian, Czech
+New languages support: Icelandic
+Updated translations: Polish, Latvian, Russian, German, Vietnamese, Farsi, Brazilian, French, Simplified Chinese, Romanian
+
+Voice typing shortcut (can be disabled in settings).
+Improved vibration settings.
+Many bug fixes and improvements.
+
+Thanks to the contributors: @ChasmSolacer, @eandersons, @MAKI1LOVE, @Moini, @polyctena, @rVnPower, @RZHSSNZDH, @vladgba, @marciozomb13, @GoRaN909, @9-2-1, @shmVirus, @GrimPixel, @frimdo
diff --git a/fastlane/metadata/android/en-US/changelogs/36.txt b/fastlane/metadata/android/en-US/changelogs/36.txt
new file mode 100644
index 0000000..dae5520
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/36.txt
@@ -0,0 +1,9 @@
+Allow selecting any number of standard and custom layouts.
+Allow adding custom keys to the keyboard.
+Changed behavior of auto-added keys (often dead-keys).
+New layouts.
+Improved layouts and language support.
+Improved the space bar slider, and many more.
+Updated translations.
+
+Thanks to the contributors: @ChasmSolacer, @ElucGeek, @GoRaN909, @RZHSSNZDH, @Shareef101, @Validbit, @eandersons, @nitsvga, @polyctena, @sdrapha, @syskill
diff --git a/fastlane/metadata/android/en-US/changelogs/37.txt b/fastlane/metadata/android/en-US/changelogs/37.txt
new file mode 100644
index 0000000..b9f92cc
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/37.txt
@@ -0,0 +1,8 @@
+Improved custom layout option.
+Allow selecting voice typing app with a long press.
+The numpad can work with other numeral systems.
+New and updated layouts.
+New themes.
+Many small improvements.
+
+Thanks to the contributors: @pharook, @syskill, @ojas-bhagavath, @lrvideckis, @lyubomirv, @matthiakl, @deftkHD, @V6lhost, @RZHSSNZDH, @RetrogisusDEV, @rafasaurus, @krtsgnr7230, @eandersons, @ChasmSolacer, @Validbit, @polyctena
diff --git a/fastlane/metadata/android/en-US/changelogs/38.txt b/fastlane/metadata/android/en-US/changelogs/38.txt
new file mode 100644
index 0000000..7dec7e2
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/38.txt
@@ -0,0 +1,7 @@
+The custom vibration setting is back.
+Allow to hide the keyboard switching key.
+Fixed modifier keys in some development apps.
+Updated translations.
+Bug fixes and general improvements.
+
+Many thanks to the contributors: @abb128, @marciozomb13, @RetrogisusDEV, @Sestowner, @vedamanavi, @krtsgnr7230
diff --git a/fastlane/metadata/android/en-US/changelogs/39.txt b/fastlane/metadata/android/en-US/changelogs/39.txt
new file mode 100644
index 0000000..d215d03
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/39.txt
@@ -0,0 +1,6 @@
+New layouts: QWERTY (Slovak), Gujarati phonetic
+Add Linux Compose key to type a variety of characters using known combinations.
+Fixed localized numpad and number row.
+Many improvements and bug fixes.
+
+Huge thanks to the contributors: @Yogesh-B, @ChasmSolacer, @matthiakl, @Sestowner, @RyanGibb, @BogdanLata, @RetrogisusDEV, @V6lhost, @ErrrorMaxx, @sdrapha, @vedamanavi
diff --git a/fastlane/metadata/android/en-US/changelogs/40.txt b/fastlane/metadata/android/en-US/changelogs/40.txt
new file mode 100644
index 0000000..2588a3c
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/40.txt
@@ -0,0 +1,11 @@
+MessagEase and Thumb-Key inspired gestures with the anti-clockwise circle being
+completely configurable.
+
+Updated emojis.
+Improved Hangul (Korean) support.
+Added Danish support.
+Improved spacebar slider.
+Updated translations.
+Various improvements and fixes to the app and layouts.
+
+Many thanks to the contributors: @alotbsol555 @bkmgit @Cheesebaron @CloneWith @eandersons @JapanYoshi @Julow @la-ninpre @m15a @marciozomb13 @polyctena @solokot @Spike-from-NH @tmqCypher @Validbit
diff --git a/fastlane/metadata/android/en-US/changelogs/41.txt b/fastlane/metadata/android/en-US/changelogs/41.txt
new file mode 100644
index 0000000..cd0a1ec
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/41.txt
@@ -0,0 +1,8 @@
+Clipboard pane
+
+New Monet theme
+Improvements to custom layouts
+Options to disable key repeat and the circle gesture
+Options to disable the Tab and Esc keys
+
+Many thanks to the contributors: @alotbsol555 @ChasmSolacer @eandersons @polyctena @Sestowner @solokot @Spike-from-NH @TadaCZE @V6lhost @Validbit
diff --git a/fastlane/metadata/android/en-US/changelogs/42.txt b/fastlane/metadata/android/en-US/changelogs/42.txt
new file mode 100644
index 0000000..2000d36
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/42.txt
@@ -0,0 +1,6 @@
+Fix crash on Android 6.
+Fix scaling issues for layouts with few columns.
+Added Serbian layouts.
+Layout and compose key tweaks. Improvements to custom layouts. Added Menu key.
+
+Many thanks to the contributors: @adrian4096 @asivery @bokidori @dingodoppelt @RZHSSNZDH
diff --git a/fastlane/metadata/android/en-US/changelogs/43.txt b/fastlane/metadata/android/en-US/changelogs/43.txt
new file mode 100644
index 0000000..3e65865
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/43.txt
@@ -0,0 +1,14 @@
+New supported languages: Albanian, Belgian, Estonian, Georgian, Hawaiian,
+Irish, Kannada, Kazakh, Old Church Slavonic, Serbian, Tajiki, Tamil, Welsh
+
+Added WORKMAN (US) layout.
+Improved layouts for modern Hindi and Sanskrit, Greek, Kurdish, Persian, Czech.
+
+New compose sequences and added combining diacritic keys.
+New and improved themes.
+Many bug fixes and improvements.
+
+Many thanks to the contributors: @anaskaejdar @bokidori @cknight828 @cuhsy
+@Danger-Mkh @DocJr90 @IYO-OYI @kalankaboom @Kxeo @marciozomb13 @ms-jagadeeshan
+@npnpatidar @ptitgnu @quantenzitrone @Sestowner @solokot @Spike-from-NH
+@tenextractor
diff --git a/fastlane/metadata/android/en-US/changelogs/44.txt b/fastlane/metadata/android/en-US/changelogs/44.txt
new file mode 100644
index 0000000..e13dfb4
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/44.txt
@@ -0,0 +1 @@
+Bug fixes
diff --git a/fastlane/metadata/android/en-US/changelogs/45.txt b/fastlane/metadata/android/en-US/changelogs/45.txt
new file mode 100644
index 0000000..e13dfb4
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/45.txt
@@ -0,0 +1 @@
+Bug fixes
diff --git a/fastlane/metadata/android/en-US/changelogs/46.txt b/fastlane/metadata/android/en-US/changelogs/46.txt
new file mode 100644
index 0000000..e13dfb4
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/46.txt
@@ -0,0 +1 @@
+Bug fixes
diff --git a/fastlane/metadata/android/en-US/changelogs/47.txt b/fastlane/metadata/android/en-US/changelogs/47.txt
new file mode 100644
index 0000000..19b229f
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/47.txt
@@ -0,0 +1,8 @@
+Delete a word with a circle gesture on the delete key.
+Compose key can be unselected.
+Improved space bar slider and added selection mode.
+Lock shift with a circle gesture.
+Improvements to layouts.
+Various bug fixes and improvements to themes.
+
+Huge thanks to the contributors: @0skar2 @chuckwagoncomputing @dzaima @eandersons Lokesh Kumar @lrvideckis @ms-jagadeeshan @quantenzitrone @Sestowner @solokot @Spike-from-NH @srikanban @tenextractor
diff --git a/fastlane/metadata/android/en-US/changelogs/48.txt b/fastlane/metadata/android/en-US/changelogs/48.txt
new file mode 100644
index 0000000..1bf730f
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/48.txt
@@ -0,0 +1,9 @@
+Bug fixes
+
+Delete a word with a circle gesture on the delete key.
+Compose key can be unselected.
+Improved space bar slider and added selection mode.
+Lock shift with a circle gesture.
+Various bug fixes and improvements to themes and layouts.
+
+Many thanks to the contributors: @HaleyHalcyon @Jaoheah @Spike-from-NH
diff --git a/fastlane/metadata/android/en-US/changelogs/49.txt b/fastlane/metadata/android/en-US/changelogs/49.txt
new file mode 100644
index 0000000..11ac5b6
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/49.txt
@@ -0,0 +1,6 @@
+Better support for foldable devices
+Added layouts
+Improved selection mode
+Bug fixes and many other improvements
+
+Huge thanks to the contributors: @alotbsol555, @bergentroll, @dacc9, @HaleyHalcyon, @Jaoheah, @jorexdeveloper, @malbajun, @matejdro, @Spike-from-NH, @tenextractor
diff --git a/fastlane/metadata/android/en-US/changelogs/50.txt b/fastlane/metadata/android/en-US/changelogs/50.txt
new file mode 100644
index 0000000..e13dfb4
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/50.txt
@@ -0,0 +1 @@
+Bug fixes
diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt
new file mode 100644
index 0000000..e7ae33a
--- /dev/null
+++ b/fastlane/metadata/android/en-US/full_description.txt
@@ -0,0 +1,6 @@
+The main feature is that you can type more characters by swiping the keys towards the corners.
+
+This application was originally designed for programmers using Termux.
+Now perfect for everyday use.
+
+This application contains no ads, doesn't make any network requests and is Open Source.
diff --git a/fastlane/metadata/android/en-US/images/featureGraphic.png b/fastlane/metadata/android/en-US/images/featureGraphic.png
new file mode 100644
index 0000000..cee1006
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/featureGraphic.png differ
diff --git a/fastlane/metadata/android/en-US/images/icon.png b/fastlane/metadata/android/en-US/images/icon.png
new file mode 100644
index 0000000..d1818a8
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/icon.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png
new file mode 100644
index 0000000..b0a1b81
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png
new file mode 100644
index 0000000..c093db6
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png
new file mode 100644
index 0000000..81d8177
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png
new file mode 100644
index 0000000..1ea9bb2
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png
new file mode 100644
index 0000000..02e4100
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png
new file mode 100644
index 0000000..c5e3d44
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png differ
diff --git a/fastlane/metadata/android/en-US/short_description.txt b/fastlane/metadata/android/en-US/short_description.txt
new file mode 100644
index 0000000..fb43091
--- /dev/null
+++ b/fastlane/metadata/android/en-US/short_description.txt
@@ -0,0 +1 @@
+Lightweight and privacy-conscious virtual keyboard for Android.
diff --git a/fastlane/metadata/android/en-US/title.txt b/fastlane/metadata/android/en-US/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/en-US/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/en-US/video.txt b/fastlane/metadata/android/en-US/video.txt
new file mode 100644
index 0000000..5462335
--- /dev/null
+++ b/fastlane/metadata/android/en-US/video.txt
@@ -0,0 +1 @@
+https://www.youtube.com/watch?v=rwGvWesPFX8
diff --git a/fastlane/metadata/android/es-ES/full_description.txt b/fastlane/metadata/android/es-ES/full_description.txt
new file mode 100644
index 0000000..15c41f1
--- /dev/null
+++ b/fastlane/metadata/android/es-ES/full_description.txt
@@ -0,0 +1,6 @@
+La característica principal es que hay acceso a más caractéres deslizando hacia las esquinas de las teclas.
+
+Esta aplicación fue originalmente diseñada para programadores que usaran Termux.
+Ahora es perfecta para uso cotidiano.
+
+La misma no contiene ningún anuncio/publicidad, no realiza peticiones de red y es de Fuente Abierta.
diff --git a/fastlane/metadata/android/es-ES/short_description.txt b/fastlane/metadata/android/es-ES/short_description.txt
new file mode 100644
index 0000000..e9765d3
--- /dev/null
+++ b/fastlane/metadata/android/es-ES/short_description.txt
@@ -0,0 +1 @@
+Un teclado virtual ligero para Android consciente de su privacidad.
diff --git a/fastlane/metadata/android/es-ES/title.txt b/fastlane/metadata/android/es-ES/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/es-ES/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/fil/full_description.txt b/fastlane/metadata/android/fil/full_description.txt
new file mode 100644
index 0000000..cb143cf
--- /dev/null
+++ b/fastlane/metadata/android/fil/full_description.txt
@@ -0,0 +1,6 @@
+Ang pangunahing feature ay maaari kang mag-type ng mas marami pang karakter sa pag-swipe sa gilid ng mga key.
+
+Noong simula, ginawa itong application para sa mga programmer sa na nagte-Termux.
+Ngayo'y perpekto na sa pang-araw-araw.
+
+Walang ads, hindi nagne-network request at Open Source ang application na ito.
diff --git a/fastlane/metadata/android/fil/short_description.txt b/fastlane/metadata/android/fil/short_description.txt
new file mode 100644
index 0000000..b70d78a
--- /dev/null
+++ b/fastlane/metadata/android/fil/short_description.txt
@@ -0,0 +1 @@
+Magaan at privacy-conscious na virtual keyboard sa Android.
diff --git a/fastlane/metadata/android/fil/title.txt b/fastlane/metadata/android/fil/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/fil/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/fr-FR/full_description.txt b/fastlane/metadata/android/fr-FR/full_description.txt
new file mode 100644
index 0000000..1d633e0
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/full_description.txt
@@ -0,0 +1,6 @@
+La fonctionnalité principale est l'accès rapide à plus de caractères en balayant les touches vers les coins.
+
+Cette application a été conçue à l'origine pour les programmeurs utilisant Termux.
+Elle est maintenant parfaite pour une utilisation quotidienne.
+
+Cette application ne contient pas de publicité, n'accède pas au réseau et est Open Source.
diff --git a/fastlane/metadata/android/fr-FR/short_description.txt b/fastlane/metadata/android/fr-FR/short_description.txt
new file mode 100644
index 0000000..e1db4ce
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/short_description.txt
@@ -0,0 +1 @@
+Clavier virtuel léger et respectueux de la vie privée pour Android.
diff --git a/fastlane/metadata/android/fr-FR/title.txt b/fastlane/metadata/android/fr-FR/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/id/full_description.txt b/fastlane/metadata/android/id/full_description.txt
new file mode 100644
index 0000000..76d626c
--- /dev/null
+++ b/fastlane/metadata/android/id/full_description.txt
@@ -0,0 +1,6 @@
+Fitur utamanya adalah Anda dapat mengetik lebih banyak karakter dengan menggeser tombol ke arah sudut.
+
+Aplikasi ini awalnya dirancang untuk programmer yang menggunakan Termux.
+Sekarang sempurna untuk penggunaan sehari-hari.
+
+Aplikasi ini tidak berisi iklan, tidak membuat permintaan jaringan dan Open Source.
diff --git a/fastlane/metadata/android/id/short_description.txt b/fastlane/metadata/android/id/short_description.txt
new file mode 100644
index 0000000..a7cd36c
--- /dev/null
+++ b/fastlane/metadata/android/id/short_description.txt
@@ -0,0 +1 @@
+Keyboard virtual yang ringan dan sadar privasi untuk Android.
diff --git a/fastlane/metadata/android/id/title.txt b/fastlane/metadata/android/id/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/id/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/it-IT/full_description.txt b/fastlane/metadata/android/it-IT/full_description.txt
new file mode 100644
index 0000000..544f3e1
--- /dev/null
+++ b/fastlane/metadata/android/it-IT/full_description.txt
@@ -0,0 +1,6 @@
+La principale funzionalita` e' che si possono digitare caratteri aggiuntivi scorrendo sui tasti verso gli angoli.
+.
+Questa app e' stata inizialmente progettata per i programmatori che usavano Termux.
+Oggi e' perfetta per l'utilizzo quotidiano,
+.
+Questa app non contiene pubblicita`, non genera chiamate di rete ed e' Open Source.
diff --git a/fastlane/metadata/android/it-IT/short_description.txt b/fastlane/metadata/android/it-IT/short_description.txt
new file mode 100644
index 0000000..4b01bea
--- /dev/null
+++ b/fastlane/metadata/android/it-IT/short_description.txt
@@ -0,0 +1 @@
+Una Tastiera Virtuale Leggera Per La Programmazione
diff --git a/fastlane/metadata/android/it-IT/title.txt b/fastlane/metadata/android/it-IT/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/it-IT/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/ja-JP/full_description.txt b/fastlane/metadata/android/ja-JP/full_description.txt
new file mode 100644
index 0000000..23ad747
--- /dev/null
+++ b/fastlane/metadata/android/ja-JP/full_description.txt
@@ -0,0 +1,7 @@
+このキーボードは、キーの角をスワイプすることで様々なキーを入力できます。
+
+このアプリは元々はTermuxでのプログラミング用に設計されました。
+しかし、今では普段の入力にも適しています。
+PCキーボードでの半角入力を再現しています。日本語入力、変換は出来ません。
+
+このアプリは広告を含まず、インターネットに接続せず、そしてオープンソースです。
diff --git a/fastlane/metadata/android/ja-JP/short_description.txt b/fastlane/metadata/android/ja-JP/short_description.txt
new file mode 100644
index 0000000..ec83506
--- /dev/null
+++ b/fastlane/metadata/android/ja-JP/short_description.txt
@@ -0,0 +1 @@
+軽量でプライバシーに配慮したAndroid用仮想キーボード
diff --git a/fastlane/metadata/android/ja-JP/title.txt b/fastlane/metadata/android/ja-JP/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/ja-JP/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/ko-KR/full_description.txt b/fastlane/metadata/android/ko-KR/full_description.txt
new file mode 100644
index 0000000..6e3adca
--- /dev/null
+++ b/fastlane/metadata/android/ko-KR/full_description.txt
@@ -0,0 +1,6 @@
+주요 기능은 모서리 방향으로 키를 스와이프하여 더 많은 문자를 입력할 수 있다는 것입니다.
+
+이 앱은 처음에는 Termux를 사용하는 프로그래머들을 위한 것으로 개발되었습니다.
+지금은 일상적인 용도로도 완벽합니다.
+
+이 응용 프로그램에는 광고가 없으며 네트워크 요청을 하지 않고 오픈 소스입니다.
diff --git a/fastlane/metadata/android/ko-KR/short_description.txt b/fastlane/metadata/android/ko-KR/short_description.txt
new file mode 100644
index 0000000..63a2ebc
--- /dev/null
+++ b/fastlane/metadata/android/ko-KR/short_description.txt
@@ -0,0 +1 @@
+개발자들을 위한 가벼운 가상 키보드.
diff --git a/fastlane/metadata/android/ko-KR/title.txt b/fastlane/metadata/android/ko-KR/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/ko-KR/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/lv/full_description.txt b/fastlane/metadata/android/lv/full_description.txt
new file mode 100644
index 0000000..98e1dee
--- /dev/null
+++ b/fastlane/metadata/android/lv/full_description.txt
@@ -0,0 +1,6 @@
+Galvenā tastatūras iespēja ir viegli ievadīt vairāk rakstzīmju ar pavilkšanu uz taustiņu stūriem.
+
+Sākotnēji šī lietotne tika izstrādāta programmētājiem, kas izmanto Termux.
+Tagad tā lieliski piemērota ikdienas lietošanai.
+
+Lietotne nesatur reklāmas, neveic nekādus tīkla pieprasījumus, un tās pirmkods ir pieejams visiem.
diff --git a/fastlane/metadata/android/lv/short_description.txt b/fastlane/metadata/android/lv/short_description.txt
new file mode 100644
index 0000000..77960bf
--- /dev/null
+++ b/fastlane/metadata/android/lv/short_description.txt
@@ -0,0 +1 @@
+Mazizmēra virtuālā Android tastatūra, kurai rūp privātums.
diff --git a/fastlane/metadata/android/lv/title.txt b/fastlane/metadata/android/lv/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/lv/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/nl-NL/full_description.txt b/fastlane/metadata/android/nl-NL/full_description.txt
new file mode 100644
index 0000000..ec086bc
--- /dev/null
+++ b/fastlane/metadata/android/nl-NL/full_description.txt
@@ -0,0 +1,6 @@
+De belangrijkste functie is dat je meer tekens kunt typen door de toetsen naar de hoeken te vegen.
+
+Deze applicatie is oorspronkelijk ontworpen voor programmeurs die Termux gebruiken.
+Nu perfect voor dagelijks gebruik.
+
+Deze applicatie bevat geen advertenties, doet geen netwerkverzoeken en is Open Source.
diff --git a/fastlane/metadata/android/nl-NL/short_description.txt b/fastlane/metadata/android/nl-NL/short_description.txt
new file mode 100644
index 0000000..4fff3de
--- /dev/null
+++ b/fastlane/metadata/android/nl-NL/short_description.txt
@@ -0,0 +1 @@
+Lichtgewicht en privacy-bewust virtueel toetsenbord voor Android.
diff --git a/fastlane/metadata/android/nl-NL/title.txt b/fastlane/metadata/android/nl-NL/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/nl-NL/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/pl-PL/full_description.txt b/fastlane/metadata/android/pl-PL/full_description.txt
new file mode 100644
index 0000000..9151127
--- /dev/null
+++ b/fastlane/metadata/android/pl-PL/full_description.txt
@@ -0,0 +1,6 @@
+Główną cechą tej klawiatury jest możliwość wprowadzania więcej znaków poprzez przesuwanie po klawiszach do ich rogów.
+
+Ta aplikacja została pierwotnie zaprojektowana z myślą o programistach używających Termuxa.
+Obecnie nadaje się doskonale do codziennego użytku.
+
+Aplikacja nie zawiera reklam, nie żąda dostępu do internetu, a jej kod źródłowy jest dostępny publicznie.
diff --git a/fastlane/metadata/android/pl-PL/short_description.txt b/fastlane/metadata/android/pl-PL/short_description.txt
new file mode 100644
index 0000000..9622eff
--- /dev/null
+++ b/fastlane/metadata/android/pl-PL/short_description.txt
@@ -0,0 +1 @@
+Lekka i dbająca o prywatność klawiatura wirtualna dla Androida.
diff --git a/fastlane/metadata/android/pl-PL/title.txt b/fastlane/metadata/android/pl-PL/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/pl-PL/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/pt-BR/full_description.txt b/fastlane/metadata/android/pt-BR/full_description.txt
new file mode 100644
index 0000000..2fe0b2d
--- /dev/null
+++ b/fastlane/metadata/android/pt-BR/full_description.txt
@@ -0,0 +1,6 @@
+A principal característica é que você pode digitar mais caracteres deslizando as teclas para os cantos.
+
+O app foi criado originalmente para desenvolvedores que usam Termux.
+Agora aperfeiçoado para o uso diário.
+
+Este aplicativo não contém anúncios, não faz nenhuma solicitação de rede e é Open Source.
diff --git a/fastlane/metadata/android/pt-BR/short_description.txt b/fastlane/metadata/android/pt-BR/short_description.txt
new file mode 100644
index 0000000..d7eba67
--- /dev/null
+++ b/fastlane/metadata/android/pt-BR/short_description.txt
@@ -0,0 +1 @@
+Um teclado virtual leve para desenvolvedores.
diff --git a/fastlane/metadata/android/pt-BR/title.txt b/fastlane/metadata/android/pt-BR/title.txt
new file mode 100644
index 0000000..823279f
--- /dev/null
+++ b/fastlane/metadata/android/pt-BR/title.txt
@@ -0,0 +1 @@
+Teclado Unexpected
diff --git a/fastlane/metadata/android/ro/full_description.txt b/fastlane/metadata/android/ro/full_description.txt
new file mode 100644
index 0000000..9468568
--- /dev/null
+++ b/fastlane/metadata/android/ro/full_description.txt
@@ -0,0 +1,6 @@
+Funcționalitatea principală este accesul rapid la o mulțime de caractere ASCII prin glisarea către colțurile tastelor.
+
+Această aplicație a fost concepută inițial pentru programatori care folosec Termux.
+Este perfectă pentru uzul cotidian.
+
+Această aplicație nu conține publicitate, nu folosește rețeaua deloc și e Open Source.
diff --git a/fastlane/metadata/android/ro/short_description.txt b/fastlane/metadata/android/ro/short_description.txt
new file mode 100644
index 0000000..bb39045
--- /dev/null
+++ b/fastlane/metadata/android/ro/short_description.txt
@@ -0,0 +1 @@
+Tastatură virtuală pentru Android, ușoară și respectuoasă cu viața privată.
diff --git a/fastlane/metadata/android/ro/title.txt b/fastlane/metadata/android/ro/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/ro/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/ru-RU/full_description.txt b/fastlane/metadata/android/ru-RU/full_description.txt
new file mode 100644
index 0000000..a801475
--- /dev/null
+++ b/fastlane/metadata/android/ru-RU/full_description.txt
@@ -0,0 +1,6 @@
+Главная особенность клавиатуры — это возможность легко напечатать любой ASCII-символ жестами в углы клавиш.
+
+Приложение изначально было разработано для использования с Termux.
+На данный момент оно также удобно в повседневном использовании.
+
+Приложение не содержит рекламы, не осуществляет никаких запросов в сеть и имеет открытый исходный код.
diff --git a/fastlane/metadata/android/ru-RU/short_description.txt b/fastlane/metadata/android/ru-RU/short_description.txt
new file mode 100644
index 0000000..3ad65e4
--- /dev/null
+++ b/fastlane/metadata/android/ru-RU/short_description.txt
@@ -0,0 +1 @@
+Легкая клавиатура для пользователей, заботящихся о конфиденциальности.
diff --git a/fastlane/metadata/android/ru-RU/title.txt b/fastlane/metadata/android/ru-RU/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/ru-RU/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/tr-TR/full_description.txt b/fastlane/metadata/android/tr-TR/full_description.txt
new file mode 100644
index 0000000..1a5e700
--- /dev/null
+++ b/fastlane/metadata/android/tr-TR/full_description.txt
@@ -0,0 +1,6 @@
+Bu uygulama özünde tuşların kenarlarından kaydırarak daha fazla karakter yazabilmek amacıyla geliştirildi.
+
+Bu uygulama aslında Termux kullanıcıları için geliştirildi.
+Artık gündelik kullanım için de uygun.
+
+Bu uygulama açık kaynaklıdır. Reklam içermez ve internete bağlanmaz.
diff --git a/fastlane/metadata/android/tr-TR/short_description.txt b/fastlane/metadata/android/tr-TR/short_description.txt
new file mode 100644
index 0000000..8d2d530
--- /dev/null
+++ b/fastlane/metadata/android/tr-TR/short_description.txt
@@ -0,0 +1 @@
+Android için hafif ve güvenlik odaklı bir sanal klavye uygulaması.
diff --git a/fastlane/metadata/android/tr-TR/title.txt b/fastlane/metadata/android/tr-TR/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/tr-TR/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/uk/full_description.txt b/fastlane/metadata/android/uk/full_description.txt
new file mode 100644
index 0000000..f6e65f3
--- /dev/null
+++ b/fastlane/metadata/android/uk/full_description.txt
@@ -0,0 +1,6 @@
+Головна особливість полягає в тому, що ви можете вводити більше символів, проводячи клавіші до кутів.
+
+Ця програма спочатку була розроблена для програмістів, які використовують Termux.
+Тепер ідеально підходить для щоденного використання.
+
+Ця програма не містить реклами, не надсилає жодних мережевих запитів і має відкритий код.
diff --git a/fastlane/metadata/android/uk/short_description.txt b/fastlane/metadata/android/uk/short_description.txt
new file mode 100644
index 0000000..64c80a2
--- /dev/null
+++ b/fastlane/metadata/android/uk/short_description.txt
@@ -0,0 +1 @@
+Легка та конфіденційна віртуальна клавіатура для Android.
diff --git a/fastlane/metadata/android/uk/title.txt b/fastlane/metadata/android/uk/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/uk/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/vi/full_description.txt b/fastlane/metadata/android/vi/full_description.txt
new file mode 100644
index 0000000..0dc66dc
--- /dev/null
+++ b/fastlane/metadata/android/vi/full_description.txt
@@ -0,0 +1,6 @@
+Chức năng chính là dễ dàng gõ nhiều ký tự bằng cách kéo phím về góc của nó.
+
+Ứng dụng này ban đầu được thiết kế cho các lập trình viên dùng Termux.
+Bây giờ đã hoàn hảo cho việc sử dụng hàng ngày.
+
+Ứng dụng này không chứa quảng cáo, không cần đến mạng, và có mã nguồn mở.
diff --git a/fastlane/metadata/android/vi/short_description.txt b/fastlane/metadata/android/vi/short_description.txt
new file mode 100644
index 0000000..2eb999c
--- /dev/null
+++ b/fastlane/metadata/android/vi/short_description.txt
@@ -0,0 +1 @@
+Bàn phím ảo gọn nhẹ và tôn trọng quyền riêng tư cho Android.
diff --git a/fastlane/metadata/android/vi/title.txt b/fastlane/metadata/android/vi/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/vi/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/fastlane/metadata/android/zh-CN/full_description.txt b/fastlane/metadata/android/zh-CN/full_description.txt
new file mode 100644
index 0000000..6749111
--- /dev/null
+++ b/fastlane/metadata/android/zh-CN/full_description.txt
@@ -0,0 +1,6 @@
+此应用的主要功能是,通过将按键沿四角滑动,您可以输入更多字符。
+
+此应用最初是为使用 Termux 的程序员而设计的。
+现在对于日常使用来说也很完美。
+
+此应用没有广告,不会发送任何网络请求,而且是开源的。
diff --git a/fastlane/metadata/android/zh-CN/short_description.txt b/fastlane/metadata/android/zh-CN/short_description.txt
new file mode 100644
index 0000000..fd943f5
--- /dev/null
+++ b/fastlane/metadata/android/zh-CN/short_description.txt
@@ -0,0 +1 @@
+适用于 Android 的轻量级、注重隐私的虚拟键盘。
diff --git a/fastlane/metadata/android/zh-CN/title.txt b/fastlane/metadata/android/zh-CN/title.txt
new file mode 100644
index 0000000..c18b05b
--- /dev/null
+++ b/fastlane/metadata/android/zh-CN/title.txt
@@ -0,0 +1 @@
+Unexpected Keyboard
diff --git a/funding.json b/funding.json
new file mode 100644
index 0000000..d433ec1
--- /dev/null
+++ b/funding.json
@@ -0,0 +1,91 @@
+{
+ "version": "v1.0.0",
+ "entity": {
+ "type": "individual",
+ "role": "owner",
+ "name": "Julow",
+ "email": "jules@j3s.fr",
+ "description": "Open source developer and maintainer of Unexpected Keyboard.",
+ "webpageUrl": {
+ "url": "https://github.com/Julow"
+ }
+ },
+ "projects": [
+ {
+ "guid": "unexpected-keyboard",
+ "name": "Unexpected Keyboard",
+ "description": "Lightweight and privacy-conscious virtual keyboard for Android.",
+ "webpageUrl": {
+ "url": "https://github.com/Julow/Unexpected-Keyboard/"
+ },
+ "repositoryUrl": {
+ "url": "https://github.com/Julow/Unexpected-Keyboard/"
+ },
+ "licenses": [
+ "spdx:GPL-3.0",
+ "spdx:CC0-1.0"
+ ],
+ "tags": [
+ "android",
+ "mobile",
+ "privacy",
+ "productivity",
+ "programming",
+ "user-experience"
+ ]
+ }
+ ],
+ "funding": {
+ "channels": [
+ {
+ "guid": "liberapay",
+ "type": "other",
+ "address": "https://liberapay.com/Julow/",
+ "description": "Recurring donations for funding Unexpected Keyboard."
+ },
+ {
+ "guid": "github-sponsors",
+ "type": "other",
+ "address": "https://github.com/sponsors/Julow",
+ "description": "Recurring donations for funding Unexpected Keyboard."
+ },
+ {
+ "guid": "paypal",
+ "type": "other",
+ "address": "https://paypal.me/JulesAguillon",
+ "description": "One-time donations for funding Unexpected-keyboard."
+ }
+ ],
+ "plans": [
+ {
+ "guid": "fund-maintenance",
+ "status": "active",
+ "name": "Fund developer time",
+ "description": "Help the maintainers spend time on Unexpected Keyboard",
+ "amount": 0,
+ "currency": "EUR",
+ "frequency": "monthly",
+ "channels": [
+ "liberapay",
+ "github-sponsors",
+ "paypal"
+ ]
+ },
+ {
+ "guid": "one-time-contribution",
+ "status": "active",
+ "name": "Fund developer time",
+ "description": "Help the maintainers spend time on Unexpected Keyboard",
+ "amount": 0,
+ "currency": "EUR",
+ "frequency": "one-time",
+ "channels": [
+ "liberapay",
+ "github-sponsors",
+ "paypal"
+ ]
+ }
+ ],
+ "history": []
+ }
+}
diff --git a/gen_emoji.py b/gen_emoji.py
new file mode 100644
index 0000000..bb1ef8e
--- /dev/null
+++ b/gen_emoji.py
@@ -0,0 +1,38 @@
+import urllib.request
+import os.path
+
+EMOJIS_PATH = 'res/raw/emojis.txt'
+EMOJI_TEST_PATH = 'emoji-test.txt'
+EMOJI_TEST_URL = 'https://unicode.org/Public/emoji/latest/emoji-test.txt'
+
+def rawEmojiFromCodes(codes):
+ return ''.join([chr(int(c, 16)) for c in codes])
+
+def getEmojiTestContents():
+ if os.path.exists(EMOJI_TEST_PATH):
+ print(f'Using existing {EMOJI_TEST_PATH}')
+ else:
+ print(f'Downloading {EMOJI_TEST_URL}')
+ urllib.request.urlretrieve(EMOJI_TEST_URL, EMOJI_TEST_PATH)
+ return open(EMOJI_TEST_PATH, mode='r', encoding='UTF-8').read()
+
+
+emoji_list = []
+group_indices = []
+for line in getEmojiTestContents().splitlines():
+ if line.startswith('# group:'):
+ if len(group_indices) == 0 or len(emoji_list) > group_indices[-1]:
+ group_indices.append(len(emoji_list))
+ elif not line.startswith('#') and 'fully-qualified' in line:
+ codes = line.split(';')[0].split()
+ emoji_list.append(rawEmojiFromCodes(codes))
+
+with open(EMOJIS_PATH, 'w', encoding='UTF-8') as emojis:
+ for e in emoji_list:
+ emojis.write(f'{e}\n')
+ emojis.write('\n')
+
+ emojis.write(' '.join([str(g) for g in group_indices]))
+ emojis.write('\n')
+
+print(f'Parsed {len(emoji_list)} emojis in {len(group_indices)}')
diff --git a/gen_layouts.py b/gen_layouts.py
new file mode 100644
index 0000000..6cae361
--- /dev/null
+++ b/gen_layouts.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python
+
+# Generates the list of layouts in res/values/layouts.xml from the layout files
+# in srcs/layouts. Every layouts must have a 'name' attribute to be listed.
+
+import itertools as it
+import sys, os, glob
+import xml.etree.ElementTree as XML
+
+# Layouts first in the list (these are the programming layouts). Other layouts
+# are sorted alphabetically.
+FIRST_LAYOUTS = [ "latn_qwerty_us", "latn_colemak", "latn_dvorak" ]
+
+# Read a layout from a file. Returns [None] if [fname] is not a layout.
+def read_layout(fname):
+ root = XML.parse(fname).getroot()
+ if root.tag != "keyboard":
+ return None
+ return { "name": root.get("name") }
+
+# Yields the id (based on the file name) and the display name for every layouts
+def read_layouts(files):
+ for layout_file in files:
+ layout_id, _ = os.path.splitext(os.path.basename(layout_file))
+ layout = read_layout(layout_file)
+ if layout == None:
+ print("Not a layout file: %s" % layout_file)
+ elif layout["name"] == None:
+ print("Layout doesn't have a name: %s" % layout_id)
+ else:
+ yield (layout_id, layout["name"])
+
+# Sort layouts alphabetically, except for layouts in FIRST_LAYOUTS, which are
+# placed at the top.
+# Returns a list. 'layouts' can be an iterator.
+def sort_layouts(layouts):
+ layouts = dict(layouts)
+ head = [ (lid, layouts.pop(lid)) for lid in FIRST_LAYOUTS ]
+ return head + sorted(layouts.items())
+
+# Write the XML arrays used in the preferences.
+def generate_arrays(out, layouts):
+ def mk_array(tag, name, strings_items):
+ elem = XML.Element(tag, name=name)
+ for s in strings_items:
+ item = XML.Element("item")
+ item.text = s
+ elem.append(item)
+ return elem
+ system_item = [ ("system", "@string/pref_layout_e_system") ]
+ custom_item = [ ("custom", "@string/pref_layout_e_custom") ]
+ values_items, entries_items = zip(*(system_item + layouts + custom_item)) # unzip
+ ids_items = map(lambda s: "@xml/%s" % s if s not in ["system", "custom"] else "-1", values_items)
+ root = XML.Element("resources")
+ root.append(XML.Comment(text=" DO NOT EDIT. This file is generated, run 'gradle genLayoutsList'. "))
+ root.append(mk_array("string-array", "pref_layout_values", values_items))
+ root.append(mk_array("string-array", "pref_layout_entries", entries_items))
+ root.append(mk_array("integer-array", "layout_ids", ids_items))
+ XML.indent(root)
+ XML.ElementTree(element=root).write(out, encoding="unicode", xml_declaration=True)
+
+layouts = sort_layouts(read_layouts(glob.glob("srcs/layouts/*.xml")))
+with open("res/values/layouts.xml", "w") as out:
+ generate_arrays(out, layouts)
diff --git a/gen_sinhala_phonetic_layout.py b/gen_sinhala_phonetic_layout.py
new file mode 100755
index 0000000..44cc39f
--- /dev/null
+++ b/gen_sinhala_phonetic_layout.py
@@ -0,0 +1,524 @@
+#! /bin/env python3
+
+"""
+Script to generate a layout based on an existing.
+
+Tuned to create Sinhala phonetic layout based on qwerty (US), but may be adoped
+for other scripts. Look at dicts before the LayoutBuilder code.
+
+Usage:
+ python3 gen_sinhala_phonetic_layout [-h|--help] [-v|--verbose] [-o|--output]
+
+By default with no args will write to corresponding file in `srcs/layouts/`.
+
+Script uses central symbol (in direction "c") to identify a key, which may not
+be appropriate for base (reference) layouts other, than qwerty (US).
+
+Warning will be printed to stderr if new symbol overrides some symbol of the
+reference layout in directions other, than "c".
+
+Exception will be rised on other
+conflicts e. g. when trying to move a symbol into occupied position.
+
+ - Made with latn_qwerty_us.xml from commit `6b1551d`
+ - Made with Python 3.13
+ - Requires Python >= 3.11
+"""
+
+import argparse
+import logging
+
+from enum import StrEnum
+from pathlib import Path
+from xml.etree import ElementTree
+
+
+class Placement(StrEnum):
+ C = 'c'
+ NW = 'nw'
+ N = 'n'
+ NE = 'ne'
+ E = 'e'
+ SE = 'se'
+ S = 's'
+ SW = 'sw'
+ W = 'w'
+
+
+# Based on XKB Sinhala (phonetic)
+KEYS_MAP: dict[str, tuple[str, str, str, str]] = {
+ # Row 1 ###########################################
+ 'q': ('ඍ', 'ඎ', '\u0DD8', '\u0DF2'),
+ 'w': ('ඇ', 'ඈ', '\u0DD0', '\u0DD1'),
+ 'e': ('එ', 'ඒ', '\u0DD9', '\u0DDA'),
+ 'r': ('ර', '', '', ''), # In XKB virama is on layer 2
+ 't': ('ත', 'ථ', 'ට', 'ඨ'),
+ 'y': ('ය', '', '', ''), # In XKB virama is on layer 2
+ 'u': ('උ', 'ඌ', '\u0DD4', '\u0DD6'),
+ 'i': ('ඉ', 'ඊ', '\u0DD2', '\u0DD3'),
+ 'o': ('ඔ', 'ඕ', '\u0DDC', '\u0DDD'),
+ 'p': ('ප', 'ඵ', '', ''),
+ # Row 2 ###########################################
+ 'a': ('අ', 'ආ', '\u0DCA', '\u0DCF'),
+ 's': ('ස', 'ශ', 'ෂ', ''),
+ 'd': ('ද', 'ධ', 'ඩ', 'ඪ'),
+ 'f': ('ෆ', '\u0D93', '', '\u0DDB'), # In XKB aiyanna placed otherwise
+ 'g': ('ග', 'ඝ', 'ඟ', ''),
+ 'h': ('හ', '\u0D83', '\u0DDE', 'ඖ'),
+ 'j': ('ජ', 'ඣ', 'ඦ', ''),
+ 'k': ('ක', 'ඛ', 'ඦ', 'ඐ'),
+ 'l': ('ල', 'ළ', '\u0DDF', '\u0DF3'),
+ # Row 3 ###########################################
+ 'z': ('ඤ', 'ඥ', '', ''), # In XKB contains bar, broken bar
+ 'x': ('ඳ', 'ඬ', '', ''),
+ 'c': ('ච', 'ඡ', '', ''),
+ 'v': ('ව', '', '', ''),
+ 'b': ('බ', 'භ', '', ''),
+ 'n': ('න', 'ණ', '\u0D82', 'ඞ'),
+ 'm': ('ම', 'ඹ', '', ''),
+}
+
+# How to place four levels of Key.
+# Syntax: LEVEL: PLACEMENT | 'FROM_LEVEL+MODIFIER'
+# The last means symbol on level FROM_LEVEL with modifier key MODIFIER gives
+# key on level LEVEL
+#
+LEVELS_MAP = {
+ 0: Placement.C,
+ 1: Placement.NE,
+ 2: '0+shift',
+ 3: '1+shift',
+}
+
+# Additional modify keys combinations.
+# Syntax:
+# MODKEY: { A: B }
+#
+MODMAP_EXTRA: dict[str, dict[str, str]] = {
+ 'shift': {
+ # Astrological numbers
+ '1': '෧',
+ '2': '෨',
+ '3': '෩',
+ '4': '෪',
+ '5': '෫',
+ '6': '෬',
+ '7': '෭',
+ '8': '෮',
+ '9': '෯',
+ '0': '෦',
+ # Kunddaliya
+ '.': '෴',
+ # Extra broken bar intead z key in XKB
+ '\u007C': '\u00A6',
+ # Special whitespaces
+ 'zwj': 'zwnj',
+ },
+ 'fn': {
+ # Sinhala archaic digits
+ 'ඍ': '𑇡', # 1
+ 'ඇ': '𑇢', # 2
+ 'එ': '𑇣', # 3
+ 'ර': '𑇤', # 4
+ 'ත': '𑇥', # 5
+ 'ය': '𑇦', # 6
+ 'උ': '𑇧', # 7
+ 'ඉ': '𑇨', # 8
+ 'ඔ': '𑇩', # 9
+ 'ප': '𑇪', # 10
+ 'අ': '𑇫', # 20
+ 'ස': '𑇬', # 30
+ 'ද': '𑇭', # 40
+ 'ෆ': '𑇮', # 50
+ 'ග': '𑇯', # 60
+ 'හ': '𑇰', # 70
+ 'ජ': '𑇱', # 80
+ 'ක': '𑇲', # 90
+ 'ල': '𑇳', # 100
+ 'ළ': '𑇴', # 1000
+ # Sinhala candrabindu for Sanskrit
+ 'ණ': '\u0D81',
+ },
+}
+
+# Table to move additional characters in reference layout.
+# Format is (CENTRAL_CHAR, PLACEMENT): (CENTRAL_CHAR, PLACEMENT). E. g. to move
+# char from key with central character "q", direction "se" to key with central
+# character "w", direction "sw", add line:
+# ('q', Placement.SE): ('w', Placement.SW),
+#
+# To delete a char, use None as destination placement. E.g.:
+# ('q', Placment.SE): ('q', None)
+#
+# Moving of main char in central placement is not supported.
+#
+TRANSITIONS_MAP: dict[tuple[str, Placement], tuple[str, Placement | None]] = {
+ ('q', Placement.SE): ('q', Placement.SW), # loc esc
+ ('q', Placement.NE): ('q', Placement.SE), # 1
+
+ ('w', Placement.NE): ('w', Placement.SE), # 2
+
+ ('e', Placement.SE): ('r', Placement.NW), # loc €
+ ('e', Placement.NE): ('e', Placement.SE), # 3
+
+ ('r', Placement.NE): ('r', Placement.SE), # 4
+ ('t', Placement.NE): ('t', Placement.SE), # 5
+ ('y', Placement.NE): ('y', Placement.SE), # 6
+ ('u', Placement.NE): ('u', Placement.SE), # 7
+ ('i', Placement.NE): ('i', Placement.SE), # 8
+
+ ('o', Placement.SE): ('p', Placement.SW), # )
+ ('o', Placement.NE): ('o', Placement.SE), # 9
+
+ ('p', Placement.NE): ('p', Placement.SE), # 0
+
+ ('a', Placement.NE): ('a', Placement.NW), # `
+ ('a', Placement.NW): ('a', Placement.SW), # loc tab
+
+ ('s', Placement.NE): ('s', Placement.NW), # loc §
+
+ ('g', Placement.SW): ('g', Placement.NW), # _
+ ('g', Placement.NE): ('g', Placement.SW), # -
+
+ ('h', Placement.SW): ('h', Placement.NW), # +
+ ('h', Placement.NE): ('h', Placement.SW), # =
+
+ ('l', Placement.NE): ('l', Placement.NW), # |
+
+ ('x', Placement.NE): ('x', Placement.NW), # loc †
+ ('c', Placement.NE): ('c', Placement.NW), # <
+ ('b', Placement.NE): ('b', Placement.NW), # ?
+ ('n', Placement.NE): ('n', Placement.NW), # :
+ ('m', Placement.NE): ('m', Placement.NW), # "
+}
+
+# Add additional characters to arbitrary places.
+# Syntax is CHAR: POSITION, where POSITION is a pari as in TRANSITIONS_MAP.
+#
+CHARS_EXTRA = {
+ # In XKB ZWJ is on `/` key, and ZWNJ is on spacebar
+ 'zwj': ('m', Placement.SE),
+}
+
+
+# List of char unicode numbers and inclusive ranges of numbers to encode as XML
+# numeric character references.
+# Good for combining signs to not mess with quotes.
+# Characters in line of the keyboard tag will not be escaped.
+#
+ESCAPE_LIST: list[int | tuple[int, int]] = [
+ # Sinhalese diacritics
+ (0xD81, 0xD83),
+ (0xDCA, 0xDDF),
+]
+
+# Default filename. Output path can be overrided with `-o` flag also.
+LAYOUT_FILENAME = 'sinhala_phonetic.xml'
+
+# Will be placed after XML declaration. Need to have proper tags.
+COMMENT = '''
+
+'''
+
+BASE_DIR = Path(__file__).parent
+REFERENCE_LAYOUT_FILE = BASE_DIR / 'srcs/layouts/latn_qwerty_us.xml'
+
+LOGGER = logging.getLogger(__name__)
+KeysMapType = list[list[ElementTree.Element]]
+
+
+class LayoutGenError(RuntimeError):
+ ...
+
+
+def xml_elem_to_str(element: ElementTree.Element) -> str:
+ return ElementTree.tostring(
+ element,
+ xml_declaration=False,
+ encoding='unicode').strip()
+
+
+def keys_map_to_str(keys_map: KeysMapType) -> str:
+ """ Make laout rows map printable for debug purposes """
+ result = '[\n'
+ for row in keys_map:
+ result += ' ' * 4
+ for key in row:
+ result += str(key.attrib) + ', '
+ result += '\n'
+ result += ']'
+ return result
+
+
+def is_in_escape_list(char: str | int) -> bool:
+ if isinstance(char, str):
+ char = ord(char)
+ for item in ESCAPE_LIST:
+ if isinstance(item, tuple) and char >= item[0] and char <= item[1]:
+ return True
+ elif isinstance(item, int):
+ if char == item:
+ return True
+ else:
+ TypeError(f'Unexpected item {item} of ESCAPE_LIST')
+ return False
+
+
+def xml_encode_char(ch: str | int) -> str:
+ if isinstance(ch, str):
+ ch = ord(ch)
+ hex_val = hex(ch).split('x')[-1]
+ return f'{hex_val.upper().zfill(4)};'
+
+
+class LayoutBuilder:
+ XML_DECLARATION = ""
+
+ def __init__(
+ self,
+ name: str = '',
+ script: str = '',
+ numpad_script: str = '',
+ comment: str = '',
+ ) -> None:
+ """
+ :param comment: MUST be a valid XML comment wrapped in
+ """
+ attrs = {}
+ if name:
+ attrs['name'] = name
+ if script:
+ attrs['script'] = script
+ if numpad_script:
+ attrs['numpad_script'] = numpad_script
+ self._comment = None
+ if comment:
+ self._comment = comment.strip() or None
+ self._xml_keyboard = ElementTree.Element('keyboard', attrib=attrs)
+ self._modmap = ElementTree.Element('modmap')
+
+ @staticmethod
+ def _parse_reference_layout() -> list[ElementTree.Element]:
+ return ElementTree.parse(REFERENCE_LAYOUT_FILE).findall('row')
+
+ @staticmethod
+ def _move_untransited_to_new_map(
+ ref_map: KeysMapType,
+ new_map: KeysMapType
+ ) -> None:
+ coordinates = [
+ (row_num, key_num)
+ for row_num in range(len(ref_map))
+ for key_num in range(len(ref_map[row_num]))
+ ]
+
+ for row_num, key_num in coordinates:
+ old_key = ref_map[row_num][key_num]
+ new_key = new_map[row_num][key_num]
+ for k, val in old_key.attrib.items():
+ if (transited := new_key.attrib.get(k)) is not None:
+ msg = (
+ f'Transition of {transited} to'
+ f' {new_key.get(Placement.C)}:{k} conflictls with'
+ f' existing value "{val}"')
+ raise LayoutGenError(msg)
+ new_key.set(k, val)
+
+ @staticmethod
+ def _add_extra_chars_to_ref_map(
+ coord_map: dict[str, tuple[int, int]],
+ new_map: KeysMapType
+ ) -> None:
+ for char, (to_key_name, to_plc) in CHARS_EXTRA.items():
+ if not (to_coord := coord_map.get(to_key_name)):
+ msg = f'Trying to add "{char}" to missing key "{to_key_name}"'
+ raise LayoutGenError(msg)
+ row_num, key_num = to_coord
+ key = new_map[row_num][key_num]
+ if (existing := key.get(to_plc)) is not None:
+ msg = f'Trying to add char to <{to_key_name}:{to_plc}>, but already contains "{existing}"'
+ raise LayoutGenError(msg)
+ key.set(to_plc, char)
+ LOGGER.info(
+ 'Added "%s" to <%s:%s>',
+ char, to_key_name, to_plc)
+
+ @classmethod
+ def _apply_transitions(cls, ref_map: list) -> list:
+ coord_map: dict[str, tuple[int, int]] = {}
+
+ coordinates = [
+ (row_num, key_num)
+ for row_num in range(len(ref_map))
+ for key_num in range(len(ref_map[row_num]))
+ ]
+
+ for row_num, key_num in coordinates:
+ row = ref_map[row_num]
+ key = row[key_num]
+ key_name = key.get(Placement.C)
+ if key_name in coord_map:
+ msg = f'Duplicated value "{key_name}" in central position'
+ raise LayoutGenError(msg)
+ coord_map[key_name] = (row_num, key_num)
+
+ # Make new map with empty keys
+ result_map = [[ElementTree.Element('key') for key in row] for row in ref_map]
+
+ # Place by transitions map on new places
+ for (from_key_name, from_plc), (to_key_name, to_plc) in TRANSITIONS_MAP.items():
+ if Placement.C in (from_plc, to_plc):
+ raise NotImplementedError('Transition from or to placment "c"')
+ if not (from_coord := coord_map.get(from_key_name)):
+ raise LayoutGenError(f'Transition from missing key {from_key_name}')
+ if not (to_coord := coord_map.get(to_key_name)):
+ raise LayoutGenError(f'Transition to missing key {to_key_name}')
+ from_key = ref_map[from_coord[0]][from_coord[1]]
+ to_key = result_map[to_coord[0]][to_coord[1]]
+ try:
+ val = from_key.attrib.pop(from_plc)
+ except KeyError:
+ msg = f'No value in key {from_key_name}, placement {from_plc} to move'
+ raise LayoutGenError(msg)
+ if to_plc is not None:
+ if to_key.get(to_plc):
+ msg = f'Second transition to key {to_key_name}, placement {to_plc}'
+ raise LayoutGenError(msg)
+ to_key.set(to_plc, val)
+ LOGGER.info(
+ 'Moved "%s" from <%s:%s> to <%s:%s>',
+ val, from_key_name, from_plc, to_key_name, to_plc)
+ else:
+ LOGGER.info(
+ 'Deleted "%s" from <%s:%s>',
+ val, from_key_name, from_plc)
+
+ # Fill new map with other values
+ cls._move_untransited_to_new_map(ref_map, new_map=result_map)
+
+ # Add additional characters
+ cls._add_extra_chars_to_ref_map(coord_map, new_map=result_map)
+
+ return result_map
+
+ @staticmethod
+ def _resolve_placement(
+ key: ElementTree.Element,
+ placement: Placement,
+ new_char: str
+ ) -> None:
+ if placement != Placement.C:
+ central_char = key.get(Placement.C)
+ existing = key.get(placement)
+ if existing:
+ LOGGER.warning(
+ 'Placement %s of key %s already occupied with %s',
+ placement, central_char, existing)
+ key.set(placement, new_char)
+
+ def _process_key(self, key: ElementTree.Element) -> ElementTree.Element:
+ central_char = key.get(Placement.C)
+ if not central_char:
+ return key
+ new_key_entry = KEYS_MAP.get(central_char)
+ if new_key_entry is None:
+ return key
+
+ for level, placement_spec in LEVELS_MAP.items():
+ if not (new_char := new_key_entry[level]):
+ continue
+ if '+' in placement_spec:
+ pair = placement_spec.split('+')
+ from_level, modkey = int(pair[0]), pair[1]
+ key_a = new_key_entry[from_level]
+ key_b = new_char
+ if key_a is None:
+ raise LayoutGenError(f'Tried to modife {key_a} to {key_b}')
+ ElementTree.SubElement(self._modmap, modkey, a=key_a, b=key_b)
+ else:
+ placement = Placement(placement_spec)
+ self._resolve_placement(key, placement=placement, new_char=new_char)
+ return key
+
+ @staticmethod
+ def _make_extra_modmap(modmap: ElementTree.Element) -> ElementTree.Element:
+ for modkey, ab_map in MODMAP_EXTRA.items():
+ for a, b in ab_map.items():
+ LOGGER.info('Adding modmap %s "%s" -> "%s"', modkey, a, b)
+ ElementTree.SubElement(modmap, modkey, a=a, b=b)
+ return modmap
+
+ @staticmethod
+ def _post_escape(data: str) -> str:
+ buf = ''
+ lines = data.splitlines(keepends=True)
+ for line in lines:
+ # Skip keyboard tag line to keep attributes
+ if ' None:
+ raw_ref_rows = self._parse_reference_layout()
+ ref_rows = self._apply_transitions(raw_ref_rows)
+ for row in ref_rows:
+ new_row = ElementTree.SubElement(self._xml_keyboard, 'row')
+ for key in row:
+ LOGGER.debug(
+ 'Processing reference entry %s',
+ xml_elem_to_str(key))
+ new_row.append(self._process_key(key))
+ self._modmap = self._make_extra_modmap(self._modmap)
+ self._xml_keyboard.append(self._modmap)
+
+ def get_xml(self) -> str:
+ ElementTree.indent(self._xml_keyboard)
+ body_raw = xml_elem_to_str(self._xml_keyboard)
+ body = self._post_escape(body_raw)
+
+ result = self.XML_DECLARATION + '\n'
+ if self._comment:
+ result += self._comment + '\n'
+ result += body + '\n'
+
+ return result
+
+
+def get_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ prog='gen_sinhala_phonetic_layout',
+ description='Generate XKB-based Sinhala layout',)
+ parser.add_argument(
+ '-o',
+ '--output',
+ default=BASE_DIR / f'srcs/layouts/{LAYOUT_FILENAME}',
+ help='File to write result, `-` for stdout')
+ parser.add_argument(
+ '-v',
+ '--verbose',
+ help='More verbose logging',
+ action='store_true')
+ return parser.parse_args()
+
+
+if __name__ == '__main__':
+ args = get_args()
+ logging.basicConfig(
+ level=logging.DEBUG if args.verbose else logging.WARNING,
+ format='%(levelname)s: %(message)s')
+ builder = LayoutBuilder(name='සිංහල', script='sinhala', comment=COMMENT)
+ builder.build()
+ content = builder.get_xml()
+ if args.output == '-':
+ print(content)
+ else:
+ with open(args.output, 'w') as file:
+ file.write(content)
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..81039a2
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Dfile.encoding=UTF-8
+android.useAndroidX=true
+android.nonTransitiveRClass=true
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..3227f43
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Mon Aug 21 18:13:41 CEST 2023
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..4f906e0
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# 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
+#
+# https://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.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..107acd3
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/res/drawable/cog_outline.xml b/res/drawable/cog_outline.xml
new file mode 100644
index 0000000..c910a9e
--- /dev/null
+++ b/res/drawable/cog_outline.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/res/drawable/doc_anim_circle.xml b/res/drawable/doc_anim_circle.xml
new file mode 100644
index 0000000..cac58c2
--- /dev/null
+++ b/res/drawable/doc_anim_circle.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/drawable/doc_anim_round_trip.xml b/res/drawable/doc_anim_round_trip.xml
new file mode 100644
index 0000000..924528a
--- /dev/null
+++ b/res/drawable/doc_anim_round_trip.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/drawable/doc_anim_swipe.xml b/res/drawable/doc_anim_swipe.xml
new file mode 100644
index 0000000..fc063cf
--- /dev/null
+++ b/res/drawable/doc_anim_swipe.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/drawable/doc_key_g.xml b/res/drawable/doc_key_g.xml
new file mode 100644
index 0000000..6699bd8
--- /dev/null
+++ b/res/drawable/doc_key_g.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
diff --git a/res/drawable/doc_key_u.xml b/res/drawable/doc_key_u.xml
new file mode 100644
index 0000000..4a94fe2
--- /dev/null
+++ b/res/drawable/doc_key_u.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
diff --git a/res/drawable/ic_clipboard_paste.xml b/res/drawable/ic_clipboard_paste.xml
new file mode 100644
index 0000000..1507f27
--- /dev/null
+++ b/res/drawable/ic_clipboard_paste.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/res/drawable/ic_clipboard_save.xml b/res/drawable/ic_clipboard_save.xml
new file mode 100644
index 0000000..53abcf2
--- /dev/null
+++ b/res/drawable/ic_clipboard_save.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/res/drawable/ic_delete.xml b/res/drawable/ic_delete.xml
new file mode 100644
index 0000000..5b69d0b
--- /dev/null
+++ b/res/drawable/ic_delete.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/res/drawable/ic_launcher_background.xml b/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..146896b
--- /dev/null
+++ b/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/drawable/ic_launcher_foreground.xml b/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..927626a
--- /dev/null
+++ b/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/layout/clipboard_history_entry.xml b/res/layout/clipboard_history_entry.xml
new file mode 100644
index 0000000..9d34a9e
--- /dev/null
+++ b/res/layout/clipboard_history_entry.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/res/layout/clipboard_pane.xml b/res/layout/clipboard_pane.xml
new file mode 100644
index 0000000..84dc6c9
--- /dev/null
+++ b/res/layout/clipboard_pane.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/layout/clipboard_pin_entry.xml b/res/layout/clipboard_pin_entry.xml
new file mode 100644
index 0000000..9cd8b2d
--- /dev/null
+++ b/res/layout/clipboard_pin_entry.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/res/layout/dialog_edit_text.xml b/res/layout/dialog_edit_text.xml
new file mode 100644
index 0000000..5b935dc
--- /dev/null
+++ b/res/layout/dialog_edit_text.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/layout/emoji_pane.xml b/res/layout/emoji_pane.xml
new file mode 100644
index 0000000..379cfd3
--- /dev/null
+++ b/res/layout/emoji_pane.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/res/layout/keyboard.xml b/res/layout/keyboard.xml
new file mode 100644
index 0000000..8af048d
--- /dev/null
+++ b/res/layout/keyboard.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/res/layout/launcher_activity.xml b/res/layout/launcher_activity.xml
new file mode 100644
index 0000000..2273641
--- /dev/null
+++ b/res/layout/launcher_activity.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/layout/pref_layouts_add_btn.xml b/res/layout/pref_layouts_add_btn.xml
new file mode 100644
index 0000000..ab1b271
--- /dev/null
+++ b/res/layout/pref_layouts_add_btn.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/layout/pref_listgroup_add_btn.xml b/res/layout/pref_listgroup_add_btn.xml
new file mode 100644
index 0000000..bb555b5
--- /dev/null
+++ b/res/layout/pref_listgroup_add_btn.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/layout/pref_listgroup_group.xml b/res/layout/pref_listgroup_group.xml
new file mode 100644
index 0000000..2b9db4b
--- /dev/null
+++ b/res/layout/pref_listgroup_group.xml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/res/layout/pref_listgroup_item_widget.xml b/res/layout/pref_listgroup_item_widget.xml
new file mode 100644
index 0000000..48e504e
--- /dev/null
+++ b/res/layout/pref_listgroup_item_widget.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/menu/launcher_menu.xml b/res/menu/launcher_menu.xml
new file mode 100644
index 0000000..69cf9f1
--- /dev/null
+++ b/res/menu/launcher_menu.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/res/mipmap-anydpi-v26/ic_launcher.xml b/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..7e91a57
--- /dev/null
+++ b/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/res/mipmap-hdpi/ic_launcher.png b/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..20e436f
Binary files /dev/null and b/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/res/mipmap-mdpi/ic_launcher.png b/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..d9687eb
Binary files /dev/null and b/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/res/mipmap-xhdpi/ic_launcher.png b/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..89d7003
Binary files /dev/null and b/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/res/mipmap-xxhdpi/ic_launcher.png b/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..53cd696
Binary files /dev/null and b/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/res/mipmap-xxxhdpi/ic_launcher.png b/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..c55db5a
Binary files /dev/null and b/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/res/raw/emojis.txt b/res/raw/emojis.txt
new file mode 100644
index 0000000..758f784
--- /dev/null
+++ b/res/raw/emojis.txt
@@ -0,0 +1,3775 @@
+😀
+😃
+😄
+😁
+😆
+😅
+🤣
+😂
+🙂
+🙃
+🫠
+😉
+😊
+😇
+🥰
+😍
+🤩
+😘
+😗
+☺️
+😚
+😙
+🥲
+😋
+😛
+😜
+🤪
+😝
+🤑
+🤗
+🤭
+🫢
+🫣
+🤫
+🤔
+🫡
+🤐
+🤨
+😐
+😑
+😶
+🫥
+😶🌫️
+😏
+😒
+🙄
+😬
+😮💨
+🤥
+🫨
+🙂↔️
+🙂↕️
+😌
+😔
+😪
+🤤
+😴
+😷
+🤒
+🤕
+🤢
+🤮
+🤧
+🥵
+🥶
+🥴
+😵
+😵💫
+🤯
+🤠
+🥳
+🥸
+😎
+🤓
+🧐
+😕
+🫤
+😟
+🙁
+☹️
+😮
+😯
+😲
+😳
+🥺
+🥹
+😦
+😧
+😨
+😰
+😥
+😢
+😭
+😱
+😖
+😣
+😞
+😓
+😩
+😫
+🥱
+😤
+😡
+😠
+🤬
+😈
+👿
+💀
+☠️
+💩
+🤡
+👹
+👺
+👻
+👽
+👾
+🤖
+😺
+😸
+😹
+😻
+😼
+😽
+🙀
+😿
+😾
+🙈
+🙉
+🙊
+💌
+💘
+💝
+💖
+💗
+💓
+💞
+💕
+💟
+❣️
+💔
+❤️🔥
+❤️🩹
+❤️
+🩷
+🧡
+💛
+💚
+💙
+🩵
+💜
+🤎
+🖤
+🩶
+🤍
+💋
+💯
+💢
+💥
+💫
+💦
+💨
+🕳️
+💬
+👁️🗨️
+🗨️
+🗯️
+💭
+💤
+👋
+👋🏻
+👋🏼
+👋🏽
+👋🏾
+👋🏿
+🤚
+🤚🏻
+🤚🏼
+🤚🏽
+🤚🏾
+🤚🏿
+🖐️
+🖐🏻
+🖐🏼
+🖐🏽
+🖐🏾
+🖐🏿
+✋
+✋🏻
+✋🏼
+✋🏽
+✋🏾
+✋🏿
+🖖
+🖖🏻
+🖖🏼
+🖖🏽
+🖖🏾
+🖖🏿
+🫱
+🫱🏻
+🫱🏼
+🫱🏽
+🫱🏾
+🫱🏿
+🫲
+🫲🏻
+🫲🏼
+🫲🏽
+🫲🏾
+🫲🏿
+🫳
+🫳🏻
+🫳🏼
+🫳🏽
+🫳🏾
+🫳🏿
+🫴
+🫴🏻
+🫴🏼
+🫴🏽
+🫴🏾
+🫴🏿
+🫷
+🫷🏻
+🫷🏼
+🫷🏽
+🫷🏾
+🫷🏿
+🫸
+🫸🏻
+🫸🏼
+🫸🏽
+🫸🏾
+🫸🏿
+👌
+👌🏻
+👌🏼
+👌🏽
+👌🏾
+👌🏿
+🤌
+🤌🏻
+🤌🏼
+🤌🏽
+🤌🏾
+🤌🏿
+🤏
+🤏🏻
+🤏🏼
+🤏🏽
+🤏🏾
+🤏🏿
+✌️
+✌🏻
+✌🏼
+✌🏽
+✌🏾
+✌🏿
+🤞
+🤞🏻
+🤞🏼
+🤞🏽
+🤞🏾
+🤞🏿
+🫰
+🫰🏻
+🫰🏼
+🫰🏽
+🫰🏾
+🫰🏿
+🤟
+🤟🏻
+🤟🏼
+🤟🏽
+🤟🏾
+🤟🏿
+🤘
+🤘🏻
+🤘🏼
+🤘🏽
+🤘🏾
+🤘🏿
+🤙
+🤙🏻
+🤙🏼
+🤙🏽
+🤙🏾
+🤙🏿
+👈
+👈🏻
+👈🏼
+👈🏽
+👈🏾
+👈🏿
+👉
+👉🏻
+👉🏼
+👉🏽
+👉🏾
+👉🏿
+👆
+👆🏻
+👆🏼
+👆🏽
+👆🏾
+👆🏿
+🖕
+🖕🏻
+🖕🏼
+🖕🏽
+🖕🏾
+🖕🏿
+👇
+👇🏻
+👇🏼
+👇🏽
+👇🏾
+👇🏿
+☝️
+☝🏻
+☝🏼
+☝🏽
+☝🏾
+☝🏿
+🫵
+🫵🏻
+🫵🏼
+🫵🏽
+🫵🏾
+🫵🏿
+👍
+👍🏻
+👍🏼
+👍🏽
+👍🏾
+👍🏿
+👎
+👎🏻
+👎🏼
+👎🏽
+👎🏾
+👎🏿
+✊
+✊🏻
+✊🏼
+✊🏽
+✊🏾
+✊🏿
+👊
+👊🏻
+👊🏼
+👊🏽
+👊🏾
+👊🏿
+🤛
+🤛🏻
+🤛🏼
+🤛🏽
+🤛🏾
+🤛🏿
+🤜
+🤜🏻
+🤜🏼
+🤜🏽
+🤜🏾
+🤜🏿
+👏
+👏🏻
+👏🏼
+👏🏽
+👏🏾
+👏🏿
+🙌
+🙌🏻
+🙌🏼
+🙌🏽
+🙌🏾
+🙌🏿
+🫶
+🫶🏻
+🫶🏼
+🫶🏽
+🫶🏾
+🫶🏿
+👐
+👐🏻
+👐🏼
+👐🏽
+👐🏾
+👐🏿
+🤲
+🤲🏻
+🤲🏼
+🤲🏽
+🤲🏾
+🤲🏿
+🤝
+🤝🏻
+🤝🏼
+🤝🏽
+🤝🏾
+🤝🏿
+🫱🏻🫲🏼
+🫱🏻🫲🏽
+🫱🏻🫲🏾
+🫱🏻🫲🏿
+🫱🏼🫲🏻
+🫱🏼🫲🏽
+🫱🏼🫲🏾
+🫱🏼🫲🏿
+🫱🏽🫲🏻
+🫱🏽🫲🏼
+🫱🏽🫲🏾
+🫱🏽🫲🏿
+🫱🏾🫲🏻
+🫱🏾🫲🏼
+🫱🏾🫲🏽
+🫱🏾🫲🏿
+🫱🏿🫲🏻
+🫱🏿🫲🏼
+🫱🏿🫲🏽
+🫱🏿🫲🏾
+🙏
+🙏🏻
+🙏🏼
+🙏🏽
+🙏🏾
+🙏🏿
+✍️
+✍🏻
+✍🏼
+✍🏽
+✍🏾
+✍🏿
+💅
+💅🏻
+💅🏼
+💅🏽
+💅🏾
+💅🏿
+🤳
+🤳🏻
+🤳🏼
+🤳🏽
+🤳🏾
+🤳🏿
+💪
+💪🏻
+💪🏼
+💪🏽
+💪🏾
+💪🏿
+🦾
+🦿
+🦵
+🦵🏻
+🦵🏼
+🦵🏽
+🦵🏾
+🦵🏿
+🦶
+🦶🏻
+🦶🏼
+🦶🏽
+🦶🏾
+🦶🏿
+👂
+👂🏻
+👂🏼
+👂🏽
+👂🏾
+👂🏿
+🦻
+🦻🏻
+🦻🏼
+🦻🏽
+🦻🏾
+🦻🏿
+👃
+👃🏻
+👃🏼
+👃🏽
+👃🏾
+👃🏿
+🧠
+🫀
+🫁
+🦷
+🦴
+👀
+👁️
+👅
+👄
+🫦
+👶
+👶🏻
+👶🏼
+👶🏽
+👶🏾
+👶🏿
+🧒
+🧒🏻
+🧒🏼
+🧒🏽
+🧒🏾
+🧒🏿
+👦
+👦🏻
+👦🏼
+👦🏽
+👦🏾
+👦🏿
+👧
+👧🏻
+👧🏼
+👧🏽
+👧🏾
+👧🏿
+🧑
+🧑🏻
+🧑🏼
+🧑🏽
+🧑🏾
+🧑🏿
+👱
+👱🏻
+👱🏼
+👱🏽
+👱🏾
+👱🏿
+👨
+👨🏻
+👨🏼
+👨🏽
+👨🏾
+👨🏿
+🧔
+🧔🏻
+🧔🏼
+🧔🏽
+🧔🏾
+🧔🏿
+🧔♂️
+🧔🏻♂️
+🧔🏼♂️
+🧔🏽♂️
+🧔🏾♂️
+🧔🏿♂️
+🧔♀️
+🧔🏻♀️
+🧔🏼♀️
+🧔🏽♀️
+🧔🏾♀️
+🧔🏿♀️
+👨🦰
+👨🏻🦰
+👨🏼🦰
+👨🏽🦰
+👨🏾🦰
+👨🏿🦰
+👨🦱
+👨🏻🦱
+👨🏼🦱
+👨🏽🦱
+👨🏾🦱
+👨🏿🦱
+👨🦳
+👨🏻🦳
+👨🏼🦳
+👨🏽🦳
+👨🏾🦳
+👨🏿🦳
+👨🦲
+👨🏻🦲
+👨🏼🦲
+👨🏽🦲
+👨🏾🦲
+👨🏿🦲
+👩
+👩🏻
+👩🏼
+👩🏽
+👩🏾
+👩🏿
+👩🦰
+👩🏻🦰
+👩🏼🦰
+👩🏽🦰
+👩🏾🦰
+👩🏿🦰
+🧑🦰
+🧑🏻🦰
+🧑🏼🦰
+🧑🏽🦰
+🧑🏾🦰
+🧑🏿🦰
+👩🦱
+👩🏻🦱
+👩🏼🦱
+👩🏽🦱
+👩🏾🦱
+👩🏿🦱
+🧑🦱
+🧑🏻🦱
+🧑🏼🦱
+🧑🏽🦱
+🧑🏾🦱
+🧑🏿🦱
+👩🦳
+👩🏻🦳
+👩🏼🦳
+👩🏽🦳
+👩🏾🦳
+👩🏿🦳
+🧑🦳
+🧑🏻🦳
+🧑🏼🦳
+🧑🏽🦳
+🧑🏾🦳
+🧑🏿🦳
+👩🦲
+👩🏻🦲
+👩🏼🦲
+👩🏽🦲
+👩🏾🦲
+👩🏿🦲
+🧑🦲
+🧑🏻🦲
+🧑🏼🦲
+🧑🏽🦲
+🧑🏾🦲
+🧑🏿🦲
+👱♀️
+👱🏻♀️
+👱🏼♀️
+👱🏽♀️
+👱🏾♀️
+👱🏿♀️
+👱♂️
+👱🏻♂️
+👱🏼♂️
+👱🏽♂️
+👱🏾♂️
+👱🏿♂️
+🧓
+🧓🏻
+🧓🏼
+🧓🏽
+🧓🏾
+🧓🏿
+👴
+👴🏻
+👴🏼
+👴🏽
+👴🏾
+👴🏿
+👵
+👵🏻
+👵🏼
+👵🏽
+👵🏾
+👵🏿
+🙍
+🙍🏻
+🙍🏼
+🙍🏽
+🙍🏾
+🙍🏿
+🙍♂️
+🙍🏻♂️
+🙍🏼♂️
+🙍🏽♂️
+🙍🏾♂️
+🙍🏿♂️
+🙍♀️
+🙍🏻♀️
+🙍🏼♀️
+🙍🏽♀️
+🙍🏾♀️
+🙍🏿♀️
+🙎
+🙎🏻
+🙎🏼
+🙎🏽
+🙎🏾
+🙎🏿
+🙎♂️
+🙎🏻♂️
+🙎🏼♂️
+🙎🏽♂️
+🙎🏾♂️
+🙎🏿♂️
+🙎♀️
+🙎🏻♀️
+🙎🏼♀️
+🙎🏽♀️
+🙎🏾♀️
+🙎🏿♀️
+🙅
+🙅🏻
+🙅🏼
+🙅🏽
+🙅🏾
+🙅🏿
+🙅♂️
+🙅🏻♂️
+🙅🏼♂️
+🙅🏽♂️
+🙅🏾♂️
+🙅🏿♂️
+🙅♀️
+🙅🏻♀️
+🙅🏼♀️
+🙅🏽♀️
+🙅🏾♀️
+🙅🏿♀️
+🙆
+🙆🏻
+🙆🏼
+🙆🏽
+🙆🏾
+🙆🏿
+🙆♂️
+🙆🏻♂️
+🙆🏼♂️
+🙆🏽♂️
+🙆🏾♂️
+🙆🏿♂️
+🙆♀️
+🙆🏻♀️
+🙆🏼♀️
+🙆🏽♀️
+🙆🏾♀️
+🙆🏿♀️
+💁
+💁🏻
+💁🏼
+💁🏽
+💁🏾
+💁🏿
+💁♂️
+💁🏻♂️
+💁🏼♂️
+💁🏽♂️
+💁🏾♂️
+💁🏿♂️
+💁♀️
+💁🏻♀️
+💁🏼♀️
+💁🏽♀️
+💁🏾♀️
+💁🏿♀️
+🙋
+🙋🏻
+🙋🏼
+🙋🏽
+🙋🏾
+🙋🏿
+🙋♂️
+🙋🏻♂️
+🙋🏼♂️
+🙋🏽♂️
+🙋🏾♂️
+🙋🏿♂️
+🙋♀️
+🙋🏻♀️
+🙋🏼♀️
+🙋🏽♀️
+🙋🏾♀️
+🙋🏿♀️
+🧏
+🧏🏻
+🧏🏼
+🧏🏽
+🧏🏾
+🧏🏿
+🧏♂️
+🧏🏻♂️
+🧏🏼♂️
+🧏🏽♂️
+🧏🏾♂️
+🧏🏿♂️
+🧏♀️
+🧏🏻♀️
+🧏🏼♀️
+🧏🏽♀️
+🧏🏾♀️
+🧏🏿♀️
+🙇
+🙇🏻
+🙇🏼
+🙇🏽
+🙇🏾
+🙇🏿
+🙇♂️
+🙇🏻♂️
+🙇🏼♂️
+🙇🏽♂️
+🙇🏾♂️
+🙇🏿♂️
+🙇♀️
+🙇🏻♀️
+🙇🏼♀️
+🙇🏽♀️
+🙇🏾♀️
+🙇🏿♀️
+🤦
+🤦🏻
+🤦🏼
+🤦🏽
+🤦🏾
+🤦🏿
+🤦♂️
+🤦🏻♂️
+🤦🏼♂️
+🤦🏽♂️
+🤦🏾♂️
+🤦🏿♂️
+🤦♀️
+🤦🏻♀️
+🤦🏼♀️
+🤦🏽♀️
+🤦🏾♀️
+🤦🏿♀️
+🤷
+🤷🏻
+🤷🏼
+🤷🏽
+🤷🏾
+🤷🏿
+🤷♂️
+🤷🏻♂️
+🤷🏼♂️
+🤷🏽♂️
+🤷🏾♂️
+🤷🏿♂️
+🤷♀️
+🤷🏻♀️
+🤷🏼♀️
+🤷🏽♀️
+🤷🏾♀️
+🤷🏿♀️
+🧑⚕️
+🧑🏻⚕️
+🧑🏼⚕️
+🧑🏽⚕️
+🧑🏾⚕️
+🧑🏿⚕️
+👨⚕️
+👨🏻⚕️
+👨🏼⚕️
+👨🏽⚕️
+👨🏾⚕️
+👨🏿⚕️
+👩⚕️
+👩🏻⚕️
+👩🏼⚕️
+👩🏽⚕️
+👩🏾⚕️
+👩🏿⚕️
+🧑🎓
+🧑🏻🎓
+🧑🏼🎓
+🧑🏽🎓
+🧑🏾🎓
+🧑🏿🎓
+👨🎓
+👨🏻🎓
+👨🏼🎓
+👨🏽🎓
+👨🏾🎓
+👨🏿🎓
+👩🎓
+👩🏻🎓
+👩🏼🎓
+👩🏽🎓
+👩🏾🎓
+👩🏿🎓
+🧑🏫
+🧑🏻🏫
+🧑🏼🏫
+🧑🏽🏫
+🧑🏾🏫
+🧑🏿🏫
+👨🏫
+👨🏻🏫
+👨🏼🏫
+👨🏽🏫
+👨🏾🏫
+👨🏿🏫
+👩🏫
+👩🏻🏫
+👩🏼🏫
+👩🏽🏫
+👩🏾🏫
+👩🏿🏫
+🧑⚖️
+🧑🏻⚖️
+🧑🏼⚖️
+🧑🏽⚖️
+🧑🏾⚖️
+🧑🏿⚖️
+👨⚖️
+👨🏻⚖️
+👨🏼⚖️
+👨🏽⚖️
+👨🏾⚖️
+👨🏿⚖️
+👩⚖️
+👩🏻⚖️
+👩🏼⚖️
+👩🏽⚖️
+👩🏾⚖️
+👩🏿⚖️
+🧑🌾
+🧑🏻🌾
+🧑🏼🌾
+🧑🏽🌾
+🧑🏾🌾
+🧑🏿🌾
+👨🌾
+👨🏻🌾
+👨🏼🌾
+👨🏽🌾
+👨🏾🌾
+👨🏿🌾
+👩🌾
+👩🏻🌾
+👩🏼🌾
+👩🏽🌾
+👩🏾🌾
+👩🏿🌾
+🧑🍳
+🧑🏻🍳
+🧑🏼🍳
+🧑🏽🍳
+🧑🏾🍳
+🧑🏿🍳
+👨🍳
+👨🏻🍳
+👨🏼🍳
+👨🏽🍳
+👨🏾🍳
+👨🏿🍳
+👩🍳
+👩🏻🍳
+👩🏼🍳
+👩🏽🍳
+👩🏾🍳
+👩🏿🍳
+🧑🔧
+🧑🏻🔧
+🧑🏼🔧
+🧑🏽🔧
+🧑🏾🔧
+🧑🏿🔧
+👨🔧
+👨🏻🔧
+👨🏼🔧
+👨🏽🔧
+👨🏾🔧
+👨🏿🔧
+👩🔧
+👩🏻🔧
+👩🏼🔧
+👩🏽🔧
+👩🏾🔧
+👩🏿🔧
+🧑🏭
+🧑🏻🏭
+🧑🏼🏭
+🧑🏽🏭
+🧑🏾🏭
+🧑🏿🏭
+👨🏭
+👨🏻🏭
+👨🏼🏭
+👨🏽🏭
+👨🏾🏭
+👨🏿🏭
+👩🏭
+👩🏻🏭
+👩🏼🏭
+👩🏽🏭
+👩🏾🏭
+👩🏿🏭
+🧑💼
+🧑🏻💼
+🧑🏼💼
+🧑🏽💼
+🧑🏾💼
+🧑🏿💼
+👨💼
+👨🏻💼
+👨🏼💼
+👨🏽💼
+👨🏾💼
+👨🏿💼
+👩💼
+👩🏻💼
+👩🏼💼
+👩🏽💼
+👩🏾💼
+👩🏿💼
+🧑🔬
+🧑🏻🔬
+🧑🏼🔬
+🧑🏽🔬
+🧑🏾🔬
+🧑🏿🔬
+👨🔬
+👨🏻🔬
+👨🏼🔬
+👨🏽🔬
+👨🏾🔬
+👨🏿🔬
+👩🔬
+👩🏻🔬
+👩🏼🔬
+👩🏽🔬
+👩🏾🔬
+👩🏿🔬
+🧑💻
+🧑🏻💻
+🧑🏼💻
+🧑🏽💻
+🧑🏾💻
+🧑🏿💻
+👨💻
+👨🏻💻
+👨🏼💻
+👨🏽💻
+👨🏾💻
+👨🏿💻
+👩💻
+👩🏻💻
+👩🏼💻
+👩🏽💻
+👩🏾💻
+👩🏿💻
+🧑🎤
+🧑🏻🎤
+🧑🏼🎤
+🧑🏽🎤
+🧑🏾🎤
+🧑🏿🎤
+👨🎤
+👨🏻🎤
+👨🏼🎤
+👨🏽🎤
+👨🏾🎤
+👨🏿🎤
+👩🎤
+👩🏻🎤
+👩🏼🎤
+👩🏽🎤
+👩🏾🎤
+👩🏿🎤
+🧑🎨
+🧑🏻🎨
+🧑🏼🎨
+🧑🏽🎨
+🧑🏾🎨
+🧑🏿🎨
+👨🎨
+👨🏻🎨
+👨🏼🎨
+👨🏽🎨
+👨🏾🎨
+👨🏿🎨
+👩🎨
+👩🏻🎨
+👩🏼🎨
+👩🏽🎨
+👩🏾🎨
+👩🏿🎨
+🧑✈️
+🧑🏻✈️
+🧑🏼✈️
+🧑🏽✈️
+🧑🏾✈️
+🧑🏿✈️
+👨✈️
+👨🏻✈️
+👨🏼✈️
+👨🏽✈️
+👨🏾✈️
+👨🏿✈️
+👩✈️
+👩🏻✈️
+👩🏼✈️
+👩🏽✈️
+👩🏾✈️
+👩🏿✈️
+🧑🚀
+🧑🏻🚀
+🧑🏼🚀
+🧑🏽🚀
+🧑🏾🚀
+🧑🏿🚀
+👨🚀
+👨🏻🚀
+👨🏼🚀
+👨🏽🚀
+👨🏾🚀
+👨🏿🚀
+👩🚀
+👩🏻🚀
+👩🏼🚀
+👩🏽🚀
+👩🏾🚀
+👩🏿🚀
+🧑🚒
+🧑🏻🚒
+🧑🏼🚒
+🧑🏽🚒
+🧑🏾🚒
+🧑🏿🚒
+👨🚒
+👨🏻🚒
+👨🏼🚒
+👨🏽🚒
+👨🏾🚒
+👨🏿🚒
+👩🚒
+👩🏻🚒
+👩🏼🚒
+👩🏽🚒
+👩🏾🚒
+👩🏿🚒
+👮
+👮🏻
+👮🏼
+👮🏽
+👮🏾
+👮🏿
+👮♂️
+👮🏻♂️
+👮🏼♂️
+👮🏽♂️
+👮🏾♂️
+👮🏿♂️
+👮♀️
+👮🏻♀️
+👮🏼♀️
+👮🏽♀️
+👮🏾♀️
+👮🏿♀️
+🕵️
+🕵🏻
+🕵🏼
+🕵🏽
+🕵🏾
+🕵🏿
+🕵️♂️
+🕵🏻♂️
+🕵🏼♂️
+🕵🏽♂️
+🕵🏾♂️
+🕵🏿♂️
+🕵️♀️
+🕵🏻♀️
+🕵🏼♀️
+🕵🏽♀️
+🕵🏾♀️
+🕵🏿♀️
+💂
+💂🏻
+💂🏼
+💂🏽
+💂🏾
+💂🏿
+💂♂️
+💂🏻♂️
+💂🏼♂️
+💂🏽♂️
+💂🏾♂️
+💂🏿♂️
+💂♀️
+💂🏻♀️
+💂🏼♀️
+💂🏽♀️
+💂🏾♀️
+💂🏿♀️
+🥷
+🥷🏻
+🥷🏼
+🥷🏽
+🥷🏾
+🥷🏿
+👷
+👷🏻
+👷🏼
+👷🏽
+👷🏾
+👷🏿
+👷♂️
+👷🏻♂️
+👷🏼♂️
+👷🏽♂️
+👷🏾♂️
+👷🏿♂️
+👷♀️
+👷🏻♀️
+👷🏼♀️
+👷🏽♀️
+👷🏾♀️
+👷🏿♀️
+🫅
+🫅🏻
+🫅🏼
+🫅🏽
+🫅🏾
+🫅🏿
+🤴
+🤴🏻
+🤴🏼
+🤴🏽
+🤴🏾
+🤴🏿
+👸
+👸🏻
+👸🏼
+👸🏽
+👸🏾
+👸🏿
+👳
+👳🏻
+👳🏼
+👳🏽
+👳🏾
+👳🏿
+👳♂️
+👳🏻♂️
+👳🏼♂️
+👳🏽♂️
+👳🏾♂️
+👳🏿♂️
+👳♀️
+👳🏻♀️
+👳🏼♀️
+👳🏽♀️
+👳🏾♀️
+👳🏿♀️
+👲
+👲🏻
+👲🏼
+👲🏽
+👲🏾
+👲🏿
+🧕
+🧕🏻
+🧕🏼
+🧕🏽
+🧕🏾
+🧕🏿
+🤵
+🤵🏻
+🤵🏼
+🤵🏽
+🤵🏾
+🤵🏿
+🤵♂️
+🤵🏻♂️
+🤵🏼♂️
+🤵🏽♂️
+🤵🏾♂️
+🤵🏿♂️
+🤵♀️
+🤵🏻♀️
+🤵🏼♀️
+🤵🏽♀️
+🤵🏾♀️
+🤵🏿♀️
+👰
+👰🏻
+👰🏼
+👰🏽
+👰🏾
+👰🏿
+👰♂️
+👰🏻♂️
+👰🏼♂️
+👰🏽♂️
+👰🏾♂️
+👰🏿♂️
+👰♀️
+👰🏻♀️
+👰🏼♀️
+👰🏽♀️
+👰🏾♀️
+👰🏿♀️
+🤰
+🤰🏻
+🤰🏼
+🤰🏽
+🤰🏾
+🤰🏿
+🫃
+🫃🏻
+🫃🏼
+🫃🏽
+🫃🏾
+🫃🏿
+🫄
+🫄🏻
+🫄🏼
+🫄🏽
+🫄🏾
+🫄🏿
+🤱
+🤱🏻
+🤱🏼
+🤱🏽
+🤱🏾
+🤱🏿
+👩🍼
+👩🏻🍼
+👩🏼🍼
+👩🏽🍼
+👩🏾🍼
+👩🏿🍼
+👨🍼
+👨🏻🍼
+👨🏼🍼
+👨🏽🍼
+👨🏾🍼
+👨🏿🍼
+🧑🍼
+🧑🏻🍼
+🧑🏼🍼
+🧑🏽🍼
+🧑🏾🍼
+🧑🏿🍼
+👼
+👼🏻
+👼🏼
+👼🏽
+👼🏾
+👼🏿
+🎅
+🎅🏻
+🎅🏼
+🎅🏽
+🎅🏾
+🎅🏿
+🤶
+🤶🏻
+🤶🏼
+🤶🏽
+🤶🏾
+🤶🏿
+🧑🎄
+🧑🏻🎄
+🧑🏼🎄
+🧑🏽🎄
+🧑🏾🎄
+🧑🏿🎄
+🦸
+🦸🏻
+🦸🏼
+🦸🏽
+🦸🏾
+🦸🏿
+🦸♂️
+🦸🏻♂️
+🦸🏼♂️
+🦸🏽♂️
+🦸🏾♂️
+🦸🏿♂️
+🦸♀️
+🦸🏻♀️
+🦸🏼♀️
+🦸🏽♀️
+🦸🏾♀️
+🦸🏿♀️
+🦹
+🦹🏻
+🦹🏼
+🦹🏽
+🦹🏾
+🦹🏿
+🦹♂️
+🦹🏻♂️
+🦹🏼♂️
+🦹🏽♂️
+🦹🏾♂️
+🦹🏿♂️
+🦹♀️
+🦹🏻♀️
+🦹🏼♀️
+🦹🏽♀️
+🦹🏾♀️
+🦹🏿♀️
+🧙
+🧙🏻
+🧙🏼
+🧙🏽
+🧙🏾
+🧙🏿
+🧙♂️
+🧙🏻♂️
+🧙🏼♂️
+🧙🏽♂️
+🧙🏾♂️
+🧙🏿♂️
+🧙♀️
+🧙🏻♀️
+🧙🏼♀️
+🧙🏽♀️
+🧙🏾♀️
+🧙🏿♀️
+🧚
+🧚🏻
+🧚🏼
+🧚🏽
+🧚🏾
+🧚🏿
+🧚♂️
+🧚🏻♂️
+🧚🏼♂️
+🧚🏽♂️
+🧚🏾♂️
+🧚🏿♂️
+🧚♀️
+🧚🏻♀️
+🧚🏼♀️
+🧚🏽♀️
+🧚🏾♀️
+🧚🏿♀️
+🧛
+🧛🏻
+🧛🏼
+🧛🏽
+🧛🏾
+🧛🏿
+🧛♂️
+🧛🏻♂️
+🧛🏼♂️
+🧛🏽♂️
+🧛🏾♂️
+🧛🏿♂️
+🧛♀️
+🧛🏻♀️
+🧛🏼♀️
+🧛🏽♀️
+🧛🏾♀️
+🧛🏿♀️
+🧜
+🧜🏻
+🧜🏼
+🧜🏽
+🧜🏾
+🧜🏿
+🧜♂️
+🧜🏻♂️
+🧜🏼♂️
+🧜🏽♂️
+🧜🏾♂️
+🧜🏿♂️
+🧜♀️
+🧜🏻♀️
+🧜🏼♀️
+🧜🏽♀️
+🧜🏾♀️
+🧜🏿♀️
+🧝
+🧝🏻
+🧝🏼
+🧝🏽
+🧝🏾
+🧝🏿
+🧝♂️
+🧝🏻♂️
+🧝🏼♂️
+🧝🏽♂️
+🧝🏾♂️
+🧝🏿♂️
+🧝♀️
+🧝🏻♀️
+🧝🏼♀️
+🧝🏽♀️
+🧝🏾♀️
+🧝🏿♀️
+🧞
+🧞♂️
+🧞♀️
+🧟
+🧟♂️
+🧟♀️
+🧌
+💆
+💆🏻
+💆🏼
+💆🏽
+💆🏾
+💆🏿
+💆♂️
+💆🏻♂️
+💆🏼♂️
+💆🏽♂️
+💆🏾♂️
+💆🏿♂️
+💆♀️
+💆🏻♀️
+💆🏼♀️
+💆🏽♀️
+💆🏾♀️
+💆🏿♀️
+💇
+💇🏻
+💇🏼
+💇🏽
+💇🏾
+💇🏿
+💇♂️
+💇🏻♂️
+💇🏼♂️
+💇🏽♂️
+💇🏾♂️
+💇🏿♂️
+💇♀️
+💇🏻♀️
+💇🏼♀️
+💇🏽♀️
+💇🏾♀️
+💇🏿♀️
+🚶
+🚶🏻
+🚶🏼
+🚶🏽
+🚶🏾
+🚶🏿
+🚶♂️
+🚶🏻♂️
+🚶🏼♂️
+🚶🏽♂️
+🚶🏾♂️
+🚶🏿♂️
+🚶♀️
+🚶🏻♀️
+🚶🏼♀️
+🚶🏽♀️
+🚶🏾♀️
+🚶🏿♀️
+🚶➡️
+🚶🏻➡️
+🚶🏼➡️
+🚶🏽➡️
+🚶🏾➡️
+🚶🏿➡️
+🚶♀️➡️
+🚶🏻♀️➡️
+🚶🏼♀️➡️
+🚶🏽♀️➡️
+🚶🏾♀️➡️
+🚶🏿♀️➡️
+🚶♂️➡️
+🚶🏻♂️➡️
+🚶🏼♂️➡️
+🚶🏽♂️➡️
+🚶🏾♂️➡️
+🚶🏿♂️➡️
+🧍
+🧍🏻
+🧍🏼
+🧍🏽
+🧍🏾
+🧍🏿
+🧍♂️
+🧍🏻♂️
+🧍🏼♂️
+🧍🏽♂️
+🧍🏾♂️
+🧍🏿♂️
+🧍♀️
+🧍🏻♀️
+🧍🏼♀️
+🧍🏽♀️
+🧍🏾♀️
+🧍🏿♀️
+🧎
+🧎🏻
+🧎🏼
+🧎🏽
+🧎🏾
+🧎🏿
+🧎♂️
+🧎🏻♂️
+🧎🏼♂️
+🧎🏽♂️
+🧎🏾♂️
+🧎🏿♂️
+🧎♀️
+🧎🏻♀️
+🧎🏼♀️
+🧎🏽♀️
+🧎🏾♀️
+🧎🏿♀️
+🧎➡️
+🧎🏻➡️
+🧎🏼➡️
+🧎🏽➡️
+🧎🏾➡️
+🧎🏿➡️
+🧎♀️➡️
+🧎🏻♀️➡️
+🧎🏼♀️➡️
+🧎🏽♀️➡️
+🧎🏾♀️➡️
+🧎🏿♀️➡️
+🧎♂️➡️
+🧎🏻♂️➡️
+🧎🏼♂️➡️
+🧎🏽♂️➡️
+🧎🏾♂️➡️
+🧎🏿♂️➡️
+🧑🦯
+🧑🏻🦯
+🧑🏼🦯
+🧑🏽🦯
+🧑🏾🦯
+🧑🏿🦯
+🧑🦯➡️
+🧑🏻🦯➡️
+🧑🏼🦯➡️
+🧑🏽🦯➡️
+🧑🏾🦯➡️
+🧑🏿🦯➡️
+👨🦯
+👨🏻🦯
+👨🏼🦯
+👨🏽🦯
+👨🏾🦯
+👨🏿🦯
+👨🦯➡️
+👨🏻🦯➡️
+👨🏼🦯➡️
+👨🏽🦯➡️
+👨🏾🦯➡️
+👨🏿🦯➡️
+👩🦯
+👩🏻🦯
+👩🏼🦯
+👩🏽🦯
+👩🏾🦯
+👩🏿🦯
+👩🦯➡️
+👩🏻🦯➡️
+👩🏼🦯➡️
+👩🏽🦯➡️
+👩🏾🦯➡️
+👩🏿🦯➡️
+🧑🦼
+🧑🏻🦼
+🧑🏼🦼
+🧑🏽🦼
+🧑🏾🦼
+🧑🏿🦼
+🧑🦼➡️
+🧑🏻🦼➡️
+🧑🏼🦼➡️
+🧑🏽🦼➡️
+🧑🏾🦼➡️
+🧑🏿🦼➡️
+👨🦼
+👨🏻🦼
+👨🏼🦼
+👨🏽🦼
+👨🏾🦼
+👨🏿🦼
+👨🦼➡️
+👨🏻🦼➡️
+👨🏼🦼➡️
+👨🏽🦼➡️
+👨🏾🦼➡️
+👨🏿🦼➡️
+👩🦼
+👩🏻🦼
+👩🏼🦼
+👩🏽🦼
+👩🏾🦼
+👩🏿🦼
+👩🦼➡️
+👩🏻🦼➡️
+👩🏼🦼➡️
+👩🏽🦼➡️
+👩🏾🦼➡️
+👩🏿🦼➡️
+🧑🦽
+🧑🏻🦽
+🧑🏼🦽
+🧑🏽🦽
+🧑🏾🦽
+🧑🏿🦽
+🧑🦽➡️
+🧑🏻🦽➡️
+🧑🏼🦽➡️
+🧑🏽🦽➡️
+🧑🏾🦽➡️
+🧑🏿🦽➡️
+👨🦽
+👨🏻🦽
+👨🏼🦽
+👨🏽🦽
+👨🏾🦽
+👨🏿🦽
+👨🦽➡️
+👨🏻🦽➡️
+👨🏼🦽➡️
+👨🏽🦽➡️
+👨🏾🦽➡️
+👨🏿🦽➡️
+👩🦽
+👩🏻🦽
+👩🏼🦽
+👩🏽🦽
+👩🏾🦽
+👩🏿🦽
+👩🦽➡️
+👩🏻🦽➡️
+👩🏼🦽➡️
+👩🏽🦽➡️
+👩🏾🦽➡️
+👩🏿🦽➡️
+🏃
+🏃🏻
+🏃🏼
+🏃🏽
+🏃🏾
+🏃🏿
+🏃♂️
+🏃🏻♂️
+🏃🏼♂️
+🏃🏽♂️
+🏃🏾♂️
+🏃🏿♂️
+🏃♀️
+🏃🏻♀️
+🏃🏼♀️
+🏃🏽♀️
+🏃🏾♀️
+🏃🏿♀️
+🏃➡️
+🏃🏻➡️
+🏃🏼➡️
+🏃🏽➡️
+🏃🏾➡️
+🏃🏿➡️
+🏃♀️➡️
+🏃🏻♀️➡️
+🏃🏼♀️➡️
+🏃🏽♀️➡️
+🏃🏾♀️➡️
+🏃🏿♀️➡️
+🏃♂️➡️
+🏃🏻♂️➡️
+🏃🏼♂️➡️
+🏃🏽♂️➡️
+🏃🏾♂️➡️
+🏃🏿♂️➡️
+💃
+💃🏻
+💃🏼
+💃🏽
+💃🏾
+💃🏿
+🕺
+🕺🏻
+🕺🏼
+🕺🏽
+🕺🏾
+🕺🏿
+🕴️
+🕴🏻
+🕴🏼
+🕴🏽
+🕴🏾
+🕴🏿
+👯
+👯♂️
+👯♀️
+🧖
+🧖🏻
+🧖🏼
+🧖🏽
+🧖🏾
+🧖🏿
+🧖♂️
+🧖🏻♂️
+🧖🏼♂️
+🧖🏽♂️
+🧖🏾♂️
+🧖🏿♂️
+🧖♀️
+🧖🏻♀️
+🧖🏼♀️
+🧖🏽♀️
+🧖🏾♀️
+🧖🏿♀️
+🧗
+🧗🏻
+🧗🏼
+🧗🏽
+🧗🏾
+🧗🏿
+🧗♂️
+🧗🏻♂️
+🧗🏼♂️
+🧗🏽♂️
+🧗🏾♂️
+🧗🏿♂️
+🧗♀️
+🧗🏻♀️
+🧗🏼♀️
+🧗🏽♀️
+🧗🏾♀️
+🧗🏿♀️
+🤺
+🏇
+🏇🏻
+🏇🏼
+🏇🏽
+🏇🏾
+🏇🏿
+⛷️
+🏂
+🏂🏻
+🏂🏼
+🏂🏽
+🏂🏾
+🏂🏿
+🏌️
+🏌🏻
+🏌🏼
+🏌🏽
+🏌🏾
+🏌🏿
+🏌️♂️
+🏌🏻♂️
+🏌🏼♂️
+🏌🏽♂️
+🏌🏾♂️
+🏌🏿♂️
+🏌️♀️
+🏌🏻♀️
+🏌🏼♀️
+🏌🏽♀️
+🏌🏾♀️
+🏌🏿♀️
+🏄
+🏄🏻
+🏄🏼
+🏄🏽
+🏄🏾
+🏄🏿
+🏄♂️
+🏄🏻♂️
+🏄🏼♂️
+🏄🏽♂️
+🏄🏾♂️
+🏄🏿♂️
+🏄♀️
+🏄🏻♀️
+🏄🏼♀️
+🏄🏽♀️
+🏄🏾♀️
+🏄🏿♀️
+🚣
+🚣🏻
+🚣🏼
+🚣🏽
+🚣🏾
+🚣🏿
+🚣♂️
+🚣🏻♂️
+🚣🏼♂️
+🚣🏽♂️
+🚣🏾♂️
+🚣🏿♂️
+🚣♀️
+🚣🏻♀️
+🚣🏼♀️
+🚣🏽♀️
+🚣🏾♀️
+🚣🏿♀️
+🏊
+🏊🏻
+🏊🏼
+🏊🏽
+🏊🏾
+🏊🏿
+🏊♂️
+🏊🏻♂️
+🏊🏼♂️
+🏊🏽♂️
+🏊🏾♂️
+🏊🏿♂️
+🏊♀️
+🏊🏻♀️
+🏊🏼♀️
+🏊🏽♀️
+🏊🏾♀️
+🏊🏿♀️
+⛹️
+⛹🏻
+⛹🏼
+⛹🏽
+⛹🏾
+⛹🏿
+⛹️♂️
+⛹🏻♂️
+⛹🏼♂️
+⛹🏽♂️
+⛹🏾♂️
+⛹🏿♂️
+⛹️♀️
+⛹🏻♀️
+⛹🏼♀️
+⛹🏽♀️
+⛹🏾♀️
+⛹🏿♀️
+🏋️
+🏋🏻
+🏋🏼
+🏋🏽
+🏋🏾
+🏋🏿
+🏋️♂️
+🏋🏻♂️
+🏋🏼♂️
+🏋🏽♂️
+🏋🏾♂️
+🏋🏿♂️
+🏋️♀️
+🏋🏻♀️
+🏋🏼♀️
+🏋🏽♀️
+🏋🏾♀️
+🏋🏿♀️
+🚴
+🚴🏻
+🚴🏼
+🚴🏽
+🚴🏾
+🚴🏿
+🚴♂️
+🚴🏻♂️
+🚴🏼♂️
+🚴🏽♂️
+🚴🏾♂️
+🚴🏿♂️
+🚴♀️
+🚴🏻♀️
+🚴🏼♀️
+🚴🏽♀️
+🚴🏾♀️
+🚴🏿♀️
+🚵
+🚵🏻
+🚵🏼
+🚵🏽
+🚵🏾
+🚵🏿
+🚵♂️
+🚵🏻♂️
+🚵🏼♂️
+🚵🏽♂️
+🚵🏾♂️
+🚵🏿♂️
+🚵♀️
+🚵🏻♀️
+🚵🏼♀️
+🚵🏽♀️
+🚵🏾♀️
+🚵🏿♀️
+🤸
+🤸🏻
+🤸🏼
+🤸🏽
+🤸🏾
+🤸🏿
+🤸♂️
+🤸🏻♂️
+🤸🏼♂️
+🤸🏽♂️
+🤸🏾♂️
+🤸🏿♂️
+🤸♀️
+🤸🏻♀️
+🤸🏼♀️
+🤸🏽♀️
+🤸🏾♀️
+🤸🏿♀️
+🤼
+🤼♂️
+🤼♀️
+🤽
+🤽🏻
+🤽🏼
+🤽🏽
+🤽🏾
+🤽🏿
+🤽♂️
+🤽🏻♂️
+🤽🏼♂️
+🤽🏽♂️
+🤽🏾♂️
+🤽🏿♂️
+🤽♀️
+🤽🏻♀️
+🤽🏼♀️
+🤽🏽♀️
+🤽🏾♀️
+🤽🏿♀️
+🤾
+🤾🏻
+🤾🏼
+🤾🏽
+🤾🏾
+🤾🏿
+🤾♂️
+🤾🏻♂️
+🤾🏼♂️
+🤾🏽♂️
+🤾🏾♂️
+🤾🏿♂️
+🤾♀️
+🤾🏻♀️
+🤾🏼♀️
+🤾🏽♀️
+🤾🏾♀️
+🤾🏿♀️
+🤹
+🤹🏻
+🤹🏼
+🤹🏽
+🤹🏾
+🤹🏿
+🤹♂️
+🤹🏻♂️
+🤹🏼♂️
+🤹🏽♂️
+🤹🏾♂️
+🤹🏿♂️
+🤹♀️
+🤹🏻♀️
+🤹🏼♀️
+🤹🏽♀️
+🤹🏾♀️
+🤹🏿♀️
+🧘
+🧘🏻
+🧘🏼
+🧘🏽
+🧘🏾
+🧘🏿
+🧘♂️
+🧘🏻♂️
+🧘🏼♂️
+🧘🏽♂️
+🧘🏾♂️
+🧘🏿♂️
+🧘♀️
+🧘🏻♀️
+🧘🏼♀️
+🧘🏽♀️
+🧘🏾♀️
+🧘🏿♀️
+🛀
+🛀🏻
+🛀🏼
+🛀🏽
+🛀🏾
+🛀🏿
+🛌
+🛌🏻
+🛌🏼
+🛌🏽
+🛌🏾
+🛌🏿
+🧑🤝🧑
+🧑🏻🤝🧑🏻
+🧑🏻🤝🧑🏼
+🧑🏻🤝🧑🏽
+🧑🏻🤝🧑🏾
+🧑🏻🤝🧑🏿
+🧑🏼🤝🧑🏻
+🧑🏼🤝🧑🏼
+🧑🏼🤝🧑🏽
+🧑🏼🤝🧑🏾
+🧑🏼🤝🧑🏿
+🧑🏽🤝🧑🏻
+🧑🏽🤝🧑🏼
+🧑🏽🤝🧑🏽
+🧑🏽🤝🧑🏾
+🧑🏽🤝🧑🏿
+🧑🏾🤝🧑🏻
+🧑🏾🤝🧑🏼
+🧑🏾🤝🧑🏽
+🧑🏾🤝🧑🏾
+🧑🏾🤝🧑🏿
+🧑🏿🤝🧑🏻
+🧑🏿🤝🧑🏼
+🧑🏿🤝🧑🏽
+🧑🏿🤝🧑🏾
+🧑🏿🤝🧑🏿
+👭
+👭🏻
+👩🏻🤝👩🏼
+👩🏻🤝👩🏽
+👩🏻🤝👩🏾
+👩🏻🤝👩🏿
+👩🏼🤝👩🏻
+👭🏼
+👩🏼🤝👩🏽
+👩🏼🤝👩🏾
+👩🏼🤝👩🏿
+👩🏽🤝👩🏻
+👩🏽🤝👩🏼
+👭🏽
+👩🏽🤝👩🏾
+👩🏽🤝👩🏿
+👩🏾🤝👩🏻
+👩🏾🤝👩🏼
+👩🏾🤝👩🏽
+👭🏾
+👩🏾🤝👩🏿
+👩🏿🤝👩🏻
+👩🏿🤝👩🏼
+👩🏿🤝👩🏽
+👩🏿🤝👩🏾
+👭🏿
+👫
+👫🏻
+👩🏻🤝👨🏼
+👩🏻🤝👨🏽
+👩🏻🤝👨🏾
+👩🏻🤝👨🏿
+👩🏼🤝👨🏻
+👫🏼
+👩🏼🤝👨🏽
+👩🏼🤝👨🏾
+👩🏼🤝👨🏿
+👩🏽🤝👨🏻
+👩🏽🤝👨🏼
+👫🏽
+👩🏽🤝👨🏾
+👩🏽🤝👨🏿
+👩🏾🤝👨🏻
+👩🏾🤝👨🏼
+👩🏾🤝👨🏽
+👫🏾
+👩🏾🤝👨🏿
+👩🏿🤝👨🏻
+👩🏿🤝👨🏼
+👩🏿🤝👨🏽
+👩🏿🤝👨🏾
+👫🏿
+👬
+👬🏻
+👨🏻🤝👨🏼
+👨🏻🤝👨🏽
+👨🏻🤝👨🏾
+👨🏻🤝👨🏿
+👨🏼🤝👨🏻
+👬🏼
+👨🏼🤝👨🏽
+👨🏼🤝👨🏾
+👨🏼🤝👨🏿
+👨🏽🤝👨🏻
+👨🏽🤝👨🏼
+👬🏽
+👨🏽🤝👨🏾
+👨🏽🤝👨🏿
+👨🏾🤝👨🏻
+👨🏾🤝👨🏼
+👨🏾🤝👨🏽
+👬🏾
+👨🏾🤝👨🏿
+👨🏿🤝👨🏻
+👨🏿🤝👨🏼
+👨🏿🤝👨🏽
+👨🏿🤝👨🏾
+👬🏿
+💏
+💏🏻
+💏🏼
+💏🏽
+💏🏾
+💏🏿
+🧑🏻❤️💋🧑🏼
+🧑🏻❤️💋🧑🏽
+🧑🏻❤️💋🧑🏾
+🧑🏻❤️💋🧑🏿
+🧑🏼❤️💋🧑🏻
+🧑🏼❤️💋🧑🏽
+🧑🏼❤️💋🧑🏾
+🧑🏼❤️💋🧑🏿
+🧑🏽❤️💋🧑🏻
+🧑🏽❤️💋🧑🏼
+🧑🏽❤️💋🧑🏾
+🧑🏽❤️💋🧑🏿
+🧑🏾❤️💋🧑🏻
+🧑🏾❤️💋🧑🏼
+🧑🏾❤️💋🧑🏽
+🧑🏾❤️💋🧑🏿
+🧑🏿❤️💋🧑🏻
+🧑🏿❤️💋🧑🏼
+🧑🏿❤️💋🧑🏽
+🧑🏿❤️💋🧑🏾
+👩❤️💋👨
+👩🏻❤️💋👨🏻
+👩🏻❤️💋👨🏼
+👩🏻❤️💋👨🏽
+👩🏻❤️💋👨🏾
+👩🏻❤️💋👨🏿
+👩🏼❤️💋👨🏻
+👩🏼❤️💋👨🏼
+👩🏼❤️💋👨🏽
+👩🏼❤️💋👨🏾
+👩🏼❤️💋👨🏿
+👩🏽❤️💋👨🏻
+👩🏽❤️💋👨🏼
+👩🏽❤️💋👨🏽
+👩🏽❤️💋👨🏾
+👩🏽❤️💋👨🏿
+👩🏾❤️💋👨🏻
+👩🏾❤️💋👨🏼
+👩🏾❤️💋👨🏽
+👩🏾❤️💋👨🏾
+👩🏾❤️💋👨🏿
+👩🏿❤️💋👨🏻
+👩🏿❤️💋👨🏼
+👩🏿❤️💋👨🏽
+👩🏿❤️💋👨🏾
+👩🏿❤️💋👨🏿
+👨❤️💋👨
+👨🏻❤️💋👨🏻
+👨🏻❤️💋👨🏼
+👨🏻❤️💋👨🏽
+👨🏻❤️💋👨🏾
+👨🏻❤️💋👨🏿
+👨🏼❤️💋👨🏻
+👨🏼❤️💋👨🏼
+👨🏼❤️💋👨🏽
+👨🏼❤️💋👨🏾
+👨🏼❤️💋👨🏿
+👨🏽❤️💋👨🏻
+👨🏽❤️💋👨🏼
+👨🏽❤️💋👨🏽
+👨🏽❤️💋👨🏾
+👨🏽❤️💋👨🏿
+👨🏾❤️💋👨🏻
+👨🏾❤️💋👨🏼
+👨🏾❤️💋👨🏽
+👨🏾❤️💋👨🏾
+👨🏾❤️💋👨🏿
+👨🏿❤️💋👨🏻
+👨🏿❤️💋👨🏼
+👨🏿❤️💋👨🏽
+👨🏿❤️💋👨🏾
+👨🏿❤️💋👨🏿
+👩❤️💋👩
+👩🏻❤️💋👩🏻
+👩🏻❤️💋👩🏼
+👩🏻❤️💋👩🏽
+👩🏻❤️💋👩🏾
+👩🏻❤️💋👩🏿
+👩🏼❤️💋👩🏻
+👩🏼❤️💋👩🏼
+👩🏼❤️💋👩🏽
+👩🏼❤️💋👩🏾
+👩🏼❤️💋👩🏿
+👩🏽❤️💋👩🏻
+👩🏽❤️💋👩🏼
+👩🏽❤️💋👩🏽
+👩🏽❤️💋👩🏾
+👩🏽❤️💋👩🏿
+👩🏾❤️💋👩🏻
+👩🏾❤️💋👩🏼
+👩🏾❤️💋👩🏽
+👩🏾❤️💋👩🏾
+👩🏾❤️💋👩🏿
+👩🏿❤️💋👩🏻
+👩🏿❤️💋👩🏼
+👩🏿❤️💋👩🏽
+👩🏿❤️💋👩🏾
+👩🏿❤️💋👩🏿
+💑
+💑🏻
+💑🏼
+💑🏽
+💑🏾
+💑🏿
+🧑🏻❤️🧑🏼
+🧑🏻❤️🧑🏽
+🧑🏻❤️🧑🏾
+🧑🏻❤️🧑🏿
+🧑🏼❤️🧑🏻
+🧑🏼❤️🧑🏽
+🧑🏼❤️🧑🏾
+🧑🏼❤️🧑🏿
+🧑🏽❤️🧑🏻
+🧑🏽❤️🧑🏼
+🧑🏽❤️🧑🏾
+🧑🏽❤️🧑🏿
+🧑🏾❤️🧑🏻
+🧑🏾❤️🧑🏼
+🧑🏾❤️🧑🏽
+🧑🏾❤️🧑🏿
+🧑🏿❤️🧑🏻
+🧑🏿❤️🧑🏼
+🧑🏿❤️🧑🏽
+🧑🏿❤️🧑🏾
+👩❤️👨
+👩🏻❤️👨🏻
+👩🏻❤️👨🏼
+👩🏻❤️👨🏽
+👩🏻❤️👨🏾
+👩🏻❤️👨🏿
+👩🏼❤️👨🏻
+👩🏼❤️👨🏼
+👩🏼❤️👨🏽
+👩🏼❤️👨🏾
+👩🏼❤️👨🏿
+👩🏽❤️👨🏻
+👩🏽❤️👨🏼
+👩🏽❤️👨🏽
+👩🏽❤️👨🏾
+👩🏽❤️👨🏿
+👩🏾❤️👨🏻
+👩🏾❤️👨🏼
+👩🏾❤️👨🏽
+👩🏾❤️👨🏾
+👩🏾❤️👨🏿
+👩🏿❤️👨🏻
+👩🏿❤️👨🏼
+👩🏿❤️👨🏽
+👩🏿❤️👨🏾
+👩🏿❤️👨🏿
+👨❤️👨
+👨🏻❤️👨🏻
+👨🏻❤️👨🏼
+👨🏻❤️👨🏽
+👨🏻❤️👨🏾
+👨🏻❤️👨🏿
+👨🏼❤️👨🏻
+👨🏼❤️👨🏼
+👨🏼❤️👨🏽
+👨🏼❤️👨🏾
+👨🏼❤️👨🏿
+👨🏽❤️👨🏻
+👨🏽❤️👨🏼
+👨🏽❤️👨🏽
+👨🏽❤️👨🏾
+👨🏽❤️👨🏿
+👨🏾❤️👨🏻
+👨🏾❤️👨🏼
+👨🏾❤️👨🏽
+👨🏾❤️👨🏾
+👨🏾❤️👨🏿
+👨🏿❤️👨🏻
+👨🏿❤️👨🏼
+👨🏿❤️👨🏽
+👨🏿❤️👨🏾
+👨🏿❤️👨🏿
+👩❤️👩
+👩🏻❤️👩🏻
+👩🏻❤️👩🏼
+👩🏻❤️👩🏽
+👩🏻❤️👩🏾
+👩🏻❤️👩🏿
+👩🏼❤️👩🏻
+👩🏼❤️👩🏼
+👩🏼❤️👩🏽
+👩🏼❤️👩🏾
+👩🏼❤️👩🏿
+👩🏽❤️👩🏻
+👩🏽❤️👩🏼
+👩🏽❤️👩🏽
+👩🏽❤️👩🏾
+👩🏽❤️👩🏿
+👩🏾❤️👩🏻
+👩🏾❤️👩🏼
+👩🏾❤️👩🏽
+👩🏾❤️👩🏾
+👩🏾❤️👩🏿
+👩🏿❤️👩🏻
+👩🏿❤️👩🏼
+👩🏿❤️👩🏽
+👩🏿❤️👩🏾
+👩🏿❤️👩🏿
+👨👩👦
+👨👩👧
+👨👩👧👦
+👨👩👦👦
+👨👩👧👧
+👨👨👦
+👨👨👧
+👨👨👧👦
+👨👨👦👦
+👨👨👧👧
+👩👩👦
+👩👩👧
+👩👩👧👦
+👩👩👦👦
+👩👩👧👧
+👨👦
+👨👦👦
+👨👧
+👨👧👦
+👨👧👧
+👩👦
+👩👦👦
+👩👧
+👩👧👦
+👩👧👧
+🗣️
+👤
+👥
+🫂
+👪
+🧑🧑🧒
+🧑🧑🧒🧒
+🧑🧒
+🧑🧒🧒
+👣
+🐵
+🐒
+🦍
+🦧
+🐶
+🐕
+🦮
+🐕🦺
+🐩
+🐺
+🦊
+🦝
+🐱
+🐈
+🐈⬛
+🦁
+🐯
+🐅
+🐆
+🐴
+🫎
+🫏
+🐎
+🦄
+🦓
+🦌
+🦬
+🐮
+🐂
+🐃
+🐄
+🐷
+🐖
+🐗
+🐽
+🐏
+🐑
+🐐
+🐪
+🐫
+🦙
+🦒
+🐘
+🦣
+🦏
+🦛
+🐭
+🐁
+🐀
+🐹
+🐰
+🐇
+🐿️
+🦫
+🦔
+🦇
+🐻
+🐻❄️
+🐨
+🐼
+🦥
+🦦
+🦨
+🦘
+🦡
+🐾
+🦃
+🐔
+🐓
+🐣
+🐤
+🐥
+🐦
+🐧
+🕊️
+🦅
+🦆
+🦢
+🦉
+🦤
+🪶
+🦩
+🦚
+🦜
+🪽
+🐦⬛
+🪿
+🐦🔥
+🐸
+🐊
+🐢
+🦎
+🐍
+🐲
+🐉
+🦕
+🦖
+🐳
+🐋
+🐬
+🦭
+🐟
+🐠
+🐡
+🦈
+🐙
+🐚
+🪸
+🪼
+🐌
+🦋
+🐛
+🐜
+🐝
+🪲
+🐞
+🦗
+🪳
+🕷️
+🕸️
+🦂
+🦟
+🪰
+🪱
+🦠
+💐
+🌸
+💮
+🪷
+🏵️
+🌹
+🥀
+🌺
+🌻
+🌼
+🌷
+🪻
+🌱
+🪴
+🌲
+🌳
+🌴
+🌵
+🌾
+🌿
+☘️
+🍀
+🍁
+🍂
+🍃
+🪹
+🪺
+🍄
+🍇
+🍈
+🍉
+🍊
+🍋
+🍋🟩
+🍌
+🍍
+🥭
+🍎
+🍏
+🍐
+🍑
+🍒
+🍓
+🫐
+🥝
+🍅
+🫒
+🥥
+🥑
+🍆
+🥔
+🥕
+🌽
+🌶️
+🫑
+🥒
+🥬
+🥦
+🧄
+🧅
+🥜
+🫘
+🌰
+🫚
+🫛
+🍄🟫
+🍞
+🥐
+🥖
+🫓
+🥨
+🥯
+🥞
+🧇
+🧀
+🍖
+🍗
+🥩
+🥓
+🍔
+🍟
+🍕
+🌭
+🥪
+🌮
+🌯
+🫔
+🥙
+🧆
+🥚
+🍳
+🥘
+🍲
+🫕
+🥣
+🥗
+🍿
+🧈
+🧂
+🥫
+🍱
+🍘
+🍙
+🍚
+🍛
+🍜
+🍝
+🍠
+🍢
+🍣
+🍤
+🍥
+🥮
+🍡
+🥟
+🥠
+🥡
+🦀
+🦞
+🦐
+🦑
+🦪
+🍦
+🍧
+🍨
+🍩
+🍪
+🎂
+🍰
+🧁
+🥧
+🍫
+🍬
+🍭
+🍮
+🍯
+🍼
+🥛
+☕
+🫖
+🍵
+🍶
+🍾
+🍷
+🍸
+🍹
+🍺
+🍻
+🥂
+🥃
+🫗
+🥤
+🧋
+🧃
+🧉
+🧊
+🥢
+🍽️
+🍴
+🥄
+🔪
+🫙
+🏺
+🌍
+🌎
+🌏
+🌐
+🗺️
+🗾
+🧭
+🏔️
+⛰️
+🌋
+🗻
+🏕️
+🏖️
+🏜️
+🏝️
+🏞️
+🏟️
+🏛️
+🏗️
+🧱
+🪨
+🪵
+🛖
+🏘️
+🏚️
+🏠
+🏡
+🏢
+🏣
+🏤
+🏥
+🏦
+🏨
+🏩
+🏪
+🏫
+🏬
+🏭
+🏯
+🏰
+💒
+🗼
+🗽
+⛪
+🕌
+🛕
+🕍
+⛩️
+🕋
+⛲
+⛺
+🌁
+🌃
+🏙️
+🌄
+🌅
+🌆
+🌇
+🌉
+♨️
+🎠
+🛝
+🎡
+🎢
+💈
+🎪
+🚂
+🚃
+🚄
+🚅
+🚆
+🚇
+🚈
+🚉
+🚊
+🚝
+🚞
+🚋
+🚌
+🚍
+🚎
+🚐
+🚑
+🚒
+🚓
+🚔
+🚕
+🚖
+🚗
+🚘
+🚙
+🛻
+🚚
+🚛
+🚜
+🏎️
+🏍️
+🛵
+🦽
+🦼
+🛺
+🚲
+🛴
+🛹
+🛼
+🚏
+🛣️
+🛤️
+🛢️
+⛽
+🛞
+🚨
+🚥
+🚦
+🛑
+🚧
+⚓
+🛟
+⛵
+🛶
+🚤
+🛳️
+⛴️
+🛥️
+🚢
+✈️
+🛩️
+🛫
+🛬
+🪂
+💺
+🚁
+🚟
+🚠
+🚡
+🛰️
+🚀
+🛸
+🛎️
+🧳
+⌛
+⏳
+⌚
+⏰
+⏱️
+⏲️
+🕰️
+🕛
+🕧
+🕐
+🕜
+🕑
+🕝
+🕒
+🕞
+🕓
+🕟
+🕔
+🕠
+🕕
+🕡
+🕖
+🕢
+🕗
+🕣
+🕘
+🕤
+🕙
+🕥
+🕚
+🕦
+🌑
+🌒
+🌓
+🌔
+🌕
+🌖
+🌗
+🌘
+🌙
+🌚
+🌛
+🌜
+🌡️
+☀️
+🌝
+🌞
+🪐
+⭐
+🌟
+🌠
+🌌
+☁️
+⛅
+⛈️
+🌤️
+🌥️
+🌦️
+🌧️
+🌨️
+🌩️
+🌪️
+🌫️
+🌬️
+🌀
+🌈
+🌂
+☂️
+☔
+⛱️
+⚡
+❄️
+☃️
+⛄
+☄️
+🔥
+💧
+🌊
+🎃
+🎄
+🎆
+🎇
+🧨
+✨
+🎈
+🎉
+🎊
+🎋
+🎍
+🎎
+🎏
+🎐
+🎑
+🧧
+🎀
+🎁
+🎗️
+🎟️
+🎫
+🎖️
+🏆
+🏅
+🥇
+🥈
+🥉
+⚽
+⚾
+🥎
+🏀
+🏐
+🏈
+🏉
+🎾
+🥏
+🎳
+🏏
+🏑
+🏒
+🥍
+🏓
+🏸
+🥊
+🥋
+🥅
+⛳
+⛸️
+🎣
+🤿
+🎽
+🎿
+🛷
+🥌
+🎯
+🪀
+🪁
+🔫
+🎱
+🔮
+🪄
+🎮
+🕹️
+🎰
+🎲
+🧩
+🧸
+🪅
+🪩
+🪆
+♠️
+♥️
+♦️
+♣️
+♟️
+🃏
+🀄
+🎴
+🎭
+🖼️
+🎨
+🧵
+🪡
+🧶
+🪢
+👓
+🕶️
+🥽
+🥼
+🦺
+👔
+👕
+👖
+🧣
+🧤
+🧥
+🧦
+👗
+👘
+🥻
+🩱
+🩲
+🩳
+👙
+👚
+🪭
+👛
+👜
+👝
+🛍️
+🎒
+🩴
+👞
+👟
+🥾
+🥿
+👠
+👡
+🩰
+👢
+🪮
+👑
+👒
+🎩
+🎓
+🧢
+🪖
+⛑️
+📿
+💄
+💍
+💎
+🔇
+🔈
+🔉
+🔊
+📢
+📣
+📯
+🔔
+🔕
+🎼
+🎵
+🎶
+🎙️
+🎚️
+🎛️
+🎤
+🎧
+📻
+🎷
+🪗
+🎸
+🎹
+🎺
+🎻
+🪕
+🥁
+🪘
+🪇
+🪈
+📱
+📲
+☎️
+📞
+📟
+📠
+🔋
+🪫
+🔌
+💻
+🖥️
+🖨️
+⌨️
+🖱️
+🖲️
+💽
+💾
+💿
+📀
+🧮
+🎥
+🎞️
+📽️
+🎬
+📺
+📷
+📸
+📹
+📼
+🔍
+🔎
+🕯️
+💡
+🔦
+🏮
+🪔
+📔
+📕
+📖
+📗
+📘
+📙
+📚
+📓
+📒
+📃
+📜
+📄
+📰
+🗞️
+📑
+🔖
+🏷️
+💰
+🪙
+💴
+💵
+💶
+💷
+💸
+💳
+🧾
+💹
+✉️
+📧
+📨
+📩
+📤
+📥
+📦
+📫
+📪
+📬
+📭
+📮
+🗳️
+✏️
+✒️
+🖋️
+🖊️
+🖌️
+🖍️
+📝
+💼
+📁
+📂
+🗂️
+📅
+📆
+🗒️
+🗓️
+📇
+📈
+📉
+📊
+📋
+📌
+📍
+📎
+🖇️
+📏
+📐
+✂️
+🗃️
+🗄️
+🗑️
+🔒
+🔓
+🔏
+🔐
+🔑
+🗝️
+🔨
+🪓
+⛏️
+⚒️
+🛠️
+🗡️
+⚔️
+💣
+🪃
+🏹
+🛡️
+🪚
+🔧
+🪛
+🔩
+⚙️
+🗜️
+⚖️
+🦯
+🔗
+⛓️💥
+⛓️
+🪝
+🧰
+🧲
+🪜
+⚗️
+🧪
+🧫
+🧬
+🔬
+🔭
+📡
+💉
+🩸
+💊
+🩹
+🩼
+🩺
+🩻
+🚪
+🛗
+🪞
+🪟
+🛏️
+🛋️
+🪑
+🚽
+🪠
+🚿
+🛁
+🪤
+🪒
+🧴
+🧷
+🧹
+🧺
+🧻
+🪣
+🧼
+🫧
+🪥
+🧽
+🧯
+🛒
+🚬
+⚰️
+🪦
+⚱️
+🧿
+🪬
+🗿
+🪧
+🪪
+🏧
+🚮
+🚰
+♿
+🚹
+🚺
+🚻
+🚼
+🚾
+🛂
+🛃
+🛄
+🛅
+⚠️
+🚸
+⛔
+🚫
+🚳
+🚭
+🚯
+🚱
+🚷
+📵
+🔞
+☢️
+☣️
+⬆️
+↗️
+➡️
+↘️
+⬇️
+↙️
+⬅️
+↖️
+↕️
+↔️
+↩️
+↪️
+⤴️
+⤵️
+🔃
+🔄
+🔙
+🔚
+🔛
+🔜
+🔝
+🛐
+⚛️
+🕉️
+✡️
+☸️
+☯️
+✝️
+☦️
+☪️
+☮️
+🕎
+🔯
+🪯
+♈
+♉
+♊
+♋
+♌
+♍
+♎
+♏
+♐
+♑
+♒
+♓
+⛎
+🔀
+🔁
+🔂
+▶️
+⏩
+⏭️
+⏯️
+◀️
+⏪
+⏮️
+🔼
+⏫
+🔽
+⏬
+⏸️
+⏹️
+⏺️
+⏏️
+🎦
+🔅
+🔆
+📶
+🛜
+📳
+📴
+♀️
+♂️
+⚧️
+✖️
+➕
+➖
+➗
+🟰
+♾️
+‼️
+⁉️
+❓
+❔
+❕
+❗
+〰️
+💱
+💲
+⚕️
+♻️
+⚜️
+🔱
+📛
+🔰
+⭕
+✅
+☑️
+✔️
+❌
+❎
+➰
+➿
+〽️
+✳️
+✴️
+❇️
+©️
+®️
+™️
+#️⃣
+*️⃣
+0️⃣
+1️⃣
+2️⃣
+3️⃣
+4️⃣
+5️⃣
+6️⃣
+7️⃣
+8️⃣
+9️⃣
+🔟
+🔠
+🔡
+🔢
+🔣
+🔤
+🅰️
+🆎
+🅱️
+🆑
+🆒
+🆓
+ℹ️
+🆔
+Ⓜ️
+🆕
+🆖
+🅾️
+🆗
+🅿️
+🆘
+🆙
+🆚
+🈁
+🈂️
+🈷️
+🈶
+🈯
+🉐
+🈹
+🈚
+🈲
+🉑
+🈸
+🈴
+🈳
+㊗️
+㊙️
+🈺
+🈵
+🔴
+🟠
+🟡
+🟢
+🔵
+🟣
+🟤
+⚫
+⚪
+🟥
+🟧
+🟨
+🟩
+🟦
+🟪
+🟫
+⬛
+⬜
+◼️
+◻️
+◾
+◽
+▪️
+▫️
+🔶
+🔷
+🔸
+🔹
+🔺
+🔻
+💠
+🔘
+🔳
+🔲
+🏁
+🚩
+🎌
+🏴
+🏳️
+🏳️🌈
+🏳️⚧️
+🏴☠️
+🇦🇨
+🇦🇩
+🇦🇪
+🇦🇫
+🇦🇬
+🇦🇮
+🇦🇱
+🇦🇲
+🇦🇴
+🇦🇶
+🇦🇷
+🇦🇸
+🇦🇹
+🇦🇺
+🇦🇼
+🇦🇽
+🇦🇿
+🇧🇦
+🇧🇧
+🇧🇩
+🇧🇪
+🇧🇫
+🇧🇬
+🇧🇭
+🇧🇮
+🇧🇯
+🇧🇱
+🇧🇲
+🇧🇳
+🇧🇴
+🇧🇶
+🇧🇷
+🇧🇸
+🇧🇹
+🇧🇻
+🇧🇼
+🇧🇾
+🇧🇿
+🇨🇦
+🇨🇨
+🇨🇩
+🇨🇫
+🇨🇬
+🇨🇭
+🇨🇮
+🇨🇰
+🇨🇱
+🇨🇲
+🇨🇳
+🇨🇴
+🇨🇵
+🇨🇷
+🇨🇺
+🇨🇻
+🇨🇼
+🇨🇽
+🇨🇾
+🇨🇿
+🇩🇪
+🇩🇬
+🇩🇯
+🇩🇰
+🇩🇲
+🇩🇴
+🇩🇿
+🇪🇦
+🇪🇨
+🇪🇪
+🇪🇬
+🇪🇭
+🇪🇷
+🇪🇸
+🇪🇹
+🇪🇺
+🇫🇮
+🇫🇯
+🇫🇰
+🇫🇲
+🇫🇴
+🇫🇷
+🇬🇦
+🇬🇧
+🇬🇩
+🇬🇪
+🇬🇫
+🇬🇬
+🇬🇭
+🇬🇮
+🇬🇱
+🇬🇲
+🇬🇳
+🇬🇵
+🇬🇶
+🇬🇷
+🇬🇸
+🇬🇹
+🇬🇺
+🇬🇼
+🇬🇾
+🇭🇰
+🇭🇲
+🇭🇳
+🇭🇷
+🇭🇹
+🇭🇺
+🇮🇨
+🇮🇩
+🇮🇪
+🇮🇱
+🇮🇲
+🇮🇳
+🇮🇴
+🇮🇶
+🇮🇷
+🇮🇸
+🇮🇹
+🇯🇪
+🇯🇲
+🇯🇴
+🇯🇵
+🇰🇪
+🇰🇬
+🇰🇭
+🇰🇮
+🇰🇲
+🇰🇳
+🇰🇵
+🇰🇷
+🇰🇼
+🇰🇾
+🇰🇿
+🇱🇦
+🇱🇧
+🇱🇨
+🇱🇮
+🇱🇰
+🇱🇷
+🇱🇸
+🇱🇹
+🇱🇺
+🇱🇻
+🇱🇾
+🇲🇦
+🇲🇨
+🇲🇩
+🇲🇪
+🇲🇫
+🇲🇬
+🇲🇭
+🇲🇰
+🇲🇱
+🇲🇲
+🇲🇳
+🇲🇴
+🇲🇵
+🇲🇶
+🇲🇷
+🇲🇸
+🇲🇹
+🇲🇺
+🇲🇻
+🇲🇼
+🇲🇽
+🇲🇾
+🇲🇿
+🇳🇦
+🇳🇨
+🇳🇪
+🇳🇫
+🇳🇬
+🇳🇮
+🇳🇱
+🇳🇴
+🇳🇵
+🇳🇷
+🇳🇺
+🇳🇿
+🇴🇲
+🇵🇦
+🇵🇪
+🇵🇫
+🇵🇬
+🇵🇭
+🇵🇰
+🇵🇱
+🇵🇲
+🇵🇳
+🇵🇷
+🇵🇸
+🇵🇹
+🇵🇼
+🇵🇾
+🇶🇦
+🇷🇪
+🇷🇴
+🇷🇸
+🇷🇺
+🇷🇼
+🇸🇦
+🇸🇧
+🇸🇨
+🇸🇩
+🇸🇪
+🇸🇬
+🇸🇭
+🇸🇮
+🇸🇯
+🇸🇰
+🇸🇱
+🇸🇲
+🇸🇳
+🇸🇴
+🇸🇷
+🇸🇸
+🇸🇹
+🇸🇻
+🇸🇽
+🇸🇾
+🇸🇿
+🇹🇦
+🇹🇨
+🇹🇩
+🇹🇫
+🇹🇬
+🇹🇭
+🇹🇯
+🇹🇰
+🇹🇱
+🇹🇲
+🇹🇳
+🇹🇴
+🇹🇷
+🇹🇹
+🇹🇻
+🇹🇼
+🇹🇿
+🇺🇦
+🇺🇬
+🇺🇲
+🇺🇳
+🇺🇸
+🇺🇾
+🇺🇿
+🇻🇦
+🇻🇨
+🇻🇪
+🇻🇬
+🇻🇮
+🇻🇳
+🇻🇺
+🇼🇫
+🇼🇸
+🇽🇰
+🇾🇪
+🇾🇹
+🇿🇦
+🇿🇲
+🇿🇼
+🏴
+🏴
+🏴
+
+0 168 2428 2581 2716 2934 3019 3281 3504
diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml
new file mode 100644
index 0000000..3b53714
--- /dev/null
+++ b/res/values-cs/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Klávesnice Unexpected
+ Klávesnice Unexpected (pro ladění)
+ Nenáročná virtuální klávesnice pro vývojáře.
+ Hlavní funkcí je možnost psát více znaků posunutím kláves směrem k rohům.\n\nTato aplikace byla původně navržena pro programátory používající Termux.\nNyní je ideální pro každodenní použití.\n\nTato aplikace neobsahuje žádné reklamy, nevyužívá připojení k síti a je Open Source.
+ V režimu na výšku
+
+ V režimu na šířku
+
+ Rozvržení
+ Upravit jas nápisu
+ Upravit průhlednost pozadí klávesnice
+ Upravit průhlednost kláves
+ Upravit průhlednost stisknutých kláves
+ Dle nastavení systému
+ Vlastní rozvržení
+ Přidat alternativní rozložení
+ Rozložení %1$d: %2$s
+ Odebrat rozložení
+ Vlastní rozložení
+
+
+
+ Zobrazit NumPad
+ Nikdy
+ Pouze v režimu na šířku
+ Vždy
+ Zobrazit řádek s čísly
+ Přidá řádek s čísly nad klávesnici, pokud je NumPad skrytý
+ Rozložení NumPadu
+ Vyšší číslice jako první (horní řádek 789)
+ Nižší číslice jako první (horní řádek 123)
+ Přidat klávesy do klávesnice
+ Přidat vlastní klávesy
+ Výbrané klávesy k přidaní do klávesnice
+ Psaní
+ Vzdálenost posunutí prstem
+ Jak daleko je třeba posunout prst pro zadání znaku/znaménka v rohu klávey (%s)
+ Doba pro aktivaci dlouhého podržení
+ Interval opakování znaků
+ Opakování kláves při držení
+ Dvojklik pro aktivaci Capslock(u)
+ Umožňuje zamknout Shift dvojklikem, namísto podržení
+ Chování
+ Automatická kapitalizace
+ Stiskne Shift na začátku věty
+ Přepnout na posledně užívanou klávesnici
+ Jak bude klávesa pro přepnutí klávesnice reagovat
+ Vlastní vibrace
+ Síla vibrace
+
+
+
+
+ Styl
+ Spodní odsazení
+ Výška klávesnice
+ Boční odsazení
+ Velikost znaků
+ Velikost znaků zobrazených na klávesnici (%.2fx)
+ Motiv
+ Dle systému
+ Tmavý
+ Světlý
+ Černý
+ Černý (alternativní)
+ Bílý
+ ePapír
+ Poušťě
+ Džungle
+ Monet (dle systému)
+ Monet (Světlý)
+ Monet (Tmavý)
+ Růžová borovice
+ Velmi krátká
+ Krátká
+ Běžná
+ Dlouhá
+ Velmi dlouhá
+ Horizontální mezery mezi klávesami
+ Vertikální mezery mezi klávesami
+ Přizpůsobit okraje
+ Šířka okraje
+ Poloměr okraje
+ Citlivost kruhového gesta
+ Vysoká
+ Střední
+ Nízká
+ Deaktivováno
+ Další
+ Dokončit
+ Spustit
+ Předchozí
+ Hledat
+ Odeslat
+ Aktivovat klávesnici
+ Vybrat klávesnici
+ Tato aplikace je pouhou virtuální klávesnicí. Přejděte do systémového nastavení, kliknutím na tlačítko níže a aktivujte ji.
+ Toto je volná, open-source aplikace. Její zdrojový kód, či hlášení chyb, naleznete na Githubu.
+ Po aktivaci můžete klávesnici rovnou vyzkoušet zde:
+ Zkoušejte zde
+ Caps lock
+ Compose
+ Řecké a matematické symboly
+ Přepnout klávesnici
+ Hlasové zadávání
+ Kopírovat
+ Vložit
+ Vyjmout
+ Označit vše
+ Vložit jako prostý text
+ Zpět
+ Znovu
+ Indikátor řadové číslovky
+ Indikátor řadové číslovky
+ Horní index
+ Dolní index
+ Page Up
+ Page Down
+ Home
+ End
+ Správce schránky
+ Kombinace diakritiky
+ Mrtvá klávesa
+ Spojka nulové šířky (ZWJ)
+ ne-Spojka nulové šířky (ZWNJ)
+ Nezlomitelná mezera
+ Úzká nezlomitelná mezera
+
+
+
+ Nedávno kopírovaný text
+ Připnout
+ Odebrat ze schránky?
+ Ano
+
+
diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml
new file mode 100644
index 0000000..91f723c
--- /dev/null
+++ b/res/values-de/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Debug)
+ Eine schlanke, datenschutzfreundliche Bildschirmtastatur für Android.
+ Diese Tastatur zeichnet sich dadurch aus, dass man zusätzliche Zeichen durch Wischgesten in Richtung der Tastenecken eingeben kann.\n\nDie Anwendung wurde ursprünglich für das Programmieren in Termux entwickelt.\nMittlerweile ist sie auch für den täglichen Gebrauch perfekt geeignet.\n\nDiese App enthält keine Werbung, benötigt keinen Netzwerkzugriff und ist quelloffen.
+ Im Hochformatmodus
+
+ Im Querformatmodus
+
+ Layout
+ Helligkeit der Beschriftung anpassen
+ Deckkraft des Tastaturhintergrunds anpassen
+ Deckkraft der Tasten anpassen
+ Deckkraft gedrückter Tasten anpassen
+ Systemeinstellung
+ Eigenes Layout
+ Alternatives Layout hinzufügen
+ Layout %1$d: %2$s
+ Layout entfernen
+ Eigenes Layout
+
+
+
+ Ziffernblock anzeigen
+ Nie
+ Nur im Querformat
+ Immer
+ Zahlenreihe anzeigen
+ Eine Zahlenreihe oben an der Tastatur hinzufügen, wenn der Ziffernblock ausgeblendet ist
+ Zahlenblock-Layout
+ Hohe Ziffern zuerst
+ Niedrige Ziffern zuerst
+ Zusätzliche Zeichen zur Tastatur hinzufügen
+ Benutzerdefinierte Tasten hinzufügen
+ Tasten auswählen, die der Tastatur hinzugefügt werden sollen
+ Tippen
+ Länge der Wischgeste
+ Abstand der Zeichen in den Ecken der Tasten (%s)
+ Zeitüberschreitung durch langes Drücken
+ Intervall der Tastenwiederholung
+ Tastenwiederholung bei langem Drücken
+ Umschalttaste mit Doppeltippen einrasten
+ Anstatt Taste längere Zeit gedrückt zu halten
+ Verhalten
+ Automatische Großschreibung
+ Umschalttaste am Satzanfang aktivieren
+ Sofort zur nächsten Tastatur wechseln
+ Verhalten der Tastaturumschalttaste
+ Benutzerdefinierte Vibration
+ Vibrationsstärke
+
+
+
+
+ Design
+ Unterer Abstand
+ Höhe der Tastatur
+ Horizontaler Abstand
+ Größe der Beschriftung
+ Größe der Buchstaben auf den Tasten (%.2fx)
+ Thema
+ Systemeinstellung
+ Dunkel
+ Hell
+ Schwarz
+ Alternatives Schwarz
+ Weiß
+ ePaper
+ Wüste
+ Dschungel
+ Monet (System)
+ Monet (Hell)
+ Monet (Dunkel)
+
+ Sehr kurz
+ Kurz
+ Normal
+ Weit
+ Sehr weit
+ Horizontaler Abstand zwischen den Tasten
+ Vertikaler Abstand zwischen den Tasten
+ Ränder anpassen
+ Randbreite
+ Radius der Ecken
+ Empfindlichkeit der Kreisgeste
+ Hoch
+ Mittel
+ Niedrig
+ Aus
+ Nächstes
+ Fertig
+ Los
+ Vorheriges
+ Suchen
+ Senden
+ Tastatur aktivieren
+ Tastatur auswählen
+ Diese App ist eine virtuelle Tastatur. Tippe auf den Button unten und aktivere Unexpected Keyboard in den Systemeinstellungen.
+ Dies ist eine freie und quelloffene App. Du findest den Quellcode auf Github. Dort können auch Bugs gemeldet werden.
+ Nach Aktivierung kannst du die Tastatur hier ausprobieren:
+ Hier ausprobieren
+ Feststelltaste
+ Compose-Taste
+ Griechische & mathematische Symbole
+ Tastatur wechseln
+ Spracheingabe
+ Kopieren
+ Einfügen
+ Ausschneiden
+ Alles auswählen
+ Unformatiert einfügen
+ Rückgängig
+ Wiederholen
+ Ordinalzeichen
+ Ordinalzeichen
+ Hochgestellt
+ Tiefgestellt
+ Bild auf
+ Bild ab
+ Pos1
+ Ende
+ Clipboard-Manager
+
+
+
+
+
+
+
+
+
+ Zuletzt kopierter Text
+ Angeheftet
+
+ Ja
+
+
diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml
new file mode 100644
index 0000000..f13cc13
--- /dev/null
+++ b/res/values-es/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (debug)
+ Un teclado virtual ligero para Android consciente de su privacidad.
+ La característica principal es que hay acceso a más caractéres deslizando hacia las esquinas de las teclas.\n\nEsta aplicación fue originalmente diseñada para programadores que usaran Termux.\nAhora es perfecta para uso cotidiano.\n\nLa misma no contiene ningún anuncio/publicidad, no realiza peticiones de red y es de Fuente Abierta.
+ En modo vertical
+
+ En modo horizontal
+
+ Distribución
+ Ajustar brillo de etiqueta
+ Ajustar opacidad del fondo del teclado
+ Ajustar opacidad de teclas
+ Ajustar opacidad de teclas presionadas
+ Igual al sistema
+ Diseño personalizado
+ Añadir distribución alterna
+ Diseño %1$d: %2$s
+ Quitar diseño
+ Diseño personalizado
+
+
+
+ Mostrar teclado numérico
+ Nunca
+ Solo en modo horizontal
+ Siempre
+ Mostrar fila de números
+ Agrega la fila numérica a la parte superior del teclado si el teclado numérico está oculto
+ Diseño del teclado numérico
+ Dígitos descendientes
+ Dígitos ascendientes
+ Agregar teclas
+ Agregar teclas personalizadas
+ Selecciona teclas para agregar al teclado
+ Escritura
+ Distancia de deslizamiento
+ Distancia de caracteres en las esquinas de las teclas (%s)
+ Duración para toque largo
+ Intervalo de repetición de tecla
+ Permitir repetición de toque largo
+ Doble toque en Mayús para bloquear las mayúsculas
+ Se puede bloquear cualquier modificador manteniéndolo presionado
+ Comportamiento
+ Mayúsculas automáticas
+ Presionar Mayús al principio de una oración
+ Cambiar al último teclado usado
+ Comportamiento de la tecla para cambiar diseño
+ Vibración personalizada
+ Intensidad de vibración
+
+
+
+
+ Estilo
+ Margen inferior
+ Altura del teclado
+ Margen horizontal
+ Tamaño de etiqueta
+ Tamaño de caracteres mostrados en el teclado (%.2fx)
+ Tema
+ Igual al sistema
+ Oscuro
+ Claro
+ Negro
+ Negro alternativo
+ Blanco
+ ePaper
+ Desierto
+ Selva
+ Monet (de sistema)
+ Monet (claro)
+ Monet (oscuro)
+
+ Muy corta
+ Corta
+ Normal
+ Larga
+ Muy larga
+ Espacio horizontal entre las teclas
+ Espacio vertical entre las teclas
+ Bordes personalizados
+ Ancho de bordes
+ Radio de rincones
+ Sensibilidad a gestos circulares
+ Alta
+ Mediana
+ Baja
+ Apagada
+ Siguiente
+ Hecho
+ Ir
+ Anterior
+ Buscar
+ Enviar
+ Habilitar teclado
+ Seleccionar método de entrada
+ Esta aplicación es un teclado virtual. Presiona el botón de abajo para ir a Ajustes y habilitar Unexpected Keyboard.
+ Esta es una aplicación gratuita, libre y de código abierto. Puedes encontrar el código fuente o reportar errores en GitHub.
+ Tras habilitarlo, puedes probar el teclado en este campo:
+ Intentar aquí
+ Bloq Mayús
+ Componer
+ Símb. griegos y matemáticos
+ Cambiar teclado
+ Dictado por voz
+ Copiar
+ Pegar
+ Cortar
+ Seleccionar todo
+ Pegar como texto sin formato
+ Deshacer
+ Rehacer
+ Indicador de ordinal
+ Indicador de ordinal
+ Superíndice
+ Subíndice
+ Av Pág
+ Re Pág
+ Inicio
+ Fin
+ Arreglar portapapeles
+
+
+
+
+
+
+
+
+
+ Textos recién copiados
+ Pegado
+ ¿Sacar este portapapeles?
+ Sí
+
+
diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml
new file mode 100644
index 0000000..e383325
--- /dev/null
+++ b/res/values-fa/strings.xml
@@ -0,0 +1,138 @@
+
+
+ صفحه کلید غیرمنتظره
+ صفحه کلید غیرمنتظره
+
+
+ در حالت عمودی
+
+ در حالت افقی
+
+ طرح
+ تنظیم برچسب روشنایی
+ تنظیم کدر بودن پسزمینه صفحه کلید
+ تنظیم کدر بودن کلید
+ تنظیم کدر بودن کلید فشرده شده
+ تنظیمات سامانه
+ طرح صفارشی
+
+
+
+ طرح شخصی
+
+
+
+ نمایش پد شمارهها
+ هرگز
+ فقط در حالت افقی
+ همیشه
+ نمایش ردیف اعداد
+ افزودن ردیف اعداد زمانیکه پد شمارهها پنهان است
+ طرح پد شمارهها
+ ابتدا اعداد بزرگ
+ ابتدا اعداد کوچک
+ افزودن کلیدها به صفحه کلید
+
+
+ درحال نوشتن
+ فاصله کشیدن
+ فاصله حروف از گوشههای کلیدها )(%s)
+
+ فاصله تکرار کلید
+
+ دوبار ضربه روی دگرساز برای فعال شدن کپس لاک
+ شما میتوانید قفل کنید هر میانبری را با نگه داشتن آن
+ ٰرفتار
+ بزرگسازی خودکار
+ در شروع جملات دگرساز را فشار دهید
+ انتقال به آخرین صفحه کلید استفاده شده
+ رفتار کلید تغییردهنده صفحه کلید
+
+
+
+
+
+
+ سبک
+ حاشیه پایین
+ ارتفاع صفحه کلید
+ حاشیه افقی
+ اندازه برچسب
+ اندازه نویسههای نشان داده شده روی صفحه کلید (%.2fx)
+ زمینه
+ تنظیمات سامانه
+ تاریک
+ روشن
+ سیاه
+ سیاه مشابه
+ سفید
+ ای-پیپر
+
+
+
+
+
+
+ بسیار کوتاه
+ کوتاه
+ عادی
+ دور
+ بسیار دور
+ فاصله افقی بین کلیدها
+ فاصله عمودی بین کلیدها
+
+
+
+
+
+
+
+
+ بعدی
+ اتمام
+ برو
+ قبلی
+ جستجو
+ ارسال
+ فعال کردن صفحه کلید
+
+ این برنامه یک صفحه کلید مجازی است. با کلیک روی گزینه زیر به تنظیمات سامانه بروید و صفحه کلید غیرمنتظره را فعال کنید.
+ این یک برنامه متن باز و آزاد است. شما میتوانید کد منبع را در گیتهاب پیدا کرده و نیز باگها را گزارش کنید.
+ بعد از فعالسازی، صفحه کلید را اینجا امتحان کنید:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/values-fil/strings.xml b/res/values-fil/strings.xml
new file mode 100644
index 0000000..e284768
--- /dev/null
+++ b/res/values-fil/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Debug)
+ Magaan at privacy-conscious na virtual keyboard sa Android.
+ Ang pangunahing feature ay maaari kang mag-type ng mas marami pang karakter sa pag-swipe sa gilid ng mga key.\n\nNoong simula, ginawa itong application para sa mga programmer sa na nagte-Termux.\nNgayo\'y perpekto na sa pang-araw-araw.\n\nWalang ads, hindi nagne-network request at Open Source ang application na ito.
+ Nakapatayo
+
+ Nakapahiga
+
+ Layout
+ Kaliwanagan ng label
+ Opacity ng likuran ng keyboard
+ Opacity ng key
+ Opacity ng pinindot na key
+ System settings
+ Custom na layout
+ Maglagay ng isa pang layout
+ Layout %1$d: %2$s
+ Tanggalin itong layout
+ Custom na layout
+
+
+
+ Ipakita ang NumPad
+ Huwag
+ Kapag nakapahiga lamang
+ Palagi
+ Ipakita ang number row
+ Maglagay ng number row sa itaas ng keyboard kapag nakatago ang numpad
+ Layout ng NumPad
+ Pinakamataas muna
+ Pinakamababa muna
+ Maglagay ng key sa keyboard
+ Maglagay ng custom na key
+ Pumili ng key na ilalagay sa keyboard
+ Pag-type
+ Layo ng swipe
+ Layo ng karakter sa gilid ng mga key (%s)
+ Timeout sa long press
+ Agwat sa pag-ulit ng key
+ Paulitin ang key kapag nag-long press
+ Pag-double tap sa shift para mag-caps lock
+ Mala-lock mo ang anumang modifier kapag ini-long press
+ Ugali
+ Automatikong pagkakapitalisa
+ Mag-Shift sa simula ng pangungusap
+ Lumipat sa huling ginamit na keyboard
+ Ugali ng key sa pagpapalit ng keyboard
+ Custom na vibration
+ Lakas ng vibration
+
+
+
+
+ Estilo
+ Pambabang margin
+ Taas ng keyboard
+ Kabilaang margin
+ Laki ng label
+ Laki ng nakikitang karakter sa keyboard (%.2fx)
+ Tema
+ System settings
+ Madilim
+ Maliwanag
+ Itim
+ Itim (alternatibo)
+ Puti
+ ePaper
+ Desyerto
+ Gubat
+ Monet (System)
+ Monet (maliwanag)
+ Monet (madilim)
+ Rosé Pine
+ Maikling-maikli
+ Maikli
+ Normal
+ Malayo
+ Malayong-malayo
+ Kabilaang agwat ng mga key
+ Taas-babang agwat ng mga key
+ I-customize ang giliran ng key
+ Haba ng Giliran
+ Radius ng sulok
+ Sensitibidad ng circle gesture
+ Malakas
+ Katamtaman
+ Mahina
+ Nakapatay
+ Sunod
+ OK
+ Sige
+ Balik
+ Maghanap
+ Send
+ Paganahin ang keyboard
+ Pumili ng keyboard
+ Itong application ay isang virtual keyboard. Pindutin ang buton sa ilalim nang pumunta sa system settings at buksan ang Unexpected-Keyboard.
+ Libre at open source ito na application. Maaaring makita ang source code o makapagreport ng bugs sa Github.
+ Pagkatapos buksan, masusubukan mo ang keyboard dito:
+ Subukan dito
+ Caps lock
+ Compose
+ Simbolong Griyego at ng matematika
+ Magpalit ng keyboard
+ Voice typing
+ I-copy
+ I-paste
+ Ilipat
+ Piliin lahat
+ I-paste bilang plain text
+ I-undo
+ I-redo
+ Ordinal
+ Ordinal
+ Superscript
+ Subscript
+ Page Up
+ Page Down
+ Home
+ End
+ Clipboard
+ Combining diacritic
+ Dead key
+ Zero width joiner
+ Zero width non-joiner
+ Non-breaking space
+ Narrow non-breaking space
+
+
+
+ Kakokopyang text
+ Nakapin
+ Tanggalin ito sa clipboard?
+ Oo
+
+
diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml
new file mode 100644
index 0000000..dd8030e
--- /dev/null
+++ b/res/values-fr/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (debug)
+ Clavier virtuel léger et respectueux de la vie privée pour Android.
+ La fonctionnalité principale est l\'accès rapide à plus de caractères en balayant les touches vers les coins.\n\nCette application a été conçue à l\'origine pour les programmeurs utilisant Termux.\nElle est maintenant parfaite pour une utilisation quotidienne.\n\nCette application ne contient pas de publicité, n\'accède pas au réseau et est Open Source.
+ En mode portrait
+ En mode portrait déplié
+ En mode landscape
+ En mode landscape déplié
+ Disposition
+ Luminosité des symboles
+ Transparence du clavier
+ Transparence des touches
+ Transparence des touches pressées
+ Paramètre système
+ Disposition personnalisée
+ Ajouter un clavier alternatif
+ Disposition %1$d: %2$s
+ Supprimer
+ Disposition personnalisée
+ Pas de rangée de chiffres
+ Rangée de chiffres sans symboles
+ Rangée de chiffres avec symboles
+ Afficher le pavé numérique
+ Jamais
+ Seulement en mode paysage
+ Toujour
+ Rangée de chiffres
+ Ajoute une rangée de chiffres en haut du clavier quand le pavé numérique est caché
+ Disposition du pavé numérique
+ Du plus haut au plus bas
+ Du plus bas au plus haut
+ Ajouter des touches au clavier
+ Ajouter des touches personnalisées
+ Sélectionner les touches à ajouter au clavier
+ Saisie
+ Distance de swipe
+ La distance des caractères dans les coins (%s)
+ Delai de l\'appui long
+ Écart entre les répétitions
+ Répétition par appui long
+ Appuyer deux fois pour bloquer la majuscule
+ Un appui long bloque la majuscule
+ Comportement
+ Majuscule automatique
+ Activer Shift au début des phrases
+ Changer vers le clavier utilisé en dernier
+ Comportement de la touche de changement de clavier
+ Vibrations personnalisées
+ Intensité des vibrations
+ Disposition pour les nombres, dates et numéros de téléphone
+ Clavier PIN
+ Écran des nombres
+ Utiliser le clavier principal
+ Style
+ Marge du bas
+ Hauteur du clavier
+ Marge des côtés
+ Taille des symboles
+ Taille des caractères affichés sur les touches (%.2fx)
+ Thème
+ Paramètre système
+ Sombre
+ Clair
+ Noir
+ Noir 2
+ Blanc
+ ePaper
+ Désert
+ Jungle
+ Monet (Système)
+ Monet (Clair)
+ Monet (Sombre)
+ Rosé Pine
+ Très courte
+ Courte
+ Normale
+ Longue
+ Très longue
+ Espacement horizontal entre les touches
+ Espacement vertical entre les touches
+ Bordures personnalisées
+ Largeur des bordures
+ Rayon des coins
+ Sensibilité du mouvement en cercle
+ Haute
+ Moyenne
+ Basse
+ Désactivée
+ Suiv.
+ Fini
+ Aller
+ Prec.
+ Chercher
+ Envoyer
+ Activer le clavier
+ Selectionner le clavier
+ Cette application est un clavier virtuel. Activez-le dans les paramètres système en cliquant sur le bouton ci-dessous.
+ Cette application est libre et open-source. Lisez le source code et reportez des problèmes sur Github.
+ Après l\'avoir activé, vous pouvez l\'essayer ici :
+ Essayer ici
+ Verrouillage majuscules
+ Composition
+ Symboles mathématiques
+ Changer de clavier
+ Saisie vocale
+ Copier
+ Coller
+ Couper
+ Sel. tout
+ Copier en texte brut
+ Annuler
+ Refaire
+ Ordinal
+ Ordinal
+ Exposant
+ Souscrit
+ Page précédente
+ Page suivante
+ Début
+ Fin
+ Presse-papiers
+ Diacritique combinant
+ Touche morte
+ Liant sans chasse
+ Antiliant sans chasse
+ Espace insécable
+ Espace fine insécable
+ Effacer un mot
+ Effacer un mot à droite
+ Geste
+ Texte récemment copié
+ Épinglé
+ Supprimer ce presse-papiers ?
+ Oui
+ Pas d\'application de saisie vocale
+
diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml
new file mode 100644
index 0000000..a4181df
--- /dev/null
+++ b/res/values-hu/strings.xml
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/values-in/strings.xml b/res/values-in/strings.xml
new file mode 100644
index 0000000..001221b
--- /dev/null
+++ b/res/values-in/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Debug)
+ Keyboard virtual yang ringan dan sadar privasi untuk Android.
+ Fitur utamanya adalah Anda dapat mengetik lebih banyak karakter dengan menggeser tombol ke arah sudut.\n\nAplikasi ini awalnya dirancang untuk programmer yang menggunakan Termux.\nSekarang sempurna untuk penggunaan sehari-hari.\n\nAplikasi ini tidak berisi iklan, tidak membuat permintaan jaringan dan Open Source.
+ Dalam mode potret
+
+ Dalam mode lansekap
+
+ Tata letak
+ Sesuaikan kecerahan label
+ Sesuaikan Opacity Latar Belakang Keyboard
+ Sesuaikan opacity tombol
+ Sesuaikan opacity tombol yang ditekan
+ Pengaturan sistem
+ Tata letak kustom
+ Tambahkan tata letak alternatif
+ Tata letak %1$d: %2$s
+ Hapus tata letak
+ Tata letak khusus
+
+
+
+ Tampilkan NumPad
+ Tidak pernah
+ Hanya dalam mode lanskap
+ Selalu
+ Tampilkan baris nomor
+ Menambahkan baris angka di bagian atas keyboard saat numpad disembunyikan
+ Tata letak NumPad
+ digit tinggi dulu
+ digit rendah dulu
+ Tambahkan tombol ke keyboard
+ Menambahkan tombol khusus
+ Pilih tombol untuk ditambahkan ke keyboard
+ Mengetik
+ Jarak menggeser
+ Jarak karakter di sudut tombol (%s)
+ Waktu tekan lama
+ Interval pengulangan tombol
+ Ulangi tombol pada tekan lama
+ Ketuk dua kali pada shift untuk mengunci huruf kapital
+ Kunci apapun dengan menahan pengubah
+ Perilaku
+ Kapitalisasi Otomatis
+ Tekan shift di awal kalimat
+ Beralih ke keyboard yang terakhir digunakan
+ Perilaku tombol penggantian keyboard
+ Getaran kustom
+ Intensitas getaran
+
+
+
+
+ Gaya
+ Batas bawah
+ Tinggi keyboard
+ Garis tepi horizontal
+ Ukuran label
+ Ukuran karakter yang ditampilkan pada keyboard (%.2fx)
+ Tema
+ Pengaturan Sistem
+ Gelap
+ Terang
+ Hitam
+ Alternatif Hitam
+ Putih
+ ePaper
+ Desert
+ Jungle
+ Monet (Sistem)
+ Monet (Terang)
+ Monet (Gelap)
+ Rosé Pine
+ Sangat pendek
+ Pendek
+ Normal
+ Jauh
+ Sangat jauh
+ Jarak horizontal di antara tombol
+ Jarak vertikal antara tombol
+ Kustomisasi tepi
+ Lebar tepi
+ Radius tepi
+ Sensitivitas gestur melingkar
+ Tinggi
+ Sedang
+ Rendah
+ Mati
+ Lanjut
+ Selesai
+ Pergi
+ Sblm
+ Cari
+ Kirim
+ Aktifkan keyboard
+ Pilih keyboard
+ Aplikasi ini adalah keyboard virtual. Buka pengaturan sistem dengan mengklik tombol di bawah ini dan aktifkan Unexpected-Keyboard.
+ Ini adalah aplikasi sumber terbuka dan gratis. Anda dapat menemukan kode sumber atau melaporkan bug di GitHub.
+ Setelah mengaktifkan, Anda dapat mencoba keyboard di sini:
+ Ketik disini
+ Kunci kapital
+ Menggabungkan
+ Greek & Simbol matematika
+ Beralih keyboard
+ Pengetikan suara
+ Salin
+ Tempel
+ Potong
+ Pilih semua
+ Tempel sebagai teks biasa
+ Undo
+ Redo
+ Indikator ordinal
+ Indikator ordinal
+ Superscript
+ Subscript
+ Halaman atas
+ Halaman bawah
+ Beranda
+ Akhir
+ Manajer Clipboard
+ Menggabungkan diakritik
+ Tombol mati
+ Joiner lebar nol
+ Lebar nol non-joiner
+ Spasi non-pecah
+ Spasi sempit non-pecah
+
+
+
+ Teks yang baru disalin
+ Disematkan
+ Hapus clipboard ini?
+ Ya
+
+
diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml
new file mode 100644
index 0000000..a046dd2
--- /dev/null
+++ b/res/values-it/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (debug)
+ Una Tastiera Virtuale Leggera Per La Programmazione
+ La principale funzionalita` e\' che si possono digitare caratteri aggiuntivi scorrendo sui tasti verso gli angoli.\n.\nQuesta app e\' stata inizialmente progettata per i programmatori che usavano Termux.\nOggi e\' perfetta per l\'utilizzo quotidiano,\n.\nQuesta app non contiene pubblicita`, non genera chiamate di rete ed e\' Open Source.
+ In modalita` verticale
+
+ In modalita` orizzontale
+
+ Layout
+ Regolare la luminosita` della descrizione
+ Regolare l\'opacita` dello sfondo della tastiera
+ Regolare l\'opacita` dei tasti
+ Regolare l\'opacita` del tasto premuto
+ Impostazioni di sistema
+ Layout personalizzato
+ Aggiungere un layout alternativo
+ Layout %1$d: %2$s
+ Eliminare layout
+ Layout personalizzato
+
+
+
+ Mostrare il tastierino numerico
+ Mai
+ Solo in modalita` orizzontale
+ Sempre
+ Mostrare la riga dei numeri
+ Aggiungere una riga dei numeri sopra la tastiera quando il tastierino numerico e\' nascosto
+ Layout del yadtierino numerico
+ Prima i numeri piu` alti
+ Prima i numeri piu` bassi
+ Aggiungi altri simboli alla tastiera
+ Aggiungere tasti personalizzati
+ Selezionare tasti da aggiungere alla tastiera
+ Digitando
+ Distanza swipe
+ Distanza dei caratteri negli angoli dei tasti (%s)
+ Durata tasto premuto a lungo
+ Intervallo ripetizione tasto
+ Ripetizione carattere su tasto premuto a lungo
+ Doppio tocco su Shift per attivare CapsLock
+ Invece di premere i modificatori a lungo
+ Comportamento
+ Maiuscole Automatiche
+ Premi Shift all\'inizio di una frase
+ Passare all\'ultima tastiera usata
+ Comportamento del tasto di cambio tastiera
+ Vibrazione personalizzata
+ Intensita` della vibrazione
+
+
+
+
+ Stile
+ Margine inferiore
+ Altezza tastiera
+ Margine orizzontale
+ Dimensione Caratteri
+ Dimensione dei caratteri mostrati sulla tastiera (%.2fx)
+ Tema
+ Impostazioni di sistema
+ Scuro
+ Chiaro
+ Nero
+
+
+
+
+
+
+
+
+
+ Veramente breve
+ Breve
+ Normale
+ Distante
+ Molto distante
+ Spazio orizzontale tra i tasti
+ Spazio verticale tra i tasti
+
+
+
+
+
+
+
+
+ Prossimo
+ Fatto
+ Vai
+ Precedente
+ Cerca
+ Invia
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Taglia
+ Seleziona tutto
+ Incolla testo non formattato
+ Annulla
+ Ripeti
+ Ordinale
+ Ordinale
+ All\'esponente
+
+ Pagina su
+ Pagina giu`
+ Inizio
+ Fine
+ Clipboard-Manager
+
+ Tasto vuoto
+
+
+ Spazio senza interruzione
+
+
+
+
+ Testo copiato recentemente
+ In evidenza
+ Eliminare questi appunti?
+ Si
+
+
diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml
new file mode 100644
index 0000000..c1af875
--- /dev/null
+++ b/res/values-ja/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Debug)
+ 軽量でプライバシーに配慮したAndroid用仮想キーボード
+ このキーボードは、キーの角をスワイプすることで様々なキーを入力できます。\n\nこのアプリは元々はTermuxでのプログラミング用に設計されました。\nしかし、今では普段の入力にも適しています。\nPCキーボードでの半角入力を再現しています。日本語入力、変換は出来ません。\n\nこのアプリは広告を含まず、インターネットに接続せず、そしてオープンソースです。
+ 縦向き
+
+ 横向き
+
+ レイアウト
+ 文字の明るさ
+ 背景の不透明度
+ キーの不透明度
+ 押下中のキーの不透明度
+ システム設定
+ カスタムレイアウト
+ レイアウトを追加
+ レイアウト %1$d: %2$s
+ レイアウトを削除
+ カスタムレイアウト
+
+
+
+ テンキーを表示
+ 表示しない
+ 横向きの時は表示
+ 表示する
+ 数字の行を表示
+ テンキーが非表示の場合最上段に数字の行を追加します
+ テンキーのレイアウト
+ 大きい数字を上に
+ 小さい数字を上に
+ 追加のキーの設定
+ キーを追加
+ キーボードに表示するキーを選択
+ 入力
+ スワイプ距離
+ キーの角をスワイプする距離 (%s)
+ キー長押しの時間
+ キーを連続入力する間隔
+ 長押しでキーを連続入力する
+ ShiftをダブルタップでCaps Lock
+ どの装飾キーも長押しで固定できます
+ 挙動
+ 自動大文字化
+ 文章の先頭でShiftキーを自動入力
+ 最後に使用したキーボードに切替
+ キーボード切替キーの挙動
+ キーボード独自の振動設定
+ 振動の時間
+
+
+
+
+ 表示
+ 下の余白
+ キーボードの高さ
+ 左右の余白
+ 文字の大きさ
+ キーボードに表示される文字の大きさ (%.2fx)
+ テーマ
+ システム設定
+ ダークモード
+ ライトモード
+ 黒
+ 黒(別バージョン)
+ 白
+ ePaper
+ Desert
+ Jungle
+ Monet (システム)
+ Monet (ライト)
+ Monet (ダーク)
+
+ 短い
+ やや短い
+ 普通
+ やや長い
+ 長い
+ キー間の左右の間隔
+ キー間の上下の間隔
+ キー形状の設定
+ 縁取り
+ 丸み
+ 円形ジェスチャーの感度
+ 高
+ 中
+ 低
+ 無効
+ 次へ
+ 完了
+ 実行
+ 戻る
+ 検索
+ 送信
+ キーボードを有効化
+ キーボードを選択
+ このアプリは仮想キーボードです。下のボタンからシステム設定を開いてUnexpected Keyboardを有効化してください。
+ このアプリはオープンソースのフリーウェアです。GitHubでソースコードを入手したり、不具合を報告したりできます。
+ 有効化されている場合、ここでキーボードを試すことができます。
+ 文字を入力
+ Caps Lock
+ Compose
+ ギリシャ文字と数学記号
+ キーボードの切替
+ 音声入力
+ コピー
+ 貼り付け
+ 切り取り
+ すべて選択
+ 書式なしで貼り付け
+ 元に戻す
+ やり直し
+ 序数標識
+ 序数標識
+ 上付き文字
+ 下付き文字
+ Page Up
+ Page Down
+ Home
+ End
+ クリップボード
+
+
+
+
+
+
+
+
+
+ 最近コピーしたテキスト
+ お気に入り
+ クリップボードから削除しますか?
+ はい
+
+
diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml
new file mode 100644
index 0000000..c572341
--- /dev/null
+++ b/res/values-ko/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+
+ 개발자들을 위한 가벼운 가상 키보드.
+ 주요 기능은 모서리 방향으로 키를 스와이프하여 더 많은 문자를 입력할 수 있다는 것입니다.\n\n이 앱은 처음에는 Termux를 사용하는 프로그래머들을 위한 것으로 개발되었습니다.\n지금은 일상적인 용도로도 완벽합니다.\n\n이 응용 프로그램에는 광고가 없으며 네트워크 요청을 하지 않고 오픈 소스입니다.
+ 세로 화면
+
+ 가로 화면
+
+ 레이아웃
+ 라벨 밝기 조절
+ 키보드 배경 불투명도 조절
+ 키 불투명도 조절
+ 누른 키 불투명도 조절
+ 시스템 세팅
+ 사용자 정의 레이아웃
+ 대체 레이아웃 추가
+ 레이아웃 %1$d: %2$s
+ 레이아웃 제거
+ 사용자 정의 레이아웃
+
+
+
+ NumPad 표시
+ 안 함
+ 가로 모드에서만
+ 항상
+ 숫자 열 표시
+ NumPad이 숨겨진 경우 키보드 상단에 숫자 행을 추가합니다.
+ NumPad 레이아웃
+ 높은 자리수 우선
+ 낮은 자리수 우선
+ 키보드에 추가 키 설정
+ 사용자 정의 키 추가
+ 키보드에 추가할 키 선택
+ 입력
+ 스와이프 범위
+ 키 모서리 문자의 입력 범위 (%s)
+ 길게 누르는 시간
+ 키 반복 간격
+ 키보드 입력을 길게 유지할 때 반복
+ 쉬프트 키 더블 탭을 통해 대문자 잠금 설정
+ modifier를 길게 누르고 있으면 해당 modifier가 잠긴 상태로 유지됩니다.
+ 동작
+ 자동 대문자 전환
+ 문장의 시작에서 Shift 키를 눌러 대문자로 전환합니다.
+ 마지막으로 사용한 키보드로 전환
+ 키보드 전환 키의 동작 방식입니다.
+ 사용자 정의 진동
+ 진동 강도
+
+
+
+
+ 스타일
+ 아래 넓이
+ 키보드 높이
+ 양 옆 넓이
+ 폰트 크기
+ 키보드의 표시되는 폰트 크기 (%.2fx)
+ 테마
+ 시스템 테마
+ 다크
+ 라이트
+ 블랙
+ 대체 블랙
+ 화이트
+ 종이
+ 사막
+ 정글
+ 모네트 (시스템)
+ 모네트 (라이트)
+ 모네트 (다크)
+
+ 매우 짧음
+ 짧음
+ 보통
+ 넓음
+ 매우 넓음
+ 키보드 양 옆 간격
+ 키보드 세로 간격
+ 경계선 사용자 정의
+ 경계선 너비
+ 모서리 반지름
+ 원형 제스처 감도
+ 높음
+ 중간
+ 낮음
+ 사용 안 함
+ 다음
+ 확인
+ 엔터
+ 이전
+ 검색
+ 보내기
+ 키보드 활성화
+ 키보드 선택
+ 이 앱은 가상 키보드입니다.Unexpected-Keyboard를 클릭하여 시스템 설정으로 이동하고 아래 버튼을 클릭하세요.
+ 이것은 무료이고 오픈 소스 응용 프로그램입니다. GitHub에서 원본 코드를 찾을 수 있습니다 또는 버그를 신고할 수 있습니다.
+ 켜면 여기에서 키보드를 시험해 볼 수 있습니다:
+ 여기서 시험해 보기
+ 대문자 잠금
+ 구성
+ 그리스 수학 기호 전환
+ 키보드 전환
+ 음성 입력
+ 복사
+ 붙여넣기
+ 자르기
+ 전부 선택
+ 일반 텍스트로 붙여넣기
+ 실행 취소
+ 다시 실행
+ 순서 표시기
+ 순서 표시기
+ 상위 스크립트
+ 하위 스크립트
+ 페이지 위
+ 페이지 아래
+ 홈
+ 종료
+ 클립보드 관리자
+
+
+
+
+
+
+
+
+
+ 최근에 복사한 텍스트
+ 고정
+ 이 클립보드를 제거하시겠습니까?
+ 예
+
+
diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml
new file mode 100644
index 0000000..69b36cb
--- /dev/null
+++ b/res/values-lv/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (atkļūdošana)
+ Mazizmēra virtuālā Android tastatūra, kurai rūp privātums.
+ Galvenā tastatūras iespēja ir viegli ievadīt vairāk rakstzīmju ar pavilkšanu uz taustiņu stūriem.\n\nSākotnēji šī lietotne tika izstrādāta programmētājiem, kas izmanto Termux.\nTagad tā lieliski piemērota ikdienas lietošanai.\n\nLietotne nesatur reklāmas, neveic nekādus tīkla pieprasījumus, un tās pirmkods ir pieejams visiem.
+ Stateniski
+
+ Līmeniski
+
+ Izkārtojums
+ Pielāgot iezīmju spilgtumu
+ Pielāgot tastatūras fona necaurredzamību
+ Pielāgot taustiņu necaurredzamību
+ Pielāgot piespiesta taustiņa necaurredzamību
+ Ierīces iestatījumi
+ Pielāgots izkārtojums
+ Pievienot aizstājējizkārtojumu
+ Izkārtojums %1$d: %2$s
+ Noņemt izkārtojumu
+ Pielāgots izkārtojums
+
+
+
+ Rādīt ciparnīcu
+ Nekad
+ Tikai līmeniskajā stāvoklī
+ Vienmēr
+ Rādīt ciparu rindu
+ Pievienot ciparu rindu virs tastatūras, kad ciparnīca ir paslēpta
+ Ciparnīcas izkārtojums
+ Lielie cipari augšā
+ Mazie cipari augšā
+ Pievienot tastatūrai taustiņus
+ Pievienot pielāgotus taustiņus
+ Atlasīt taustiņus, ko pievienot tastatūrai
+ Rakstīšana
+ Pavilkšanas attālums
+ Taustiņu stūros esošo rakstzīmju attālums (%s)
+ Ilgas piespiešanas noildze
+ Laiks starp taustiņa atkārtošanos
+ Taustiņa atkārtošanās ar ilgu piespiešanu
+ Divkāršs piesitiens pārslēdzējam, lai ieslēgtu burtslēgu
+ Jebkuru pārveidotāju var slēgt ar tā turēšanu
+ Uzvedība
+ Automātiski lielie burti
+ Piespiest pārslēdzēju teikuma sākumā
+ Pārslēgties uz pēdējo izmantoto tastatūru
+ Tastatūras pārslēgšanas taustiņa uzvedība
+ Pielāgota trīcēšana
+ Trīcēšanas stiprums
+
+
+
+
+ Izskata pielāgojumi
+ Apakšējā apmale
+ Tastatūras augstums
+ Līmeniskā apmale
+ Iezīmes izmērs
+ Tastatūrā attēloto rakstzīmju izmērs (%.2fx)
+ Izskats
+ Ierīces iestatījumi
+ Tumšs
+ Gaišs
+ Melns
+ Citādi melns
+ Balts
+ ePapīrs
+ Tuksnesis
+ Džungļi
+ Monē (sistēmas)
+ Monē (gaišs)
+ Monē (tumšs)
+ Sārtā priede
+ Ļoti tuvs
+ Tuvs
+ Vidējs
+ Tāls
+ Ļoti tāls
+ Līmeniskais attālums starp taustiņiem
+ Stateniskais attālums starp taustiņiem
+ Pielāgot apmales
+ Apmales platums
+ Stūru rādiuss
+ Apļveida kustības jutīgums
+ Augsts
+ Vidējs
+ Zems
+ Atspējots
+ Nākamais
+ Darīts
+ Aiziet
+ Iepriekšējais
+ Meklēt
+ Sūtīt
+ Iespējot tastatūru
+ Izvēlēties tastatūru
+ Šī lietotne ir virtuālā tastatūra. Zemāk esošās pogas nospiešana atvērs sistēmas iestatījumus, lai varētu iespējot Unexpected Keyboard.
+ Šī ir bezmaksas un atvērtā pirmkoda lietotne. GitHub var atrast pirmkodu un ziņot par nepilnībām.
+ Pēc iespējošanas šeit var izmēģināt tastatūru:
+ Izmēģināt šeit
+ Burtslēgs
+ Izveidot
+ Grieķu un matemātikas rakstzīmes
+ Pārslēgt tastatūru
+ Rakstīšana ar balsi
+ Ievietot starpliktuvē
+ Ielīmēt
+ Izgriezt
+ Atlasīt visu
+ Ielīmēt kā vienkāršu tekstu
+ Atsaukt
+ Atatsaukt
+ Kārtas rādītājs
+ Kārtas rādītājs
+ Augšraksts
+ Apakšraksts
+ Augšupšķirt
+ Lejupšķirt
+ Sākums
+ Beigas
+ Starpliktuves pārvaldnieks
+ Apvienojoša diakritiska zīme
+ Klusais taustiņš
+ Nulles platuma savienotājs
+ Nulles platuma atdalītājs
+ Nedalāma atstarpe
+ Šaura nedalāma atstarpe
+
+
+
+ Nesen starpliktuvē ievietots teksts
+ Piesprausts
+ Noņemt šo starpliktuves vienumu?
+ Jā
+
+
diff --git a/res/values-night-v21/styles.xml b/res/values-night-v21/styles.xml
new file mode 100644
index 0000000..9daa919
--- /dev/null
+++ b/res/values-night-v21/styles.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml
new file mode 100644
index 0000000..1767e54
--- /dev/null
+++ b/res/values-nl/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Debug)
+ Lichtgewicht en privacy-bewust virtueel toetsenbord voor Android.
+ De belangrijkste functie is dat je meer tekens kunt typen door de toetsen naar de hoeken te vegen.\n\nDeze applicatie is oorspronkelijk ontworpen voor programmeurs die Termux gebruiken.\nNu perfect voor dagelijks gebruik.\n\nDeze applicatie bevat geen advertenties, doet geen netwerkverzoeken en is Open Source.
+ In staande stand
+
+ In liggende stand
+
+ Lay-out
+ Helderheid label aanpassen
+ Dekking achtergrond van toetsenbord aanpassen
+ Dekking achtergrond toets aanpassen
+ Dekking achtergrond ingedrukte toets aanpassen
+ Systeem instellingen
+ Aangepaste lay-out
+ Alternatieve lay-out toevoegen
+ Lay-out %1$d: %2$s
+ Lay-out verwijderen
+ Aangepaste lay-out
+
+
+
+ Toon NumPad
+ Nooit
+ Alleen in liggende stand
+ Altijd
+ Toon getallenrij
+ Voeg getallenrij toe aan de bovenkant van het toetsenbord als het Num-Pad verborgen is
+ NumPad lay-out
+ Hoogste cijfers eerst
+ Laagste cijfers eerst
+ Voeg toetsen toe aan toetsenbord
+ Voeg aangepaste toetsen toe
+ Selecteer toetsen om aan toetsenbord toe te voegen
+ Typen
+ Veeg afstand
+ Afstand van tekens in de hoeken van de toetsen (%s)
+ Time-out lang indrukken
+ Toetsherhaalinterval
+ Toetsherhaling bij lang indrukken
+ Dubbeltikken op shift voor caps lock
+ Je kunt elke modifier vergrendelen door deze ingedrukt te houden
+ Gedrag
+ Automatische starthoofdletter
+ Druk Shift aan de begin van een zin
+ Wissel naar het laatst gebruikte toetsenbord
+ Gedrag van de toestsenbord-wissel-toets
+ Aangepaste trilling
+ Trillingsintensiteit
+
+
+
+
+ Stijl
+ Ondermarge
+ Hoogte toetsenbord
+ Hor. marge
+ Label afmeting
+ Afmeting van karakters getoond op het toetsenbord (%.2fx)
+ Thema
+ Systeem instellingen
+ Donker
+ Licht
+ Zwart
+ Alternatief zwart
+ Wit
+ ePapier
+ Woestijn
+ Oerwoud
+ Monet (Systeem)
+ Monet (Licht)
+ Monet (Donker)
+ Rosé Pine
+ Zeer kort
+ Kort
+ Normaal
+ Ver
+ Zeer ver
+ Hor. ruimte tussen toetsen
+ Vert. ruimte tussen toetsen
+ Randen aanpassen
+ Randbreedte
+ Hoekstraal
+ Gevoeligheid cirkelbewegingen
+ Hoog
+ Medium
+ Laag
+ Uitgeschakeld
+ Volgende
+ Klaar
+ Ga
+ Vorig
+ Zoek
+ Stuur
+ Toetsenbord inschakelen
+ Selecteer toetsenbord
+ Deze toepassing is een virtueel toetsenbord. Ga naar de systeeminstellingen door op onderstaande knop te klikken en schakel Unexpected-Keyboard in.
+ Dit is een gratis en open source toepassing. Je kunt de broncode vinden of bugs rapporteren op GitHub.
+ Na inschakelen kun je het toetsenbord hier proberen:
+ Probeer hier
+ Caps lock
+ Stel samen
+ Griekse & math. symbolen
+ Wissel toetsenbord
+ Spraakgestuurd typen
+ Kopieer
+ Plak
+ Knip
+ Selecteer alles
+ Plak als platte tekst
+ Maak ongedaan
+ Do opnieuw
+ Rangtelwoord Indicatie
+ Rangtelwoord Indicatie
+ Superscript
+ Subscript
+ Pagina Omhoog
+ Pagina Omlaag
+ Thuis
+ Einde
+ Klembord beheerder
+ Diakritische tekens combineren
+ Dode toets
+ Zero width joiner
+ Zero width non-joiner
+ Niet-onderbrekende spatie
+ Smalle niet-onderbrekende spatie
+
+
+
+ Recentelijk gekopieerde tekst
+ Vastgemaakt
+ Verwijder dit klembord?
+ Ja
+
+
diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml
new file mode 100644
index 0000000..9a3ece3
--- /dev/null
+++ b/res/values-pl/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (debug)
+ Lekka i dbająca o prywatność klawiatura wirtualna dla Androida.
+ Główną cechą tej klawiatury jest możliwość wprowadzania więcej znaków poprzez przesuwanie po klawiszach do ich rogów.\n\nTa aplikacja została pierwotnie zaprojektowana z myślą o programistach używających Termuxa.\nObecnie nadaje się doskonale do codziennego użytku.\n\nAplikacja nie zawiera reklam, nie żąda dostępu do internetu, a jej kod źródłowy jest dostępny publicznie.
+ W widoku pionowym
+
+ W widoku poziomym
+
+ Układ
+ Dostosuj jasność znaków
+ Nieprzezroczystość tła klawiatury
+ Nieprzezroczystość klawisza
+ Nieprzezroczystość naciśniętego klawisza
+ Systemowy
+ Własny układ
+ Dodaj dodatkowy układ
+ Układ %1$d: %2$s
+ Usuń układ
+ Własny układ
+
+
+
+ Pokaż klawiaturę numeryczną
+ Nigdy
+ Tylko w orientacji poziomej
+ Zawsze
+ Pokaż rząd cyfr
+ Dodaj rząd cyfr na górze klawiatury, kiedy klaw. numeryczna jest schowana
+ Układ klawiatury numerycznej
+ Od największej cyfry
+ Od najmniejszej cyfry
+ Dodaj klawisze do klawiatury
+ Dodaj niestandardowe klawisze
+ Wybierz klawisze, które chcesz dodać do klawiatury
+ Pisanie
+ Odległość przesuwania
+ Odległość znaków od rogów klawiszy (%s)
+ Opóźnienie przytrzymania klawisza
+ Czas pomiędzy powtórzeniem klawisza
+ Powtarzanie klawisza po przytrzymaniu
+ Naciśnij Shift podwójnie, aby włączyć caps lock
+ Możesz zablokować modyfikator poprzez jego długie naciśnięcie
+ Zachowanie
+ Automatyczne wielkie litery
+ Naciśnij Shift na początku zdania
+ Przełącz na ostatnio używaną klawiaturę
+ Działanie klawisza przełączającego klawiaturę
+ Własna wibracja
+ Intensywność wibracji
+
+
+
+
+ Styl
+ Margines dolny
+ Wysokość klawiatury
+ Margines poziomy
+ Wielkość znaku
+ Wielkość znaków widocznych na klawiaturze (%.2fx)
+ Motyw
+ Systemowy
+ Ciemny
+ Jasny
+ Czarny
+ Alternatywny Czarny
+ Biały
+ e-paper
+ Pustynny
+ Dżunglowy
+ Monet (Systemowy)
+ Monet (Jasny)
+ Monet (Ciemny)
+ Rosé Pine
+ Bardzo mała
+ Mała
+ Normalna
+ Duża
+ Bardzo duża
+ Odległość pomiędzy klawiszami w poziomie
+ Odległość pomiędzy klawiszami w pionie
+ Dostosuj krawędzie
+ Grubość krawedzi
+ Promień rogów
+ Czułość gestu koła
+ Wysoka
+ Średnia
+ Niska
+ Wyłączona
+ Dalej
+ OK
+ Przejdź
+ Wstecz
+ Szukaj
+ Wyślij
+ Włącz klawiaturę
+ Wybierz klawiaturę
+ Ta aplikacja jest klawiaturą ekranową. Naciśnij poniższy przycisk, aby przejść do ustawień systemu i włącz Unexpected-Keyboard.
+ Jest to darmowa aplikacja o otwartym kodzie źródłowym. Możesz zobaczyć kod źródłowy oraz zgłosić błedy na Githubie.
+ Po jej włączeniu, możesz wypróbować klawiaturę tutaj:
+ Wypróbuj tutaj
+ Caps lock
+ Komponuj
+ Symbole greckie i matematyczne
+ Przełącz klawiaturę
+ Pisanie głosowe
+ Kopiuj
+ Wklej
+ Wytnij
+ Zaznacz wszystko
+ Wklej sam tekst
+ Cofnij
+ Ponów
+ Wskaźnik porządkowy (żeński)
+ Wskaźnik porządkowy (męski)
+ Indeks górny
+ Indeks dolny
+ Page Up
+ Page Down
+ Home
+ End
+ Zarządzanie schowkiem
+ Składający znak diakrytyczny
+ Martwy klawisz
+ Łącznik zerowej szerokości (ZWJ)
+ Rozdzielający łącznik zerowej szerokości (ZWNJ)
+ Spacja niełamiąca
+ Wąska spacja niełamiąca
+
+
+
+ Ostatnio skopiowane elementy
+ Przypięte
+ Usunąć ten element ze schowka?
+ Tak
+
+
diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml
new file mode 100644
index 0000000..9751ee9
--- /dev/null
+++ b/res/values-pt/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Teclado Unexpected
+ Teclado Unexpected (Depuração)
+ Um teclado virtual leve para desenvolvedores.
+ A principal característica é que você pode digitar mais caracteres deslizando as teclas para os cantos.\n\nO app foi criado originalmente para desenvolvedores que usam Termux.\nAgora aperfeiçoado para o uso diário.\n\nEste aplicativo não contém anúncios, não faz nenhuma solicitação de rede e é Open Source.
+ No modo retrato
+
+ No modo paisagem
+
+ Layout
+ Ajustar brilho dos rótulos
+ Ajustar opacidade do fundo do teclado
+ Ajustar opacidade das teclas
+ Ajustar opacidade das teclas pressionadas
+ Mesmo do sistema
+ Layout personalizado
+ Adicione um layout alternativo
+ Layout %1$d: %2$s
+ Remover layout
+ Layout personalizado
+
+
+
+ Mostrar Teclado Numérico
+ Nunca
+ Somente no modo paisagem
+ Sempre
+ Mostrar fileira de números
+ Adicionar uma linha de números no topo do teclado quando o teclado numérico estiver oculto
+ Layout do teclado numérico
+ Dígitos maiores primeiro
+ Dígitos menores primeiro
+ Adicionar teclas ao teclado
+ Adicionar teclas customizadas
+ Selecione teclas para serem adicionadas ao teclado
+ Digitação
+ Distância a deslizar
+ Distância até acionar os cantos das teclas (%s)
+ Tempo de pressionamento
+ Intervalo de repetição de tecla
+ Repetir tecla ao pressionar
+ Tecle duas vezes no shift para travá-lo acionado
+ Ao invés de apertar e segurar por um tempo
+ Comportamento
+ Capitalização automática
+ Aciona o shift no início de cada frase
+ Alternar para o último teclado usado
+ Comportamento da tecla de troca de teclado
+ Vibração personalizada
+ Intensidade da vibração
+
+
+
+
+ Estilo
+ Margem inferior
+ Altura do teclado
+ Margem horizontal
+ Tamanho dos indicadores
+ Tamanho dos caracteres visíveis no teclado (%.2fx)
+ Tema
+ Mesmo do sistema
+ Escuro
+ Claro
+ Preto
+ Preto Alternativo
+ Branco
+ Papel Eletrônico
+ Deserto
+ Selva
+ Monet (Sistema)
+ Monet (Claro)
+ Monet (Escuro)
+ Rosé Pine
+ Bem curta
+ Curta
+ Normal
+ Longa
+ Bem longa
+ Distância horizontal entre teclas
+ Distância vertical entre teclas
+ Personalizar bordas
+ Largura de borda
+ Arredondamento de cantos
+ Sensibilidade do gesto circular
+ Alta
+ Média
+ Baixa
+ Desativada
+ Próximo
+ Pronto
+ Ir
+ Anterior
+ Buscar
+ Enviar
+ Ativar teclado
+ Selecionar teclado
+ Este app é um teclado virtual. Vá para as configurações do sistema clicando no botão abaixo e ative o Teclado Unexpected.
+ Este app é gratuito é de código aberto. Você pode consultar o código ou fazer sugestões em Github.
+ Após ativar, experimente aqui:
+ Experimente aqui
+ Caps lock
+ Compor
+ Grego e símbolos matemáticos
+ Trocar de teclado
+ Digitação por voz
+ Copiar
+ Colar
+ Recortar
+ Selecionar tudo
+ Colar texto não formatado
+ Desfazer
+ Refazer
+ Indicador Ordinal
+ Indicador Ordinal
+ Sobrescrito
+ Subscrito
+ Page Up
+ Page Down
+ Home
+ End
+ Área de transferência
+ Combinação de diacríticos
+ Tecla morta
+ Junta de largura zero
+ Sem junta de largura zero
+ Espaço não separável
+ Espaço não separável estreito
+
+
+
+ Textos recém copiados
+ Fixados
+ Remover esta cópia?
+ Sim
+
+
diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml
new file mode 100644
index 0000000..1699408
--- /dev/null
+++ b/res/values-ro/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Tastatură Unexpected (depanare)
+ Tastatură virtuală pentru Android, ușoară și respectuoasă cu viața privată.
+ Funcționalitatea principală este accesul rapid la o mulțime de caractere ASCII prin glisarea către colțurile tastelor.\n\nAceastă aplicație a fost concepută inițial pentru programatori care folosec Termux.\nEste perfectă pentru uzul cotidian.\n\nAceastă aplicație nu conține publicitate, nu folosește rețeaua deloc și e Open Source.
+ În mod portret
+
+ În mod panoramă
+
+ Aspect
+ Modifică luminozitatea denumirii
+ Modifică opacitatea fundalului tastaturii
+ Modifică opacitatea tastelor
+ Modifică opacitatea tastei apăsate
+ Setări de Sistem
+ Aranjament personalizat
+
+
+
+ Aranjament personalizat
+
+
+
+ Arată NumPad
+ Niciodată
+ Doar în mod panoramă
+ Întotdeanuna
+ Arată rândul cu numere
+ Adaugă un rând deasupra tastaturii când numpad-ul este ascuns
+ Aspect NumPad
+ Mai întâi cifrele mari
+ Mai întâi cifrele mici
+ Adaugă taste pe tastatură
+
+
+ Tipărire
+ Distanța de glisare
+ Distanța dintre caracterele din colțurile tastelor (%s)
+
+ Intervalul de repetare a tastelor
+
+ Apăsare dublă pe Shift activează Caps Lock
+ Puteți activa orice modificator, ținându-l apăsat
+ Comportament
+ Scriere automată cu majuscule
+ Autoapăsare Shift la începutul fiecărei propoziții
+ Schimbă la ultima tastatură folosită
+ Comportamentul tastei pentru schimbarea tastaturii
+
+
+
+
+
+
+ Stil
+ Marginea de jos
+ Înălțimea tastaturii
+ Marginea orizontală
+ Dimensiunea simbolurilor
+ Dimensiumea caracterelor afișate pe tastatură (%.2fx)
+ Tema
+ Setări de sistem
+ Întunecată
+ Luminoasă
+ Neagră
+ Negru Alternativ
+ Albă
+ ePaper
+
+
+
+
+
+
+ Foarte apropiată
+ Apropiată
+ Normală
+ Depărtată
+ Foarte depărtată
+ Distanța orizontală dintre taste
+ Distanța verticală dintre taste
+
+
+
+
+
+
+
+
+ Următor
+ Gata
+ Go
+ Precedent
+ Caută
+ Trimite
+ Activează tastatura
+
+ Această aplicație este o tastatură virtuală. Accesați setările sistemului făcând clic pe butonul de mai jos și activați tastatura Unexpected.
+ Aceasta este o aplicație gratuită și open source. Puteți găsi codul sursă sau raporta erori folosind link-ul Github.
+ După activare, puteți să încercați tastatura aici:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml
new file mode 100644
index 0000000..8d7dfb9
--- /dev/null
+++ b/res/values-ru/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (отладка)
+ Легкая клавиатура для пользователей, заботящихся о конфиденциальности.
+ Главная особенность клавиатуры — это возможность легко напечатать любой ASCII-символ жестами в углы клавиш.\n\nПриложение изначально было разработано для использования с Termux.\nНа данный момент оно также удобно в повседневном использовании.\n\nПриложение не содержит рекламы, не осуществляет никаких запросов в сеть и имеет открытый исходный код.
+ В портретном режиме
+ В развернутом портретном режиме
+ В ландшафтном режиме
+ В развернутом ландшафтном режиме
+ Расположение
+ Изменить яркость клавиатуры
+ Изменить прозрачность фона
+ Изменить прозрачность клавиш
+ Изменить прозрачность нажатой клавиши
+ Системные настройки
+ Пользовательская раскладка
+ Добавить альтернативную раскладку
+ Раскладка %1$d: %2$s
+ Удалить раскладку
+ Пользовательская раскладка
+ Без ряда цифр
+ Ряд цифр без символов
+ Ряд цифр с символами
+ Показывать цифровой блок
+ Никогда
+ Только в ландшафтном режиме
+ Всегда
+ Показывать цифры
+ Добавить ряд цифр над клавиатурой, когда цифровой блок не активен
+ Раскладка цифрового блока
+ Старшие цифры сверху
+ Младшие цифры сверху
+ Добавить клавиши на клавиатуру
+ Добавить пользовательские клавиши
+ Выберите клавиши для добавления на клавиатуру
+ Набор текста
+ Длина жеста
+ Расстояние между символами в углах клавиш (%s)
+ Задержка долгого нажатия
+ Интервал повтора клавиш
+ Повтор клавиши при долгом нажатии
+ CapsLock двойным нажатием Shift
+ Также можно активировать модификатор долгим нажатием
+ Поведение
+ Автоматическая смена регистра
+ Автоматическое нажатие Shift в начале каждого предложения
+ Активировать предыдущую клавиатуру
+ Поведение клавиши переключения клавиатуры
+ Настройка вибрации
+ Интенсивность вибрации
+ Раскладка для ввода цифр, дат и телефонных номеров
+ Ввод PIN-кодов
+ Цифровая панель
+ Основная раскладка
+ Стиль
+ Нижняя граница поля
+ Высота клавиатуры
+ Горизонтальное поле
+ Размер символов
+ Размер символов, отображаемых на клавиатуре (%.2fx)
+ Тема
+ Системная
+ Темная
+ Светлая
+ Черная
+ Альтернативная черная
+ Белая
+ Электронная бумага
+ Пустыня
+ Джунгли
+ Моне (системная)
+ Моне (светлая)
+ Моне (темная)
+ Розовая сосна
+ Очень короткая
+ Короткая
+ Обычная
+ Длинная
+ Очень длинная
+ Горизонтальное расстояние между клавишами
+ Расстояние по вертикали между клавишами
+ Настройка рамки
+ Ширина рамки
+ Радиус скругления
+ Чувствительность круговых жестов
+ Высокая
+ Средняя
+ Низкая
+ Отключено
+ Вперед
+ Ввод
+ Перейти
+ Назад
+ Поиск
+ Отправить
+ Включение клавиатуры
+ Выбор клавиатуры
+ Данное приложение является виртуальной клавиатурой. Зайдите в настройки, нажав кнопку внизу, и активируйте Unexpected Keyboard.
+ Это бесплатное приложение с открытым исходным кодом. Вы можете изучить код или сообщить об ошибках по ссылке GitHub.
+ После активации вы сможете попробовать клавиатуру прямо здесь:
+ Попробуйте здесь
+ CapsLock
+ Compose
+ Греческие и математические символы
+ Переключение клавиатуры
+ Голосовой ввод
+ Копировать
+ Вставить
+ Вырезать
+ Выбрать все
+ Вставить как простой текст
+ Отменить
+ Повторить
+ Порядковый индикатор
+ Порядковый индикатор
+ Надстрочные
+ Подстрочные
+ Страница вверх
+ Страница вниз
+ Home
+ End
+ Менеджер буфера обмена
+ Сочетание диакритических знаков
+ Немая клавиша
+ Соединитель нулевой ширины
+ Разделитель нулевой ширины
+ Неразрывный пробел
+ Узкий неразрывный пробел
+ Удалить слово
+ Удалить слово справа
+ Жест
+ Недавно скопированный текст
+ Закреплено
+ Удалить этот буфер обмена?
+ Да
+ Приложение для голосового ввода не установлено
+
diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml
new file mode 100644
index 0000000..19c820e
--- /dev/null
+++ b/res/values-tr/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (debug)
+ Android için hafif ve güvenlik odaklı bir sanal klavye uygulaması.
+ Bu uygulama özünde tuşların kenarlarından kaydırarak daha fazla karakter yazabilmek amacıyla geliştirildi.\n\nBu uygulama aslında Termux kullanıcıları için geliştirildi.\nArtık gündelik kullanım için de uygun.\n\nBu uygulama açık kaynaklıdır. Reklam içermez ve internete bağlanmaz.
+ Portre modunda
+
+ Manzara modunda
+
+ Tuş düzeni
+ Etiket parlaklığını ayarla
+ Klavye arkaplanı opaklığını ayarla
+ Tuş opaklığını ayarla
+ Tuşa basıldığındaki opaklığı ayarla
+ Sistem ayarlarını kullan
+ Özel tuş düeni
+ Alternatif bir tuş düzeni ekle
+ Tuş düzeni %1$d: %2$s
+ Tuş düzenini kaldır
+ Özel tuş düzeni
+
+
+
+ NumPadi göster
+ Asla
+ Sadece manzara modunda
+ Her zaman
+ Rakam satırını göster
+ NumPad gizlendiğinde klavyenin üstüne rakam satırı ekle
+ NumPad düzeni
+ 9dan 1e
+ 1den 9a
+ Tuş ekle
+ Özel tuş ekle
+ Klavyeye eklenecek tuşları seçin
+ Yazma
+ Kaydırma mesafesi
+ Tuşların köşelerinden kaydırma mesafesi (%s)
+ Uzun basma süresi
+ Tuşların tekrarlama sıklığı
+ Uzun basınca tuş tekrarlamaları
+ CapsLock için Shift tuşuna çift bas
+ Uzun basarak CapsLock açılabilir
+ Klavye davranışı
+ Otomatik büyük harf
+ Noktadan sonra ve her cümlenin başında büyük harf yapar
+ Son kullanılan klavyeye geç
+ Klavye değistirme tuşunun davranışını belirler
+ Özel titreşim
+ Titreşim yoğunluğu
+
+
+
+
+ Tarz
+ Alt boşluk
+ Klavye yüksekliği
+ Yatay boşluk
+ Etiket boyutu
+ Klavye üzerindeki karakterlerin boyutu (%.2fx)
+ Tema
+ Sistem Temasını Kullan
+ Koyu
+ Aydınlık
+ Siyah
+ Alternatif Siyah
+ Beyaz
+ E-Kağıt
+ Çöl
+ Orman
+ Monet (Sisteme uyarla)
+ Monet (Açık)
+ Monet (Koyu)
+ Gül Çamı(Rosé Pine)
+ Çok kısa
+ Kısa
+ Normal
+ Uzun
+ Çok uzun
+ Tuşlar arasındaki yatay boşluk
+ Tuşlar arasındaki dikey boşluk
+ Çerçeveyi özelleştir
+ Çerçeve kalınlığı
+ Kenar yumuşaklığı
+ Dairesel hareket hassasiyeti
+ Yüksek
+ Orta
+ Düşük
+ Devre dışı
+ Sonraki
+ Tamam
+ ileri
+ Önceki
+ Ara
+ Gönder
+ Ayarlarda aktif et
+ Klavye Seç
+ Bu uygulama bir sanal klavye uygulamasıdır. Aşağıdaki butona basarak sistem ayarlarında etkinleştiriniz.
+ Bu uygulama ücretsiz ve açık kaynaklıdır. Kaynak koduna erişmek veya bir hata raporlamak için GitHub\'a ulaşabilirsiniz.
+ Ayarlardan aktif ettikten sonra klavyeyi burada test edebilirsin:
+ Burada dene
+ CapsLock
+ Oluştur
+ Greek & math sembolleri
+ Klavye değiştir
+ Sesle yazma
+ Kopyala
+ Yapıştır
+ Kes
+ Tümünü seç
+ Düz metin olarak yapıştır
+ Geri al
+ İleri al
+ Sıralı göstergesi
+ Sıralı göstergesi
+ Süperscript
+ Anascript
+ Yukarı
+ Aşağı
+ BAŞ(Sol yön tuşu)
+ SON(Sağ yön tuşu)
+ Pano
+ Aksanları birleştir
+ Boş tuş
+ Sıfır genişlikli birleştirici
+ Sıfır genişlikte birleştirmeyen
+ Kırılmaz boşluk
+ Dar kırılmaz boşluk
+
+
+
+ Son kopyalanan metin
+ Sabitlendi
+ Bu panodan silinsin mi?
+ Evet
+
+
diff --git a/res/values-uk/strings.xml b/res/values-uk/strings.xml
new file mode 100644
index 0000000..bfcbc60
--- /dev/null
+++ b/res/values-uk/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Налагодження)
+ Легка та конфіденційна віртуальна клавіатура для Android.
+ Головна особливість полягає в тому, що ви можете вводити більше символів, проводячи клавіші до кутів.\n\nЦя програма спочатку була розроблена для програмістів, які використовують Termux.\nТепер ідеально підходить для щоденного використання.\n\nЦя програма не містить реклами, не надсилає жодних мережевих запитів і має відкритий код.
+ У портретному режимі
+
+ У альбомному режимі
+
+ Макет
+ Налаштувати яскравість символів
+ Налаштувати прозорість фону клавіатури
+ Налаштувати прозорість клавіш
+ Налаштувати прозорість натиснутої клавіші
+ Системні налаштування
+ Власний макет
+ Додати альтернативний макет
+ Макет %1$d: %2$s
+ Видалити макет
+ Власний макет
+
+
+
+ Показувати числову клавіатуру
+ Ніколи
+ Тільки в альбомному режимі
+ Завжди
+ Показувати рядок чисел
+ Додати рядок чисел у верхній частині клавіатури, коли числову клавіатуру приховано
+ Макет числової клавіатури
+ Від найбільшої цифри
+ Від найменшої цифри
+ Додати клавіші до клавіатури
+ Додайте власні клавіші
+ Виберіть клавіші, які потрібно додати до клавіатури
+ Введення
+ Відстань проведення
+ Відстань між символами в кутах клавіш (%s)
+ Час очікування тривалого натискання
+ Інтервал повторення клавіш
+ Повторення клавіші при тривалому натисканні
+ Двічі торкніться Shift для Caps Lock
+ Ви можете заблокувати будь-який модифікатор, утримуючи його
+ Поведінка
+ Автоматичне введення великих літер
+ Натиснути Shift на початку речення
+ Перейти до останньої використаної клавіатури
+ Поведінка клавіші перемикання клавіатури
+ Спеціальна вібрація
+ Інтенсивність вібрації
+
+
+
+
+ Стиль
+ Поле знизу
+ Висота клавіатури
+ Горизонтальне поле
+ Розмір символів
+ Розмір символів, що відображаються на клавіатурі (%.2fx)
+ Тема
+ Налаштування системи
+ Темна
+ Світла
+ Чорна
+ Альтернативний чорний
+ Біла
+ ePaper
+ Пустеля
+ Джунглі
+ Моне (Системна)
+ Моне (Світла)
+ Моне (Темна)
+ Рожева сосна
+ Дуже коротка
+ Коротка
+ Звичайна
+ Далека
+ Дуже далека
+ Горизонтальна відстань між клавішами
+ Вертикальна відстань між клавішами
+ Налаштувати межі
+ Ширина межі
+ Радіус кута
+ Чутливість до колових жестів
+ Висока
+ Середня
+ Низька
+ Вимкнено
+ Далі
+ Готово
+ Іти
+ Назад
+ Пошук
+ Надіслати
+ Увімкнути клавіатуру
+ Вибрати клавіатуру
+ Ця програма є віртуальною клавіатурою. Перейдіть до системних налаштувань, натиснувши кнопку нижче, і ввімкніть Unexpected-Keyboard.
+ Це безкоштовна програма з відкритим кодом. Ви можете знайти початковий код або повідомити про помилки на GitHub.
+ Після ввімкнення ви можете спробувати клавіатуру тут:
+ Спробуйте тут
+ Caps lock
+ Compose
+ Грецькі та математичні символи
+ Переключити клавіатуру
+ Голосове введення
+ Копіювати
+ Вставити
+ Вирізати
+ Вибрати все
+ Вставити як звичайний текст
+ Відмінити
+ Повторити
+ Жіночий порядковий вказівник
+ Чоловічий порядковий вказівник
+ Верхній індекс
+ Нижній індекс
+ Page Up
+ Page Down
+ Home
+ End
+ Менеджер буфера обміну
+ Комбінування діакритики
+ Мертва клавіша
+ З\'єднувач нульової ширини
+ Разділювач нульової ширини
+ Нерозривний пробіл
+ Вузький нерозривний пробіл
+
+
+
+ Нещодавно скопійований текст
+ Закріплено
+ Видалити цей буфер обміну?
+ Так
+
+
diff --git a/res/values-v21/styles.xml b/res/values-v21/styles.xml
new file mode 100644
index 0000000..56a4b58
--- /dev/null
+++ b/res/values-v21/styles.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/res/values-vi/strings.xml b/res/values-vi/strings.xml
new file mode 100644
index 0000000..e36f71d
--- /dev/null
+++ b/res/values-vi/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (gỡ lỗi)
+ Bàn phím ảo gọn nhẹ và tôn trọng quyền riêng tư cho Android.
+ Chức năng chính là dễ dàng gõ nhiều ký tự bằng cách kéo phím về góc của nó.\n\nỨng dụng này ban đầu được thiết kế cho các lập trình viên dùng Termux.\nBây giờ đã hoàn hảo cho việc sử dụng hàng ngày.\n\nỨng dụng này không chứa quảng cáo, không cần đến mạng, và có mã nguồn mở.
+ Trong chế độ chân dung
+
+ Trong chế độ phong cảnh
+
+ Bố cục
+ Tùy chỉnh độ sáng của phím
+ Tùy chỉnh độ trong suốt của bàn phím
+ Tùy chỉnh độ trong suốt của phím
+ Tùy chỉnh độ trong suốt của phím khi nhấn
+ Hệ thống
+ Tùy chỉnh bố cục
+
+
+
+ Tùy chỉnh bố cục
+
+
+
+ Hiện NumPad
+ Không bao giờ
+ Chỉ trong chế độ phong cảnh
+ Luôn luôn
+ Hiện số dòng
+ Hiện số dòng trên đầu bàn phím khi NumPad ẩn
+ Bố cục NumPad
+ Số lớn nhất trước
+ Số nhỏ nhất trước
+ Thêm phím vào bàn phím
+
+
+ Gõ
+ Khoảng cách vuốt
+ Khoảng cách giữa các ký tự ở góc phím (%s)
+
+ Khoảng thời gian lặp phím
+
+ Nhấn hai lần Shift để bật Caps Lock
+ Bạn có thể khóa phím hỗ trợ bằng cách giữ vào nó
+
+ Tự động viết hoa
+ Nhấn Shift ở đầu câu
+
+
+
+
+
+
+
+
+ Kiểu cách
+ Căn lề dưới
+ Chiều cao bàn phím
+ Căn lề chiều ngang
+ Kích cỡ ký tự phím
+ Kích cỡ các ký tự hiển thị trên bàn phím (%.2fx)
+ Chủ đề
+ Hệ thống
+ Tối
+ Sáng
+ Đen
+
+ Trắng
+ ePaper
+
+
+
+
+
+
+ Rất gần
+ Gần
+ Trungbình
+ Xa
+ Rất xa
+ Khoảng cách giữa các phím theo chiều ngang
+ Khoảng cách giữa các phím theo chiều dọc
+
+
+
+
+
+
+
+
+ Tiếp
+ Xong
+ Đi
+ Trước
+ Tìm
+ Gửi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml
new file mode 100644
index 0000000..9902a40
--- /dev/null
+++ b/res/values-zh-rCN/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (debug)
+ 适用于 Android 的轻量级、注重隐私的虚拟键盘。
+ 此应用的主要功能是,通过将按键沿四角滑动,您可以输入更多字符。\n\n此应用最初是为使用 Termux 的程序员而设计的。\n现在对于日常使用来说也很完美。\n\n此应用没有广告,不会发送任何网络请求,而且是开源的。
+ 在竖屏模式下
+
+ 在横屏模式下
+
+ 布局
+ 调整字母亮度
+ 调整键盘背景透明度
+ 调整按键透明度
+ 调整按下的按键的透明度
+ 系统设置
+ 自定义布局
+ 添加其他布局
+ 布局 %1$d:%2$s
+ 移除布局
+ 自定义布局
+
+
+
+ 显示数字小键盘
+ 从不
+ 只在横屏显示
+ 一直显示
+ 显示数字行
+ 当数字小键盘隐藏时,在键盘上方显示数字按键
+ 数字小键盘布局
+ 大数字在上方
+ 小数字在上方
+ 选择要显示的按键
+ 添加自定义按键
+ 选择要添加到键盘的按键
+ 输入
+ 滑动触发距离
+ 输入按键四角的符号需要滑动的距离 (%s)
+ 长按触发延时
+ 长按后每次重复输入的时间间隔
+ 长按重复输入
+ 双击 Shift 键锁定大写
+ 任何时候长按修饰键均可将其锁定
+ 行为
+ 句首自动大写
+ 在句子的开头自动按下Shift
+ 切换到最近使用的键盘
+ 切换键盘按钮的行为
+ 自定义振动
+ 振动强度
+
+
+
+
+ 样式
+ 键盘下边距
+ 键盘高度
+ 键盘左右边距
+ 字符大小
+ 按键上显示的字符的大小 (%.2fx)
+ 主题
+ 跟随系统设置
+ 暗色
+ 亮色
+ 黑色
+ 黑色带边框
+ 白色
+ 白色带边框
+ 沙漠
+ 雨林
+ 莫奈(系统)
+ 莫奈(浅色)
+ 莫奈(深色)
+ 桃红松韵(Rosé Pine)
+ 非常短
+ 短
+ 中(默认)
+ 长
+ 非常长
+ 按键的左右边距
+ 按键的上下边距
+ 自定义边界
+ 边界宽度
+ 圆角半径
+ 环形手势灵敏度
+ 高
+ 中
+ 低
+ 禁用
+ 下一项
+ 完成
+ 前往
+ 上一项
+ 搜索
+ 发送
+ 启用键盘
+ 选择键盘
+ 这是一个虚拟键盘软件。点击按钮进入系统设置,然后启用 Unexpected-Keyboard 即可使用。
+ 这是一个免费且开源的软件。你可以在 GitHub 上找到源代码或反馈问题。
+ 启用键盘后,可以在这里测试效果:
+ 在这里测试
+ 大写锁定
+ 字符组合键
+ 希腊 & 数学符号
+ 切换键盘
+ 语音输入
+ 复制
+ 粘贴
+ 剪切
+ 全选
+ 粘贴为纯文本
+ 撤销
+ 重做
+ 次序标志
+ 次序标志
+ 上标
+ 下标
+ 上一页
+ 下一页
+ Home
+ End
+ 管理剪贴板
+ 组合用附加符号
+ 前置组合键
+ 零宽连字符
+ 零宽连字符
+ 不间断空格
+ 窄距不间断空格
+
+
+
+ 最近剪贴内容
+ 已固定
+ 确定移除此剪贴内容?
+ 确定
+
+
diff --git a/res/values/arrays.xml b/res/values/arrays.xml
new file mode 100644
index 0000000..b82298e
--- /dev/null
+++ b/res/values/arrays.xml
@@ -0,0 +1,97 @@
+
+
+
+ - no_number_row
+ - no_symbols
+ - symbols
+
+
+ - @string/pref_show_number_row_no_number_row
+ - @string/pref_show_number_row_no_symbols
+ - @string/pref_show_number_row_symbols
+
+
+ - never
+ - landscape
+ - always
+
+
+ - @string/pref_show_numpad_never
+ - @string/pref_show_numpad_landscape
+ - @string/pref_show_numpad_always
+
+
+ - high_first
+ - low_first
+
+
+ - @string/pref_numpad_layout_e_high_first
+ - @string/pref_numpad_layout_e_low_first
+
+
+ - @string/pref_theme_e_system
+ - @string/pref_theme_e_dark
+ - @string/pref_theme_e_light
+ - @string/pref_theme_e_black
+ - @string/pref_theme_e_altblack
+ - @string/pref_theme_e_white
+ - @string/pref_theme_e_epaper
+ - @string/pref_theme_e_desert
+ - @string/pref_theme_e_jungle
+ - @string/pref_theme_e_monet
+ - @string/pref_theme_e_monetlight
+ - @string/pref_theme_e_monetdark
+ - @string/pref_theme_e_rosepine
+
+
+ - system
+ - dark
+ - light
+ - black
+ - altblack
+ - white
+ - epaper
+ - desert
+ - jungle
+ - monet
+ - monetlight
+ - monetdark
+ - rosepine
+
+
+ - @string/pref_swipe_dist_e_very_short
+ - @string/pref_swipe_dist_e_short
+ - @string/pref_swipe_dist_e_default
+ - @string/pref_swipe_dist_e_far
+ - @string/pref_swipe_dist_e_very_far
+
+
+ - 5
+ - 7.5
+ - 15
+ - 25
+ - 35
+
+
+ - @string/pref_circle_sensitivity_e_high
+ - @string/pref_circle_sensitivity_e_medium
+ - @string/pref_circle_sensitivity_e_low
+ - @string/pref_circle_sensitivity_e_disabled
+
+
+ - 2
+ - 3
+ - 4
+ - 12
+
+
+ - @string/pref_number_entry_layout_pin
+ - @string/pref_number_entry_layout_number
+ - @string/pref_number_entry_layout_normal
+
+
+ - pin
+ - number
+ - normal
+
+
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
new file mode 100644
index 0000000..b012a7c
--- /dev/null
+++ b/res/values/attrs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/res/values/layouts.xml b/res/values/layouts.xml
new file mode 100644
index 0000000..22337f9
--- /dev/null
+++ b/res/values/layouts.xml
@@ -0,0 +1,265 @@
+
+
+
+
+ - system
+ - latn_qwerty_us
+ - latn_colemak
+ - latn_dvorak
+ - arab_alt
+ - arab_hamvaj_tly
+ - arab_pc
+ - arab_pc_ckb
+ - arab_pc_ckb_fa
+ - arab_pc_hindu
+ - arab_pc_ir
+ - armenian_ph_am
+ - beng_national
+ - beng_provat
+ - cyrl_fcuzhen_mn
+ - cyrl_jcuken_as
+ - cyrl_jcuken_kk
+ - cyrl_jcuken_ru
+ - cyrl_jcuken_uk
+ - cyrl_lynyertdz_mk
+ - cyrl_lynyertz_sr
+ - cyrl_ueishsht
+ - cyrl_yaverti
+ - cyrl_yqukeng_tj
+ - cyrl_yxukeng_os
+ - deva_alt
+ - deva_inscript
+ - deva_phonetic_in
+ - georgian_mes
+ - georgian_qwerty
+ - grek_qwerty
+ - guj_phonetic_in
+ - hang_dubeolsik_kr
+ - hebr_1_il
+ - hebr_2_il
+ - kann_kannada
+ - latn_azerty_be
+ - latn_azerty_fr
+ - latn_bepo_fr
+ - latn_bone
+ - latn_neo2
+ - latn_qwerty_apl
+ - latn_qwerty_az
+ - latn_qwerty_bqn
+ - latn_qwerty_br
+ - latn_qwerty_cy
+ - latn_qwerty_cz
+ - latn_qwerty_da
+ - latn_qwerty_es
+ - latn_qwerty_et
+ - latn_qwerty_ga
+ - latn_qwerty_gb
+ - latn_qwerty_haw
+ - latn_qwerty_hu
+ - latn_qwerty_is
+ - latn_qwerty_jp
+ - latn_qwerty_kk
+ - latn_qwerty_lt
+ - latn_qwerty_lv
+ - latn_qwerty_mt
+ - latn_qwerty_no
+ - latn_qwerty_pl
+ - latn_qwerty_ro
+ - latn_qwerty_se
+ - latn_qwerty_sk
+ - latn_qwerty_sr
+ - latn_qwerty_tly
+ - latn_qwerty_tr
+ - latn_qwerty_uz
+ - latn_qwerty_vi
+ - latn_qwertz
+ - latn_qwertz_cz
+ - latn_qwertz_cz_diacritics
+ - latn_qwertz_cz_multifunctional
+ - latn_qwertz_de
+ - latn_qwertz_fr_ch
+ - latn_qwertz_hu
+ - latn_qwertz_sk
+ - latn_qwertz_sq
+ - latn_workman_us
+ - shaw_imperial_en
+ - sinhala_phonetic
+ - tamil_default
+ - urdu_phonetic_ur
+ - custom
+
+
+ - @string/pref_layout_e_system
+ - QWERTY (US)
+ - Colemak
+ - Dvorak
+ - Arabic Alt
+ - Talysh (تالشی همواج)
+ - Arabic PC
+ - Kurdish (کوردی) QWERTY
+ - Central Kurdish (سۆرانی) Persian Layout
+ - Arabic PC (Hindu numerals)
+ - Persian PC
+ - Armenian
+ - বাংলা (জাতীয়)
+ - বাংলা (প্রভাত)
+ - ФЦУЖЭН (Монгол)
+ - ЈЦУКЕН (Всисловѣнск)
+ - ЙЦУКЕН (Қазақша)
+ - ЙЦУКЕН (Русский)
+ - ЙЦУКЕН (Українська)
+ - ЉЊЕРТЅ (Македонски)
+ - ЉЊЕРТЗ (Српски)
+ - УЕИШЩ (Български, БДС)
+ - ЯВЕРТЪ
+ - Tajiki Persian (Тоҷикӣ)
+ - Old Church Slavonic (Црькъвьнословѣньскъ ѩзыкъ)
+ - देवनागरी (हिंदी)-2
+ - देवनागरी (हिंदी)-1
+ - हिन्दी फोनेटिक - Hindi Phonetic
+ - ქართული (MES)
+ - ქართული (QWERTY)
+ - QWERTY (Greek)
+ - ગુજરાતી ફોનેટિક - Gujarati Phonetic
+ - 두벌식 (Korean)
+ - Hebrew 1
+ - Hebrew 2
+ - ಕನ್ನಡ - Kannada
+ - AZERTY (Belgian)
+ - AZERTY (Français)
+ - BEPO (Français)
+ - Bone
+ - Neo 2
+ - QWERTY (APL)
+ - QWERTY (Azərbaycanca)
+ - QWERTY (BQN)
+ - QWERTY (Brasileiro)
+ - QWERTY (Welsh)
+ - QWERTY (Czech)
+ - QWERTY (Danish)
+ - QWERTY (Español)
+ - QWERTY (eesti)
+ - QWERTY (Irish)
+ - QWERTY (UK)
+ - QWERTY (Hawaiian)
+ - QWERTY (Magyar)
+ - QWERTY (Íslenska)
+ - QWERTY (Japan)
+ - QWERTY (Qazaqşa)
+ - QWERTY (Lietuviškai)
+ - QWERTY (Latvian)
+ - QWERTY (Malti)
+ - QWERTY (Norwegian)
+ - QWERTY (Polski)
+ - QWERTY (Română)
+ - QWERTY (Swedish)
+ - QWERTY (Slovak)
+ - QWERTY (Srpski, latinica)
+ - QWERTY (Talysh New Latin)
+ - QWERTY (Türkçe)
+ - QWERTY (Oʻzbekcha)
+ - QWERTY (Vietnamese)
+ - QWERTZ
+ - QWERTZ (Czech)
+ - QWERTZ (Czech with diacritic keys)
+ - QWERTZ Multifunctional (Czech)
+ - QWERTZ (Deutsch)
+ - QWERTZ (Swiss French)
+ - QWERTZ (Magyar)
+ - QWERTZ (Slovak)
+ - QWERTZ (Albanian)
+ - WORKMAN (US)
+ - Shaw Imperial
+ - සිංහල
+ - தமிழ்
+ - Urdu Phonetic
+ - @string/pref_layout_e_custom
+
+
+ - -1
+ - @xml/latn_qwerty_us
+ - @xml/latn_colemak
+ - @xml/latn_dvorak
+ - @xml/arab_alt
+ - @xml/arab_hamvaj_tly
+ - @xml/arab_pc
+ - @xml/arab_pc_ckb
+ - @xml/arab_pc_ckb_fa
+ - @xml/arab_pc_hindu
+ - @xml/arab_pc_ir
+ - @xml/armenian_ph_am
+ - @xml/beng_national
+ - @xml/beng_provat
+ - @xml/cyrl_fcuzhen_mn
+ - @xml/cyrl_jcuken_as
+ - @xml/cyrl_jcuken_kk
+ - @xml/cyrl_jcuken_ru
+ - @xml/cyrl_jcuken_uk
+ - @xml/cyrl_lynyertdz_mk
+ - @xml/cyrl_lynyertz_sr
+ - @xml/cyrl_ueishsht
+ - @xml/cyrl_yaverti
+ - @xml/cyrl_yqukeng_tj
+ - @xml/cyrl_yxukeng_os
+ - @xml/deva_alt
+ - @xml/deva_inscript
+ - @xml/deva_phonetic_in
+ - @xml/georgian_mes
+ - @xml/georgian_qwerty
+ - @xml/grek_qwerty
+ - @xml/guj_phonetic_in
+ - @xml/hang_dubeolsik_kr
+ - @xml/hebr_1_il
+ - @xml/hebr_2_il
+ - @xml/kann_kannada
+ - @xml/latn_azerty_be
+ - @xml/latn_azerty_fr
+ - @xml/latn_bepo_fr
+ - @xml/latn_bone
+ - @xml/latn_neo2
+ - @xml/latn_qwerty_apl
+ - @xml/latn_qwerty_az
+ - @xml/latn_qwerty_bqn
+ - @xml/latn_qwerty_br
+ - @xml/latn_qwerty_cy
+ - @xml/latn_qwerty_cz
+ - @xml/latn_qwerty_da
+ - @xml/latn_qwerty_es
+ - @xml/latn_qwerty_et
+ - @xml/latn_qwerty_ga
+ - @xml/latn_qwerty_gb
+ - @xml/latn_qwerty_haw
+ - @xml/latn_qwerty_hu
+ - @xml/latn_qwerty_is
+ - @xml/latn_qwerty_jp
+ - @xml/latn_qwerty_kk
+ - @xml/latn_qwerty_lt
+ - @xml/latn_qwerty_lv
+ - @xml/latn_qwerty_mt
+ - @xml/latn_qwerty_no
+ - @xml/latn_qwerty_pl
+ - @xml/latn_qwerty_ro
+ - @xml/latn_qwerty_se
+ - @xml/latn_qwerty_sk
+ - @xml/latn_qwerty_sr
+ - @xml/latn_qwerty_tly
+ - @xml/latn_qwerty_tr
+ - @xml/latn_qwerty_uz
+ - @xml/latn_qwerty_vi
+ - @xml/latn_qwertz
+ - @xml/latn_qwertz_cz
+ - @xml/latn_qwertz_cz_diacritics
+ - @xml/latn_qwertz_cz_multifunctional
+ - @xml/latn_qwertz_de
+ - @xml/latn_qwertz_fr_ch
+ - @xml/latn_qwertz_hu
+ - @xml/latn_qwertz_sk
+ - @xml/latn_qwertz_sq
+ - @xml/latn_workman_us
+ - @xml/shaw_imperial_en
+ - @xml/sinhala_phonetic
+ - @xml/tamil_default
+ - @xml/urdu_phonetic_ur
+ - -1
+
+
\ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
new file mode 100644
index 0000000..26c8ce9
--- /dev/null
+++ b/res/values/strings.xml
@@ -0,0 +1,138 @@
+
+
+ Unexpected Keyboard
+ Unexpected Keyboard (Debug)
+ Lightweight and privacy-conscious virtual keyboard for Android.
+ The main feature is that you can type more characters by swiping the keys towards the corners.\n\nThis application was originally designed for programmers using Termux.\nNow perfect for everyday use.\n\nThis application contains no ads, doesn\'t make any network requests and is Open Source.
+ In portrait mode
+ In portrait mode unfolded
+ In landscape mode
+ In landscape mode unfolded
+ Layout
+ Adjust label brightness
+ Adjust keyboard background opacity
+ Adjust key opacity
+ Adjust pressed key opacity
+ System settings
+ Custom layout
+ Add an alternate layout
+ Layout %1$d: %2$s
+ Remove layout
+ Custom layout
+ No number row
+ Number row without symbols
+ Number row with symbols
+ Show NumPad
+ Never
+ Only in landscape mode
+ Always
+ Show number row
+ Add a number row at the top of the keyboard when the numpad is hidden
+ NumPad layout
+ High digits first
+ Low digits first
+ Add keys to the keyboard
+ Add custom keys
+ Select keys to add to the keyboard
+ Typing
+ Swiping distance
+ Distance of characters in the corners of the keys (%s)
+ Long press timeout
+ Key repeat interval
+ Key repeat on long press
+ Double tap on shift for caps lock
+ You can lock any modifier by holding it
+ Behavior
+ Automatic capitalisation
+ Press Shift at the beginning of a sentence
+ Switch to the last used keyboard
+ Behavior of the keyboard-switching key
+ Custom vibration
+ Vibration intensity
+ Layout when typing numbers, dates, and phone numbers
+ PIN Entry
+ Number pane
+ Use the main layout
+ Style
+ Margin bottom
+ Keyboard height
+ Horizontal margin
+ Label size
+ Size of characters displayed on the keyboard (%.2fx)
+ Theme
+ System settings
+ Dark
+ Light
+ Black
+ Alternative Black
+ White
+ ePaper
+ Desert
+ Jungle
+ Monet (System)
+ Monet (Light)
+ Monet (Dark)
+ Rosé Pine
+ Very short
+ Short
+ Normal
+ Far
+ Very far
+ Horizontal spacing between the keys
+ Vertical spacing between the keys
+ Customize borders
+ Border Width
+ Corner radius
+ Circle gesture sensitivity
+ High
+ Medium
+ Low
+ Disabled
+ Next
+ Done
+ Go
+ Prev
+ Search
+ Send
+ Enable keyboard
+ Select keyboard
+ This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.
+ This is a free and open source application. You can find the source code or report bugs on GitHub.
+ After enabling, you can try the keyboard here:
+ Try here
+ Caps lock
+ Compose
+ Greek & math symbols
+ Switch keyboard
+ Voice typing
+ Copy
+ Paste
+ Cut
+ Select all
+ Paste as plain text
+ Undo
+ Redo
+ Ordinal Indicator
+ Ordinal Indicator
+ Superscript
+ Subscript
+ Page Up
+ Page Down
+ Home
+ End
+ Clipboard manager
+ Combining diacritic
+ Dead key
+ Zero width joiner
+ Zero width non-joiner
+ Non-breaking space
+ Narrow non-breaking space
+ Delete a word
+ Delete a word on the right
+ Gesture
+ Recently copied text
+ Pinned
+ Remove this clipboard item?
+ Yes
+ No voice typing app installed
+
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 0000000..f592cd7
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/values/themes.xml b/res/values/themes.xml
new file mode 100644
index 0000000..c5e2d48
--- /dev/null
+++ b/res/values/themes.xml
@@ -0,0 +1,225 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/values/values.xml b/res/values/values.xml
new file mode 100644
index 0000000..169fe1a
--- /dev/null
+++ b/res/values/values.xml
@@ -0,0 +1,11 @@
+
+
+ 3dp
+ 2dp
+ 250dp
+ 28dp
+ 300dp
+ 28dp
+
+ false
+
diff --git a/res/xml/bottom_row.xml b/res/xml/bottom_row.xml
new file mode 100644
index 0000000..35b70aa
--- /dev/null
+++ b/res/xml/bottom_row.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/res/xml/clipboard_bottom_row.xml b/res/xml/clipboard_bottom_row.xml
new file mode 100644
index 0000000..9a290fd
--- /dev/null
+++ b/res/xml/clipboard_bottom_row.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/emoji_bottom_row.xml b/res/xml/emoji_bottom_row.xml
new file mode 100644
index 0000000..308e6f9
--- /dev/null
+++ b/res/xml/emoji_bottom_row.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/greekmath.xml b/res/xml/greekmath.xml
new file mode 100644
index 0000000..86f851b
--- /dev/null
+++ b/res/xml/greekmath.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/method.xml b/res/xml/method.xml
new file mode 100644
index 0000000..e3f90c5
--- /dev/null
+++ b/res/xml/method.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/number_row.xml b/res/xml/number_row.xml
new file mode 100644
index 0000000..459a730
--- /dev/null
+++ b/res/xml/number_row.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/number_row_no_symbols.xml b/res/xml/number_row_no_symbols.xml
new file mode 100644
index 0000000..3e207af
--- /dev/null
+++ b/res/xml/number_row_no_symbols.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/numeric.xml b/res/xml/numeric.xml
new file mode 100644
index 0000000..cd98106
--- /dev/null
+++ b/res/xml/numeric.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/numpad.xml b/res/xml/numpad.xml
new file mode 100644
index 0000000..3ddb830
--- /dev/null
+++ b/res/xml/numpad.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/res/xml/pin.xml b/res/xml/pin.xml
new file mode 100644
index 0000000..0691d70
--- /dev/null
+++ b/res/xml/pin.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/res/xml/settings.xml b/res/xml/settings.xml
new file mode 100644
index 0000000..40e3676
--- /dev/null
+++ b/res/xml/settings.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..649cd46
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,17 @@
+pluginManagement {
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.name = "Unexpected-Keyboard"
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..be0d8d0
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,68 @@
+{ pkgs ? import {
+ config.android_sdk.accept_license = true;
+ config.allowUnfree = true;
+} }:
+
+let
+ jdk = pkgs.openjdk17;
+ build_tools_version = "34.0.0";
+
+ android = pkgs.androidenv.composeAndroidPackages {
+ buildToolsVersions = [ build_tools_version ];
+ platformVersions = [ "35" ];
+ abiVersions = [ "armeabi-v7a" ];
+ inherit repoJson;
+ };
+
+ # Ensure we have the needed system images
+ repoJson = pkgs.fetchurl {
+ url =
+ "https://raw.githubusercontent.com/NixOS/nixpkgs/ebc7402410a3ce2d25622137c190d4ab83945c10/pkgs/development/mobile/androidenv/repo.json";
+ hash = "sha256-4/0FMyxM+7d66qfhlY3A10RIe6j6VrW8DIilH2eQyzc=";
+ };
+
+ emulators = let
+ mk_emulator = { platformVersion, device ? "pixel_6", abiVersion ? "x86_64", systemImageType ? "default" }:
+ pkgs.androidenv.emulateApp rec {
+ name = "emulator_api${platformVersion}";
+ inherit platformVersion abiVersion systemImageType;
+ androidAvdFlags = "--device ${device}";
+ sdkExtraArgs = { inherit repoJson; };
+ };
+ # Allow to install several emulators in the same environment
+ link_emulator = version_name: args: {
+ name = "bin/emulate_android_${version_name}";
+ path = "${mk_emulator args}/bin/run-test-emulator";
+ };
+ in pkgs.linkFarm "emulator" [
+ (link_emulator "5" { platformVersion = "21"; })
+ # (link_emulator "14" { platformVersion = "34"; })
+ # There's no 'default' image for Android 15
+ (link_emulator "15" { platformVersion = "35"; systemImageType = "google_apis"; })
+ ];
+
+ ANDROID_SDK_ROOT = "${android.androidsdk}/libexec/android-sdk";
+
+ gradle = pkgs.gradle.override { java = jdk; };
+ # Without this option, aapt2 fails to run with a permissions error.
+ gradle_wrapped = pkgs.runCommandLocal "gradle-wrapped" {
+ nativeBuildInputs = with pkgs; [ makeBinaryWrapper ];
+ } ''
+ mkdir -p $out/bin
+ ln -s ${gradle}/bin/gradle $out/bin/gradle
+ wrapProgram $out/bin/gradle \
+ --add-flags "-Dorg.gradle.project.android.aapt2FromMavenOverride=${ANDROID_SDK_ROOT}/build-tools/${build_tools_version}/aapt2"
+ '';
+
+in pkgs.mkShell {
+ buildInputs = [
+ pkgs.findutils
+ pkgs.fontforge
+ jdk
+ android.androidsdk
+ gradle_wrapped
+ emulators
+ ];
+ JAVA_HOME = jdk.home;
+ inherit ANDROID_SDK_ROOT;
+}
diff --git a/srcs/compose/README.md b/srcs/compose/README.md
new file mode 100644
index 0000000..fff4941
--- /dev/null
+++ b/srcs/compose/README.md
@@ -0,0 +1,10 @@
+# Compose sequences
+
+The `compose.py` program parses the compose sequences found in this directory
+and generates `srcs/juloo.keyboard2/ComposeKeyData.java`.
+
+## `compose/en_US_UTF_8_Compose.pre`
+
+This file is copied from the `xorg` project. Copyright applies.
+
+## `compose/extra.json`
diff --git a/srcs/compose/accent_aigu.json b/srcs/compose/accent_aigu.json
new file mode 100644
index 0000000..f34b90c
--- /dev/null
+++ b/srcs/compose/accent_aigu.json
@@ -0,0 +1,60 @@
+{
+ // latin
+ "a": "á",
+ "c": "ć",
+ "e": "é",
+ "g": "ǵ",
+ "i": "í",
+ "k": "ḱ",
+ "l": "ĺ",
+ "m": "ḿ",
+ "n": "ń",
+ "o": "ó",
+ "p": "ṕ",
+ "r": "ŕ",
+ "s": "ś",
+ "u": "ú",
+ "w": "ẃ",
+ "y": "ý",
+ "z": "ź",
+ // extended latin (multiple diacritics)
+ "â": "ấ",
+ "ă": "ắ",
+ "å": "ǻ",
+ "æ": "ǽ",
+ "ç": "ḉ",
+ "ê": "ế",
+ "ē": "ḗ",
+ "ï": "ḯ",
+ "ô": "ố",
+ "ơ": "ớ",
+ "õ": "ṍ",
+ "ō": "ṓ",
+ "ø": "ǿ",
+ "ṡ": "ṥ",
+ "ü": "ǘ",
+ "ư": "ứ",
+ "ũ": "ṹ",
+ // greek
+ "α": "ά",
+ "ε": "έ",
+ "η": "ή",
+ "ι": "ί",
+ "ο": "ό",
+ "υ": "ύ",
+ // cyrillic
+ "к": "ќ",
+ "г": "ѓ",
+ // combining character
+ "ą": "ą\u0301",
+ "j": "j\u0301",
+ "у": "у\u0301",
+ "е": "е\u0301",
+ "а": "а\u0301",
+ "о": "о\u0301",
+ "и": "и\u0301",
+ "ы": "ы\u0301",
+ "э": "э\u0301",
+ "ю": "ю\u0301",
+ "я": "я\u0301"
+}
diff --git a/srcs/compose/accent_arrows.json b/srcs/compose/accent_arrows.json
new file mode 100644
index 0000000..16cd448
--- /dev/null
+++ b/srcs/compose/accent_arrows.json
@@ -0,0 +1,13 @@
+{
+ "0": "↔",
+ "1": "↙",
+ "2": "↓",
+ "3": "↘",
+ "4": "←",
+ "5": "↕",
+ "6": "→",
+ "7": "↖",
+ "8": "↑",
+ "9": "↗",
+ ".": "↵"
+}
diff --git a/srcs/compose/accent_bar.json b/srcs/compose/accent_bar.json
new file mode 100644
index 0000000..de3b940
--- /dev/null
+++ b/srcs/compose/accent_bar.json
@@ -0,0 +1,30 @@
+{
+ // latin
+ "2": "ƻ",
+ "b": "ƀ",
+ "c": "ꞓ",
+ "d": "đ",
+ "f": "ꞙ",
+ "g": "ǥ",
+ "h": "ħ",
+ "i": "ɨ",
+ "j": "ɉ",
+ "k": "ꝁ",
+ "l": "ƚ",
+ "o": "ɵ",
+ "p": "ᵽ",
+ "q": "ꝗ",
+ "r": "ɍ",
+ "t": "ŧ",
+ "u": "ʉ",
+ "y": "ɏ",
+ "z": "ƶ",
+ // extended latin
+ "ȷ": "ɟ",
+ // cyrillic
+ "о": "ө",
+ "ӧ": "ӫ",
+ "ү": "ұ",
+ "ь": "ҍ",
+ "х": "ӿ"
+}
diff --git a/srcs/compose/accent_box.json b/srcs/compose/accent_box.json
new file mode 100644
index 0000000..fa71eca
--- /dev/null
+++ b/srcs/compose/accent_box.json
@@ -0,0 +1,13 @@
+{
+ "1": "└",
+ "2": "┴",
+ "3": "┘",
+ "4": "├",
+ "5": "┼",
+ "6": "┤",
+ "7": "┌",
+ "8": "┬",
+ "9": "┐",
+ "0": "─",
+ ".": "│"
+}
diff --git a/srcs/compose/accent_caron.json b/srcs/compose/accent_caron.json
new file mode 100644
index 0000000..2684cb3
--- /dev/null
+++ b/srcs/compose/accent_caron.json
@@ -0,0 +1,33 @@
+{
+ // latin
+ "a": "ǎ",
+ "c": "č",
+ "d": "ď",
+ "e": "ě",
+ "g": "ǧ",
+ "h": "ȟ",
+ "i": "ǐ",
+ "j": "ǰ", // no uppercase
+ "k": "ǩ",
+ "l": "ľ",
+ "n": "ň",
+ "o": "ǒ",
+ "r": "ř",
+ "s": "š",
+ "t": "ť",
+ "u": "ǔ",
+ "z": "ž",
+ // extended latin
+ "ṡ": "ṧ",
+ "ü": "ǚ",
+ "ʒ": "ǯ",
+ // combining character
+ "в": "в\u030C",
+ "г": "г\u030C",
+ "ғ": "ғ\u030C",
+ "д": "д\u030C",
+ "з": "з\u030C",
+ "р": "р\u030C",
+ "т": "т\u030C",
+ "х": "х\u030C"
+}
diff --git a/srcs/compose/accent_cedille.json b/srcs/compose/accent_cedille.json
new file mode 100644
index 0000000..f04768b
--- /dev/null
+++ b/srcs/compose/accent_cedille.json
@@ -0,0 +1,17 @@
+{
+ // latin
+ "c": "ç",
+ "d": "ḑ",
+ "e": "ȩ",
+ "g": "ģ",
+ "h": "ḩ",
+ "k": "ķ",
+ "l": "ļ",
+ "n": "ņ",
+ "r": "ŗ",
+ "s": "ş",
+ "t": "ţ",
+ // extended latin
+ "ć": "ḉ",
+ "ĕ": "ḝ"
+}
diff --git a/srcs/compose/accent_circonflexe.json b/srcs/compose/accent_circonflexe.json
new file mode 100644
index 0000000..a16d063
--- /dev/null
+++ b/srcs/compose/accent_circonflexe.json
@@ -0,0 +1,41 @@
+{
+ "+": "⨣",
+ "≈": "⩯",
+ // latin
+ "a": "â",
+ "c": "ĉ",
+ "e": "ê",
+ "g": "ĝ",
+ "h": "ĥ",
+ "i": "î",
+ "j": "ĵ",
+ "o": "ô",
+ "ŝ": "ŝ",
+ "u": "û",
+ "w": "ŵ",
+ "x": "x̂",
+ "y": "ŷ",
+ "z": "ẑ",
+ // extended latin
+ "á": "ấ",
+ "à": "ầ",
+ "ã": "ẫ",
+ "ạ": "ậ",
+ "ả": "ẩ",
+ "é": "ế",
+ "è": "ề",
+ "ẽ": "ễ",
+ "ẹ": "ệ",
+ "ẻ": "ể",
+ "ó": "ố",
+ "ò": "ồ",
+ "ơ": "ổ",
+ "õ": "ỗ",
+ "ọ": "ộ",
+ // combining characters
+ "а": "а\u0302",
+ "е": "е\u0302",
+ "и": "и\u0302",
+ "о": "о\u0302",
+ "у": "у\u0302"
+}
diff --git a/srcs/compose/accent_dot_above.json b/srcs/compose/accent_dot_above.json
new file mode 100644
index 0000000..182e293
--- /dev/null
+++ b/srcs/compose/accent_dot_above.json
@@ -0,0 +1,56 @@
+{
+ "a": "ȧ",
+ "b": "ḃ",
+ "c": "ċ",
+ "d": "ḋ",
+ "e": "ė",
+ "f": "ḟ",
+ "g": "ġ",
+ "h": "ḣ",
+ "m": "ṁ",
+ "n": "ṅ",
+ "o": "ȯ",
+ "p": "ṗ",
+ "r": "ṙ",
+ "s": "ṡ",
+ "t": "ṫ",
+ "w": "ẇ",
+ "x": "ẋ",
+ "y": "ẏ",
+ "z": "ż",
+ // remove dot since i and j already have one
+ "i": "ı",
+ "j": "ȷ",
+ // extended latin
+ "ā": "ǡ",
+ "ō": "ȱ",
+ "ś": "ṥ",
+ "ṣ": "ṩ",
+ "š": "ṧ",
+ "ſ": "ẛ",
+ // combining character
+ "k": "k\u0307",
+ "l": "l\u0307",
+ "q": "q\u0307",
+ "u": "u\u0307",
+ "v": "v\u0307",
+ "0": "0\u0307",
+ "1": "1\u0307",
+ "2": "2\u0307",
+ "3": "3\u0307",
+ "4": "4\u0307",
+ "5": "5\u0307",
+ "6": "6\u0307",
+ "7": "7\u0307",
+ "8": "8\u0307",
+ "9": "9\u0307",
+ // math
+ "∈": "⋵",
+ "⨯": "⨰",
+ "∧": "⩑",
+ "∨": "⩒",
+ "≡": "⩧",
+ "~": "⩪",
+ "⊆": "⫃",
+ "⊇": "⫄"
+}
diff --git a/srcs/compose/accent_dot_below.json b/srcs/compose/accent_dot_below.json
new file mode 100644
index 0000000..c0bcfd4
--- /dev/null
+++ b/srcs/compose/accent_dot_below.json
@@ -0,0 +1,34 @@
+{
+ // latin
+ "a": "ạ",
+ "b": "ḅ",
+ "d": "ḍ",
+ "e": "ẹ",
+ "h": "ḥ",
+ "i": "ị",
+ "k": "ḳ",
+ "l": "ḷ",
+ "m": "ṃ",
+ "n": "ṇ",
+ "o": "ọ",
+ "r": "ṛ",
+ "s": "ṣ",
+ "t": "ṭ",
+ "u": "ụ",
+ "v": "ṿ",
+ "w": "ẉ",
+ "y": "ỵ",
+ "z": "ẓ",
+ // extended latin
+ "ă": "ặ",
+ "â": "ậ",
+ "ê": "ệ",
+ "ô": "ộ",
+ "ơ": "ợ",
+ "ṡ": "ṩ",
+ "ư": "ự",
+ // math
+ "-": "⨪",
+ "+": "⨥",
+ "=": "⩦"
+}
diff --git a/srcs/compose/accent_double_aigu.json b/srcs/compose/accent_double_aigu.json
new file mode 100644
index 0000000..ad40497
--- /dev/null
+++ b/srcs/compose/accent_double_aigu.json
@@ -0,0 +1,14 @@
+{
+ " ": "˝",
+ // latin
+ "o": "ő",
+ "u": "ű",
+ // cyrillic
+ "у": "ӳ",
+ // combining character
+ "a": "a\u030b",
+ "e": "e\u030b",
+ "i": "i\u030b",
+ "m": "m\u030b",
+ "y": "y\u030b"
+}
diff --git a/srcs/compose/accent_double_grave.json b/srcs/compose/accent_double_grave.json
new file mode 100644
index 0000000..7fadd97
--- /dev/null
+++ b/srcs/compose/accent_double_grave.json
@@ -0,0 +1,17 @@
+{
+ // latin
+ "a": "ȁ",
+ "e": "ȅ",
+ "i": "ȉ",
+ "o": "ȍ",
+ "r": "ȑ",
+ "u": "ȕ",
+ //cyrillic
+ "ѵ": "ѷ",
+ "а": "а\u030f",
+ "е": "е\u030f",
+ "и": "и\u030f",
+ "о": "о\u030f",
+ "р": "р\u030f",
+ "у": "у\u030f"
+}
\ No newline at end of file
diff --git a/srcs/compose/accent_grave.json b/srcs/compose/accent_grave.json
new file mode 100644
index 0000000..16320a5
--- /dev/null
+++ b/srcs/compose/accent_grave.json
@@ -0,0 +1,38 @@
+{
+ // latin
+ "a": "à",
+ "e": "è",
+ "i": "ì",
+ "n": "ǹ",
+ "o": "ò",
+ "u": "ù",
+ "w": "ẁ",
+ "y": "ỳ",
+ // extended latin
+ "â": "ầ",
+ "ă": "ằ",
+ "ê": "ề",
+ "ē": "ḕ",
+ "ơ": "ờ",
+ "ô": "ồ",
+ "ō": "ṑ",
+ "ü": "ǜ",
+ "ư": "ừ",
+ // greek (technically not a grave, but a varia)
+ "α": "ὰ",
+ "ε": "ὲ",
+ "η": "ὴ",
+ "ι": "ὶ",
+ "ο": "ὸ",
+ "υ": "ὺ",
+ "ω": "ὼ",
+ // there is more like ἒ, ᾣ, etc
+ // cyrillic
+ "е": "ѐ",
+ "и": "ѝ",
+ // combining character
+ "ɔ": "ɔ\u0300",
+ "s": "s\u0300",
+ "ʌ": "ʌ\u0300",
+ "z": "z\u0300"
+}
diff --git a/srcs/compose/accent_hook_above.json b/srcs/compose/accent_hook_above.json
new file mode 100644
index 0000000..4954714
--- /dev/null
+++ b/srcs/compose/accent_hook_above.json
@@ -0,0 +1,14 @@
+{
+ "a": "ả",
+ "ă": "ẳ",
+ "â": "ẩ",
+ "e": "ẻ",
+ "ê": "ể",
+ "i": "ỉ",
+ "o": "ỏ",
+ "ô": "ổ",
+ "ơ": "ở",
+ "u": "ủ",
+ "ư": "ử",
+ "y": "ỷ"
+}
diff --git a/srcs/compose/accent_horn.json b/srcs/compose/accent_horn.json
new file mode 100644
index 0000000..c5e5d50
--- /dev/null
+++ b/srcs/compose/accent_horn.json
@@ -0,0 +1,14 @@
+{
+ "o": "ơ",
+ "ó": "ớ",
+ "ò": "ờ",
+ "ỏ": "ở",
+ "õ": "ỡ",
+ "ọ": "ợ",
+ "u": "ư",
+ "ú": "ứ",
+ "ù": "ừ",
+ "ủ": "ử",
+ "ũ": "ữ",
+ "ụ": "ự"
+}
diff --git a/srcs/compose/accent_macron.json b/srcs/compose/accent_macron.json
new file mode 100644
index 0000000..7224517
--- /dev/null
+++ b/srcs/compose/accent_macron.json
@@ -0,0 +1,35 @@
+{
+ // latin
+ "a": "ā",
+ "e": "ē",
+ "g": "ḡ",
+ "i": "ī",
+ "o": "ō",
+ "u": "ū",
+ "y": "ȳ",
+ // extended latin
+ "æ": "ǣ",
+ "ä": "ǟ",
+ "ȧ": "ǡ",
+ "è": "ḕ",
+ "é": "ḗ",
+ "ḷ": "ḹ",
+ "ṛ": "ṝ",
+ "ö": "ȫ",
+ "ȯ": "ȱ",
+ "ǫ": "ǭ",
+ "õ": "ȭ",
+ "ò": "ṑ",
+ "ó": "ṓ",
+ "ü": "ǖ", // there is also ṻ
+ // cyrillic
+ "и": "ӣ",
+ "у": "ӯ",
+ // greek
+ "α": "ᾱ",
+ "ι": "ῑ",
+ "υ": "ῡ",
+ // combining characters
+ "l": "l\u0304",
+ "r": "r\u0304"
+}
diff --git a/srcs/compose/accent_ogonek.json b/srcs/compose/accent_ogonek.json
new file mode 100644
index 0000000..4a7f8b6
--- /dev/null
+++ b/srcs/compose/accent_ogonek.json
@@ -0,0 +1,10 @@
+{
+ // latin
+ "a": "ą",
+ "e": "ę",
+ "i": "į",
+ "o": "ǫ",
+ "u": "ų",
+ // extended latin
+ "ō": "ǭ"
+}
diff --git a/srcs/compose/accent_ordinal.json b/srcs/compose/accent_ordinal.json
new file mode 100644
index 0000000..77007d1
--- /dev/null
+++ b/srcs/compose/accent_ordinal.json
@@ -0,0 +1,14 @@
+{
+ "a": "ª",
+ "o": "º",
+ "1": "ª",
+ "2": "º",
+ "3": "ⁿ",
+ "4": "ᵈ",
+ "5": "ᵉ",
+ "6": "ʳ",
+ "7": "ˢ",
+ "8": "ᵗ",
+ "9": "ʰ",
+ "*": "°"
+}
diff --git a/srcs/compose/accent_ring.json b/srcs/compose/accent_ring.json
new file mode 100644
index 0000000..ac6ed66
--- /dev/null
+++ b/srcs/compose/accent_ring.json
@@ -0,0 +1,11 @@
+{
+ // latin
+ "a": "å",
+ "u": "ů",
+ "w": "ẘ", // no uppercase
+ "y": "ẙ", // no uppercase
+ // extended latin
+ "á": "ǻ",
+ // extra
+ "~": "⸛"
+}
diff --git a/srcs/compose/accent_slash.json b/srcs/compose/accent_slash.json
new file mode 100644
index 0000000..5743935
--- /dev/null
+++ b/srcs/compose/accent_slash.json
@@ -0,0 +1,18 @@
+{
+ "a": "ⱥ",
+ "b": "␢",
+ "c": "ȼ",
+ "e": "ɇ",
+ "g": "ꞡ",
+ "k": "ꝃ",
+ "l": "ł",
+ "n": "ꞥ",
+ "o": "ø",
+ "ó": "ǿ",
+ "ɔ": "ꬿ",
+ "r": "ꞧ",
+ "s": "ꞩ",
+ "t": "ⱦ",
+ "u": "ꞹ",
+ "v": "ꝟ"
+}
diff --git a/srcs/compose/accent_subscript.json b/srcs/compose/accent_subscript.json
new file mode 100644
index 0000000..2cf2daf
--- /dev/null
+++ b/srcs/compose/accent_subscript.json
@@ -0,0 +1,45 @@
+{
+ // arabic numbers
+ "0": "₀",
+ "1": "₁",
+ "2": "₂",
+ "3": "₃",
+ "4": "₄",
+ "5": "₅",
+ "6": "₆",
+ "7": "₇",
+ "8": "₈",
+ "9": "₉",
+ // math operators
+ "+": "₊",
+ "-": "₋",
+ "=": "₌",
+ "(": "₍",
+ ")": "₎",
+ // latin
+ "a": "ₐ",
+ "e": "ₑ",
+ "h": "ₕ",
+ "i": "ᵢ",
+ "j": "ⱼ",
+ "k": "ₖ",
+ "l": "ₗ",
+ "m": "ₘ",
+ "n": "ₙ",
+ "o": "ₒ",
+ "p": "ₚ",
+ "r": "ᵣ",
+ "s": "ₛ",
+ "t": "ₜ",
+ "u": "ᵤ",
+ "v": "ᵥ",
+ "x": "ₓ",
+ // extended latin
+ "ə": "ₔ",
+ // greek
+ "β": "ᵦ",
+ "γ": "ᵧ",
+ "ρ": "ᵨ",
+ "φ": "ᵩ",
+ "χ": "ᵪ"
+}
diff --git a/srcs/compose/accent_superscript.json b/srcs/compose/accent_superscript.json
new file mode 100644
index 0000000..292815d
--- /dev/null
+++ b/srcs/compose/accent_superscript.json
@@ -0,0 +1,93 @@
+{
+ // numbers
+ "0": "⁰",
+ "1": "¹",
+ "2": "²",
+ "3": "³",
+ "4": "⁴",
+ "5": "⁵",
+ "6": "⁶",
+ "7": "⁷",
+ "8": "⁸",
+ "9": "⁹",
+ // math operators
+ "+": "⁺",
+ "-": "⁻",
+ "=": "⁼",
+ "(": "⁽",
+ ")": "⁾",
+ // latin
+ "n": "ⁿ",
+
+ // since there are no more "superscript" characters,
+ // we substitute with "modifier letter small"s which looks the same
+ // latin
+ "a": "ᵃ",
+ "b": "ᵇ",
+ "c": "ᶜ",
+ "d": "ᵈ",
+ "e": "ᵉ",
+ "f": "ᶠ",
+ "g": "ᵍ",
+ "h": "ʰ",
+ "i": "ⁱ",
+ "j": "ʲ",
+ "k": "ᵏ",
+ "l": "ˡ",
+ // see above for n
+ "m": "ᵐ",
+ "o": "ᵒ",
+ "p": "ᵖ",
+ "q": "ꟴ", // there is no proper lowercase superscript q
+ "r": "ʳ",
+ "s": "ˢ",
+ "t": "ᵗ",
+ "u": "ᵘ",
+ "v": "ᵛ",
+ "w": "ʷ",
+ "x": "ˣ",
+ "y": "ʸ",
+ "z": "ᶻ",
+ // extended latin
+ "ɐ": "ᵄ",
+ "ᴂ": "ᵆ",
+ "ɕ": "ᶝ",
+ "ə": "ᵊ",
+ "ɛ": "ᵋ",
+ "ɜ": "ᶟ", // turned open e, ↓ not the same
+ "ᴈ": "ᵌ", // reversed open e
+ "ɥ": "ᶣ",
+ "ɦ": "ʱ",
+ "ᴉ": "ᵎ",
+ "ɨ": "ᶤ",
+ "ɟ": "ᶡ",
+ "ɱ": "ᶬ",
+ "ɯ": "ᵚ",
+ "ɰ": "ᶭ",
+ "ŋ": "ᵑ",
+ "ᴝ": "ᵙ",
+ "ɵ": "ᶱ",
+ "œ": "ꟹ",
+ "ɔ": "ᵓ",
+ "ɹ": "ʴ",
+ "ɻ": "ʵ",
+ "ʁ": "ʶ",
+ "ʂ": "ᶳ",
+ "ʉ": "ᶶ",
+ "ʃ": "ᶴ",
+ "ʒ": "ᶾ",
+ "ʍ": "ꭩ",
+ // greek
+ "ɒ": "ᶛ",
+ "β": "ᵝ",
+ "ɣ": "ˠ",
+ "δ": "ᵟ",
+ "φ": "ᵠ",
+ "χ": "ᵡ",
+ "ι": "ᶥ",
+ "ʊ": "ᶷ",
+ "ʌ": "ᶺ",
+ "θ": "ᶿ",
+ // cyrillic
+ "ө": "ᶱ"
+}
diff --git a/srcs/compose/accent_tilde.json b/srcs/compose/accent_tilde.json
new file mode 100644
index 0000000..7939068
--- /dev/null
+++ b/srcs/compose/accent_tilde.json
@@ -0,0 +1,21 @@
+{
+ // latin
+ "a": "ã",
+ "e": "ẽ",
+ "i": "ĩ",
+ "n": "ñ",
+ "o": "õ",
+ "u": "ũ",
+ "v": "ṽ",
+ "y": "ỹ",
+ // extended latin
+ "ă": "ẵ",
+ "â": "ẫ",
+ "ê": "ễ",
+ "ơ": "ỡ",
+ "ō": "ȭ",
+ "ó": "ṍ",
+ "ö": "ṏ",
+ "ư": "ữ",
+ "ú": "ṹ"
+}
diff --git a/srcs/compose/accent_trema.json b/srcs/compose/accent_trema.json
new file mode 100644
index 0000000..dc9c5f8
--- /dev/null
+++ b/srcs/compose/accent_trema.json
@@ -0,0 +1,54 @@
+{
+ // fun
+ "~": "⍨",
+ "*": "⍣",
+ "∇": "⍢",
+ "°": "⍤",
+ // latin
+ "a": "ä",
+ "e": "ë",
+ "h": "ḧ",
+ "i": "ï",
+ "o": "ö",
+ "t": "ẗ",
+ "u": "ü",
+ "w": "ẅ",
+ "x": "ẍ",
+ "y": "ÿ",
+ // extended latin
+ "ā": "ǟ",
+ "ō": "ȫ",
+ "õ": "ṏ",
+ "í": "ḯ",
+ "ū": "ǖ", // there is also ṻ
+ "ú": "ǘ",
+ "ù": "ǜ",
+ "ǔ": "ǚ",
+ // greek
+ "ι": "ϊ",
+ "υ": "ϋ",
+ "ὺ": "ῢ",
+ "ύ": "ΰ",
+ "ῦ": "ῧ",
+ "ϒ": "ϔ",
+ // cyrillic
+ "а": "ӓ",
+ "ә": "ӛ",
+ "ж": "ӝ",
+ "з": "ӟ",
+ "и": "ӥ",
+ "о": "ӧ",
+ "ө": "ӫ",
+ "э": "ӭ",
+ "у": "ӱ",
+ "ч": "ӵ",
+ "ы": "ӹ",
+ // combining character
+ "c": "c\u0308",
+ "j": "j\u0308",
+ "k": "k\u0308",
+ "l": "l\u0308",
+ "m": "m\u0308",
+ "n": "n\u0308",
+ "s": "s\u0308"
+}
diff --git a/srcs/compose/compile.py b/srcs/compose/compile.py
new file mode 100644
index 0000000..69d22ad
--- /dev/null
+++ b/srcs/compose/compile.py
@@ -0,0 +1,339 @@
+import textwrap, sys, re, string, json, os, string
+from array import array
+
+# Compile compose sequences from Xorg's format or from JSON files into an
+# efficient state machine.
+# See [ComposeKey.java] for the interpreter.
+#
+# Takes input files as arguments and generate a Java file.
+# The initial state for each input is generated as a constant named after the
+# input file.
+
+# Parse symbol names from keysymdef.h. Many compose sequences in
+# en_US_UTF_8_Compose.pre reference theses. For example, all the sequences on
+# the Greek, Cyrillic and Hebrew scripts need these symbols.
+def parse_keysymdef_h(fname):
+ with open(fname, "r") as inp:
+ keysym_re = re.compile(r'^#define XK_(\S+)\s+\S+\s*/\*.U\+([0-9a-fA-F]+)\s')
+ for line in inp:
+ m = re.match(keysym_re, line)
+ if m != None:
+ yield (m.group(1), chr(int(m.group(2), 16)))
+
+dropped_sequences = 0
+warning_count = 0
+
+# [s] is a list of strings
+def seq_to_str(s, result=None):
+ msg = "+".join(s)
+ return msg if result is None else msg + " = " + result
+
+# Print a warning. If [seq] is passed, it is prepended to the message.
+def warn(msg, seq=None, result=None):
+ global warning_count
+ if seq is not None:
+ msg = f"Sequence {seq_to_str(seq, result=result)} {msg}"
+ print(f"Warning: {msg}", file=sys.stderr)
+ warning_count += 1
+
+# Parse XKB's Compose.pre files
+def parse_sequences_file_xkb(fname, xkb_char_extra_names):
+ # Parse a line of the form:
+ # : "~" asciitilde # TILDE
+ # Sequences not starting with are ignored.
+ line_re = re.compile(r'^((?:\s*<[^>]+>)+)\s*:\s*"((?:[^"\\]+|\\.)+)"\s*(\S+)?\s*(?:#.+)?$')
+ char_re = re.compile(r'\s*<(?:U([a-fA-F0-9]{4,6})|([^>]+))>')
+ def parse_seq_line(line):
+ global dropped_sequences
+ prefix = ""
+ if not line.startswith(prefix):
+ return None
+ m = re.match(line_re, line[len(prefix):])
+ if m == None:
+ return None
+ def_ = m.group(1)
+ try:
+ def_ = parse_seq_chars(def_)
+ result = parse_seq_result(m.group(2))
+ except Exception as e:
+ # print(str(e) + ". Sequence dropped: " + line.strip(), file=sys.stderr)
+ dropped_sequences += 1
+ return None
+ return def_, result
+ char_names = { **xkb_char_extra_names }
+ # Interpret character names of the form "U0000" or using [char_names].
+ def parse_seq_char(sc):
+ uchar, named_char = sc
+ if uchar != "":
+ c = chr(int(uchar, 16))
+ elif len(named_char) == 1:
+ c = named_char
+ else:
+ if not named_char in char_names:
+ raise Exception("Unknown char: " + named_char)
+ c = char_names[named_char]
+ # The state machine can't represent sequence characters that do not fit
+ # in a 16-bit char.
+ if len(c) > 1 or ord(c[0]) > 65535:
+ raise Exception("Char out of range: " + r)
+ return c
+ # Interpret the left hand side of a sequence.
+ def parse_seq_chars(def_):
+ return list(map(parse_seq_char, re.findall(char_re, def_)))
+ # Interpret the result of a sequence, as outputed by [line_re].
+ def parse_seq_result(r):
+ if len(r) == 2 and r[0] == '\\':
+ return r[1]
+ return r
+ # Populate [char_names] with the information present in the file.
+ with open(fname, "r") as inp:
+ for line in inp:
+ m = re.match(line_re, line)
+ if m == None or m.group(3) == None:
+ continue
+ try:
+ char_names[m.group(3)] = parse_seq_result(m.group(2))
+ except Exception:
+ pass
+ # Parse the sequences
+ with open(fname, "r") as inp:
+ seqs = []
+ for line in inp:
+ s = parse_seq_line(line)
+ if s != None:
+ seqs.append(s)
+ return seqs
+
+# Basic support for comments in json files. Reads a file
+def strip_cstyle_comments(inp):
+ def strip_line(line):
+ i = line.find("//")
+ return line[:i] + "\n" if i >= 0 else line
+ return "".join(map(strip_line, inp))
+
+# Parse from a json file containing a dictionary sequence → result string.
+def parse_sequences_file_json(fname):
+ def tree_to_seqs(tree, prefix):
+ for c, r in tree.items():
+ if isinstance(r, str):
+ yield prefix + [c], r
+ else:
+ yield from tree_to_seqs(r, prefix + [c])
+ try:
+ with open(fname, "r") as inp:
+ tree = json.loads(strip_cstyle_comments(inp))
+ return list(tree_to_seqs(tree, []))
+ except Exception as e:
+ warn("Failed parsing '%s': %s" % (fname, str(e)))
+
+# Format of the sequences file is determined by its extension
+def parse_sequences_file(fname, xkb_char_extra_names={}):
+ if fname.endswith(".pre"):
+ return parse_sequences_file_xkb(fname, xkb_char_extra_names)
+ if fname.endswith(".json"):
+ return parse_sequences_file_json(fname)
+ raise Exception(fname + ": Unsupported format")
+
+# A sequence directory can contain several sequence files as well as
+# 'keysymdef.h'.
+def parse_sequences_dir(dname):
+ compose_files = []
+ xkb_char_extra_names = {}
+ # Parse keysymdef.h first if present
+ for fbasename in os.listdir(dname):
+ fname = os.path.join(dname, fbasename)
+ if fbasename == "keysymdef.h":
+ xkb_char_extra_names = dict(parse_keysymdef_h(fname))
+ else:
+ compose_files.append(fname)
+ sequences = []
+ for fname in compose_files:
+ sequences.extend(parse_sequences_file(fname, xkb_char_extra_names))
+ return sequences
+
+# Turn a list of sequences into a trie.
+def add_sequences_to_trie(seqs, trie):
+ global dropped_sequences
+ def add_seq_to_trie(seq, result):
+ t_ = trie
+ for c in seq[:-1]:
+ t_ = t_.setdefault(c, {})
+ if isinstance(t_, str):
+ return False
+ c = seq[-1]
+ if c in t_:
+ return False
+ t_[c] = result
+ return True
+ def existing_sequence_to_str(seq): # Used in error message
+ i = 0
+ t_ = trie
+ while i < len(seq):
+ if seq[i] not in t_: break # No collision ?
+ t_ = t_[seq[i]]
+ i += 1
+ if isinstance(t_, str): break
+ return "".join(seq[:i]) + " = " + str(t_)
+ for seq, result in seqs:
+ if not add_seq_to_trie(seq, result):
+ dropped_sequences += 1
+ warn("Sequence collide: '%s' and '%s = %s'" % (
+ existing_sequence_to_str(seq),
+ "".join(seq), result))
+
+# Compile the trie into a state machine.
+def make_automata(tries):
+ previous_leafs = {} # Deduplicate leafs
+ states = []
+ def add_tree(t):
+ this_node_index = len(states)
+ # Index and size of the new node
+ i = len(states)
+ s = len(t.keys())
+ # Add node header
+ states.append(("\0", s + 1))
+ i += 1
+ # Reserve space for the current node in both arrays
+ for c in range(s):
+ states.append((None, None))
+ # Add nested nodes and fill the current node
+ for c in sorted(t.keys()):
+ states[i] = (c, add_node(t[c]))
+ i += 1
+ return this_node_index
+ def add_leaf(c):
+ if c in previous_leafs:
+ return previous_leafs[c]
+ this_node_index = len(states)
+ previous_leafs[c] = this_node_index
+ # There are two encoding for leafs: character final state for 15-bit
+ # characters and string final state for the rest.
+ if len(c) > 1 or ord(c[0]) > 32767: # String final state
+ # A ':' can be added to the result of a sequence to force a string
+ # final state. For example, to go through KeyValue lookup.
+ if c.startswith(":"): c = c[1:]
+ javachars = array('H', c.encode("UTF-16-LE"))
+ states.append((-1, len(javachars) + 1))
+ for c in javachars:
+ states.append((c, 0))
+ else: # Character final state
+ states.append((c, 1))
+ return this_node_index
+ def add_node(n):
+ if type(n) == str:
+ return add_leaf(n)
+ else:
+ return add_tree(n)
+ states.append((1, 1)) # Add an empty state at the beginning.
+ entry_states = { n: add_tree(root) for n, root in tries.items() }
+ return entry_states, states
+
+# Debug
+def print_automata(automata):
+ i = 0
+ for (s, e) in automata:
+ s = "%#06x" % s if isinstance(s, int) else '"%s"' % str(s)
+ print("%3d %8s %d" % (i, s, e), file=sys.stderr)
+ i += 1
+
+# Report warnings about the compose sequences
+def check_for_warnings(tries):
+ def get(seq):
+ t = tries
+ for c in seq:
+ if c not in t:
+ return None
+ t = t[c]
+ return t if type(t) == str else None
+ # Check that compose+Upper+Upper have an equivalent compose+Upper+Lower or compose+Lower+Lower
+ for c1 in string.ascii_uppercase:
+ for c2 in string.ascii_uppercase:
+ seq = [c1, c2]
+ seq_l = [c1, c2.lower()]
+ seq_ll = [c1.lower(), c2.lower()]
+ r = get(seq)
+ r_l = get(seq_l)
+ r_ll = get(seq_ll)
+ if r is not None:
+ ll_warning = f" (but {seq_to_str(seq_ll)} = {r_ll} exists)" if r_ll is not None else ""
+ if r_l is None:
+ if r != r_ll:
+ warn(f"has no lower case equivalent {seq_to_str(seq_l)}{ll_warning}", seq=seq, result=r)
+ elif r != r_l:
+ warn(f"is not the same as {seq_to_str(seq_l)} = {r_l}{ll_warning}", seq=seq, result=r)
+
+def batched(ar, n):
+ i = 0
+ while i + n < len(ar):
+ yield ar[i:i+n]
+ i += n
+ if i < len(ar):
+ yield ar[i:]
+
+# Print the state machine compiled by make_automata into java code that can be
+# used by [ComposeKeyData.java].
+def gen_java(entry_states, machine):
+ chars_map = {
+ # These characters cannot be used in unicode form as Java's parser
+ # unescape unicode sequences before parsing.
+ -1: "\\uFFFF",
+ "\"": "\\\"",
+ "\\": "\\\\",
+ "\n": "\\n",
+ "\r": "\\r",
+ ord("\""): "\\\"",
+ ord("\\"): "\\\\",
+ ord("\n"): "\\n",
+ ord("\r"): "\\r",
+ }
+ def char_repr(c):
+ if c in chars_map:
+ return chars_map[c]
+ if type(c) == int: # The edges array contains ints
+ return "\\u%04x" % c
+ if c in string.printable:
+ return c
+ return "\\u%04x" % ord(c)
+ def gen_array(array):
+ chars = list(map(char_repr, array))
+ return "\" +\n \"".join(map(lambda b: "".join(b), batched(chars, 72)))
+ def gen_entry_state(s):
+ name, state = s
+ return " public static final int %s = %d;" % (name, state)
+ print("""package juloo.keyboard2;
+
+/** This file is generated, see [srcs/compose/compile.py]. */
+
+public final class ComposeKeyData
+{
+ public static final char[] states =
+ ("%s").toCharArray();
+
+ public static final char[] edges =
+ ("%s").toCharArray();
+
+%s
+}""" % (
+ # Break the edges array every few characters using string concatenation.
+ gen_array(map(lambda s: s[0], machine)),
+ gen_array(map(lambda s: s[1], machine)),
+ "\n".join(map(gen_entry_state, entry_states.items())),
+))
+
+total_sequences = 0
+tries = {} # Orderred dict
+for fname in sorted(sys.argv[1:]):
+ tname, _ = os.path.splitext(os.path.basename(fname))
+ if os.path.isdir(fname):
+ sequences = parse_sequences_dir(fname)
+ else:
+ sequences = parse_sequences_file(fname)
+ add_sequences_to_trie(sequences, tries.setdefault(tname, {}))
+ total_sequences += len(sequences)
+
+check_for_warnings(tries["compose"])
+entry_states, automata = make_automata(tries)
+gen_java(entry_states, automata)
+
+print("Compiled %d sequences into %d states. Dropped %d sequences. Generated %d warnings." % (total_sequences, len(automata), dropped_sequences, warning_count), file=sys.stderr)
+# print_automata(automata)
diff --git a/srcs/compose/compose/arabic.json b/srcs/compose/compose/arabic.json
new file mode 100644
index 0000000..20edfea
--- /dev/null
+++ b/srcs/compose/compose/arabic.json
@@ -0,0 +1,149 @@
+{
+ "ا": {
+ "ا": "combining_alef_above",
+ "ع": "أ",
+ "و": "ۉ",
+ "ي": "ؽ",
+ "ی": "ؽ",
+ "۷": "combining_alef_below",
+ "٧": "combining_alef_below"
+ },
+ "ت": {
+ "د": "ط",
+ "ر": "ڑ",
+ "ش": "ث",
+ "ن": "ٹ"
+ },
+ "ج": {
+ "ش": "چ"
+ },
+ "ح": {
+ "ح": "combining_sukun"
+ },
+ "د": {
+ "ت": "ڈ",
+ "ز": "ذ",
+ "ت": "ڑ",
+ "۷": "ڕ"
+ },
+ "س": {
+ "ش": "ص"
+ },
+ "ش": {
+ "ت": "ث"
+ },
+ "ع": {
+ "ا": "إ",
+ "ه": "ۀ",
+ "و": "ؤ",
+ "ي": "ئ",
+ "ی": "ئ",
+ "۷": "combining_hamza_below",
+ "۸": "combining_hamza_above",
+ "٧": "combining_hamza_below",
+ "٨": "combining_hamza_above"
+ },
+ "غ": {
+ "ك": "گ",
+ "ک": "گ"
+ },
+ "ف": {
+ "و": "ڡ"
+ },
+ "ق": {
+ "و": "ۊ"
+ },
+ "ل": {
+ "ل": "combining_shaddah",
+ "۷": "ڵ",
+ "٧": "ڵ"
+ },
+ "ن": {
+ "ت": "ٹ",
+ "ه": "combining_fathatan",
+ "و": "combining_dammatan",
+ "ی": "combining_kasratan",
+ "ي": "combining_kasratan"
+ },
+ "ه": {
+ " ": "ە",
+ "ت": "ة",
+ "ع": "ۀ",
+ "ن": "combining_fathatan",
+ "ه": "combining_fatha",
+ "و": "ۆ",
+ "ي": "ێ",
+ "ی": "ێ"
+ },
+ "و": {
+ "ث": "ۋ",
+ "ع": "ؤ",
+ "ف": "ڡ",
+ "ن": "combining_dammatan",
+ "و": "combining_dammah",
+ "۷": "ۆ",
+ "۸": "ۉ",
+ "۸": "ۉ",
+ "٧": "ۆ",
+ "٨": "ۉ",
+ "٨": "ۉ"
+ },
+ "ي": {
+ " ": "ے",
+ "ا": "ى",
+ "ع": "ئ",
+ "ي": "combining_kasra",
+ "۷": "ێ",
+ "۸": "ؽ",
+ "ن": "combining_kasratan",
+ "٧": "ێ",
+ "٨": "ؽ"
+ },
+ "ی": {
+ " ": "ے",
+ "ا": "ى",
+ "ع": "ئ",
+ "ن": "combining_kasratan",
+ "ی": "combining_kasra",
+ "۷": "ێ",
+ "۸": "ؽ",
+ "٧": "ێ",
+ "٨": "ؽ"
+ },
+ "۷": {
+ "ا": "combining_alef_below",
+ "ر": "ڕ",
+ "ع": "combining_hamza_below",
+ "ل": "ڵ",
+ "و": "ۆ",
+ "ي": "ێ",
+ "ی": "ێ",
+ "۷": "combining_arabic_v"
+ },
+ "۸": {
+ "ع": "combining_hamza_above",
+ "و": "ۉ",
+ "و": "ۉ",
+ "ي": "ؽ",
+ "ی": "ؽ",
+ "۸": "combining_arabic_inverted_v"
+ },
+ "٧": {
+ "ا": "combining_alef_below",
+ "ر": "ڕ",
+ "ع": "combining_hamza_below",
+ "ل": "ڵ",
+ "و": "ۆ",
+ "ي": "ێ",
+ "٧": "combining_arabic_v",
+ "ی": "ێ"
+ },
+ "٨": {
+ "ع": "combining_hamza_above",
+ "و": "ۉ",
+ "و": "ۉ",
+ "ي": "ؽ",
+ "٨": "combining_arabic_inverted_v",
+ "ی": "ؽ"
+ }
+}
diff --git a/srcs/compose/compose/cyrillic.json b/srcs/compose/compose/cyrillic.json
new file mode 100644
index 0000000..6a349aa
--- /dev/null
+++ b/srcs/compose/compose/cyrillic.json
@@ -0,0 +1,165 @@
+{
+ ",": {
+ "г": "ӻ",
+ "к": "ӄ",
+ "л": "ԓ",
+ "н": "ӈ",
+ "х": "ӽ",
+ "ѧ": "ӊ"
+ },
+ ".": {
+ "г": "ӷ",
+ "ж": "җ",
+ "й": "ҋ",
+ "к": "қ",
+ "л": "ԯ",
+ "м": "ӎ",
+ "н": "ӊ",
+ "х": "ҳ",
+ "ч": "ҷ",
+ "і": "ї"
+ },
+ "а": {
+ "е": "ѣ",
+ "у": "ѡ",
+ "ч": "combining_aigu",
+ "ы": "ѣ",
+ "ь": "ꙙ",
+ "ꙋ": "ꙍ",
+ "ꙑ": "ѣ"
+ },
+ "б": {
+ "ч": "combining_slavonic_psili"
+ },
+ "г": {
+ ",": "ӻ",
+ ".": "ӷ",
+ "й": "ғ",
+ "к": "ґ",
+ "х": "ҁ",
+ "ј": "ғ"
+ },
+ "д": {
+ "е": "ꙉ",
+ "ж": "џ",
+ "з": "ꙃ",
+ "й": "ꙉ",
+ "ј": "ꙉ",
+ "ѥ": "ђ"
+ },
+ "е": {
+ "ч": "combining_trema"
+ },
+ "ж": {
+ ".": "җ"
+ },
+ "з": {
+ "ф": "ҙ"
+ },
+ "и": {
+ "и": "ӣ",
+ "у": "ѵ"
+ },
+ "й": {
+ ".": "ҋ",
+ "ч": "combining_breve"
+ },
+ "к": {
+ ",": "ӄ",
+ ".": "қ",
+ "г": "ґ",
+ "с": "ѯ",
+ "х": "ҁ",
+ "ш": "ѯ"
+ },
+ "л": {
+ ",": "ԓ",
+ ".": "ԯ",
+ "ь": "љ"
+ },
+ "м": {
+ ".": "ӎ"
+ },
+ "н": {
+ ",": "ӈ",
+ "·": "ԩ",
+ "ч": "combining_titlo",
+ "ь": "њ"
+ },
+ "о": {
+ "т": "ѿ",
+ "у": "ѹ",
+ "ч": "combining_inverted_breve"
+ },
+ "п": {
+ "с": "ѱ"
+ },
+ "т": {
+ "й": "ћ",
+ "ф": "ѳ",
+ "ј": "ћ"
+ },
+ "у": {
+ "и": "ѵ",
+ "й": "ў",
+ "у": "ӯ",
+ "ч": "combining_pokrytie",
+ "і": "ѵ",
+ "ј": "ў"
+ },
+ "х": {
+ ",": "ӽ",
+ ".": "ҳ",
+ "ч": "combining_slavonic_dasia"
+ },
+ "ч": {
+ ".": "ҷ",
+ "а": "combining_aigu",
+ "б": "combining_slavonic_psili",
+ "е": "combining_trema",
+ "й": "combining_breve",
+ "н": "combining_titlo",
+ "о": "combining_inverted_breve",
+ "у": "combining_pokrytie",
+ "х": "combining_slavonic_dasia",
+ "ч": "combining_payerok",
+ "ч": "combining_payerok",
+ "ъ": "combining_vertical_tilde",
+ "ю": "combining_grave",
+ "ј": "combining_breve",
+ "ѧ": "combining_vzmet"
+ },
+ "ш": {
+ "т": "щ"
+ },
+ "ъ": {
+ "ч": "combining_vertical_tilde"
+ },
+ "ю": {
+ "а": "ꙓ",
+ "е": "ё",
+ "м": "ѭ",
+ "н": "ѩ",
+ "ч": "combining_grave"
+ },
+ "я": {
+ "ь": "ꙝ"
+ },
+ "і": {
+ "\"": "ї",
+ ".": "ї",
+ "у": "ѵ",
+ "і": "ӣ"
+ },
+ "ј": {
+ "а": "ꙗ",
+ "ч": "combining_breve",
+ "ѣ": "ꙝ"
+ },
+ "ѡ": {
+ "т": "ѿ"
+ },
+ "ѧ": {
+ "ч": "combining_vzmet"
+ }
+}
diff --git a/srcs/compose/compose/en_US_UTF_8_Compose.pre b/srcs/compose/compose/en_US_UTF_8_Compose.pre
new file mode 100644
index 0000000..484d6d2
--- /dev/null
+++ b/srcs/compose/compose/en_US_UTF_8_Compose.pre
@@ -0,0 +1,5249 @@
+XCOMM UTF-8 (Unicode) Compose sequences
+XCOMM
+/* Originally by . */
+
+XCOMM Spacing versions of accents (mostly)
+ : "~" asciitilde # TILDE
+ : "~" asciitilde # TILDE
+ : "~" asciitilde # TILDE
+ : "~" asciitilde # TILDE
+ : "'" apostrophe # APOSTROPHE
+ : "´" acute # ACUTE ACCENT
+ : "´" acute # ACUTE ACCENT
+ : "`" grave # GRAVE ACCENT
+ : "`" grave # GRAVE ACCENT
+ : "^" asciicircum # CIRCUMFLEX ACCENT
+ : "^" asciicircum # CIRCUMFLEX ACCENT
+ : "^" asciicircum # CIRCUMFLEX ACCENT
+ : "^" asciicircum # CIRCUMFLEX ACCENT
+ : "°" degree # DEGREE SIGN
+ : "°" degree # DEGREE SIGN
+ : "°" degree # DEGREE SIGN
+ <0> : "°" degree # DEGREE SIGN
+ <0> : "°" degree # DEGREE SIGN
+ : "¯" macron # MACRON
+ : "¯" macron # MACRON
+ : "¯" macron # MACRON
+ : "¯" macron # MACRON
+ : "¯" macron # MACRON
+ : "¯" macron # MACRON
+ : "¯" macron # MACRON
+ : "˘" breve # BREVE
+ : "˘" breve # BREVE
+ : "˘" breve # BREVE
+ : "˘" breve # BREVE
+ : "˙" abovedot # DOT ABOVE
+ : "˙" abovedot # DOT ABOVE
+ : "˙" abovedot # DOT ABOVE
+ : "¨" diaeresis # DIAERESIS
+ : "¨" diaeresis # DIAERESIS
+ : "¨" diaeresis # DIAERESIS
+ : "\"" quotedbl # QUOTATION MARK
+ : "˝" U2dd # DOUBLE ACUTE ACCENT
+ : "˝" U2dd # DOUBLE ACUTE ACCENT
+ : "ˇ" caron # CARON
+ : "ˇ" caron # CARON
+ : "ˇ" caron # CARON
+ : "ˇ" caron # CARON
+ : "¸" cedilla # CEDILLA
+ : "¸" cedilla # CEDILLA
+ : "¸" cedilla # CEDILLA
+ : "¸" cedilla # CEDILLA
+ : "¸" cedilla # CEDILLA
+ : "˛" ogonek # OGONEK
+ : "˛" ogonek # OGONEK
+ : "˛" ogonek # OGONEK
+ : "ͺ" U37a # GREEK YPOGEGRAMMENI
+ : "ͺ" U37a # GREEK YPOGEGRAMMENI
+
+XCOMM ASCII characters that may be difficult to access on some keyboards.
+ : "#" numbersign # NUMBER SIGN
+ : "@" at # COMMERCIAL AT
+
+ : "[" bracketleft # LEFT SQUARE BRACKET
+ : "]" bracketright # RIGHT SQUARE BRACKET
+
+ : "\\" backslash # REVERSE SOLIDUS
+ : "\\" backslash # REVERSE SOLIDUS
+
+ : "{" braceleft # LEFT CURLY BRACKET
+ : "{" braceleft # LEFT CURLY BRACKET
+ : "}" braceright # RIGHT CURLY BRACKET
+ : "}" braceright # RIGHT CURLY BRACKET
+
+ : "|" bar # VERTICAL LINE
+ : "|" bar # VERTICAL LINE
+ : "|" bar # VERTICAL LINE
+ : "|" bar # VERTICAL LINE
+ : "|" bar # VERTICAL LINE
+ : "|" bar # VERTICAL LINE
+
+ : "<" less # LESS-THAN
+ : "<" less # LESS-THAN
+ : ">" greater # GREATER-THAN
+ : ">" greater # GREATER-THAN
+
+XCOMM Two special spaces
+ : " " nobreakspace # NO-BREAK SPACE
+ : " " U2008 # PUNCTUATION SPACE
+
+ : "©" copyright # COPYRIGHT SIGN
+ : "©" copyright # COPYRIGHT SIGN
+ : "©" copyright # COPYRIGHT SIGN
+
+ : "®" registered # REGISTERED SIGN
+ : "®" registered # REGISTERED SIGN
+ : "®" registered # REGISTERED SIGN
+
+ : "🄯" U1F12F # COPYLEFT SYMBOL
+
+XCOMM Special punctuation
+ : "…" ellipsis # HORIZONTAL ELLIPSIS
+ : "·" periodcentered # MIDDLE DOT
+ : "·" periodcentered # MIDDLE DOT
+ : "·" periodcentered # MIDDLE DOT
+ : "·" periodcentered # MIDDLE DOT
+ : "•" enfilledcircbullet # BULLET
+ : "¦" brokenbar # BROKEN BAR
+