diff --git a/demo-shell/resources/i18n/en.json b/demo-shell/resources/i18n/en.json index dac2b3a160..49e320781b 100644 --- a/demo-shell/resources/i18n/en.json +++ b/demo-shell/resources/i18n/en.json @@ -13,7 +13,15 @@ "READ_ONLY" : "Read only" }, "PERSONAL-FILES": "Personal Files", - "WARN-MULTIPLE-UPLOADS": "Warn on multiple uploads" + "WARN-MULTIPLE-UPLOADS": "Warn on multiple uploads", + "SEARCH": { + "RADIO": { + "NONE": "None", + "ALL": "All", + "FOLDER": "Folder", + "DOCUMENT": "Document" + } + } }, "title": "Welcome", "VERSION": { diff --git a/demo-shell/resources/i18n/ru.json b/demo-shell/resources/i18n/ru.json index a1c2369593..b1005cdd2a 100644 --- a/demo-shell/resources/i18n/ru.json +++ b/demo-shell/resources/i18n/ru.json @@ -11,7 +11,15 @@ "SHOW_COMMENTS": "Показать комментарии к версиям", "ALLOW_DOWNLOAD": "Разрешить загрузку версии" }, - "PERSONAL-FILES": "Личные файлы" + "PERSONAL-FILES": "Личные файлы", + "SEARCH": { + "RADIO": { + "NONE": "Ничего", + "ALL": "Все", + "FOLDER": "Папка", + "DOCUMENT": "Документ" + } + } }, "title": "Добро пожаловать", "VERSION": { diff --git a/demo-shell/src/app.config.json b/demo-shell/src/app.config.json index 429518c272..c97e4774df 100644 --- a/demo-shell/src/app.config.json +++ b/demo-shell/src/app.config.json @@ -170,10 +170,10 @@ "field": null, "pageSize": 5, "options": [ - { "name": "None", "value": "", "default": true }, - { "name": "All", "value": "TYPE:'cm:folder' OR TYPE:'cm:content'" }, - { "name": "Folder", "value": "TYPE:'cm:folder'" }, - { "name": "Document", "value": "TYPE:'cm:content'" } + { "name": "APP.SEARCH.RADIO.NONE", "value": "", "default": true }, + { "name": "APP.SEARCH.RADIO.ALL", "value": "TYPE:'cm:folder' OR TYPE:'cm:content'" }, + { "name": "APP.SEARCH.RADIO.FOLDER", "value": "TYPE:'cm:folder'" }, + { "name": "APP.SEARCH.RADIO.DOCUMENT", "value": "TYPE:'cm:content'" } ] } }