- This tunnel will forward traffic from
- port {form.watch(`tunnelConnections.${index}.sourcePort`) || '22'} on
- the source machine (current connection details
- in general tab) to
- port {form.watch(`tunnelConnections.${index}.endpointPort`) || '224'} on
- the endpoint machine.
+ {t('hosts.tunnelForwardDescription', {
+ sourcePort: form.watch(`tunnelConnections.${index}.sourcePort`) || '22',
+ endpointPort: form.watch(`tunnelConnections.${index}.endpointPort`) || '224'
+ })}
@@ -900,8 +895,7 @@ export function HostManagerHostEditor({editingHost, onFormSubmit}: SSHManagerHos
placeholder="3" {...maxRetriesField} />
- Maximum number of retry attempts
- for tunnel connection.
+ {t('hosts.maxRetriesDescription')}
)}
@@ -917,8 +911,7 @@ export function HostManagerHostEditor({editingHost, onFormSubmit}: SSHManagerHos
placeholder="10" {...retryIntervalField} />
- Time to wait between retry
- attempts.
+ {t('hosts.retryIntervalDescription')}
)}
@@ -928,8 +921,7 @@ export function HostManagerHostEditor({editingHost, onFormSubmit}: SSHManagerHos
name={`tunnelConnections.${index}.autoStart`}
render={({field}) => (
- Auto Start on Container
- Launch
+ {t('hosts.autoStartContainer')}