GUAC-1451: Add SSH/telnet typescript parameters and their English translations.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/8b03062d Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/8b03062d Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/8b03062d Branch: refs/heads/master Commit: 8b03062de698b96e01d95ad4f2c25037470e8c0f Parents: 98bf85b Author: Michael Jumper <[email protected]> Authored: Mon Jan 25 13:00:56 2016 -0800 Committer: Michael Jumper <[email protected]> Committed: Mon Jan 25 13:00:56 2016 -0800 ---------------------------------------------------------------------- .../org/glyptodon/guacamole/protocols/ssh.json | 19 +++++++++++++++++++ .../glyptodon/guacamole/protocols/telnet.json | 19 +++++++++++++++++++ guacamole/src/main/webapp/translations/en.json | 8 ++++++++ 3 files changed, 46 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/8b03062d/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/ssh.json ---------------------------------------------------------------------- diff --git a/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/ssh.json b/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/ssh.json index aea3f56..292bcbc 100644 --- a/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/ssh.json +++ b/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/ssh.json @@ -69,6 +69,25 @@ }, { + "name" : "typescript", + "fields" : [ + { + "name" : "typescript-path", + "type" : "TEXT" + }, + { + "name" : "typescript-name", + "type" : "TEXT" + }, + { + "name" : "create-typescript-path", + "type" : "BOOLEAN", + "options" : [ "true" ] + } + ] + }, + + { "name" : "sftp", "fields" : [ { http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/8b03062d/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/telnet.json ---------------------------------------------------------------------- diff --git a/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/telnet.json b/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/telnet.json index 0e4426b..5f7b2e4 100644 --- a/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/telnet.json +++ b/guacamole-ext/src/main/resources/org/glyptodon/guacamole/protocols/telnet.json @@ -52,6 +52,25 @@ "options" : [ "", "8", "9", "10", "11", "12", "14", "18", "24", "30", "36", "48", "60", "72", "96" ] } ] + }, + + { + "name" : "typescript", + "fields" : [ + { + "name" : "typescript-path", + "type" : "TEXT" + }, + { + "name" : "typescript-name", + "type" : "TEXT" + }, + { + "name" : "create-typescript-path", + "type" : "BOOLEAN", + "options" : [ "true" ] + } + ] } ] http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/8b03062d/guacamole/src/main/webapp/translations/en.json ---------------------------------------------------------------------- diff --git a/guacamole/src/main/webapp/translations/en.json b/guacamole/src/main/webapp/translations/en.json index c311f7e..ac48dcb 100644 --- a/guacamole/src/main/webapp/translations/en.json +++ b/guacamole/src/main/webapp/translations/en.json @@ -350,6 +350,7 @@ "FIELD_HEADER_COLOR_SCHEME" : "Color scheme:", "FIELD_HEADER_COMMAND" : "Execute command:", + "FIELD_HEADER_CREATE_TYPESCRIPT_PATH" : "Automatically create typescript path:", "FIELD_HEADER_FONT_NAME" : "Font name:", "FIELD_HEADER_FONT_SIZE" : "Font size:", "FIELD_HEADER_ENABLE_SFTP" : "Enable SFTP:", @@ -359,6 +360,8 @@ "FIELD_HEADER_PASSPHRASE" : "Passphrase:", "FIELD_HEADER_PORT" : "Port:", "FIELD_HEADER_PRIVATE_KEY" : "Private key:", + "FIELD_HEADER_TYPESCRIPT_NAME" : "Typescript name:", + "FIELD_HEADER_TYPESCRIPT_PATH" : "Typescript path:", "FIELD_OPTION_COLOR_SCHEME_BLACK_WHITE" : "Black on white", "FIELD_OPTION_COLOR_SCHEME_EMPTY" : "", @@ -388,6 +391,7 @@ "SECTION_HEADER_DISPLAY" : "Display", "SECTION_HEADER_NETWORK" : "Network", "SECTION_HEADER_SESSION" : "Session / Environment", + "SECTION_HEADER_TYPESCRIPT" : "Typescript (Text Session Recording)", "SECTION_HEADER_SFTP" : "SFTP" }, @@ -395,6 +399,7 @@ "PROTOCOL_TELNET" : { "FIELD_HEADER_COLOR_SCHEME" : "Color scheme:", + "FIELD_HEADER_CREATE_TYPESCRIPT_PATH" : "Automatically create typescript path:", "FIELD_HEADER_FONT_NAME" : "Font name:", "FIELD_HEADER_FONT_SIZE" : "Font size:", "FIELD_HEADER_HOSTNAME" : "Hostname:", @@ -402,6 +407,8 @@ "FIELD_HEADER_PASSWORD" : "Password:", "FIELD_HEADER_PASSWORD_REGEX" : "Password regular expression:", "FIELD_HEADER_PORT" : "Port:", + "FIELD_HEADER_TYPESCRIPT_NAME" : "Typescript name:", + "FIELD_HEADER_TYPESCRIPT_PATH" : "Typescript path:", "FIELD_OPTION_COLOR_SCHEME_BLACK_WHITE" : "Black on white", "FIELD_OPTION_COLOR_SCHEME_EMPTY" : "", @@ -429,6 +436,7 @@ "SECTION_HEADER_AUTHENTICATION" : "Authentication", "SECTION_HEADER_DISPLAY" : "Display", + "SECTION_HEADER_TYPESCRIPT" : "Typescript (Text Session Recording)", "SECTION_HEADER_NETWORK" : "Network" },
