Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@
"name" : "backspace",
"type" : "ENUM",
"options" : [ "", "127", "8" ]
},
{
"name" : "func-keys-and-keypad",
"type" : "ENUM",
"options" : [ "", "esc", "vt100" ]
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@
"type" : "ENUM",
"options" : [ "", "127", "8" ]
},
{
"name" : "func-keys-and-keypad",
"type" : "ENUM",
"options" : [ "", "esc", "vt100" ]
},
{
"name" : "terminal-type",
"type" : "ENUM",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@
"type" : "ENUM",
"options" : [ "", "127", "8" ]
},
{
"name" : "func-keys-and-keypad",
"type" : "ENUM",
"options" : [ "", "esc", "vt100" ]
},
{
"name" : "terminal-type",
"type" : "ENUM",
Expand Down
15 changes: 15 additions & 0 deletions guacamole/src/main/frontend/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@
"FIELD_HEADER_EXEC_COMMAND" : "Command (exec):",
"FIELD_HEADER_FONT_NAME" : "Font name:",
"FIELD_HEADER_FONT_SIZE" : "Font size:",
"FIELD_HEADER_FUNC_KEYS_AND_KEYPAD" : "Function keys and keypad behavior:",
"FIELD_HEADER_HOSTNAME" : "Hostname:",
"FIELD_HEADER_IGNORE_CERT" : "Ignore server certificate:",
"FIELD_HEADER_NAMESPACE" : "Namespace:",
Expand Down Expand Up @@ -566,6 +567,10 @@
"FIELD_OPTION_FONT_SIZE_96" : "96",
"FIELD_OPTION_FONT_SIZE_EMPTY" : "",

"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_EMPTY" : "",
"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_ESC" : "ESC[n~",
"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_VT100" : "VT100",

"NAME" : "Kubernetes",

"SECTION_HEADER_AUTHENTICATION" : "Authentication",
Expand Down Expand Up @@ -755,6 +760,7 @@
"FIELD_HEADER_DISABLE_PASTE" : "Disable pasting from client:",
"FIELD_HEADER_FONT_NAME" : "Font name:",
"FIELD_HEADER_FONT_SIZE" : "Font size:",
"FIELD_HEADER_FUNC_KEYS_AND_KEYPAD" : "Function keys and keypad behavior:",
"FIELD_HEADER_ENABLE_SFTP" : "Enable SFTP:",
"FIELD_HEADER_HOST_KEY" : "Public host key (Base64):",
"FIELD_HEADER_HOSTNAME" : "Hostname:",
Expand Down Expand Up @@ -820,6 +826,10 @@
"FIELD_OPTION_FONT_SIZE_96" : "96",
"FIELD_OPTION_FONT_SIZE_EMPTY" : "",

"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_EMPTY" : "",
"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_ESC" : "ESC[n~",
"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_VT100" : "VT100",

"FIELD_OPTION_TERMINAL_TYPE_ANSI" : "ansi",
"FIELD_OPTION_TERMINAL_TYPE_EMPTY" : "",
"FIELD_OPTION_TERMINAL_TYPE_LINUX" : "linux",
Expand Down Expand Up @@ -854,6 +864,7 @@
"FIELD_HEADER_DISABLE_PASTE" : "Disable pasting from client:",
"FIELD_HEADER_FONT_NAME" : "Font name:",
"FIELD_HEADER_FONT_SIZE" : "Font size:",
"FIELD_HEADER_FUNC_KEYS_AND_KEYPAD" : "Function keys and keypad behavior:",
"FIELD_HEADER_HOSTNAME" : "Hostname:",
"FIELD_HEADER_LOGIN_FAILURE_REGEX" : "Login failure regular expression:",
"FIELD_HEADER_LOGIN_SUCCESS_REGEX" : "Login success regular expression:",
Expand Down Expand Up @@ -912,6 +923,10 @@
"FIELD_OPTION_FONT_SIZE_96" : "96",
"FIELD_OPTION_FONT_SIZE_EMPTY" : "",

"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_EMPTY" : "",
"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_ESC" : "ESC[n~",
"FIELD_OPTION_FUNC_KEYS_AND_KEYPAD_VT100" : "VT100",

"FIELD_OPTION_TERMINAL_TYPE_ANSI" : "ansi",
"FIELD_OPTION_TERMINAL_TYPE_EMPTY" : "",
"FIELD_OPTION_TERMINAL_TYPE_LINUX" : "linux",
Expand Down