Convert Layout
A JavaScript library to convert text from one keyboard layout to other.
Useful to prevent errors on english-only fields, like a credit card owner field.
var ru = ; bankcardName;
Usage
There are two ways to load a keyboard layout definition. If you plan on using a single layout, just load the file directly:
var ru = ;
Also you can get a object with all layouts (but app size will be bigger):
var layouts = ;layout = layoutsname;
Every layout has fromEn
and toEn
methods:
ru //=> "hello"ru //=> "привет"
Layouts
Currently supported keyboard layouts:
- Belarusian
- English (QWERTY, Dvorak, Colemak)
- German
- Kazakh
- Korean
- Russian
- Spanish
- Ukrainian
- Hebrew
- Persian
If you want to add a new keyboard layout definition:
- Fork a project. Create a branch.
- Add a
CODE.json
file with layout buttons map. See example inru.json
. Lower case letters will be converted to upper case automatically. However, all non-letters symbols should be added both in uppercase and lowercase. - Run
yarn test
. Project will be built automatically. - Add layout to the list above.
- Send a pull request.