Documentation
¶
Overview ¶
Copyright (C) 2024 Rangertaha
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 <http://www.gnu.org/licenses/>.
Copyright (C) 2024 Rangertaha ¶
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 <http://www.gnu.org/licenses/>.
Index ¶
- Constants
- Variables
- type English
- func (l *English) Antonyms() map[string][]string
- func (l *English) Description() string
- func (l *English) Graphemes() []string
- func (l *English) Homoglyphs() map[string][]string
- func (l *English) Homophones() [][]string
- func (l *English) Id() string
- func (l *English) Keyboards() []urlinsane.Keyboard
- func (l *English) Misspellings() [][]string
- func (l *English) Name() string
- func (l *English) Numerals() map[string][]string
- func (l *English) Vowels() []string
- type Keyboard
Constants ¶
const LANGUAGE string = "en"
Variables ¶
var Keyboards = []Keyboard{ { Lang: LANGUAGE, Code: "en1", Name: "QWERTY", Description: "English QWERTY keyboard layout", Layout: []string{ "1234567890-", "qwertyuiop ", "asdfghjkl ", "zxcvbnm ", }, }, { Lang: LANGUAGE, Code: "en2", Name: "AZERTY", Description: "English AZERTY keyboard layout", Layout: []string{ "1234567890", "azertyuiop", "qsdfghjklm", "wxcvbn ", }, }, { Lang: LANGUAGE, Code: "en3", Name: "QWERTZ", Description: "English QWERTZ keyboard layout", Layout: []string{ "1234567890", "qwertzuiop", "asdfghjkl ", "yxcvbnm ", }, }, { Lang: LANGUAGE, Code: "en4", Name: "DVORAK", Description: "English DVORAK keyboard layout", Layout: []string{ "1234567890", " pyfgcrl", "aoeuidhtns", " qjkxbmwvz", }, }, }
var ( Language = English{ // contains filtered or unexported fields } )
Functions ¶
This section is empty.
Types ¶
type English ¶
type English struct {
// contains filtered or unexported fields
}