Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ui/app
diff options
context:
space:
mode:
authorMārtiņš Tālbergs <martins.talbergs@zabbix.com>2020-12-21 16:26:09 +0300
committerMārtiņš Tālbergs <martins.talbergs@zabbix.com>2020-12-21 16:26:09 +0300
commitbe60accd5fafd13548f047aeef99fe51a9383407 (patch)
treecb95a1d6aa9e57a34340861468229e27d66438fe /ui/app
parent41cb3f4e8b725305cca2ca268e016110460406ee (diff)
..F....... [ZBXNEXT-6207] fixed incorrect translation strings
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/controllers/CControllerTokenEdit.php2
-rw-r--r--ui/app/controllers/CControllerTokenList.php2
-rw-r--r--ui/app/controllers/CControllerTokenView.php2
-rw-r--r--ui/app/controllers/CControllerUserTokenEdit.php2
-rw-r--r--ui/app/controllers/CControllerUserTokenList.php2
-rw-r--r--ui/app/controllers/CControllerUserTokenView.php2
-rw-r--r--ui/app/views/administration.token.edit.php2
-rw-r--r--ui/app/views/administration.token.list.php2
-rw-r--r--ui/app/views/administration.token.view.php2
-rw-r--r--ui/app/views/administration.user.token.edit.php2
-rw-r--r--ui/app/views/administration.user.token.list.php2
-rw-r--r--ui/app/views/administration.user.token.view.php2
12 files changed, 12 insertions, 12 deletions
diff --git a/ui/app/controllers/CControllerTokenEdit.php b/ui/app/controllers/CControllerTokenEdit.php
index 942b0cf81f9..a7c00ba1b58 100644
--- a/ui/app/controllers/CControllerTokenEdit.php
+++ b/ui/app/controllers/CControllerTokenEdit.php
@@ -99,7 +99,7 @@ class CControllerTokenEdit extends CController {
}
$response = new CControllerResponseData($data);
- $response->setTitle(_('API Tokens'));
+ $response->setTitle(_('API tokens'));
$this->setResponse($response);
}
}
diff --git a/ui/app/controllers/CControllerTokenList.php b/ui/app/controllers/CControllerTokenList.php
index 1460172e5a7..3caacaae99a 100644
--- a/ui/app/controllers/CControllerTokenList.php
+++ b/ui/app/controllers/CControllerTokenList.php
@@ -179,7 +179,7 @@ class CControllerTokenList extends CController {
);
$response = new CControllerResponseData($data);
- $response->setTitle(_('API Tokens'));
+ $response->setTitle(_('API tokens'));
$this->setResponse($response);
}
}
diff --git a/ui/app/controllers/CControllerTokenView.php b/ui/app/controllers/CControllerTokenView.php
index b678f4ef0b5..1197204a6fb 100644
--- a/ui/app/controllers/CControllerTokenView.php
+++ b/ui/app/controllers/CControllerTokenView.php
@@ -48,7 +48,7 @@ class CControllerTokenView extends CController {
protected function doAction() {
$data = $this->getInputAll();
$response = new CControllerResponseData($data);
- $response->setTitle(_('API Tokens'));
+ $response->setTitle(_('API tokens'));
$this->setResponse($response);
}
}
diff --git a/ui/app/controllers/CControllerUserTokenEdit.php b/ui/app/controllers/CControllerUserTokenEdit.php
index ea39695845e..e47786e50d2 100644
--- a/ui/app/controllers/CControllerUserTokenEdit.php
+++ b/ui/app/controllers/CControllerUserTokenEdit.php
@@ -99,7 +99,7 @@ class CControllerUserTokenEdit extends CController {
}
$response = new CControllerResponseData($data);
- $response->setTitle(_('API Tokens'));
+ $response->setTitle(_('API tokens'));
$this->setResponse($response);
}
}
diff --git a/ui/app/controllers/CControllerUserTokenList.php b/ui/app/controllers/CControllerUserTokenList.php
index 02a87414781..0d27316af1d 100644
--- a/ui/app/controllers/CControllerUserTokenList.php
+++ b/ui/app/controllers/CControllerUserTokenList.php
@@ -124,7 +124,7 @@ class CControllerUserTokenList extends CController {
);
$response = new CControllerResponseData($data);
- $response->setTitle(_('API Tokens'));
+ $response->setTitle(_('API tokens'));
$this->setResponse($response);
}
}
diff --git a/ui/app/controllers/CControllerUserTokenView.php b/ui/app/controllers/CControllerUserTokenView.php
index acf998362bd..089c30d81c4 100644
--- a/ui/app/controllers/CControllerUserTokenView.php
+++ b/ui/app/controllers/CControllerUserTokenView.php
@@ -46,7 +46,7 @@ class CControllerUserTokenView extends CController {
protected function doAction() {
$data = $this->getInputAll();
$response = new CControllerResponseData($data);
- $response->setTitle(_('API Tokens'));
+ $response->setTitle(_('API tokens'));
$this->setResponse($response);
}
}
diff --git a/ui/app/views/administration.token.edit.php b/ui/app/views/administration.token.edit.php
index 0ed451c7f95..b558cd0a5a2 100644
--- a/ui/app/views/administration.token.edit.php
+++ b/ui/app/views/administration.token.edit.php
@@ -29,7 +29,7 @@ $this->addJsFile('class.calendar.js');
$this->includeJsFile('administration.token.edit.js.php');
$widget = (new CWidget())
- ->setTitle(_('API Tokens'))
+ ->setTitle(_('API tokens'))
->setTitleSubmenu(getAdministrationGeneralSubmenu());
$token_form = (new CForm())
diff --git a/ui/app/views/administration.token.list.php b/ui/app/views/administration.token.list.php
index e322dffbbe5..6d369072edf 100644
--- a/ui/app/views/administration.token.list.php
+++ b/ui/app/views/administration.token.list.php
@@ -99,7 +99,7 @@ $filter
]);
$widget = (new CWidget())
- ->setTitle(_('API Tokens'))
+ ->setTitle(_('API tokens'))
->setTitleSubmenu(getAdministrationGeneralSubmenu())
->setControls(
(new CTag('nav', true,
diff --git a/ui/app/views/administration.token.view.php b/ui/app/views/administration.token.view.php
index ad07c3d90ae..356bf4c755f 100644
--- a/ui/app/views/administration.token.view.php
+++ b/ui/app/views/administration.token.view.php
@@ -24,7 +24,7 @@
*/
$widget = (new CWidget())
- ->setTitle(_('API Tokens'))
+ ->setTitle(_('API tokens'))
->setTitleSubmenu(getAdministrationGeneralSubmenu());
$token_form = (new CForm())
diff --git a/ui/app/views/administration.user.token.edit.php b/ui/app/views/administration.user.token.edit.php
index 6283b1cc9f5..a64683f5fb1 100644
--- a/ui/app/views/administration.user.token.edit.php
+++ b/ui/app/views/administration.user.token.edit.php
@@ -27,7 +27,7 @@ $this->addJsFile('class.calendar.js');
$this->includeJsFile('administration.user.token.edit.js.php');
-$widget = (new CWidget())->setTitle(_('API Tokens'));
+$widget = (new CWidget())->setTitle(_('API tokens'));
$token_form = (new CForm())
->setId('token_form')
diff --git a/ui/app/views/administration.user.token.list.php b/ui/app/views/administration.user.token.list.php
index c198df33687..a0117766887 100644
--- a/ui/app/views/administration.user.token.list.php
+++ b/ui/app/views/administration.user.token.list.php
@@ -64,7 +64,7 @@ $filter
]);
$widget = (new CWidget())
- ->setTitle(_('API Tokens'))
+ ->setTitle(_('API tokens'))
->setControls(
(new CTag('nav', true,
(new CList())->addItem(new CRedirectButton(_('Create API token'),
diff --git a/ui/app/views/administration.user.token.view.php b/ui/app/views/administration.user.token.view.php
index 06b67ed126a..01242306a06 100644
--- a/ui/app/views/administration.user.token.view.php
+++ b/ui/app/views/administration.user.token.view.php
@@ -23,7 +23,7 @@
* @var CView $this
*/
-$widget = (new CWidget())->setTitle(_('API Tokens'));
+$widget = (new CWidget())->setTitle(_('API tokens'));
$token_form = (new CForm())
->setId('token_form')