[DE mobile] Localization AddShape, AddTable.
This commit is contained in:
parent
88e024f18b
commit
2abb5bec50
|
@ -46,7 +46,7 @@ define([
|
||||||
], function (core) {
|
], function (core) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
DE.Controllers.AddShape = Backbone.Controller.extend((function() {
|
DE.Controllers.AddShape = Backbone.Controller.extend(_.extend((function() {
|
||||||
var _styles = [];
|
var _styles = [];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -228,5 +228,5 @@ define([
|
||||||
return _styles;
|
return _styles;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})());
|
})(), DE.Controllers.AddShape || {}))
|
||||||
});
|
});
|
|
@ -47,7 +47,7 @@ define([
|
||||||
], function (core) {
|
], function (core) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
DE.Controllers.AddTable = Backbone.Controller.extend((function() {
|
DE.Controllers.AddTable = Backbone.Controller.extend(_.extend((function() {
|
||||||
var _styles = [];
|
var _styles = [];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -92,19 +92,19 @@ define([
|
||||||
if ($target) {
|
if ($target) {
|
||||||
var picker;
|
var picker;
|
||||||
var modal = uiApp.modal({
|
var modal = uiApp.modal({
|
||||||
title: 'Table Size',
|
title: me.textTableSize,
|
||||||
text: '',
|
text: '',
|
||||||
afterText:
|
afterText:
|
||||||
'<div class="content-block">' +
|
'<div class="content-block">' +
|
||||||
'<div class="row">' +
|
'<div class="row">' +
|
||||||
'<div class="col-50">Columns</div>' +
|
'<div class="col-50">' + me.textColumns + '</div>' +
|
||||||
'<div class="col-50">Rows</div>' +
|
'<div class="col-50">' + me.textRows + '</div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'<div id="picker-table-size"></div>' +
|
'<div id="picker-table-size"></div>' +
|
||||||
'</div>',
|
'</div>',
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: 'Cancel'
|
text: me.textCancel
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: 'OK',
|
text: 'OK',
|
||||||
|
@ -161,7 +161,12 @@ define([
|
||||||
|
|
||||||
Common.SharedSettings.set('tablestyles', _styles);
|
Common.SharedSettings.set('tablestyles', _styles);
|
||||||
Common.NotificationCenter.trigger('tablestyles:load', _styles);
|
Common.NotificationCenter.trigger('tablestyles:load', _styles);
|
||||||
}
|
},
|
||||||
|
|
||||||
|
textTableSize: 'Table Size',
|
||||||
|
textColumns: 'Columns',
|
||||||
|
textRows: 'Rows',
|
||||||
|
textCancel: 'Cancel'
|
||||||
}
|
}
|
||||||
})());
|
})(), DE.Controllers.AddTable || {}))
|
||||||
});
|
});
|
|
@ -49,7 +49,7 @@ define([
|
||||||
], function (addTemplate, $, _, Backbone) {
|
], function (addTemplate, $, _, Backbone) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
DE.Views.AddShape = Backbone.View.extend((function() {
|
DE.Views.AddShape = Backbone.View.extend(_.extend((function() {
|
||||||
// private
|
// private
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -66,9 +66,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
initEvents: function () {
|
initEvents: function () {
|
||||||
var me = this;
|
this.initControls();
|
||||||
|
|
||||||
me.initControls();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// Render layout
|
// Render layout
|
||||||
|
@ -96,5 +94,5 @@ define([
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})());
|
})(), DE.Views.AddShape || {}))
|
||||||
});
|
});
|
|
@ -48,7 +48,7 @@ define([
|
||||||
], function (addTemplate, $, _, Backbone) {
|
], function (addTemplate, $, _, Backbone) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
DE.Views.AddTable = Backbone.View.extend((function() {
|
DE.Views.AddTable = Backbone.View.extend(_.extend((function() {
|
||||||
// private
|
// private
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -100,5 +100,5 @@ define([
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})());
|
})(), DE.Views.AddTable || {}))
|
||||||
});
|
});
|
|
@ -174,5 +174,10 @@
|
||||||
"DE.Views.AddOther.textNextPage": "Next Page",
|
"DE.Views.AddOther.textNextPage": "Next Page",
|
||||||
"DE.Views.AddOther.textContPage": "Continuous Page",
|
"DE.Views.AddOther.textContPage": "Continuous Page",
|
||||||
"DE.Views.AddOther.textEvenPage": "Even Page",
|
"DE.Views.AddOther.textEvenPage": "Even Page",
|
||||||
"DE.Views.AddOther.textOddPage": "Odd Page"
|
"DE.Views.AddOther.textOddPage": "Odd Page",
|
||||||
|
|
||||||
|
"DE.Controllers.AddTable.textTableSize": "Table Size",
|
||||||
|
"DE.Controllers.AddTable.textColumns": "Columns",
|
||||||
|
"DE.Controllers.AddTable.textRows": "Rows",
|
||||||
|
"DE.Controllers.AddTable.textCancel": "Cancel"
|
||||||
}
|
}
|
Loading…
Reference in a new issue