#85773 locales updated
This commit is contained in:
parent
4fa7762810
commit
e947ca94be
|
@ -27,4 +27,6 @@ THE SOFTWARE.
|
|||
export default {
|
||||
downloadConfig: 'Download Config',
|
||||
copyBase64: 'Copy Base64',
|
||||
copied: 'Copied',
|
||||
press_to_copy: 'Press Ctrl+C to copy',
|
||||
};
|
||||
|
|
|
@ -27,4 +27,6 @@ THE SOFTWARE.
|
|||
export default {
|
||||
downloadConfig: 'Скачать конфигурацию',
|
||||
copyBase64: 'Копировать Base64',
|
||||
copied: 'Скопировано',
|
||||
press_to_copy: 'Нажмите Ctrl+C чтобы скопировать',
|
||||
};
|
||||
|
|
|
@ -164,13 +164,13 @@ THE SOFTWARE.
|
|||
});
|
||||
|
||||
clipboard.on('success', e => {
|
||||
elm.textContent = 'Copied';
|
||||
elm.textContent = this.$t('templates.setup.copied');
|
||||
e.clearSelection();
|
||||
resetText();
|
||||
});
|
||||
|
||||
clipboard.on('error', () => {
|
||||
elm.textContent = 'Press Ctrl + C to copy';
|
||||
elm.textContent = this.$t('templates.setup.press_to_copy');
|
||||
resetText();
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue