import fix

This commit is contained in:
yuri
2018-08-15 13:56:42 +03:00
parent fd2b9cc818
commit 106961ff03
3 changed files with 8 additions and 7 deletions
@@ -52,7 +52,8 @@
"Updated": "Updated",
"Skip searching for duplicates": "Skip searching for duplicates",
"Timezone": "Timezone",
"Remove Import Log": "Remove Import Log"
"Remove Import Log": "Remove Import Log",
"New Import": "New Import"
},
"messages": {
"utf8": "Should be UTF-8 encoded",
@@ -1,12 +1,12 @@
{
"controller": "controllers/import",
"recordViews": {
"list":"Import.Record.List",
"detail": "Import.Record.Detail"
"list": "import/record/list"
"detail": "import/record/detail"
},
"views": {
"list": "Import.List",
"detail": "Import.Detail"
"list": "views/import/list",
"detail": "views/import/detail"
},
"bottomPanels": {
"detail": [
+2 -2
View File
@@ -36,9 +36,9 @@ Espo.define('views/import/list', 'views/list', function (Dep) {
Dep.prototype.setup.call(this);
this.menu.buttons.unshift({
label: this.translate('Import', 'scopeNames'),
html: 'New Import',
link: '#Import',
style: 'danger',
style: 'primary',
acl: 'edit'
});
}