From: Dominik Csapak Date: Fri, 17 Apr 2020 11:23:37 +0000 (+0200) Subject: use LanguageEditWindow from widget-toolkit X-Git-Url: https://git.proxmox.com/?p=pmg-gui.git;a=commitdiff_plain;h=903548bc3c9aead93f9118eb14ab8634bb9686cf use LanguageEditWindow from widget-toolkit Signed-off-by: Dominik Csapak --- diff --git a/js/QuarantineView.js b/js/QuarantineView.js index 3d0e9e1..1958a2d 100644 --- a/js/QuarantineView.js +++ b/js/QuarantineView.js @@ -131,31 +131,8 @@ Ext.define('PMG.QuarantineView', { }, changeLanguage: function() { - Ext.create('Ext.window.Window', { - title: gettext('Language'), - bodyPadding: 10, - items: [ - { - xtype: 'proxmoxLanguageSelector', - fieldLabel: gettext('Language'), - value: Ext.util.Cookies.get('PMGLangCookie') || 'en', - }, - ], - - buttons: [ - { - text: gettext('OK'), - handler: function() { - let me = this; - let win = this.up('window'); - let value = win.down('proxmoxLanguageSelector').getValue(); - var dt = Ext.Date.add(new Date(), Ext.Date.YEAR, 10); - Ext.util.Cookies.set('PMGLangCookie', value, dt); - win.mask(gettext('Please wait...'), 'x-mask-loading'); - window.location.reload(); - }, - } - ] + Ext.create('Proxmox.window.LanguageEditWindow', { + cookieName: 'PMGLangCookie' }).show(); },