diff options
author | romangraef <romangraef@users.noreply.github.com> | 2021-08-12 23:32:25 +0000 |
---|---|---|
committer | romangraef <romangraef@users.noreply.github.com> | 2021-08-12 23:32:25 +0000 |
commit | 09dbaa8df9aec51cf41694266574ad330963dfbe (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /2/plugins/behaviors | |
parent | 2d930ff2584477b3c7ecda22110ae021db1a7767 (diff) | |
download | webos-09dbaa8df9aec51cf41694266574ad330963dfbe.tar.gz webos-09dbaa8df9aec51cf41694266574ad330963dfbe.tar.bz2 webos-09dbaa8df9aec51cf41694266574ad330963dfbe.zip |
Automated deployment: Thu Aug 12 23:32:25 UTC 2021 b08f576aaaac1242a35a8b9d6dd7482a8124d732
Diffstat (limited to '2/plugins/behaviors')
-rw-r--r-- | 2/plugins/behaviors/index.js | 178 |
1 files changed, 0 insertions, 178 deletions
diff --git a/2/plugins/behaviors/index.js b/2/plugins/behaviors/index.js deleted file mode 100644 index ecde54e..0000000 --- a/2/plugins/behaviors/index.js +++ /dev/null @@ -1,178 +0,0 @@ -'use strict';
-
-allure.api.addTranslation('en', {
- tab: {
- behaviors: {
- name: 'Behaviors'
- }
- },
- widget: {
- behaviors: {
- name: 'Features by stories',
- showAll: 'show all'
- }
- }
-});
-
-allure.api.addTranslation('ru', {
- tab: {
- behaviors: {
- name: 'Функциональность'
- }
- },
- widget: {
- behaviors: {
- name: 'Функциональность',
- showAll: 'показать все'
- }
- }
-});
-
-allure.api.addTranslation('zh', {
- tab: {
- behaviors: {
- name: '功能'
- }
- },
- widget: {
- behaviors: {
- name: '特性场景',
- showAll: '显示所有'
- }
- }
-});
-
-allure.api.addTranslation('de', {
- tab: {
- behaviors: {
- name: 'Verhalten'
- }
- },
- widget: {
- behaviors: {
- name: 'Features nach Stories',
- showAll: 'Zeige alle'
- }
- }
-});
-
-allure.api.addTranslation('nl', {
- tab: {
- behaviors: {
- name: 'Functionaliteit'
- }
- },
- widget: {
- behaviors: {
- name: 'Features en story’s',
- showAll: 'Toon alle'
- }
- }
-});
-
-allure.api.addTranslation('he', {
- tab: {
- behaviors: {
- name: 'התנהגויות'
- }
- },
- widget: {
- behaviors: {
- name: 'תכונות לפי סיפורי משתמש',
- showAll: 'הצג הכול'
- }
- }
-});
-
-allure.api.addTranslation('br', {
- tab: {
- behaviors: {
- name: 'Comportamentos'
- }
- },
- widget: {
- behaviors: {
- name: 'Funcionalidades por história',
- showAll: 'Mostrar tudo'
- }
- }
-});
-
-allure.api.addTranslation('ja', {
- tab: {
- behaviors: {
- name: '振る舞い'
- }
- },
- widget: {
- behaviors: {
- name: 'ストーリー別の機能',
- showAll: '全て表示'
- }
- }
-});
-
-allure.api.addTranslation('es', {
- tab: {
- behaviors: {
- name: 'Funcionalidades'
- }
- },
- widget: {
- behaviors: {
- name: 'Funcionalidades por Historias de Usuario',
- showAll: 'mostrar todo'
- }
- }
-});
-
-allure.api.addTranslation('kr', {
- tab: {
- behaviors: {
- name: '동작'
- }
- },
- widget: {
- behaviors: {
- name: '스토리별 기능',
- showAll: '전체 보기'
- }
- }
-});
-
-allure.api.addTranslation('fr', {
- tab: {
- behaviors: {
- name: 'Comportements'
- }
- },
- widget: {
- behaviors: {
- name: 'Thèmes par histoires',
- showAll: 'Montrer tout'
- }
- }
-});
-
-allure.api.addTab('behaviors', {
- title: 'tab.behaviors.name', icon: 'fa fa-list',
- route: 'behaviors(/)(:testGroup)(/)(:testResult)(/)(:testResultTab)(/)',
- onEnter: (function (testGroup, testResult, testResultTab) {
- return new allure.components.TreeLayout({
- testGroup: testGroup,
- testResult: testResult,
- testResultTab: testResultTab,
- tabName: 'tab.behaviors.name',
- baseUrl: 'behaviors',
- url: 'data/behaviors.json',
- csvUrl: 'data/behaviors.csv'
- });
- })
-});
-
-allure.api.addWidget('widgets', 'behaviors', allure.components.WidgetStatusView.extend({
- rowTag: 'a',
- title: 'widget.behaviors.name',
- baseUrl: 'behaviors',
- showLinks: true
-}));
|