Skip to content

Commit c58198a

Browse files
committed
label consistency
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent e39cdae commit c58198a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ui/public/locales/en.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,8 +1079,8 @@
10791079
"label.firewallruleuuid": "Firewall Rule",
10801080
"label.firstname": "First name",
10811081
"label.firstname.lower": "firstname",
1082-
"label.fix.configuration": "Fix configuration",
10831082
"label.fix.errors": "Fix errors",
1083+
"label.fix.global.setting": "Fix Global Setting",
10841084
"label.fixed": "Fixed Offering",
10851085
"label.for": "for",
10861086
"label.forcks": "For CKS",
@@ -3121,8 +3121,6 @@
31213121
"message.config.health.monitor.failed": "Configure Health Monitor failed",
31223122
"message.config.sticky.policy.failed": "Failed to configure sticky policy.",
31233123
"message.config.sticky.policy.processing": "Updating sticky policy...",
3124-
"message.config.updated": "Configuration updated successfully.",
3125-
"message.config.update.failed": "Failed to update configuration.",
31263124
"message.configure.network.ip.and.mac": "Please configure the IP address and mac address of networks if needed.",
31273125
"message.configure.network.select.default.network": "Please configure the IP address and mac address of networks if needed. Please select a network as the default network.",
31283126
"message.configuring.guest.traffic": "Configuring guest traffic",
@@ -3511,6 +3509,8 @@
35113509
"message.failed.to.remove": "Failed to remove",
35123510
"message.forgot.password.success": "An email has been sent to your email address with instructions on how to reset your password.",
35133511
"message.generate.keys": "Please confirm that you would like to generate new API/Secret keys for this User.",
3512+
"message.global.setting.updated": "Global Setting updated successfully.",
3513+
"message.global.setting.update.failed": "Failed to update Global Setting.",
35143514
"message.chart.statistic.info": "The shown charts are self-adjustable, that means, if the value gets close to the limit or overpass it, it will grow to adjust the shown value",
35153515
"message.chart.statistic.info.hypervisor.additionals": "The metrics data depend on the hypervisor plugin used for each hypervisor. The behavior can vary across different hypervisors. For instance, with KVM, metrics are real-time statistics provided by libvirt. In contrast, with VMware, the metrics are averaged data for a given time interval controlled by configuration.",
35163516
"message.guest.traffic.in.advanced.zone": "Guest Network traffic is communication between end-user Instances. Specify a range of VLAN IDs or VXLAN Network identifiers (VNIs) to carry guest traffic for each physical Network.",

ui/src/config/section/compute.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ export default {
723723
actions: [
724724
{
725725
primary: true,
726-
label: 'label.fix.configuration',
726+
label: 'label.fix.global.setting',
727727
show: (store) => { return ('updateConfiguration' in store.getters.apis) },
728728
run: async () => {
729729
let url = ''
@@ -743,8 +743,8 @@ export default {
743743
} catch (error) {}
744744
return false
745745
},
746-
successMessage: 'message.config.updated',
747-
errorMessage: 'message.config.update.failed'
746+
successMessage: 'message.global.setting.updated',
747+
errorMessage: 'message.global.setting.update.failed'
748748
},
749749
{
750750
label: 'label.go.to.global.settings',

0 commit comments

Comments
 (0)