mirror of
				https://git.proxmox.com/git/pve-manager
				synced 2025-11-04 13:55:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			372 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			372 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
Ext.define('PVE.qemu.KeyboardEdit', {
 | 
						|
    extend: 'Proxmox.window.Edit',
 | 
						|
 | 
						|
    initComponent: function() {
 | 
						|
	var me = this;
 | 
						|
 | 
						|
	Ext.applyIf(me, {
 | 
						|
	    subject: gettext('Keyboard Layout'),
 | 
						|
	    items: {
 | 
						|
		xtype: 'VNCKeyboardSelector',
 | 
						|
		name: 'keyboard',
 | 
						|
		value: '__default__',
 | 
						|
		fieldLabel: gettext('Keyboard Layout'),
 | 
						|
	    },
 | 
						|
	});
 | 
						|
 | 
						|
	me.callParent();
 | 
						|
 | 
						|
	me.load();
 | 
						|
    },
 | 
						|
});
 |