Commit 85167ea8 authored by Dietmar Maurer's avatar Dietmar Maurer

s/gettext('Default')/PVE.Utils.defaultText/

parent 32dbe033
...@@ -137,7 +137,7 @@ Ext.define('PVE.dc.StorageView', { ...@@ -137,7 +137,7 @@ Ext.define('PVE.dc.StorageView', {
win.show(); win.show();
} }
}, },
{ {
text: gettext('GlusterFS volume'), text: gettext('GlusterFS volume'),
iconCls: 'pve-itype-icon-node', iconCls: 'pve-itype-icon-node',
handler: function() { handler: function() {
......
...@@ -6,7 +6,7 @@ Ext.define('PVE.form.CPUModelSelector', { ...@@ -6,7 +6,7 @@ Ext.define('PVE.form.CPUModelSelector', {
var me = this; var me = this;
me.data = [ me.data = [
['', gettext('Default') + ' (kvm64)'], ['', PVE.Utils.defaultText + ' (kvm64)'],
['486', '486'], ['486', '486'],
['athlon', 'athlon'], ['athlon', 'athlon'],
['core2duo', 'core2duo'], ['core2duo', 'core2duo'],
......
...@@ -6,7 +6,7 @@ Ext.define('PVE.form.CacheTypeSelector', { ...@@ -6,7 +6,7 @@ Ext.define('PVE.form.CacheTypeSelector', {
var me = this; var me = this;
me.data = [ me.data = [
['', gettext('Default') + " (" + gettext('No cache') + ")"], ['', PVE.Utils.defaultText + " (" + gettext('No cache') + ")"],
['directsync', 'Direct sync'], ['directsync', 'Direct sync'],
['writethrough', 'Write through'], ['writethrough', 'Write through'],
['writeback', 'Write back'], ['writeback', 'Write back'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment