mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-08 12:56:48 +00:00
gui/cluster: fix translation for cluster join button
New version including the cluster name didn't work in some languages, e.g. german: "Beitreten 'cluster'" vs the correct "'cluster' beitreten" Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
parent
0beb2578ff
commit
943672c67f
@ -166,7 +166,7 @@ Ext.define('PVE.ClusterJoinNodeWindow', {
|
|||||||
submittxt: function(get) {
|
submittxt: function(get) {
|
||||||
let cn = get('info.clusterName');
|
let cn = get('info.clusterName');
|
||||||
if (cn) {
|
if (cn) {
|
||||||
return `${gettext('Join')} '${cn}'`;
|
return Ext.String.format(gettext('Join {0}'), `'${cn}'`);
|
||||||
}
|
}
|
||||||
return gettext('Join');
|
return gettext('Join');
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user