@electerm/electerm-react 2.3.190 → 2.3.191
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/components/bookmark-form/config/common-fields.js +3 -3
- package/client/components/bookmark-form/config/ftp.js +1 -1
- package/client/components/bookmark-form/config/local.js +3 -3
- package/client/components/bookmark-form/config/rdp.js +1 -1
- package/client/components/bookmark-form/config/serial.js +3 -3
- package/client/components/bookmark-form/config/ssh.js +2 -2
- package/client/components/bookmark-form/config/telnet.js +2 -2
- package/client/components/bookmark-form/config/vnc.js +1 -1
- package/client/components/bookmark-form/config/web.js +1 -1
- package/package.json +1 -1
|
@@ -311,18 +311,18 @@ export const telnetAuthFields = [
|
|
|
311
311
|
// Common tab configurations - functions to ensure translation happens at render time
|
|
312
312
|
export const quickCommandsTab = () => ({
|
|
313
313
|
key: 'quickCommands',
|
|
314
|
-
label:
|
|
314
|
+
label: e('quickCommands'),
|
|
315
315
|
fields: [commonFields.quickCommands]
|
|
316
316
|
})
|
|
317
317
|
|
|
318
318
|
export const sshTunnelTab = () => ({
|
|
319
319
|
key: 'tunnel',
|
|
320
|
-
label:
|
|
320
|
+
label: e('sshTunnel'),
|
|
321
321
|
fields: [commonFields.sshTunnels]
|
|
322
322
|
})
|
|
323
323
|
|
|
324
324
|
export const connectionHoppingTab = () => ({
|
|
325
325
|
key: 'connectionHopping',
|
|
326
|
-
label:
|
|
326
|
+
label: e('connectionHopping'),
|
|
327
327
|
fields: [commonFields.connectionHopping]
|
|
328
328
|
})
|
|
@@ -26,7 +26,7 @@ const localConfig = {
|
|
|
26
26
|
tabs: () => [
|
|
27
27
|
{
|
|
28
28
|
key: 'auth',
|
|
29
|
-
label:
|
|
29
|
+
label: e('auth'),
|
|
30
30
|
fields: [
|
|
31
31
|
commonFields.category,
|
|
32
32
|
commonFields.colorTitle,
|
|
@@ -37,7 +37,7 @@ const localConfig = {
|
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
key: 'settings',
|
|
40
|
-
label:
|
|
40
|
+
label: e('settings'),
|
|
41
41
|
fields: [
|
|
42
42
|
{
|
|
43
43
|
type: 'input',
|
|
@@ -91,7 +91,7 @@ const localConfig = {
|
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
key: 'quickCommands',
|
|
94
|
-
label:
|
|
94
|
+
label: e('quickCommands'),
|
|
95
95
|
fields: [
|
|
96
96
|
{ type: 'quickCommands', name: '__quick__', label: '' }
|
|
97
97
|
]
|
|
@@ -31,7 +31,7 @@ const serialConfig = {
|
|
|
31
31
|
tabs: () => [
|
|
32
32
|
{
|
|
33
33
|
key: 'auth',
|
|
34
|
-
label:
|
|
34
|
+
label: e('auth'),
|
|
35
35
|
fields: [
|
|
36
36
|
commonFields.category,
|
|
37
37
|
commonFields.colorTitle,
|
|
@@ -64,14 +64,14 @@ const serialConfig = {
|
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
key: 'settings',
|
|
67
|
-
label:
|
|
67
|
+
label: e('settings'),
|
|
68
68
|
fields: [
|
|
69
69
|
{ type: 'terminalBackground', name: 'terminalBackground', label: () => e('terminalBackgroundImage') }
|
|
70
70
|
]
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
key: 'quickCommands',
|
|
74
|
-
label:
|
|
74
|
+
label: e('quickCommands'),
|
|
75
75
|
fields: [
|
|
76
76
|
{ type: 'quickCommands', name: '__quick__', label: '' }
|
|
77
77
|
]
|
|
@@ -33,12 +33,12 @@ const sshConfig = {
|
|
|
33
33
|
tabs: () => [
|
|
34
34
|
{
|
|
35
35
|
key: 'auth',
|
|
36
|
-
label:
|
|
36
|
+
label: e('auth'),
|
|
37
37
|
fields: sshAuthFields
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
key: 'settings',
|
|
41
|
-
label:
|
|
41
|
+
label: e('settings'),
|
|
42
42
|
fields: sshSettings
|
|
43
43
|
},
|
|
44
44
|
quickCommandsTab(),
|
|
@@ -31,12 +31,12 @@ const telnetConfig = {
|
|
|
31
31
|
tabs: () => [
|
|
32
32
|
{
|
|
33
33
|
key: 'auth',
|
|
34
|
-
label:
|
|
34
|
+
label: e('auth'),
|
|
35
35
|
fields: telnetAuthFields
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
38
|
key: 'settings',
|
|
39
|
-
label:
|
|
39
|
+
label: e('settings'),
|
|
40
40
|
fields: terminalSettings
|
|
41
41
|
},
|
|
42
42
|
quickCommandsTab()
|