fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
editor: fix styling of the emp wlxml class
[fnpeditor.git]
/
src
/
editor
/
modules
/
rng
/
rng.js
diff --git
a/src/editor/modules/rng/rng.js
b/src/editor/modules/rng/rng.js
index
a5432c0
..
4a01b7b
100644
(file)
--- a/
src/editor/modules/rng/rng.js
+++ b/
src/editor/modules/rng/rng.js
@@
-60,9
+60,9
@@
return function(sandbox) {
};
views.visualEditing.setView('rightColumn', views.visualEditingSidebar.getAsView());
};
views.visualEditing.setView('rightColumn', views.visualEditingSidebar.getAsView());
- addMainTab(
'Edytor'
, 'editor', views.visualEditing.getAsView());
+ addMainTab(
gettext('Editor')
, 'editor', views.visualEditing.getAsView());
addMainTab(gettext('Source'), 'sourceEditor', '');
addMainTab(gettext('Source'), 'sourceEditor', '');
- addMainTab(
'Historia'
, 'history', views.diffLayout.getAsView());
+ addMainTab(
gettext('History')
, 'history', views.diffLayout.getAsView());
sandbox.getDOM().append(views.mainLayout.getAsView());
sandbox.getDOM().append(views.mainLayout.getAsView());
@@
-108,10
+108,10
@@
return function(sandbox) {
diffFetched: function(diff) {
sandbox.getModule('diffViewer').setDiff(diff);
},
diffFetched: function(diff) {
sandbox.getModule('diffViewer').setDiff(diff);
},
- documentReverted: function(
event
) {
+ documentReverted: function(
version
) {
sandbox.getModule('mainBar').setCommandEnabled('save', true);
sandbox.getModule('mainBar').setCommandEnabled('save', true);
- sandbox.getModule('indicator').clearMessage({message:'Wersja ' +
event.reverted_
version + ' przywrócona'});
- sandbox.getModule('mainBar').setVersion(
event.current_
version);
+ sandbox.getModule('indicator').clearMessage({message:'Wersja ' + version + ' przywrócona'});
+ sandbox.getModule('mainBar').setVersion(version);
}
};
}
};
@@
-224,8
+224,8
@@
return function(sandbox) {
compare: function(ver1, ver2) {
sandbox.getModule('data').fetchDiff(ver1, ver2);
},
compare: function(ver1, ver2) {
sandbox.getModule('data').fetchDiff(ver1, ver2);
},
- restoreVersion: function(
event
) {
- sandbox.getModule('data').restoreVersion(
event
);
+ restoreVersion: function(
version
) {
+ sandbox.getModule('data').restoreVersion(
version
);
},
displayVersion: function(event) {
/* globals window */
},
displayVersion: function(event) {
/* globals window */