mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Merge pull request #1154 from uniun/missing-translations-entity
FIX. Missing translation entity
This commit is contained in:
commit
c0a44db56b
@ -118,7 +118,7 @@
|
|||||||
// update button
|
// update button
|
||||||
updateURLFromTitle = $('<button />', {
|
updateURLFromTitle = $('<button />', {
|
||||||
'class': 'update ss-ui-button-small',
|
'class': 'update ss-ui-button-small',
|
||||||
'text': 'Update URL',
|
'text': ss.i18n._t('URLSEGMENT.UpdateURL'),
|
||||||
'click': function(e) {
|
'click': function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
self.updateURLSegment(self.val());
|
self.updateURLSegment(self.val());
|
||||||
|
@ -40,7 +40,8 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
|
|||||||
"CMSMain.RollbackToVersion": "Do you really want to roll back to version #%s of this page?",
|
"CMSMain.RollbackToVersion": "Do you really want to roll back to version #%s of this page?",
|
||||||
"URLSEGMENT.Edit": "Edit",
|
"URLSEGMENT.Edit": "Edit",
|
||||||
"URLSEGMENT.OK": "OK",
|
"URLSEGMENT.OK": "OK",
|
||||||
"URLSEGMENT.Cancel": "Cancel"
|
"URLSEGMENT.Cancel": "Cancel",
|
||||||
|
"URLSEGMENT.UpdateURL": "Update URL"
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
@ -35,5 +35,6 @@
|
|||||||
"CMSMain.RollbackToVersion": "Do you really want to roll back to version #%s of this page?",
|
"CMSMain.RollbackToVersion": "Do you really want to roll back to version #%s of this page?",
|
||||||
"URLSEGMENT.Edit": "Edit",
|
"URLSEGMENT.Edit": "Edit",
|
||||||
"URLSEGMENT.OK": "OK",
|
"URLSEGMENT.OK": "OK",
|
||||||
"URLSEGMENT.Cancel": "Cancel"
|
"URLSEGMENT.Cancel": "Cancel",
|
||||||
|
"URLSEGMENT.UpdateURL": "Update URL"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user