abouttreesummaryrefslogcommitdiff
path: root/res
AgeCommit message (Collapse)AuthorFilesLines
2023-07-29Refactor: Split out ListGroupPreferenceJules Aguillon5-5/+10
Split out the implementation of a string-list preference from CustomExtraKeysPreference. Allows to share the implementation with future preferences.
2023-07-29Add dagger, double dagger, section mark, and pilcrow as extra keys on ↵Ben Slusky18-30/+30
QWERTY-like layouts (#410) * Add section mark as an extra key in QWERTY-like layouts that don't have it already * Add dagger (also double dagger) as an extra key in QWERTY-like layouts
2023-07-29Add '=' to pin entry layoutJules Aguillon1-1/+1
Might be useful in spreadsheets.
2023-07-29Add option to disable pin entry layoutJules Aguillon17-0/+33
The pin entry layout might be inferior for some usecases and people might be more used to the numeric layout.
2023-07-23Correct Kurdish layout name (#407)KuRa KuRd2-2/+2
Correct layout name to Kurdish because Kurdish and Arabic are totally two different language.
2023-07-20Updated Spanish translation (#404)adu1-50/+50
2023-07-19Add custom extra keys preferenceJules Aguillon21-0/+30
This is a new section in the extra keys option that allows to enter arbitrary strings which are then added to the keyboard. A new string is needed for the title of the section, Android's icons and strings are used as much as possible to avoid adding more strings. Keys are stored in the preferences as a JSON array of strings.
2023-07-19Refactor: Use a PreferenceCategory for extra keysJules Aguillon18-6/+17
This removes the need for a layout definition and adds a title before the prefs. It's a prerequise for the custom keys preference.
2023-07-17Improve the Persian layout (#397)Reza Hosseinzadeh1-21/+20
Change some characters' position
2023-07-09Refactor: Don't define extra keys in xmlJules Aguillon2-36/+6
The current approach is hard to maintain, for example the last key "autofill" was not displayed. This implements a PreferenceGroup that contains the check boxes for every extra keys without involving listing the preferences in settings.xml. A custom layout is used to remove the 'title' text view. The list of extra keys is moved into the new class. 'ExtraKeyCheckBoxPreference' becomes a nested class.
2023-07-09Add symbol ₴ to Fn+h and to UkrainianJules Aguillon1-1/+1
2023-07-02Updated/Added Czech translation + 2 common Fn keys (#387)Validbit1-40/+40
2023-07-01New default Czech layout (#380)frimdo3-28/+68
The previous default layout is renamed `latn_qwertz_cz_multifunctional`.
2023-07-01Add extra keys to NorwegianJules Aguillon2-4/+4
The added keys are also placed on the Dvorak layout.
2023-06-25Use generated arrays in Config.layout_of_stringJules Aguillon1-0/+40
This function is no longer an hardcoded list of layout ids. It's replaced by a linear scan of the previously generated array and a new corresponding array of resource ids.
2023-06-25Generate layouts arrays used in settingsJules Aguillon38-116/+120
`gen_layouts.py` lists the layouts in `res/xml` and generate the `pref_layout_values` and `pref_layout_entries` arrays into `res/values/layouts.xml`. These arrays are hard to maintain as the order has to match, which is fragile. This relies on every layouts having a `name` attribute.
2023-06-25Standard layout names (#386)Jules Aguillon38-93/+104
The names are comprised of: script, layout name, country code. Co-authored-by: grim <verdastelo9604@hotmail.com>
2023-06-25Added Romanian layout and translations with special romanian characters (#358)Vasile Chelban4-0/+125
Added Romanian characters to the keyboard layout and changed the positioning corner for the secondary characters that were conflicting with the newly-introduced romanian characters Added Romanian translations
2023-06-25Add Bengali Provat Layout (#357)Sabbir3-2/+41
* Add Bengali Provat Layout I added bengali_provat layout and renamed old bengali to actual layout name.
2023-06-24Specify the script of every layouts and localesJules Aguillon34-65/+65
This new information will avoid showing é on a cyrillic layout and ґ on a latin layout.
2023-06-22Add ə to the extra keys for ItalianJules Aguillon1-1/+1
2023-06-07Update translations of Simplified Chinese (#377)six-61-28/+28
2023-06-04Add Kurdish Layout (#353)KuRa KuRd2-0/+41
Add Kurdish Keyboard Layout Qwerty Based Without Shift.
2023-06-03Updated pl (Polish) translation (#374)Chasm Solacer1-6/+6
2023-06-03Refactor: Remove dimens used as option defaultsJules Aguillon2-6/+0
The conversion into px was done twice, leading to wrong values.
2023-06-03Fix escaping in values-fr/strings.xmlJules Aguillon1-1/+1
2023-06-03Update fr translationsJules Aguillon1-11/+11
2023-06-03Add Voice Typing keyJules Aguillon1-1/+1
The new key switches to any installed "voice" input method. If several input methods matches, no effort is made to choose. Might misbehave with some input methods other than Google's on API < 28. It is placed on the middle of the arrows on the bottom bar. It is enabled by default and can be removed in the "Extra keys" option. The key is not removed from the keyboard if no voice input method exists.
2023-06-03More control over vibrationJules Aguillon17-1/+90
The newer haptic feedback API that is used instead of the vibrator service since ef03dfe doesn't work for everyone. The new vibration option allow to choose both the newer API ("system") and the older API ("strong", "medium", "light").
2023-05-28Update pt-br translation (#367)marciozomb131-33/+33
Update pt-br translation
2023-05-24Modify persian layout and add some new characters (#348)Reza Hosseinzadeh2-29/+30
- Add character پ and ژ - Change math operators and symbols location
2023-05-12Increase the range of the "label size" optionJules Aguillon1-1/+1
2023-04-23Complete Farsi translation (#346)Reza Hosseinzadeh1-43/+43
2023-04-23Pull request to add new layout Persian (#342)Reza Hosseinzadeh3-0/+123
* Add persian layout * Change layoutId_of_string to layout_of_string * Add translation for Persian
2023-04-19Update German strings.xml (#337)polyctena1-5/+5
2023-04-16Updated russian description and strings.xml (#334)Maki Nishikino1-12/+12
2023-04-16Updated pl (Polish) translation (#333)Chasm Solacer1-4/+4
2023-04-15Add language: IcelandicJules Aguillon1-2/+3
2023-04-02Launcher activity: Input boxJules Aguillon16-18/+41
For trying the keyboard without having to mess with an other app.
2023-03-28Add a launchable explanatory activityJules Aguillon15-0/+48
This activity points to the system settings page for enabling input methods. This is purely a shortcut but is expected by many users. It could be made more useful in the future or hidden whenever the keyboard is enabled.
2023-03-24Updated pl (Polish) translation (#316)Chasm Solacer1-9/+9
2023-03-11Add Arabic layout (#314)Mostafa Ayesh4-0/+91
* add arabic keyboard * use unicode values for special characters * add alternate layout * use arabic numbers
2023-03-11New Hindi layout (#313)Luke Videckis4-3/+37
* New Hindi layout * Update default layout for Marathi, Nepali * Consistent naming for Devanagari layouts
2023-03-05Add extra keys for UkrainianJules Aguillon1-1/+1
2023-03-05Add support for BelarusianJules Aguillon2-12/+12
It uses the russian layout with placed extra keys.
2023-03-05Remove the 'edgekeys' attributeJules Aguillon6-9/+9
2023-03-03Allow 8 symbols per keyJules Aguillon1-0/+21
'Keyboard.Key' now contains an array of size 9, giving each keyvalue an index. The algorithm for finding the nearest key during a swipe now needs 16 segments, which are now calculated as an angle. The algorithm does one more interation instead of 2 more, slightly reducing the sensitivity of corner values. The 'getAtDirection' function is moved into the Pointers class to clearly separate the two systems. The 'edgekey' attribute is now obsolete but is kept for compatibility. The flag is removed internally, key index are simply translated. Similarly, the 'slider' attribute now act on keys at index 5 and 6 instead of 2 and 3.
2023-03-02Update LV translationEdgars1-21/+21
2023-02-26Allow key and keyboard opacity to be 0Jules Aguillon1-3/+3
2023-02-26Update values-de/strings.xml (#295)mscheidemann1-22/+22
Missing German translation completed