mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix issues in Minetest's English texts (#13913)
Co-authored-by: Gregor Parzefall <82708541+grorp@users.noreply.github.com> Co-authored-by: rubenwardy <rw@rubenwardy.com> Co-authored-by: Desour <ds.desour@proton.me> Co-authored-by: sfan5 <sfan5@live.de>
This commit is contained in:
parent
b3988d964a
commit
1363059416
3 changed files with 43 additions and 41 deletions
|
@ -99,29 +99,31 @@ static const struct table_key table[] = {
|
|||
// Keys without a Char
|
||||
DEFINEKEY1(KEY_LBUTTON, N_("Left Button"))
|
||||
DEFINEKEY1(KEY_RBUTTON, N_("Right Button"))
|
||||
DEFINEKEY1(KEY_CANCEL, N_("Cancel"))
|
||||
//~ Usually paired with the Pause key
|
||||
DEFINEKEY1(KEY_CANCEL, N_("Break Key"))
|
||||
DEFINEKEY1(KEY_MBUTTON, N_("Middle Button"))
|
||||
DEFINEKEY1(KEY_XBUTTON1, N_("X Button 1"))
|
||||
DEFINEKEY1(KEY_XBUTTON2, N_("X Button 2"))
|
||||
DEFINEKEY1(KEY_BACK, N_("Backspace"))
|
||||
DEFINEKEY1(KEY_TAB, N_("Tab"))
|
||||
DEFINEKEY1(KEY_CLEAR, N_("Clear"))
|
||||
DEFINEKEY1(KEY_RETURN, N_("Return"))
|
||||
DEFINEKEY1(KEY_SHIFT, N_("Shift"))
|
||||
DEFINEKEY1(KEY_CONTROL, N_("Control"))
|
||||
DEFINEKEY1(KEY_CLEAR, N_("Clear Key"))
|
||||
DEFINEKEY1(KEY_RETURN, N_("Return Key"))
|
||||
DEFINEKEY1(KEY_SHIFT, N_("Shift Key"))
|
||||
DEFINEKEY1(KEY_CONTROL, N_("Control Key"))
|
||||
//~ Key name, common on Windows keyboards
|
||||
DEFINEKEY1(KEY_MENU, N_("Menu"))
|
||||
DEFINEKEY1(KEY_PAUSE, N_("Pause"))
|
||||
DEFINEKEY1(KEY_MENU, N_("Menu Key"))
|
||||
//~ Usually paired with the Break key
|
||||
DEFINEKEY1(KEY_PAUSE, N_("Pause Key"))
|
||||
DEFINEKEY1(KEY_CAPITAL, N_("Caps Lock"))
|
||||
DEFINEKEY1(KEY_SPACE, N_("Space"))
|
||||
DEFINEKEY1(KEY_PRIOR, N_("Page up"))
|
||||
DEFINEKEY1(KEY_NEXT, N_("Page down"))
|
||||
DEFINEKEY1(KEY_PRIOR, N_("Page Up"))
|
||||
DEFINEKEY1(KEY_NEXT, N_("Page Down"))
|
||||
DEFINEKEY1(KEY_END, N_("End"))
|
||||
DEFINEKEY1(KEY_HOME, N_("Home"))
|
||||
DEFINEKEY1(KEY_LEFT, N_("Left"))
|
||||
DEFINEKEY1(KEY_UP, N_("Up"))
|
||||
DEFINEKEY1(KEY_RIGHT, N_("Right"))
|
||||
DEFINEKEY1(KEY_DOWN, N_("Down"))
|
||||
DEFINEKEY1(KEY_LEFT, N_("Left Arrow"))
|
||||
DEFINEKEY1(KEY_UP, N_("Up Arrow"))
|
||||
DEFINEKEY1(KEY_RIGHT, N_("Right Arrow"))
|
||||
DEFINEKEY1(KEY_DOWN, N_("Down Arrow"))
|
||||
//~ Key name
|
||||
DEFINEKEY1(KEY_SELECT, N_("Select"))
|
||||
//~ "Print screen" key
|
||||
|
@ -129,7 +131,7 @@ static const struct table_key table[] = {
|
|||
DEFINEKEY1(KEY_EXECUT, N_("Execute"))
|
||||
DEFINEKEY1(KEY_SNAPSHOT, N_("Snapshot"))
|
||||
DEFINEKEY1(KEY_INSERT, N_("Insert"))
|
||||
DEFINEKEY1(KEY_DELETE, N_("Delete"))
|
||||
DEFINEKEY1(KEY_DELETE, N_("Delete Key"))
|
||||
DEFINEKEY1(KEY_HELP, N_("Help"))
|
||||
DEFINEKEY1(KEY_LWIN, N_("Left Windows"))
|
||||
DEFINEKEY1(KEY_RWIN, N_("Right Windows"))
|
||||
|
@ -212,7 +214,7 @@ static const struct table_key table[] = {
|
|||
DEFINEKEY1(KEY_EXSEL, "ExSel")
|
||||
DEFINEKEY1(KEY_EREOF, N_("Erase EOF"))
|
||||
DEFINEKEY1(KEY_PLAY, N_("Play"))
|
||||
DEFINEKEY1(KEY_ZOOM, N_("Zoom"))
|
||||
DEFINEKEY1(KEY_ZOOM, N_("Zoom Key"))
|
||||
DEFINEKEY1(KEY_PA1, "PA1")
|
||||
DEFINEKEY1(KEY_OEM_CLEAR, N_("OEM Clear"))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue