Skip to content

Commit d183129

Browse files
committed
address review comment
1 parent 58d729e commit d183129

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ui/public/locales/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,8 +1588,6 @@
15881588
"label.migrate.instance.specific.storages": "Migrate volume(s) of the Instance to specific primary storages",
15891589
"label.migrate.systemvm.to": "Migrate System VM to",
15901590
"label.migrate.volume": "Migrate Volume",
1591-
"label.specify.iprange": "Specify IP Range",
1592-
"message.iprange.description": "The range of IP addresses to allocate to VPN clients. The first IP in the range will be taken by the VPN server. (Optional)",
15931591
"message.memory.usage.info.hypervisor.additionals": "The data shown may not reflect the actual memory usage if the Instance does not have the additional hypervisor tools installed",
15941592
"message.memory.usage.info.negative.value": "If the Instance's memory usage cannot be obtained from the hypervisor, the lines for free memory in the raw data graph and memory usage in the percentage graph will be disabled",
15951593
"message.migrate.volume.tooltip": "Volume can be migrated to any suitable storage pool. Admin has to choose the appropriate disk offering to replace, that supports the new storage pool",
@@ -2050,6 +2048,7 @@
20502048
"label.release.dedicated.pod": "Release dedicated Pod",
20512049
"label.release.dedicated.zone": "Release dedicated Zone",
20522050
"label.releasing.ip": "Releasing IP",
2051+
"label.remote.access.vpn.specify.iprange": "Specify IP Range of remote VPN",
20532052
"label.remote.instances": "Remote Instances",
20542053
"label.remove": "Remove",
20552054
"label.remove.annotation": "Remove comment",
@@ -3695,6 +3694,7 @@
36953694
"message.releasing.dedicated.host": "Releasing dedicated host...",
36963695
"message.releasing.dedicated.pod": "Releasing dedicated Pod...",
36973696
"message.releasing.dedicated.zone": "Releasing dedicated Zone...",
3697+
"message.remote.access.vpn.iprange.description": "The range of IP addresses to allocate to VPN clients. The first IP in the range will be taken by the VPN server. (Optional)",
36983698
"message.remove.annotation": "Are you sure you want to delete the comment?",
36993699
"message.remove.egress.rule.failed": "Removing egress rule failed",
37003700
"message.remove.egress.rule.processing": "Deleting egress rule...",

ui/src/views/network/VpnDetails.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676
<a-form-item>
7777
<a-checkbox v-model:checked="specifyIpRange">
78-
{{ $t('label.specify.iprange') }}
78+
{{ $t('label.remote.access.vpn.specify.iprange') }}
7979
</a-checkbox>
8080
</a-form-item>
8181
<a-form-item
@@ -84,7 +84,7 @@
8484
:colon="false"
8585
ref="iprange">
8686
<template #label>
87-
<tooltip-label :title="$t('label.ip.range')" :tooltip="$t('message.iprange.description')"/>
87+
<tooltip-label :title="$t('label.ip.range')" :tooltip="$t('message.remote.access.vpn.iprange.description')"/>
8888
</template>
8989
<a-input
9090
v-model:value="vpnIpRange"

0 commit comments

Comments
 (0)