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
diff options
context:
space:
mode:
Diffstat (limited to 'ui/include/classes/api/services/CItemGeneral.php')
-rw-r--r--ui/include/classes/api/services/CItemGeneral.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/include/classes/api/services/CItemGeneral.php b/ui/include/classes/api/services/CItemGeneral.php
index 6c5746e16ce..7b51f4b9b50 100644
--- a/ui/include/classes/api/services/CItemGeneral.php
+++ b/ui/include/classes/api/services/CItemGeneral.php
@@ -701,8 +701,8 @@ abstract class CItemGeneral extends CApiService {
switch ($upd_db_item['flags']) {
case ZBX_FLAG_DISCOVERY_NORMAL:
$error = $target_is_host
- ? _('Cannot inherit LLD rule with key "%1$s" of template "%2$s" to host "%3$s", because a discovered item with the same key already exists.')
- : _('Cannot inherit LLD rule with key "%1$s" of template "%2$s" to template "%3$s", because a discovered item with the same key already exists.');
+ ? _('Cannot inherit LLD rule with key "%1$s" of template "%2$s" to host "%3$s", because an item with the same key already exists.')
+ : _('Cannot inherit LLD rule with key "%1$s" of template "%2$s" to template "%3$s", because an item with the same key already exists.');
break 2;
case ZBX_FLAG_DISCOVERY_PROTOTYPE:
@@ -722,8 +722,8 @@ abstract class CItemGeneral extends CApiService {
switch ($upd_db_item['flags']) {
case ZBX_FLAG_DISCOVERY_NORMAL:
$error = $target_is_host
- ? _('Cannot inherit item prototype with key "%1$s" of template "%2$s" to host "%3$s", because a discovered item with the same key already exists.')
- : _('Cannot inherit item prototype with key "%1$s" of template "%2$s" to template "%3$s", because a discovered item with the same key already exists.');
+ ? _('Cannot inherit item prototype with key "%1$s" of template "%2$s" to host "%3$s", because an item with the same key already exists.')
+ : _('Cannot inherit item prototype with key "%1$s" of template "%2$s" to template "%3$s", because an item with the same key already exists.');
break 2;
case ZBX_FLAG_DISCOVERY_RULE: