abouttreesummaryrefslogcommitdiff
path: root/res/xml/latn_qwertz_sk.xml
AgeCommit message (Collapse)AuthorFilesLines
2024-01-21Move layout definitions into srcs/layoutsJules Aguillon1-39/+0
This separates the layout definitions from the special layouts (bottom_row, greekmath) and other unrelated files (method, settings). This is also a more intuitive location for layouts and make the resource directory easier to navigate. Under the hood, layouts are copied back into build/generated-resources/xml.
2024-01-10Fix layouts containing empty keysJules Aguillon1-1/+1
This results in a key being the empty string and do not trigger an error: key1="\" Layouts are fixed and check_layout now checks for this case.
2023-07-29Add dagger, double dagger, section mark, and pilcrow as extra keys on ↵Ben Slusky1-2/+2
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-06-25Generate layouts arrays used in settingsJules Aguillon1-1/+1
`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 Aguillon1-0/+39
The names are comprised of: script, layout name, country code. Co-authored-by: grim <verdastelo9604@hotmail.com>