diff --git a/src/components/standalone/NeStepper.vue b/src/components/standalone/NeStepper.vue index 079ff00ce..a2debd1e6 100644 --- a/src/components/standalone/NeStepper.vue +++ b/src/components/standalone/NeStepper.vue @@ -7,10 +7,16 @@ import { NeProgressBar } from '@nethesis/vue-components' import { range } from 'lodash-es' -defineProps<{ +const { + totalSteps, + currentStep, + stepLabel, + labelColorClasses = 'text-primary-600 dark:text-primary-500' +} = defineProps<{ totalSteps: number currentStep: number stepLabel: string + labelColorClasses?: string }>() @@ -19,7 +25,7 @@ defineProps<{
-

+

{{ stepLabel }} {{ currentStep }}/{{ totalSteps }}

diff --git a/src/components/standalone/firewall/nat/NatRulesContent.vue b/src/components/standalone/firewall/nat/NatRulesContent.vue index 7e06f27bb..dab9108ed 100644 --- a/src/components/standalone/firewall/nat/NatRulesContent.vue +++ b/src/components/standalone/firewall/nat/NatRulesContent.vue @@ -96,7 +96,7 @@ function hideCreateOrEditRuleDrawer() {
- {{ t('standalone.ips.add_bypass') }} + {{ t('standalone.ips.add_suppressed_alert') }} {{ t('standalone.ips.add_suppressed_alert') }} diff --git a/src/components/standalone/ssh/SshKeys.vue b/src/components/standalone/ssh/SshKeys.vue index 85eee21e4..bb67ae7d8 100644 --- a/src/components/standalone/ssh/SshKeys.vue +++ b/src/components/standalone/ssh/SshKeys.vue @@ -167,6 +167,9 @@ function handleCloseDeleteModal() { :title="t('standalone.ssh.ssh_keys.title')" >
+

+ {{ t('standalone.ssh.ssh_keys.public_keys_label') }} +

  • diff --git a/src/components/standalone/wireguard/WireguardPeerTunnelList.vue b/src/components/standalone/wireguard/WireguardPeerTunnelList.vue index 4f4eabd8e..fe78db34e 100644 --- a/src/components/standalone/wireguard/WireguardPeerTunnelList.vue +++ b/src/components/standalone/wireguard/WireguardPeerTunnelList.vue @@ -178,7 +178,7 @@ useIntervalFn( {{ t('standalone.wireguard_peers.import_peer_tunnel') }} - + diff --git a/src/i18n/en.json b/src/i18n/en.json index 5c74de9c4..bc1ac438c 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -716,7 +716,7 @@ "add_key_button": "Add key", "unnamed_key": "Unnamed key", "add_new_ssh_key": { - "label": "Add new SSH key", + "label": "New SSH key", "placeholder": "Paste SSH key here..." }, "delete_key_modal": { diff --git a/src/i18n/it.json b/src/i18n/it.json index 8dfc30850..e21e58911 100644 --- a/src/i18n/it.json +++ b/src/i18n/it.json @@ -540,7 +540,7 @@ "add_key_button": "Aggiungi chiave", "unnamed_key": "Chiave senza nome", "add_new_ssh_key": { - "label": "Aggiungi nuova chiave SSH", + "label": "Nuova chiave SSH", "placeholder": "Incolla qui la chiave SSH..." }, "delete_key_modal": {