diff --git a/CHANGELOG.md b/CHANGELOG.md
index f3c59eeda..32f50e132 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,42 @@
+
+## [2.13.8](https://github.com/pluginsGLPI/formcreator/compare/2.13.7..2.13.8) (2023-111-08)
+
+
+### Bug Fixes
+
+* restoring ticket may create inconsistency in DB ([3cf3e4ebd](https://github.com/pluginsGLPI/formcreator/commit/3cf3e4ebd))
+* **abstractitiltarget:** itil category from template shall not take precedence ([8f8d9a7c4](https://github.com/pluginsGLPI/formcreator/commit/8f8d9a7c4))
+* **category:** translation feature of dropdowns not handled ([6287f1b34](https://github.com/pluginsGLPI/formcreator/commit/6287f1b34))
+* **dropdownfield:** display of username ([af43a9cf1](https://github.com/pluginsGLPI/formcreator/commit/af43a9cf1))
+* **form:** better theme compatibility, UI enhancement ([9146ea57a](https://github.com/pluginsGLPI/formcreator/commit/9146ea57a))
+* **form:** import access restrictions may ignore uuids ([9d23d4c1e](https://github.com/pluginsGLPI/formcreator/commit/9d23d4c1e))
+* **formanswer:** redirect after submit may lead to unavailable page ([599451af4](https://github.com/pluginsGLPI/formcreator/commit/599451af4))
+* **formanswer:** requester can edit refused answer ([c4f799b2c](https://github.com/pluginsGLPI/formcreator/commit/c4f799b2c))
+* **formanswer:** show spinner when validate ([c59dc72ac](https://github.com/pluginsGLPI/formcreator/commit/c59dc72ac))
+* **formanswer:** status update on ticket change ([079a12063](https://github.com/pluginsGLPI/formcreator/commit/079a12063))
+* **glpiselectfield:** disable anonymization of user for answer resolution ([66bea30e0](https://github.com/pluginsGLPI/formcreator/commit/66bea30e0))
+* **glpiselectfield,dropdownfield:** prevent php warning ([4da93e38e](https://github.com/pluginsGLPI/formcreator/commit/4da93e38e))
+* **install:** ineffective data fix un upgrade to 2.13.7 ([c31134c35](https://github.com/pluginsGLPI/formcreator/commit/c31134c35))
+* **issue:** SQL scaping problem when updating a ticket ([56ddff261](https://github.com/pluginsGLPI/formcreator/commit/56ddff261))
+* **issue:** bad status if ticket has valdiation on creation ([fc0ea0a00](https://github.com/pluginsGLPI/formcreator/commit/fc0ea0a00))
+* **locales:** resolve locales management warnings ([d5db37452](https://github.com/pluginsGLPI/formcreator/commit/d5db37452))
+* **radiosfield,checkboxesfield,glpiselectfield,requesttypefield,urgencyfield:** validate default value before saving ([4815abeda](https://github.com/pluginsGLPI/formcreator/commit/4815abeda))
+* **requesttype:** force english for comparisons ([7b9e94114](https://github.com/pluginsGLPI/formcreator/commit/7b9e94114))
+* **selectfield:** translation breaks validation checks ([28b4781d8](https://github.com/pluginsGLPI/formcreator/commit/28b4781d8))
+* **target_actor:** actors ID not converted when duplicating a form ([c5167c16c](https://github.com/pluginsGLPI/formcreator/commit/c5167c16c))
+* **textareadield:** missing translation for default value ([bda43df77](https://github.com/pluginsGLPI/formcreator/commit/bda43df77))
+
+
+### Features
+
+* **DropdownField:** Load translation for plugin too ([16a1379a8](https://github.com/pluginsGLPI/formcreator/commit/16a1379a8))
+* **DropdownField:** Load translation for plugin too ([6af1766d1](https://github.com/pluginsGLPI/formcreator/commit/6af1766d1))
+* **formanswer:** log any failure when saving a answer ([5d84054af](https://github.com/pluginsGLPI/formcreator/commit/5d84054af))
+* **formanswer:** show item's name in web page title ([c7e81cb9d](https://github.com/pluginsGLPI/formcreator/commit/c7e81cb9d))
+* **glpiselectfield:** attach existing documents to targets ([63999d068](https://github.com/pluginsGLPI/formcreator/commit/63999d068))
+
+
+
## [2.13.7](https://github.com/pluginsGLPI/formcreator/compare/2.13.6..2.13.7) (2023-07-19)
diff --git a/RoboFile.php b/RoboFile.php
index 59397ae58..9d07b7cc6 100644
--- a/RoboFile.php
+++ b/RoboFile.php
@@ -206,7 +206,7 @@ public function archiveBuild($release = 'release') {
$success = $this->taskExec('composer')
->arg('install')
->arg('--no-dev')
- ->arg("--working-dir='$archiveWorkdir/$pluginName'")
+ ->arg("--working-dir=$archiveWorkdir/$pluginName")
->run();
if ($success->getExitCode() != 0) {
throw new RuntimeException("failed to generate PHP resources");
diff --git a/inc/entityconfig.class.php b/inc/entityconfig.class.php
index 58e895fdf..1767af4c4 100644
--- a/inc/entityconfig.class.php
+++ b/inc/entityconfig.class.php
@@ -90,7 +90,7 @@ public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) {
$tabNames = [];
if (!$withtemplate) {
if ($item->getType() == 'Entity') {
- $tabNames[1] = self::createTabEntry(_n('Form', 'Forms', Session::getPluralNumber(), 'formcreator'), 0, PluginFormcreatorForm::getType(), self::getIcon());
+ $tabNames[1] = self::createTabEntry(PluginFormcreatorForm::getTypeName(Session::getPluralNumber()), 0, PluginFormcreatorForm::getType(), self::getIcon());
}
}
return $tabNames;
diff --git a/inc/field/fieldsfield.class.php b/inc/field/fieldsfield.class.php
index 3c13279f7..4b26fd4b1 100644
--- a/inc/field/fieldsfield.class.php
+++ b/inc/field/fieldsfield.class.php
@@ -563,7 +563,7 @@ public function parseAnswerValues($input, $nonDestructive = false): bool {
}
public static function getName(): string {
- return __("Additionnal fields", "fields");
+ return __("Additional fields", "fields");
}
public static function canRequire(): bool {
diff --git a/inc/field/ldapselectfield.class.php b/inc/field/ldapselectfield.class.php
index 01a6309cf..05afe1132 100644
--- a/inc/field/ldapselectfield.class.php
+++ b/inc/field/ldapselectfield.class.php
@@ -152,6 +152,7 @@ public function prepareQuestionInputForSave($input) {
if (isset($ldap_values['ldap_attribute'])) {
$ldap_dropdown = RuleRightParameter::getById((int) $ldap_values['ldap_attribute']);
if (!($ldap_dropdown instanceof RuleRightParameter)) {
+ Session::addMessageAfterRedirect(__('LDAP attribute is required!', 'formcreator'), false, ERROR);
return [];
}
}
diff --git a/inc/form.class.php b/inc/form.class.php
index b1eafb776..1ca1cf003 100644
--- a/inc/form.class.php
+++ b/inc/form.class.php
@@ -513,7 +513,7 @@ public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) {
];
}
if ($item->getType() == Central::class) {
- return _n('Form', 'Forms', Session::getPluralNumber(), 'formcreator');
+ return PluginFormcreatorForm::getTypeName(Session::getPluralNumber());
}
return '';
}
@@ -2017,7 +2017,7 @@ public function showForCentral() {
echo '
';
echo '';
- echo '' . _n('Form', 'Forms', 2, 'formcreator') . ' | ';
+ echo '' . PluginFormcreatorForm::getTypeName(Session::getPluralNumber()) . ' | ';
echo '
';
$currentCategoryId = -1;
diff --git a/inc/formanswer.class.php b/inc/formanswer.class.php
index 829540f53..e5924f794 100644
--- a/inc/formanswer.class.php
+++ b/inc/formanswer.class.php
@@ -1282,10 +1282,6 @@ public function post_addItem() {
'plugin_formcreator_questions_id' => $questionId,
'answer' => Toolbox::addslashes_deep($answer_value),
], [], 0);
- if ($answer->isNewItem()) {
- $formanswerId = $this->getID();
- trigger_error("Formcreator: failed to save answer for question $questionId in formanswer ID $formanswerId. Value was: $answer_value", E_USER_WARNING);
- }
foreach ($field->getDocumentsForTarget() as $documentId) {
$docItem = new Document_Item();
$docItem->add([
diff --git a/install/mysql/plugin_formcreator_2.13.8_empty.sql b/install/mysql/plugin_formcreator_2.13.8_empty.sql
new file mode 100644
index 000000000..6838b92fb
--- /dev/null
+++ b/install/mysql/plugin_formcreator_2.13.8_empty.sql
@@ -0,0 +1,352 @@
+-- Database schema
+-- Do NOT drop anything here
+
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_answers` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_formanswers_id` int unsigned NOT NULL DEFAULT '0',
+ `plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT '0',
+ `answer` longtext,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_formanswers_id` (`plugin_formcreator_formanswers_id`),
+ INDEX `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_categories` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `comment` mediumtext,
+ `completename` varchar(255) DEFAULT NULL,
+ `plugin_formcreator_categories_id` int unsigned NOT NULL DEFAULT '0',
+ `level` int(11) NOT NULL DEFAULT '1',
+ `sons_cache` longtext,
+ `ancestors_cache` longtext,
+ `knowbaseitemcategories_id` int unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`),
+ INDEX `name` (`name`),
+ INDEX `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
+ INDEX `plugin_formcreator_categories_id` (`plugin_formcreator_categories_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_entityconfigs` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `entities_id` int unsigned NOT NULL DEFAULT '0',
+ `replace_helpdesk` int(11) NOT NULL DEFAULT '-2',
+ `default_form_list_mode` int(11) NOT NULL DEFAULT '-2',
+ `sort_order` int(11) NOT NULL DEFAULT '-2',
+ `is_kb_separated` int(11) NOT NULL DEFAULT '-2',
+ `is_search_visible` int(11) NOT NULL DEFAULT '-2',
+ `is_dashboard_visible` int(11) NOT NULL DEFAULT '-2',
+ `is_header_visible` int(11) NOT NULL DEFAULT '-2',
+ `is_search_issue_visible` int(11) NOT NULL DEFAULT '-2',
+ `tile_design` int(11) NOT NULL DEFAULT '-2',
+ `header` text,
+ `service_catalog_home` int(11) NOT NULL DEFAULT '-2',
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `unicity` (`entities_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `entities_id` int unsigned NOT NULL DEFAULT '0',
+ `is_recursive` tinyint(1) NOT NULL DEFAULT '0',
+ `icon` varchar(255) NOT NULL DEFAULT '',
+ `icon_color` varchar(255) NOT NULL DEFAULT '',
+ `background_color` varchar(255) NOT NULL DEFAULT '',
+ `access_rights` tinyint(1) NOT NULL DEFAULT '1',
+ `description` varchar(255) DEFAULT NULL,
+ `content` longtext,
+ `plugin_formcreator_categories_id` int unsigned NOT NULL DEFAULT '0',
+ `is_active` tinyint(1) NOT NULL DEFAULT '0',
+ `language` varchar(255) NOT NULL DEFAULT '',
+ `helpdesk_home` tinyint(1) NOT NULL DEFAULT '0',
+ `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
+ `validation_required` tinyint(1) NOT NULL DEFAULT '0',
+ `usage_count` int(11) NOT NULL DEFAULT '0',
+ `is_default` tinyint(1) NOT NULL DEFAULT '0',
+ `is_captcha_enabled` tinyint(1) NOT NULL DEFAULT '0',
+ `show_rule` int(11) NOT NULL DEFAULT '1' COMMENT 'Conditions setting to show the submit button',
+ `formanswer_name` varchar(255) NOT NULL DEFAULT '',
+ `is_visible` tinyint NOT NULL DEFAULT 1,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `entities_id` (`entities_id`),
+ INDEX `plugin_formcreator_categories_id` (`plugin_formcreator_categories_id`),
+ FULLTEXT KEY `Search` (`name`,`description`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_formanswers` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `entities_id` int unsigned NOT NULL DEFAULT '0',
+ `is_recursive` tinyint(1) NOT NULL DEFAULT '0',
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `requester_id` int unsigned NOT NULL DEFAULT '0',
+ `users_id_validator` int unsigned NOT NULL DEFAULT '0' COMMENT 'User in charge of validation',
+ `groups_id_validator` int unsigned NOT NULL DEFAULT '0' COMMENT 'Group in charge of validation',
+ `request_date` timestamp NULL,
+ `status` int(11) NOT NULL DEFAULT '101',
+ `comment` mediumtext,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_forms_id` (`plugin_formcreator_forms_id`),
+ INDEX `entities_id_is_recursive` (`entities_id`, `is_recursive`),
+ INDEX `requester_id` (`requester_id`),
+ INDEX `users_id_validator` (`users_id_validator`),
+ INDEX `groups_id_validator` (`groups_id_validator`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms_profiles` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `profiles_id` int unsigned NOT NULL DEFAULT '0',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`profiles_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms_users` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_forms_id` int unsigned NOT NULL,
+ `users_id` int unsigned NOT NULL,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`users_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms_groups` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_forms_id` int unsigned NOT NULL,
+ `groups_id` int unsigned NOT NULL,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`groups_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms_validators` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `itemtype` varchar(255) NOT NULL DEFAULT '',
+ `items_id` int unsigned NOT NULL DEFAULT '0',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`itemtype`,`items_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questions` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `plugin_formcreator_sections_id` int unsigned NOT NULL DEFAULT '0',
+ `fieldtype` varchar(30) NOT NULL DEFAULT 'text',
+ `required` tinyint(1) NOT NULL DEFAULT '0',
+ `show_empty` tinyint(1) NOT NULL DEFAULT '0',
+ `default_values` mediumtext,
+ `itemtype` varchar(255) NOT NULL DEFAULT '' COMMENT 'itemtype used for glpi objects and dropdown question types',
+ `values` mediumtext,
+ `description` mediumtext,
+ `row` int(11) NOT NULL DEFAULT '0',
+ `col` int(11) NOT NULL DEFAULT '0',
+ `width` int(11) NOT NULL DEFAULT '0',
+ `show_rule` int(11) NOT NULL DEFAULT '1',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_sections_id` (`plugin_formcreator_sections_id`),
+ FULLTEXT KEY `Search` (`name`,`description`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_conditions` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `itemtype` varchar(255) NOT NULL DEFAULT '' COMMENT 'itemtype of the item affected by the condition',
+ `items_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'item ID of the item affected by the condition',
+ `plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'question to test for the condition',
+ `show_condition` int(11) NOT NULL DEFAULT '0',
+ `show_value` mediumtext NULL DEFAULT NULL,
+ `show_logic` int(11) NOT NULL DEFAULT '1',
+ `order` int(11) NOT NULL DEFAULT '1',
+ `uuid` varchar(255) NULL DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`),
+ INDEX `item` (`itemtype`, `items_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_sections` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `order` int(11) NOT NULL DEFAULT '0',
+ `show_rule` int(11) NOT NULL DEFAULT '1',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_forms_id` (`plugin_formcreator_forms_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targetchanges` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `target_name` varchar(255) NOT NULL DEFAULT '',
+ `changetemplates_id` int unsigned NOT NULL DEFAULT '0',
+ `content` longtext,
+ `impactcontent` longtext,
+ `controlistcontent` longtext,
+ `rolloutplancontent` longtext,
+ `backoutplancontent` longtext,
+ `checklistcontent` longtext,
+ `due_date_rule` int(11) NOT NULL DEFAULT '1',
+ `due_date_question` int unsigned NOT NULL DEFAULT '0',
+ `due_date_value` tinyint(4) DEFAULT NULL,
+ `due_date_period` int(11) NOT NULL DEFAULT '0',
+ `urgency_rule` int(11) NOT NULL DEFAULT '1',
+ `urgency_question` int unsigned NOT NULL DEFAULT '0',
+ `validation_followup` tinyint(1) NOT NULL DEFAULT '1',
+ `destination_entity` int(11) NOT NULL DEFAULT '1',
+ `destination_entity_value` int unsigned NOT NULL DEFAULT '0',
+ `tag_type` int(11) NOT NULL DEFAULT '1',
+ `tag_questions` varchar(255) NOT NULL DEFAULT '',
+ `tag_specifics` varchar(255) NOT NULL DEFAULT '',
+ `category_rule` int(11) NOT NULL DEFAULT '1',
+ `category_question` int unsigned NOT NULL DEFAULT '0',
+ `commonitil_validation_rule` int(11) NOT NULL DEFAULT '1',
+ `commonitil_validation_question` varchar(255) DEFAULT NULL,
+ `show_rule` int(11) NOT NULL DEFAULT '1',
+ `sla_rule` int(11) NOT NULL DEFAULT '1',
+ `sla_question_tto` int unsigned NOT NULL DEFAULT '0',
+ `sla_question_ttr` int unsigned NOT NULL DEFAULT '0',
+ `ola_rule` int(11) NOT NULL DEFAULT '1',
+ `ola_question_tto` int unsigned NOT NULL DEFAULT '0',
+ `ola_question_ttr` int unsigned NOT NULL DEFAULT '0',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targettickets` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `target_name` varchar(255) NOT NULL DEFAULT '',
+ `source_rule` int(11) NOT NULL DEFAULT '0',
+ `source_question` int(11) NOT NULL DEFAULT '0',
+ `type_rule` int(11) NOT NULL DEFAULT '0',
+ `type_question` int unsigned NOT NULL DEFAULT '0',
+ `tickettemplates_id` int unsigned NOT NULL DEFAULT '0',
+ `content` longtext,
+ `due_date_rule` int(11) NOT NULL DEFAULT '1',
+ `due_date_question` int unsigned NOT NULL DEFAULT '0',
+ `due_date_value` tinyint(4) DEFAULT NULL,
+ `due_date_period` int(11) NOT NULL DEFAULT '0',
+ `urgency_rule` int(11) NOT NULL DEFAULT '1',
+ `urgency_question` int unsigned NOT NULL DEFAULT '0',
+ `validation_followup` tinyint(1) NOT NULL DEFAULT '1',
+ `destination_entity` int(11) NOT NULL DEFAULT '1',
+ `destination_entity_value` int unsigned NOT NULL DEFAULT '0',
+ `tag_type` int(11) NOT NULL DEFAULT '1',
+ `tag_questions` varchar(255) NOT NULL DEFAULT '',
+ `tag_specifics` varchar(255) NOT NULL DEFAULT '',
+ `category_rule` int(11) NOT NULL DEFAULT '1',
+ `category_question` int unsigned NOT NULL DEFAULT '0',
+ `associate_rule` int(11) NOT NULL DEFAULT '1',
+ `associate_question` int unsigned NOT NULL DEFAULT '0',
+ `location_rule` int(11) NOT NULL DEFAULT '1',
+ `location_question` int unsigned NOT NULL DEFAULT '0',
+ `commonitil_validation_rule` int(11) NOT NULL DEFAULT '1',
+ `commonitil_validation_question` varchar(255) DEFAULT NULL,
+ `show_rule` int(11) NOT NULL DEFAULT '1',
+ `sla_rule` int(11) NOT NULL DEFAULT '1',
+ `sla_question_tto` int unsigned NOT NULL DEFAULT '0',
+ `sla_question_ttr` int unsigned NOT NULL DEFAULT '0',
+ `ola_rule` int(11) NOT NULL DEFAULT '1',
+ `ola_question_tto` int unsigned NOT NULL DEFAULT '0',
+ `ola_question_ttr` int unsigned NOT NULL DEFAULT '0',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `tickettemplates_id` (`tickettemplates_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targetproblems` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL DEFAULT '',
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `target_name` varchar(255) NOT NULL DEFAULT '',
+ `problemtemplates_id` int unsigned NOT NULL DEFAULT '0',
+ `content` longtext,
+ `impactcontent` longtext,
+ `causecontent` longtext,
+ `symptomcontent` longtext,
+ `urgency_rule` int(11) NOT NULL DEFAULT '1',
+ `urgency_question` int unsigned NOT NULL DEFAULT '0',
+ `destination_entity` int(11) NOT NULL DEFAULT '1',
+ `destination_entity_value` int unsigned NOT NULL DEFAULT '0',
+ `tag_type` int(11) NOT NULL DEFAULT '1',
+ `tag_questions` varchar(255) NOT NULL DEFAULT '',
+ `tag_specifics` varchar(255) NOT NULL DEFAULT '',
+ `category_rule` int(11) NOT NULL DEFAULT '1',
+ `category_question` int unsigned NOT NULL DEFAULT '0',
+ `show_rule` int(11) NOT NULL DEFAULT '1',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `problemtemplates_id` (`problemtemplates_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_targets_actors` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `itemtype` varchar(255) DEFAULT NULL,
+ `items_id` int unsigned NOT NULL DEFAULT '0',
+ `actor_role` int(11) NOT NULL DEFAULT '1',
+ `actor_type` int(11) NOT NULL DEFAULT '1',
+ `actor_value` int unsigned NOT NULL DEFAULT '0',
+ `use_notification` tinyint(1) NOT NULL DEFAULT '1',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `item` (`itemtype`, `items_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_issues` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NULL DEFAULT NULL,
+ `display_id` varchar(255) NOT NULL,
+ `items_id` int unsigned NOT NULL DEFAULT '0',
+ `itemtype` varchar(255) NOT NULL DEFAULT '',
+ `status` varchar(255) NOT NULL DEFAULT '',
+ `date_creation` timestamp NULL,
+ `date_mod` timestamp NULL,
+ `entities_id` int unsigned NOT NULL DEFAULT '0',
+ `is_recursive` tinyint(1) NOT NULL DEFAULT '0',
+ `requester_id` int unsigned NOT NULL DEFAULT '0',
+ `comment` longtext,
+ `users_id_recipient` int unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`),
+ INDEX `item` (`itemtype`, `items_id`),
+ INDEX `entities_id` (`entities_id`),
+ INDEX `requester_id` (`requester_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_items_targettickets` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_targettickets_id` int unsigned NOT NULL DEFAULT '0',
+ `link` int(11) NOT NULL DEFAULT '0',
+ `itemtype` varchar(255) NOT NULL DEFAULT '',
+ `items_id` int unsigned NOT NULL DEFAULT '0',
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_targettickets_id` (`plugin_formcreator_targettickets_id`),
+ INDEX `item` (`itemtype`,`items_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questiondependencies` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT '0',
+ `plugin_formcreator_questions_id_2` int unsigned NOT NULL DEFAULT '0',
+ `fieldname` varchar(255) DEFAULT NULL,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`),
+ INDEX `plugin_formcreator_questions_id_2` (`plugin_formcreator_questions_id_2`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questionregexes` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT '0',
+ `regex` mediumtext DEFAULT NULL,
+ `fieldname` varchar(255) DEFAULT NULL,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_questionranges` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_questions_id` int unsigned NOT NULL DEFAULT '0',
+ `range_min` varchar(255) DEFAULT NULL,
+ `range_max` varchar(255) DEFAULT NULL,
+ `fieldname` varchar(255) DEFAULT NULL,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ INDEX `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
+CREATE TABLE IF NOT EXISTS `glpi_plugin_formcreator_forms_languages` (
+ `id` int unsigned NOT NULL AUTO_INCREMENT,
+ `plugin_formcreator_forms_id` int unsigned NOT NULL DEFAULT '0',
+ `name` varchar(255) DEFAULT NULL,
+ `comment` text,
+ `uuid` varchar(255) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
\ No newline at end of file
diff --git a/install/upgrade_to_2.13.7.php b/install/upgrade_to_2.13.7.php
index bd2f9ce84..efba230d7 100644
--- a/install/upgrade_to_2.13.7.php
+++ b/install/upgrade_to_2.13.7.php
@@ -62,7 +62,7 @@ public function fixEncodingInQuestions() {
$table = 'glpi_plugin_formcreator_questions';
$result = $DB->request([
- 'SELECT' => 'id',
+ 'SELECT' => ['id', 'values'],
'FROM' => $table,
'WHERE' => [
'fieldtype' => ['select', 'multiselect'],
@@ -78,7 +78,8 @@ public function fixEncodingInQuestions() {
foreach ($values as &$value) {
$value = Sanitizer::encodeHtmlSpecialChars($value);
}
- $values = json_encode($values);
+ $values = json_encode($values, JSON_UNESCAPED_UNICODE, JSON_UNESCAPED_SLASHES);
+ $values = $DB->escape($values);
$DB->update(
$table,
['values' => $values],
diff --git a/locales/bs_BA.mo b/locales/bs_BA.mo
new file mode 100644
index 000000000..6a0e6e949
Binary files /dev/null and b/locales/bs_BA.mo differ
diff --git a/locales/bs_BA.po b/locales/bs_BA.po
new file mode 100644
index 000000000..a74d34883
--- /dev/null
+++ b/locales/bs_BA.po
@@ -0,0 +1,2723 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Language-Team: Bosnian (Bosnia and Herzegovina) (https://app.transifex.com/teclib/teams/28042/bs_BA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: bs_BA\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr ""
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr ""
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr ""
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr ""
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr ""
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr ""
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr ""
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr ""
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr ""
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr ""
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr ""
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr ""
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr ""
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr ""
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr ""
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr ""
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr ""
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr ""
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr ""
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr ""
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr ""
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr ""
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr ""
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr ""
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr ""
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr ""
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr ""
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr ""
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr ""
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr ""
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr ""
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr ""
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr ""
+
+#: entrée standard:42
+msgid "Min"
+msgstr ""
+
+#: entrée standard:53
+msgid "Max"
+msgstr ""
diff --git a/locales/de_AT.po b/locales/de_AT.po
new file mode 100644
index 000000000..f5ce1fef9
--- /dev/null
+++ b/locales/de_AT.po
@@ -0,0 +1,2680 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Language-Team: German (Austria) (https://app.transifex.com/teclib/teams/28042/de_AT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: de_AT\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr ""
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr ""
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr ""
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr ""
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr ""
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr ""
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr ""
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr ""
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr ""
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr ""
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr ""
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr ""
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr ""
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr ""
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr ""
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr ""
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr ""
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr ""
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr ""
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr ""
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr ""
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr ""
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr ""
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr ""
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr ""
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr ""
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr ""
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr ""
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr ""
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr ""
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr ""
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr ""
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr ""
+
+#: entrée standard:42
+msgid "Min"
+msgstr ""
+
+#: entrée standard:53
+msgid "Max"
+msgstr ""
diff --git a/locales/el_GR.mo b/locales/el_GR.mo
new file mode 100644
index 000000000..d6bad3318
Binary files /dev/null and b/locales/el_GR.mo differ
diff --git a/locales/el_GR.po b/locales/el_GR.po
new file mode 100644
index 000000000..63b6e831c
--- /dev/null
+++ b/locales/el_GR.po
@@ -0,0 +1,2684 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Evangelos Mamalakis , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Evangelos Mamalakis , 2022\n"
+"Language-Team: Greek (Greece) (https://app.transifex.com/teclib/teams/28042/el_GR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: el_GR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Κατάλογος Service"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Κατασκευαστής Φορμών"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Λίστα φορμών"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Παρακαλούμε περιγράψτε την ανάγκη σας εδώ"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr ""
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr ""
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr ""
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Κατηγορία Γνωσιακής Βάσης"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Η φόρμα έγινε αποδεκτή"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr ""
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr ""
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Εκτύπωση της φόρμας"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr ""
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr ""
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr ""
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr ""
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Επιλογή ελεγκτή"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr ""
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr ""
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr ""
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Το όνομα δεν μπορεί να είναι κενό"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr ""
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr ""
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr ""
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr ""
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr ""
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr ""
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr ""
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr ""
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr ""
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr ""
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr ""
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr ""
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr ""
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr ""
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Δεν έχουν σταλεί φόρμες"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Όλες μου οι φόρμες(αιτών)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr ""
+
+#: entrée standard:42
+msgid "Min"
+msgstr ""
+
+#: entrée standard:53
+msgid "Max"
+msgstr ""
diff --git a/locales/en_GB.mo b/locales/en_GB.mo
index 6783c46d1..0d566ce70 100644
Binary files a/locales/en_GB.mo and b/locales/en_GB.mo differ
diff --git a/locales/en_GB.po b/locales/en_GB.po
index eb454a5c4..3f36342da 100644
--- a/locales/en_GB.po
+++ b/locales/en_GB.po
@@ -1,21 +1,25 @@
-# English translations for glpi package
-# English (United Kingdom) translations for glpi package.
-# Copyright (C) 2023 THE glpi'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the glpi package.
-# Automatically generated, 2023.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# 06c8e5f1ec78ded2ceb41498ec52b068, 2022
+# Thierry Bugier , 2023
+#
+#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: glpi 100b\n"
+"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-25 10:02+0200\n"
-"PO-Revision-Date: 2023-09-25 10:02+0200\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_GB\n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Thierry Bugier , 2023\n"
+"Language-Team: English (United Kingdom) (https://app.transifex.com/teclib/teams/28042/en_GB/)\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ajax/question_update.php:38 ajax/section_update.php:37
@@ -28,10 +32,10 @@ msgid "Question not found"
msgstr "Question not found"
#: ajax/question_update.php:53 ajax/question_duplicate.php:49
-#: ajax/question_move.php:50 ajax/section_add.php:38 ajax/section_delete.php:50
-#: ajax/section_move.php:55 ajax/section_duplicate.php:50
-#: ajax/question_delete.php:49 ajax/question_toggle_required.php:55
-#: ajax/section_update.php:44
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
msgid "You don't have right for this action"
msgstr "You don't have right for this action"
@@ -100,7 +104,7 @@ msgstr "Could not update the section"
#: front/wizardreminders.php:49 front/wizardreminders.php:51
#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
-#: front/formanswer.php:46 front/reservation.php:46 front/reservation.php:48
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
#: front/reservationitem.php:42 front/reservationitem.php:44
#: front/formanswer.form.php:74 front/reservation.form.php:46
@@ -123,19 +127,19 @@ msgid "Bad request while deleting an actor."
msgstr "Bad request while deleting an actor."
#: front/targetticket.form.php:95 front/targetchange.form.php:81
-#: front/formanswer.php:49 front/targetproblem.form.php:81
-#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:632
-#: inc/common.class.php:639
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
msgid "Form Creator"
msgstr "Form Creator"
-#: front/targetticket.form.php:105 front/targetchange.form.php:91
-#: front/targetproblem.form.php:91
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
#, php-format
msgid "%1$s = %2$s"
msgstr "%1$s = %2$s"
-#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:626
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
msgid "Form list"
msgstr "Form list"
@@ -170,62 +174,61 @@ msgstr "See all"
msgid "Please, describe your need here"
msgstr "Please, describe your need here"
-#: inc/field/textareafield.class.php:176
+#: inc/field/textareafield.class.php:186
msgid "Textarea"
msgstr "Textarea"
-#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:587
-#: inc/field/ldapselectfield.class.php:115 inc/field/textfield.class.php:126
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
#: inc/field/requesttypefield.class.php:161
msgid "A required field is empty:"
msgstr "A required field is empty:"
-#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:179
-#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:198
-#: inc/conditionnabletrait.class.php:70
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
msgid "The regular expression is invalid"
msgstr "The regular expression is invalid"
-#: inc/field/dropdownfield.class.php:82 inc/filter/entityfilter.class.php:48
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
msgid "User and form"
msgstr "User and form"
-#: inc/field/dropdownfield.class.php:88
+#: inc/field/dropdownfield.class.php:87
msgid "Search filter"
-msgstr "Search filter"
+msgstr ""
-#: inc/field/dropdownfield.class.php:578 entrée standard:38
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
msgid "Dropdown"
msgid_plural "Dropdowns"
msgstr[0] "Dropdown"
msgstr[1] "Dropdowns"
-#: inc/field/dropdownfield.class.php:609
+#: inc/field/dropdownfield.class.php:616
msgid "Invalid value for "
msgstr "Invalid value for "
-#: inc/field/dropdownfield.class.php:622
+#: inc/field/dropdownfield.class.php:628
#, php-format
msgid "The itemtype field is required: %s"
msgstr "The itemtype field is required: %s"
-#: inc/field/dropdownfield.class.php:638
+#: inc/field/dropdownfield.class.php:644
#, php-format
msgid "Invalid dropdown type: %s"
msgstr "Invalid dropdown type: %s"
-#: inc/field/dropdownfield.class.php:699 inc/questionfilter.class.php:62
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
#: entrée standard:68
msgid "Filter"
msgstr "Filter"
-#: inc/field/dropdownfield.class.php:985 entrée standard:162 standard:134
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
msgid "Entity restriction"
msgstr "Entity restriction"
-#: inc/field/dropdownfield.class.php:994
+#: inc/field/dropdownfield.class.php:996
msgid ""
"To respect the GLPI entity system, \"Form\" should be selected. Others "
"settings will break the entity restrictions"
@@ -245,72 +248,44 @@ msgstr "LDAP directory not defined!"
msgid "LDAP directory not found!"
msgstr "LDAP directory not found!"
-#: inc/field/textfield.class.php:147 inc/field/floatfield.class.php:157
-#, php-format
-msgid "Specific format does not match: %s"
-msgstr "Specific format does not match: %s"
-
-#: inc/field/textfield.class.php:156
-#, php-format
-msgid "The text is too short (minimum %d characters): %s"
-msgstr "The text is too short (minimum %d characters): %s"
-
-#: inc/field/textfield.class.php:161
-#, php-format
-msgid "The text is too long (maximum %d characters): %s"
-msgstr "The text is too long (maximum %d characters): %s"
-
-#: inc/field/textfield.class.php:169
-msgid "Text"
-msgstr "Text"
-
-#: inc/field/textfield.class.php:218 inc/field/floatfield.class.php:239
-#: inc/questionregex.class.php:62 entrée standard:42
-msgid "Regular expression"
-msgstr "Regular expression"
-
-#: inc/field/textfield.class.php:223 inc/field/floatfield.class.php:244
-msgid "Range"
-msgstr "Range"
-
-#: inc/field/textfield.class.php:229 inc/field/floatfield.class.php:250
-msgid "Additional validation"
-msgstr "Additional validation"
-
-#: inc/field/radiosfield.class.php:109
+#: inc/field/radiosfield.class.php:108
msgid "Radios"
msgstr "Radios"
-#: inc/field/radiosfield.class.php:117 inc/field/checkboxesfield.class.php:257
-msgid "The field value is required."
-msgstr "The field value is required."
-
-#: inc/field/radiosfield.class.php:128
-msgid "Only one default value is allowed."
-msgstr "Only one default value is allowed."
-
-#: inc/field/radiosfield.class.php:139
-msgid "The default value is not in the list of available values."
-msgstr "The default value is not in the list of available values."
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "The field value is required:"
-#: inc/field/radiosfield.class.php:216 inc/field/selectfield.class.php:106
-#: inc/field/datetimefield.class.php:120 inc/field/actorfield.class.php:258
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
#, php-format
msgid "A required field is empty: %s"
msgstr "A required field is empty: %s"
-#: inc/field/radiosfield.class.php:235 inc/field/selectfield.class.php:124
-#, php-format
-msgid "This value %1$s is not allowed: %2$s"
-msgstr "This value %1$s is not allowed: %2$s"
-
-#: inc/field/integerfield.class.php:60
+#: inc/field/integerfield.class.php:59
#, php-format
msgid "This is not an integer: %s"
msgstr "This is not an integer: %s"
-#: inc/field/integerfield.class.php:71
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Specific format does not match: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "The following number must be greater than %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "The following number must be lower than %d: %s"
+
+#: inc/field/integerfield.class.php:101
msgid "Integer"
msgstr "Integer"
@@ -324,7 +299,7 @@ msgid_plural "IP addresses"
msgstr[0] "IP address"
msgstr[1] "IP addresses"
-#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1012
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
msgid "Urgency"
msgstr "Urgency"
@@ -363,16 +338,6 @@ msgid_plural "Tags"
msgstr[0] "Tag"
msgstr[1] "Tags"
-#: inc/field/glpiselectfield.class.php:97 entrée standard:38
-msgid "GLPI object"
-msgid_plural "GLPI objects"
-msgstr[0] "GLPI object"
-msgstr[1] "GLPI objects"
-
-#: inc/field/glpiselectfield.class.php:114 inc/field/fieldsfield.class.php:513
-msgid "The field value is required:"
-msgstr "The field value is required:"
-
#: inc/field/hostnamefield.class.php:116
msgid "Hostname"
msgid_plural "Hostnames"
@@ -394,11 +359,11 @@ msgid_plural "Emails"
msgstr[0] "Email"
msgstr[1] "Emails"
-#: inc/field/selectfield.class.php:99
+#: inc/field/selectfield.class.php:97
msgid "Select"
msgstr "Select"
-#: inc/field/datetimefield.class.php:141
+#: inc/field/datetimefield.class.php:140
msgid "Date & time"
msgstr "Date & time"
@@ -436,7 +401,7 @@ msgstr "A required file is missing: %s"
msgid "File"
msgstr "File"
-#: inc/field/multiselectfield.class.php:89
+#: inc/field/multiselectfield.class.php:86
msgid "Multiselect"
msgstr "Multiselect"
@@ -471,45 +436,31 @@ msgstr "Some URL fields contains invalid links"
#: inc/field/fieldsfield.class.php:566
msgid "Additionnal fields"
-msgstr "Additionnal fields"
+msgstr ""
#: inc/field/checkboxesfield.class.php:133
msgid "Checkboxes"
msgstr "Checkboxes"
-#: inc/field/checkboxesfield.class.php:209
-#, php-format
-msgid "Empty values are not allowed: %s"
-msgstr "Empty values are not allowed: %s"
-
-#: inc/field/checkboxesfield.class.php:217
-#, php-format
-msgid "This value %1$s is not alowed: %2$s"
-msgstr "This value %1$s is not alowed: %2$s"
-
-#: inc/field/checkboxesfield.class.php:237
+#: inc/field/checkboxesfield.class.php:227
#, php-format
msgid "The following question needs at least %d answers: %s"
msgstr "The following question needs at least %d answers: %s"
-#: inc/field/checkboxesfield.class.php:243
+#: inc/field/checkboxesfield.class.php:233
#, php-format
msgid "The following question does not accept more than %d answers: %s"
msgstr "The following question does not accept more than %d answers: %s"
-#: inc/field/checkboxesfield.class.php:271
-msgid "The default values are not in the list of available values."
-msgstr "The default values are not in the list of available values."
-
-#: inc/field/checkboxesfield.class.php:326
+#: inc/field/checkboxesfield.class.php:305
msgid "Range min"
msgstr "Range min"
-#: inc/field/checkboxesfield.class.php:327
+#: inc/field/checkboxesfield.class.php:306
msgid "Range max"
msgstr "Range max"
-#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1168
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
msgid "Request type"
msgstr "Request type"
@@ -518,27 +469,29 @@ msgstr "Request type"
msgid "This is not a number: %s"
msgstr "This is not a number: %s"
-#: inc/field/floatfield.class.php:171
-#, php-format
-msgid "The following number must be greater than %d: %s"
-msgstr "The following number must be greater than %d: %s"
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
-#: inc/field/floatfield.class.php:177
-#, php-format
-msgid "The following number must be lower than %d: %s"
-msgstr "The following number must be lower than %d: %s"
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Regular expression"
-#: inc/field/floatfield.class.php:187
-msgid "Decimal number"
-msgstr "Decimal number"
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Range"
-#: inc/field/datefield.class.php:66
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Additional validation"
+
+#: inc/field/datefield.class.php:137
msgid "Date"
msgstr "Date"
#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
-#: inc/question.class.php:188 entrée standard:82 standard:56 standard:114
-#: standard:58 standard:59
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
msgid "Description"
msgstr "Description"
@@ -582,33 +535,33 @@ msgstr "Hidden unless"
msgid "Displayed unless"
msgstr "Displayed unless"
-#: inc/condition.class.php:172 inc/target_actor.class.php:233
-#: inc/form_language.class.php:568 inc/form_validator.class.php:248
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
#: inc/form.class.php:1908 inc/targetchange.class.php:304
-#: inc/questionfilter.class.php:222 inc/section.class.php:395
-#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:885
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
-#: inc/targetticket.class.php:1479
+#: inc/targetticket.class.php:1461
#, php-format
msgid "Failed to add or update the %1$s %2$s"
msgstr "Failed to add or update the %1$s %2$s"
-#: inc/condition.class.php:194 inc/target_actor.class.php:254
-#: inc/form_language.class.php:584 inc/form_validator.class.php:288
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
#: inc/form.class.php:1569 inc/targetchange.class.php:149
-#: inc/questionfilter.class.php:154 inc/section.class.php:420
-#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:912
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
-#: inc/targetticket.class.php:1518
+#: inc/targetticket.class.php:1500
#, php-format
msgid "Cannot export an empty object: %s"
msgstr "Cannot export an empty object: %s"
-#: inc/condition.class.php:262
+#: inc/condition.class.php:268
msgid "Conditions"
msgstr "Conditions"
@@ -634,13 +587,13 @@ msgstr "Update issue data from tickets and form answers"
msgid "Satisfaction survey expired"
msgstr "Satisfaction survey expired"
-#: inc/issue.class.php:543 inc/form_language.class.php:232
+#: inc/issue.class.php:531 inc/form_language.class.php:229
#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
-#: standard:39 standard:105 standard:46
+#: standard:38 standard:39 standard:105 standard:46
msgid "Name"
msgstr "Name"
-#: inc/issue.class.php:555 inc/formanswer.class.php:229
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
#: inc/form.class.php:142 inc/targetchange.class.php:335
#: inc/section.class.php:95 inc/question.class.php:178
@@ -648,171 +601,172 @@ msgstr "Name"
msgid "ID"
msgstr "ID"
-#: inc/issue.class.php:564 inc/form.class.php:2217 entrée standard:111
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
#: standard:65 standard:104 standard:4
msgid "Type"
msgid_plural "Types"
msgstr[0] "Type"
msgstr[1] "Types"
-#: inc/issue.class.php:577 inc/formanswer.class.php:307
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
msgid "Status"
msgstr "Status"
-#: inc/issue.class.php:589
+#: inc/issue.class.php:577
msgid "Opening date"
msgstr "Opening date"
-#: inc/issue.class.php:598
+#: inc/issue.class.php:586
msgid "Last update"
msgstr "Last update"
-#: inc/issue.class.php:607 inc/abstracttarget.class.php:519
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
msgid "Entity"
msgid_plural "Entities"
msgstr[0] "Entity"
msgstr[1] "Entities"
-#: inc/issue.class.php:617 inc/notificationtargetformanswer.class.php:76
-#: inc/notificationtargetformanswer.class.php:96 inc/target_actor.class.php:101
-#: inc/formanswer.class.php:248 inc/formanswer.class.php:762
-#: inc/abstractitiltarget.class.php:1776 entrée standard:48
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
msgid "Requester"
msgid_plural "Requesters"
msgstr[0] "Requester"
msgstr[1] "Requesters"
-#: inc/issue.class.php:631 inc/formanswer.class.php:258
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
msgid "Form approver"
msgstr "Form approver"
-#: inc/issue.class.php:663 inc/formanswer.class.php:691
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
-#: inc/form_language.class.php:246
+#: inc/form_language.class.php:243
msgid "Comment"
msgstr "Comment"
-#: inc/issue.class.php:675
+#: inc/issue.class.php:663
msgid "Ticket approver"
-msgstr "Ticket approver"
+msgstr " Ticket approver "
-#: inc/issue.class.php:748
+#: inc/issue.class.php:736
msgid "Technician"
msgstr "Technician"
-#: inc/issue.class.php:779
+#: inc/issue.class.php:767
msgid "Technician group"
msgstr "Technician group"
-#: inc/issue.class.php:811 inc/formanswer.class.php:287
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
msgid "Form approver group"
msgstr "Form approver group"
-#: inc/issue.class.php:841
+#: inc/issue.class.php:829
msgid "Ticket approver group"
msgstr "Ticket approver group"
-#: inc/issue.class.php:875 inc/abstractitiltarget.class.php:759 entrée
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
#: standard:108
msgid "Time to resolve"
msgstr "Time to resolve"
-#: inc/issue.class.php:886
+#: inc/issue.class.php:874
msgid "Time to resolve + Progress"
-msgstr "Time to resolve + Progress"
+msgstr ""
-#: inc/issue.class.php:896
+#: inc/issue.class.php:884
msgid "Internal time to resolve"
-msgstr "Internal time to resolve"
+msgstr ""
-#: inc/issue.class.php:907
+#: inc/issue.class.php:895
msgid "Internal time to resolve + Progress"
-msgstr "Internal time to resolve + Progress"
+msgstr ""
-#: inc/issue.class.php:917
+#: inc/issue.class.php:905
msgid "Resolution date"
-msgstr "Resolution date"
+msgstr ""
-#: inc/issue.class.php:926
+#: inc/issue.class.php:914
msgid "Internal time to own"
-msgstr "Internal time to own"
+msgstr ""
-#: inc/issue.class.php:937
+#: inc/issue.class.php:925
msgid "Internal time to own + Progress"
-msgstr "Internal time to own + Progress"
+msgstr ""
-#: inc/issue.class.php:947 entrée standard:109
+#: inc/issue.class.php:935 entrée standard:109
msgid "Time to own"
msgstr "Time to own"
-#: inc/issue.class.php:958
+#: inc/issue.class.php:946
msgid "Time to own + Progress"
-msgstr "Time to own + Progress"
+msgstr ""
-#: inc/issue.class.php:970
+#: inc/issue.class.php:958
msgid "Approver substitute"
-msgstr "Approver substitute"
+msgstr ""
-#: inc/issue.class.php:1034
+#: inc/issue.class.php:1022
msgid "Substitute of a member of approver group"
-msgstr "Substitute of a member of approver group"
+msgstr ""
-#: inc/issue.class.php:1107
+#: inc/issue.class.php:1095
msgid "Form approver substitute"
-msgstr "Form approver substitute"
+msgstr ""
-#: inc/issue.class.php:1175
+#: inc/issue.class.php:1163
msgid "Current form approver group"
-msgstr "Current form approver group"
+msgstr ""
-#: inc/issue.class.php:1205
+#: inc/issue.class.php:1193
msgid "Current form approver"
-msgstr "Current form approver"
+msgstr ""
-#: inc/issue.class.php:1239
+#: inc/issue.class.php:1227
msgid "Ticket requester"
msgstr "Ticket requester"
-#: inc/issue.class.php:1286
+#: inc/issue.class.php:1274
msgid "Ticket observer"
msgstr "Ticket observer"
-#: inc/issue.class.php:1334
+#: inc/issue.class.php:1322
msgid "Ticket technician"
msgstr "Ticket technician"
-#: inc/issue.class.php:1481
+#: inc/issue.class.php:1469
#, php-format
msgid "%1$s %2$s"
msgstr "%1$s %2$s"
-#: inc/issue.class.php:1739 inc/filter/itilcategoryfilter.class.php:56
-#: hook.php:765
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
msgid "All"
msgstr "All"
-#: inc/issue.class.php:1745 hook.php:766
+#: inc/issue.class.php:1733 hook.php:767
msgid "New"
msgstr "New"
-#: inc/issue.class.php:1751 hook.php:767
+#: inc/issue.class.php:1739 hook.php:768
msgid "Assigned"
msgstr "Assigned"
-#: inc/issue.class.php:1757 inc/formanswer.class.php:78
-#: inc/form_validator.class.php:70 hook.php:768
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
msgid "Waiting"
msgstr "Waiting"
-#: inc/issue.class.php:1763 hook.php:769
+#: inc/issue.class.php:1751 hook.php:770
msgid "To validate"
msgstr "To validate"
-#: inc/issue.class.php:1769 hook.php:770
+#: inc/issue.class.php:1757 hook.php:771
msgid "Solved"
msgstr "Solved"
-#: inc/issue.class.php:1775 hook.php:771
+#: inc/issue.class.php:1763 hook.php:772
msgid "Closed"
msgstr "Closed"
@@ -824,7 +778,7 @@ msgstr[1] "Form categories"
#: inc/category.class.php:80
msgid "Knowbase category"
-msgstr "Knowbase category"
+msgstr "Knowledge category"
#: inc/category.class.php:86
msgid "As child of"
@@ -858,15 +812,15 @@ msgstr "The form as been saved"
msgid "A form need to be validate"
msgstr "A form need to be validate"
-#: inc/notificationtargetformanswer.class.php:45 install/install.php:491
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
msgid "The form is refused"
msgstr "The form is refused"
-#: inc/notificationtargetformanswer.class.php:46 install/install.php:497
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
msgid "The form is accepted"
msgstr "The form is accepted"
-#: inc/notificationtargetformanswer.class.php:47 install/install.php:503
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
msgid "The form is deleted"
msgstr "The form is deleted"
@@ -879,6 +833,13 @@ msgstr "Form ID"
msgid "Form name"
msgstr "Form name"
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] "Validator"
+msgstr[1] "Validators"
+
#: inc/notificationtargetformanswer.class.php:78
#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
#: entrée standard:49
@@ -925,15 +886,15 @@ msgid "Author"
msgstr "Author"
#: inc/notificationtargetformanswer.class.php:115
-#: inc/abstractitiltarget.class.php:1346
+#: inc/abstractitiltarget.class.php:1374
msgid "Approver"
msgstr "Approver"
-#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2113
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
msgid "Form author"
msgstr "Form author"
-#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2116
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
msgid "Form validator"
msgstr "Form validator"
@@ -941,7 +902,7 @@ msgstr "Form validator"
msgid "Specific person"
msgstr "Specific person"
-#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2126
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
msgid "Person from the question"
msgstr "Person from the question"
@@ -949,7 +910,7 @@ msgstr "Person from the question"
msgid "Specific group"
msgstr "Specific group"
-#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2137
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
msgid "Group from the question"
msgstr "Group from the question"
@@ -965,15 +926,15 @@ msgstr "Tech group from an object"
msgid "Specific supplier"
msgstr "Specific supplier"
-#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2166
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
msgid "Supplier from the question"
msgstr "Supplier from the question"
-#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2155
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
msgid "Actors from the question"
msgstr "Actors from the question"
-#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2170
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
msgid "Form author's supervisor"
msgstr "Form author's supervisor"
@@ -981,7 +942,7 @@ msgstr "Form author's supervisor"
msgid "Observer"
msgstr "Observer"
-#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1790
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
msgid "Assigned to"
msgstr "Assigned to"
@@ -1091,29 +1052,22 @@ msgid ""
"You are a validator of the form, then your approval hs been added "
"automatically."
msgstr ""
-"You are a validator of the form, then your approval hs been added "
-"automatically."
#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
msgid "Cannot generate targets!"
msgstr "Cannot generate targets!"
-#: inc/formanswer.class.php:1506
-#, php-format
-msgid "Answer is invalid in %1$s"
-msgstr "Answer is invalid in %1$s"
-
-#: inc/formanswer.class.php:1534
+#: inc/formanswer.class.php:1511
msgid "No captcha set."
-msgstr "No captcha set."
+msgstr ""
-#: inc/formanswer.class.php:1540
+#: inc/formanswer.class.php:1517
msgid "You failed the captcha test."
-msgstr "You failed the captcha test."
+msgstr ""
-#: inc/formanswer.class.php:1563
+#: inc/formanswer.class.php:1540
msgid "You must select validator!"
-msgstr "You must select validator!"
+msgstr " You must select validator! "
#: inc/common.class.php:229
msgid "You cannot delete this issue. Maybe it is taken into account."
@@ -1123,25 +1077,25 @@ msgstr "You cannot delete this issue. Maybe it is taken into account."
msgid "Failed to delete this issue. An internal error occured."
msgstr "Failed to delete this issue. An internal error occured."
-#: inc/common.class.php:723
+#: inc/common.class.php:745
msgid "Seek assistance"
msgstr "Seek assistance"
-#: inc/common.class.php:729 inc/common.class.php:733
+#: inc/common.class.php:751 inc/common.class.php:755
msgid "My requests for assistance"
msgstr "My requests for assistance"
-#: inc/common.class.php:769
+#: inc/common.class.php:791
msgid "Consult reminders"
msgstr "Consult reminders"
-#: inc/common.class.php:789
+#: inc/common.class.php:811
msgid "Consult feeds"
msgstr "Consult feeds"
-#: inc/abstractfield.class.php:89 inc/question.class.php:761
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
msgid "Apply"
-msgstr "Apply"
+msgstr ""
#: inc/formaccesstype.class.php:41 entrée standard:39
msgid "Access type"
@@ -1155,62 +1109,62 @@ msgid_plural "Form languages"
msgstr[0] "Form language"
msgstr[1] "Form languages"
-#: inc/form_language.class.php:81 inc/form_language.class.php:367
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
msgid "Translation"
msgid_plural "Translations"
msgstr[0] "Translation"
msgstr[1] "Translations"
-#: inc/form_language.class.php:122
+#: inc/form_language.class.php:119
msgid "The name cannot be empty."
msgstr "The name cannot be empty."
-#: inc/form_language.class.php:130
+#: inc/form_language.class.php:127
msgid "The language must be associated to a form."
msgstr "The language must be associated to a form."
-#: inc/form_language.class.php:138
+#: inc/form_language.class.php:135
msgid "The specified language is not available."
msgstr "The specified language is not available."
-#: inc/form_language.class.php:268
+#: inc/form_language.class.php:265
msgid "Add a translation"
msgstr "Add a translation"
-#: inc/form_language.class.php:302 js/scripts.js:1193
+#: inc/form_language.class.php:299 js/scripts.js:1214
msgid "Update a translation"
msgstr "Update a translation"
-#: inc/form_language.class.php:332 inc/form_language.class.php:334
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
msgid "New translation"
msgstr "New translation"
-#: inc/form_language.class.php:337
+#: inc/form_language.class.php:334
msgid "Filter list"
msgstr "Filter list"
-#: inc/form_language.class.php:342 inc/form_language.class.php:441
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
msgid "No translation found"
msgstr "No translation found"
-#: inc/form_language.class.php:347
+#: inc/form_language.class.php:344
msgid "Do you want to delete the selected items?"
msgstr "Do you want to delete the selected items?"
-#: inc/form_language.class.php:356 inc/form_language.class.php:404
-#: inc/abstractitiltarget.class.php:1682 entrée standard:124 standard:31
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
msgid "Delete"
msgstr "Delete"
-#: inc/form_language.class.php:366
+#: inc/form_language.class.php:363
msgid "Original string"
msgstr "Original string"
-#: inc/form_language.class.php:427
+#: inc/form_language.class.php:424
msgid "Add a new language"
msgstr "Add a new language"
-#: inc/form_language.class.php:460 inc/form_language.class.php:492
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
#: inc/form.class.php:178 entrée standard:72
msgid "Language"
msgstr "Language"
@@ -1220,19 +1174,13 @@ msgstr "Language"
msgid "None"
msgstr "None"
-#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2522
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
msgid "No"
msgstr "No"
#: inc/form_validator.class.php:81
msgid "Supervisor of the requester"
-msgstr "Supervisor of the requester"
-
-#: inc/form_validator.class.php:91
-msgid "Validator"
-msgid_plural "Validators"
-msgstr[0] "Validator"
-msgstr[1] "Validators"
+msgstr ""
#: inc/form_validator.class.php:116 inc/translation.class.php:221
msgid "Form not found."
@@ -1241,22 +1189,22 @@ msgstr "Form not found."
#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
#: inc/form_validator.class.php:138
msgid "Invalid validator."
-msgstr "Invalid validator."
+msgstr ""
#: inc/form_validator.class.php:147
#, php-format
msgid "Only level 1 is allowed for %s."
-msgstr "Only level 1 is allowed for %s."
+msgstr ""
#: inc/form_validator.class.php:156
msgid "Invalid validator type."
-msgstr "Invalid validator type."
+msgstr ""
#: inc/form_validator.class.php:194 entrée standard:103
msgid "Level"
-msgstr "Level"
+msgstr ""
-#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1326
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
msgid "Validation"
msgstr "Validation"
@@ -1267,12 +1215,12 @@ msgstr "Choose a validator"
#: inc/profile.class.php:62 inc/targetproblem.class.php:147
#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
-#: inc/abstractitiltarget.class.php:2096
+#: inc/abstractitiltarget.class.php:2124
msgctxt "button"
msgid "Save"
msgstr "Save"
-#: inc/targetproblem.class.php:43 entrée standard:44
+#: inc/targetproblem.class.php:43 entrée standard:43
msgid "Target problem"
msgid_plural "Target problems"
msgstr[0] "Target problem"
@@ -1285,7 +1233,7 @@ msgid "Properties"
msgstr "Properties"
#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
-#: inc/targetticket.class.php:1461
+#: inc/targetticket.class.php:1443
#, php-format
msgid ""
"Failed to add or update the %1$s %2$s: a question is missing and is used in "
@@ -1295,11 +1243,11 @@ msgstr ""
"a parameter of the target"
#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
-#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1188
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
msgid "Actors"
msgstr "Actors"
-#: inc/targetproblem.class.php:619 entrée standard:49
+#: inc/targetproblem.class.php:619 entrée standard:48
msgid "Problem title"
msgstr "Problem title"
@@ -1312,11 +1260,11 @@ msgstr "Content"
msgid "Impact"
msgstr "Impact"
-#: inc/targetproblem.class.php:649 entrée standard:78
+#: inc/targetproblem.class.php:649 entrée standard:56
msgid "Cause"
msgstr "Cause"
-#: inc/targetproblem.class.php:659 entrée standard:88
+#: inc/targetproblem.class.php:659 entrée standard:58
msgid "Symptom"
msgstr "Symptom"
@@ -1395,19 +1343,19 @@ msgstr "User's assistance requests"
#: inc/entityconfig.class.php:181
msgid "Only forms"
-msgstr "Only forms"
+msgstr ""
#: inc/entityconfig.class.php:182
msgid "Forms and list of requests"
-msgstr "Forms and list of requests"
+msgstr ""
#: inc/entityconfig.class.php:197
msgid "Folded"
-msgstr "Folded"
+msgstr ""
#: inc/entityconfig.class.php:198
msgid "Unfolded"
-msgstr "Unfolded"
+msgstr ""
#: inc/entityconfig.class.php:298
msgid "Helpdesk"
@@ -1456,11 +1404,11 @@ msgstr "Tile design"
#: inc/entityconfig.class.php:462
msgid "Home page"
-msgstr "Home page"
+msgstr ""
#: inc/entityconfig.class.php:494
msgid "Menu visibility (only for vertical menu)"
-msgstr "Menu visibility (only for vertical menu)"
+msgstr ""
#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
#: inc/form.class.php:225 entrée standard:84
@@ -1534,7 +1482,7 @@ msgstr "Default form"
#: inc/form.class.php:296 entrée standard:106
msgid "Next form"
-msgstr "Next form"
+msgstr ""
#: inc/form.class.php:326 inc/form.class.php:391
msgid "Inactive"
@@ -1567,13 +1515,13 @@ msgid "What are you looking for?"
msgstr "What are you looking for?"
#: inc/form.class.php:993 inc/form.class.php:1156
-#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1597
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
msgid "The name cannot be empty!"
msgstr "The name cannot be empty!"
#: inc/form.class.php:1026 inc/form.class.php:1191
msgid "A loop is generated!"
-msgstr "A loop is generated!"
+msgstr ""
#: inc/form.class.php:1167
msgid "Cannot use empty name for form answers. Keeping the previous value."
@@ -1726,7 +1674,7 @@ msgid "Add a target"
msgstr "Add a target"
#: inc/form.class.php:2236 inc/targetticket.class.php:398
-#: inc/abstractitiltarget.class.php:1800 inc/abstractitiltarget.class.php:2096
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
#: entrée standard:92 standard:94
msgid "Add"
msgstr "Add"
@@ -1739,25 +1687,25 @@ msgstr "Unsupported target type."
msgid "plugin_formcreator_load_check"
msgstr "plugin_formcreator_load_check"
-#: inc/targetchange.class.php:44 entrée standard:44
+#: inc/targetchange.class.php:44 entrée standard:43
msgid "Target change"
msgid_plural "Target changes"
msgstr[0] "Target change"
msgstr[1] "Target changes"
-#: inc/targetchange.class.php:344 entrée standard:49
+#: inc/targetchange.class.php:344 entrée standard:48
msgid "Change title"
msgstr "Change title"
-#: inc/targetchange.class.php:374 entrée standard:80
+#: inc/targetchange.class.php:374 entrée standard:56
msgid "Control list"
msgstr "Control list"
-#: inc/targetchange.class.php:384 entrée standard:90
+#: inc/targetchange.class.php:384 entrée standard:58
msgid "Deployment plan"
msgstr "Deployment plan"
-#: inc/targetchange.class.php:394 entrée standard:100
+#: inc/targetchange.class.php:394 entrée standard:60
msgid "Backup plan"
msgstr "Backup plan"
@@ -1768,8 +1716,8 @@ msgstr "Check list"
#: inc/questionfilter.class.php:52
msgid "Question filter"
msgid_plural "Question filters"
-msgstr[0] "Question filter"
-msgstr[1] "Question filters"
+msgstr[0] ""
+msgstr[1] ""
#: inc/section.class.php:71 entrée standard:53 standard:44
msgid "Section"
@@ -1778,11 +1726,11 @@ msgstr[0] "Section"
msgstr[1] "Sections"
#: inc/section.class.php:123 inc/section.class.php:166
-#: inc/question.class.php:346
+#: inc/question.class.php:348
msgid "The title is required"
msgstr "The title is required"
-#: inc/section.class.php:567 inc/question.class.php:234 entrée standard:37
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
msgid "Count of conditions"
msgstr "Count of conditions"
@@ -1791,7 +1739,7 @@ msgstr "Count of conditions"
msgid "Failed to find %1$s %2$s"
msgstr "Failed to find %1$s %2$s"
-#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1099 entrée
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
#: standard:41
msgid "Question"
msgid_plural "Questions"
@@ -1799,69 +1747,69 @@ msgstr[0] "Question"
msgstr[1] "Questions"
#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
-#: standard:82 standard:49 standard:79
+#: standard:49 standard:79
msgid "Required"
msgstr "Required"
-#: inc/question.class.php:353
+#: inc/question.class.php:355
msgid "The section is required"
msgstr "The section is required"
-#: inc/question.class.php:363
+#: inc/question.class.php:365
#, php-format
msgid "Field type %1$s is not available for question %2$s."
msgstr "Field type %1$s is not available for question %2$s."
-#: inc/question.class.php:376
+#: inc/question.class.php:379
msgid "This type of question is not compatible with public forms."
msgstr "This type of question is not compatible with public forms."
#: inc/question.class.php:469
msgid "The field type cannot be changed. Delete then recreate the question."
-msgstr "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
-#: inc/question.class.php:1202
+#: inc/question.class.php:1184
msgid "Service levels"
msgstr "Service levels"
-#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:823
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
msgid "SLA"
msgstr "SLA"
-#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:896
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
msgid "OLA"
msgstr "OLA"
-#: inc/question.class.php:1223 inc/question.class.php:1266
-#: inc/question.class.php:1269
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
msgid "Assets"
msgstr "Assets"
-#: inc/question.class.php:1237 hook.php:779 hook.php:796
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
msgid "Assistance"
msgstr "Assistance"
-#: inc/question.class.php:1243
+#: inc/question.class.php:1225
msgid "Management"
msgstr "Management"
-#: inc/question.class.php:1254
+#: inc/question.class.php:1236
msgid "Tools"
msgstr "Tools"
-#: inc/question.class.php:1255
+#: inc/question.class.php:1237
msgid "Notes"
msgstr "Notes"
-#: inc/question.class.php:1256
+#: inc/question.class.php:1238
msgid "RSS feed"
msgstr "RSS feed"
-#: inc/question.class.php:1258
+#: inc/question.class.php:1240
msgid "Administration"
msgstr "Administration"
-#: inc/question.class.php:1266 inc/question.class.php:1269
+#: inc/question.class.php:1248 inc/question.class.php:1251
msgid "Plugin"
msgid_plural "Plugins"
msgstr[0] "Plugin"
@@ -1935,15 +1883,15 @@ msgstr "A target must be associated to an existing form."
msgid "Name is required."
msgstr "Name is required."
-#: inc/abstracttarget.class.php:504
+#: inc/abstracttarget.class.php:502
msgid "Destination entity"
msgstr "Destination entity"
-#: inc/abstracttarget.class.php:520
+#: inc/abstracttarget.class.php:518
msgid "User type question"
msgstr "User type question"
-#: inc/abstracttarget.class.php:521
+#: inc/abstracttarget.class.php:519
msgid "Entity type question"
msgstr "Entity type question"
@@ -1990,12 +1938,12 @@ msgstr "Change categories"
#: inc/supervisorvalidator.class.php:44
msgid "Requester supervisor"
msgid_plural "Requester supervisors"
-msgstr[0] "Requester supervisor"
-msgstr[1] "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
#: inc/supervisorvalidator.class.php:52
msgid "My supervisor"
-msgstr "My supervisor"
+msgstr ""
#: inc/questionregex.class.php:52
msgid "Question regular expression"
@@ -2021,7 +1969,7 @@ msgid_plural "Composite ticket relations"
msgstr[0] "Composite ticket relation"
msgstr[1] "Composite ticket relations"
-#: inc/targetticket.class.php:57 entrée standard:44
+#: inc/targetticket.class.php:57 entrée standard:43
msgid "Target ticket"
msgid_plural "Target tickets"
msgstr[0] "Target ticket"
@@ -2059,7 +2007,7 @@ msgstr "Default or from a template"
msgid "Specific type"
msgstr "Specific type"
-#: inc/targetticket.class.php:189 entrée standard:49
+#: inc/targetticket.class.php:189 entrée standard:48
msgid "Ticket title"
msgstr "Ticket title"
@@ -2116,23 +2064,23 @@ msgstr "Linked item does not exists"
msgid "Failed to link the item"
msgstr "Failed to link the item"
-#: inc/targetticket.class.php:923 install/install.php:498
+#: inc/targetticket.class.php:905 install/install.php:497
msgid "Your form has been accepted by the validator"
msgstr "Your form has been accepted by the validator"
-#: inc/targetticket.class.php:1155
+#: inc/targetticket.class.php:1137
msgid "Request source"
msgstr "Request source"
-#: inc/targetticket.class.php:1180
+#: inc/targetticket.class.php:1162
msgid "Type "
msgstr "Type "
-#: inc/targetticket.class.php:1208
+#: inc/targetticket.class.php:1190
msgid "Associated elements"
msgstr "Associated elements"
-#: inc/targetticket.class.php:1219
+#: inc/targetticket.class.php:1201
msgid "Item "
msgstr "Item "
@@ -2170,7 +2118,7 @@ msgstr "Tags from questions or specific tags"
#: inc/abstractitiltarget.class.php:196
msgid "TTR from template or none"
-msgstr "TTR from template or none"
+msgstr ""
#: inc/abstractitiltarget.class.php:197
msgid "equals to the answer to the question"
@@ -2226,11 +2174,11 @@ msgstr "Specific location"
#: inc/abstractitiltarget.class.php:247
msgid "Contract from template or none"
-msgstr "Contract from template or none"
+msgstr ""
#: inc/abstractitiltarget.class.php:248
msgid "Specific contract"
-msgstr "Specific contract"
+msgstr ""
#: inc/abstractitiltarget.class.php:256
msgid "No validation"
@@ -2248,119 +2196,119 @@ msgstr "User from question answer"
msgid "Group from question answer"
msgstr "Group from question answer"
-#: inc/abstractitiltarget.class.php:811
+#: inc/abstractitiltarget.class.php:839
msgid "Minute"
msgid_plural "Minutes"
msgstr[0] "Minute"
msgstr[1] "Minutes"
-#: inc/abstractitiltarget.class.php:812
+#: inc/abstractitiltarget.class.php:840
msgid "Hour"
msgid_plural "Hours"
msgstr[0] "Hour"
msgstr[1] "Hours"
-#: inc/abstractitiltarget.class.php:813
+#: inc/abstractitiltarget.class.php:841
msgid "Day"
msgid_plural "Days"
msgstr[0] "Day"
msgstr[1] "Days"
-#: inc/abstractitiltarget.class.php:814
+#: inc/abstractitiltarget.class.php:842
msgid "Month"
msgid_plural "Months"
msgstr[0] "Month"
msgstr[1] "Months"
-#: inc/abstractitiltarget.class.php:846
+#: inc/abstractitiltarget.class.php:874
msgid "SLA (TTO/TTR)"
msgstr "SLA (TTO/TTR)"
-#: inc/abstractitiltarget.class.php:847 inc/abstractitiltarget.class.php:920
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
msgid "Question (TTO/TTR)"
msgstr "Question (TTO/TTR)"
-#: inc/abstractitiltarget.class.php:919
+#: inc/abstractitiltarget.class.php:947
msgid "OLA (TTO/TTR)"
msgstr "OLA (TTO/TTR)"
-#: inc/abstractitiltarget.class.php:1023
+#: inc/abstractitiltarget.class.php:1051
msgid "Urgency "
-msgstr "Urgency "
+msgstr "Urgency"
-#: inc/abstractitiltarget.class.php:1052
+#: inc/abstractitiltarget.class.php:1080
msgid "Ticket tags"
msgstr "Ticket tags"
-#: inc/abstractitiltarget.class.php:1100
+#: inc/abstractitiltarget.class.php:1128
msgid "Tags"
msgstr "Tags"
-#: inc/abstractitiltarget.class.php:1219
+#: inc/abstractitiltarget.class.php:1247
msgid "Location"
msgstr "Location"
-#: inc/abstractitiltarget.class.php:1231
+#: inc/abstractitiltarget.class.php:1259
msgid "Location "
-msgstr "Location "
+msgstr "Location"
-#: inc/abstractitiltarget.class.php:1284
+#: inc/abstractitiltarget.class.php:1312
msgid "Contract"
-msgstr "Contract"
+msgstr ""
-#: inc/abstractitiltarget.class.php:1296
+#: inc/abstractitiltarget.class.php:1324
msgid "Contract "
-msgstr "Contract "
+msgstr ""
-#: inc/abstractitiltarget.class.php:1607
+#: inc/abstractitiltarget.class.php:1635
msgid "The description cannot be empty!"
msgstr "The description cannot be empty!"
-#: inc/abstractitiltarget.class.php:1783
+#: inc/abstractitiltarget.class.php:1811
msgid "Watcher"
msgid_plural "Watchers"
msgstr[0] "Watcher"
msgstr[1] "Watchers"
-#: inc/abstractitiltarget.class.php:1802
+#: inc/abstractitiltarget.class.php:1830
msgid "Cancel"
msgstr "Cancel"
-#: inc/abstractitiltarget.class.php:2090 inc/abstractitiltarget.class.php:2518
-#: inc/abstractitiltarget.class.php:2522
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
msgid "Email followup"
msgstr "Email followup"
-#: inc/abstractitiltarget.class.php:2121 inc/abstractitiltarget.class.php:2506
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
msgid "User"
msgstr "User"
-#: inc/abstractitiltarget.class.php:2132 inc/abstractitiltarget.class.php:2510
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
msgid "Group"
msgstr "Group"
-#: inc/abstractitiltarget.class.php:2143
+#: inc/abstractitiltarget.class.php:2171
msgid "Group from the object"
msgstr "Group from the object"
-#: inc/abstractitiltarget.class.php:2149
+#: inc/abstractitiltarget.class.php:2177
msgid "Tech group from the object"
msgstr "Tech group from the object"
-#: inc/abstractitiltarget.class.php:2161 inc/abstractitiltarget.class.php:2514
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
msgid "Supplier"
msgstr "Supplier"
-#: inc/abstractitiltarget.class.php:2518
+#: inc/abstractitiltarget.class.php:2548
msgid "Yes"
msgstr "Yes"
-#: install/install.php:164
+#: install/install.php:163
#, php-format
msgid "Upgrade tables to innoDB; run %s"
msgstr "Upgrade tables to innoDB; run %s"
-#: install/install.php:200
+#: install/install.php:199
#, php-format
msgid ""
"The database schema is not consistent with the previous version of "
@@ -2369,31 +2317,29 @@ msgstr ""
"The database schema is not consistent with the previous version of "
"Formcreator %s. To see the logs run the command %s"
-#: install/install.php:209
+#: install/install.php:208
#, php-format
msgid "To ignore the inconsistencies and upgrade anyway run %s"
msgstr "To ignore the inconsistencies and upgrade anyway run %s"
-#: install/install.php:226
+#: install/install.php:225
msgid ""
-"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade "
-"to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to "
-"GLPI 10 or later and Formcreator 2.13 or later."
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
msgstr ""
-"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade "
-"to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to "
-"GLPI 10 or later and Formcreator 2.13 or later."
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
-#: install/install.php:252
+#: install/install.php:251
#, php-format
msgid ""
"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
"logs to fix the problem then try again."
msgstr ""
-"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
-"logs to fix the problem then try again."
-#: install/install.php:295
+#: install/install.php:294
#, php-format
msgid ""
"The database schema is not consistent with the current version of "
@@ -2402,19 +2348,19 @@ msgstr ""
"The database schema is not consistent with the current version of "
"Formcreator %s. To see the logs enable the plugin and run the command %s"
-#: install/install.php:306
+#: install/install.php:305
msgid "The tables of the plugin passed the schema integrity check."
msgstr "The tables of the plugin passed the schema integrity check."
-#: install/install.php:479
+#: install/install.php:478
msgid "A form has been created"
msgstr "A form has been created"
-#: install/install.php:480
+#: install/install.php:479
msgid "Your request has been saved"
msgstr "Your request has been saved"
-#: install/install.php:481
+#: install/install.php:480
msgid ""
"Hi,\\nYour request from GLPI has been successfully saved with number "
"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
@@ -2424,41 +2370,38 @@ msgstr ""
"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
"see your answers onto the following link:\\n##formcreator.validation_link##"
-#: install/install.php:485
+#: install/install.php:484
msgid "A form need validation"
-msgstr "A form need validation"
+msgstr ""
-#: install/install.php:486
+#: install/install.php:485
msgid "A form from GLPI need to be validated"
-msgstr "A form from GLPI need to be validated"
+msgstr ""
-#: install/install.php:487
+#: install/install.php:486
msgid ""
-"Hi,\\nA form from GLPI need to be validated and you have been choosen as the "
-"validator.\\nYou can access it by clicking onto this link:\\n##formcreator."
-"validation_link##"
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
msgstr ""
-"Hi,\\nA form from GLPI need to be validated and you have been choosen as the "
-"validator.\\nYou can access it by clicking onto this link:\\n##formcreator."
-"validation_link##"
-#: install/install.php:492
+#: install/install.php:491
msgid "Your form has been refused by the validator"
msgstr "Your form has been refused by the validator"
-#: install/install.php:493
+#: install/install.php:492
msgid ""
"Hi,\\nWe are sorry to inform you that your form has been refused by the "
-"validator for the reason below:\\n##formcreator."
-"validation_comment##\\n\\nYou can still modify and resubmit it by clicking "
-"onto this link:\\n##formcreator.validation_link##"
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
msgstr ""
"Hi,\\nWe are sorry to inform you that your form has been refused by the "
-"validator for the reason below:\\n##formcreator."
-"validation_comment##\\n\\nYou can still modify and resubmit it by clicking "
-"onto this link:\\n##formcreator.validation_link##"
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
-#: install/install.php:499
+#: install/install.php:498
msgid ""
"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
"validator.\\nYour request will be considered soon."
@@ -2466,11 +2409,11 @@ msgstr ""
"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
"validator.\\nYour request will be considered soon."
-#: install/install.php:504
+#: install/install.php:503
msgid "Your form has been deleted by an administrator"
msgstr "Your form has been deleted by an administrator"
-#: install/install.php:505
+#: install/install.php:504
msgid ""
"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
"has been deleted by an administrator."
@@ -2478,25 +2421,25 @@ msgstr ""
"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
"has been deleted by an administrator."
-#: install/install.php:733
+#: install/install.php:732
msgid "Formcreator - Sync service catalog issues"
msgstr "Formcreator - Sync service catalog issues"
-#: install/install.php:946
+#: install/install.php:945
msgid "Failed to check the sanity of the tables!"
msgstr "Failed to check the sanity of the tables!"
-#: install/install.php:960
+#: install/install.php:959
#, php-format
msgid "Table schema differs for table \"%s\"."
msgstr "Table schema differs for table \"%s\"."
-#: install/install.php:963
+#: install/install.php:962
#, php-format
msgid "Table \"%s\" is missing."
msgstr "Table \"%s\" is missing."
-#: install/install.php:966
+#: install/install.php:965
#, php-format
msgid "Unknown table \"%s\" has been found in database."
msgstr "Unknown table \"%s\" has been found in database."
@@ -2520,24 +2463,24 @@ msgctxt "button"
msgid "Access rights"
msgstr "Access rights"
-#: hook.php:755
+#: hook.php:756
msgid "Cancel my ticket"
msgstr "Cancel my ticket"
-#: hook.php:773
+#: hook.php:774
msgid "Old"
msgstr "Old"
-#: hook.php:780
+#: hook.php:781
#, php-format
msgid "Number of %s"
msgstr "Number of %s"
-#: hook.php:797
+#: hook.php:798
msgid "Issues summary"
msgstr "Issues summary"
-#: hook.php:842
+#: hook.php:843
msgid ""
"Formcreator's mini dashboard not usable as default. This Setting has been "
"ignored."
@@ -2561,35 +2504,35 @@ msgstr "No FAQ item found."
msgid "Are you sure you want to delete this question?"
msgstr "Are you sure you want to delete this question?"
-#: js/scripts.js:896
+#: js/scripts.js:917
msgid "Are you sure you want to delete this section?"
msgstr "Are you sure you want to delete this section?"
-#: js/scripts.js:1140
+#: js/scripts.js:1161
msgid "Add translations"
msgstr "Add translations"
-#: js/scripts.js:1279 js/scripts.js:1303
+#: js/scripts.js:1300 js/scripts.js:1324
msgid "An error occured while querying forms"
msgstr "An error occured while querying forms"
-#: js/scripts.js:1395 entrée standard:139
+#: js/scripts.js:1416 entrée standard:139
msgid "Send"
msgstr "Send"
-#: js/scripts.js:1404
+#: js/scripts.js:1425
msgid "An internal error occurred. Please report it to administrator."
msgstr "An internal error occurred. Please report it to administrator."
-#: js/scripts.js:1447
+#: js/scripts.js:1468
msgid "Are you sure you want to delete this validator ?"
-msgstr "Are you sure you want to delete this validator ?"
+msgstr ""
-#: js/scripts.js:1499
+#: js/scripts.js:1520
msgid "Are you sure you want to duplicate this target?"
msgstr "Are you sure you want to duplicate this target?"
-#: js/scripts.js:1516
+#: js/scripts.js:1537
msgid "Are you sure you want to delete this target?"
msgstr "Are you sure you want to delete this target?"
@@ -2624,6 +2567,12 @@ msgstr "Show ticket categories"
msgid "Selectable root"
msgstr "Selectable root"
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "GLPI object"
+msgstr[1] "GLPI objects"
+
#: entrée standard:63
msgid "Direct access on homepage"
msgstr "Direct access on homepage"
@@ -2646,23 +2595,23 @@ msgstr "Condition to generate the target"
#: entrée standard:40
msgid "General"
-msgstr "General"
+msgstr ""
#: entrée standard:45
msgid "validation percent"
-msgstr "validation percent"
+msgstr ""
#: entrée standard:52
msgid "Add a validator"
-msgstr "Add a validator"
+msgstr ""
#: entrée standard:57 standard:36
msgid "Validation level"
-msgstr "Validation level"
+msgstr ""
#: entrée standard:73
msgid "Validator type"
-msgstr "Validator type"
+msgstr ""
#: entrée standard:98
msgid "Validators"
@@ -2672,11 +2621,11 @@ msgstr "Validators"
msgid "Actions"
msgstr "Actions"
-#: entrée standard:68 standard:70
+#: entrée standard:54
msgid "Impacts"
msgstr "Impacts"
-#: entrée standard:110
+#: entrée standard:62
msgid "Checklist"
msgstr "Checklist"
@@ -2731,7 +2680,7 @@ msgstr "Full form"
#: entrée standard:37
msgid "Validation status"
-msgstr "Validation status"
+msgstr ""
#: entrée standard:36
#, php-format
diff --git a/locales/en_US.mo b/locales/en_US.mo
index 02d3c07ae..6c8de3df3 100644
Binary files a/locales/en_US.mo and b/locales/en_US.mo differ
diff --git a/locales/en_US.po b/locales/en_US.po
new file mode 100644
index 000000000..0c9b898a1
--- /dev/null
+++ b/locales/en_US.po
@@ -0,0 +1,2696 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# 조성현 (jaymz9634) , 2022
+# Thierry Bugier , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Thierry Bugier , 2022\n"
+"Language-Team: English (United States) (https://app.transifex.com/teclib/teams/28042/en_US/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: en_US\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "No limit"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Service catalog"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Form Creator"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Form list"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "The form has been successfully saved!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Please, describe your need here"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Textarea"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "A required field is empty:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "The regular expression is invalid"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filter"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "LDAP Select"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "LDAP directory not defined!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "LDAP directory not found!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Radios"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "The field value is required:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Integer"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Select"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Date & time"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Attached document"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Multiselect"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Checkboxes"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Regular expression"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Range"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Additional validation"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "A description field should have a description:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Always displayed"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Hidden unless"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Displayed unless"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Update issue data from tickets and form answers"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Form approver"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comment"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr " Ticket approver "
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Form approver group"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "To validate"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Closed"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Knowledge category"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "The form as been saved"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "A form need to be validate"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "The form is refused"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "The form is accepted"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "The form is deleted"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Form name"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Full form answers"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Validation link"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Form #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Refused comment"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Request #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Form validator"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Specific person"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Person from the question"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Specific group"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Group from the question"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Specific supplier"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Supplier from the question"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actors from the question"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Print this form"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Form accepted by validator."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Form successfully saved."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Required if refused"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Refuse"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Accept"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Refused comment is required!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "You are not the validator of these answers"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Form data"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Cannot generate targets!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr " You must select validator! "
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Seek assistance"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "My requests for assistance"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consult feeds"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Delete"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "None"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Choose a validator"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Actors"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPi's helpdesk"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Service catalog simplified"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Service catalog extended"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Popularity sort"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Alphabetic sort"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesk"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Helpdesk mode"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Public access"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Private access"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Restricted access"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Import forms"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Homepage"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Access"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "The name cannot be empty!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "The question %s is not compatible with public forms"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicate"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Form duplicated: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Form Transfered: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Back"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Upload of JSON files not allowed."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "You may allow JSON files right now."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Create"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Please contact your GLPI administrator."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Back"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Upload of JSON files not enabled."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "You may enable JSON files right now."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Enable"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Forms successfully imported from %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Failed to create JSON document type"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "JSON document type not found"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Failed to update JSON document type"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Forms without category"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Change title"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "The title is required"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Required"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "The section is required"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "Field type %1$s is not available for question %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "This type of question is not compatible with public forms."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Current active entity"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Default requester user's entity"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "First dynamic requester user's entity (alphabetical)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Last dynamic requester user's entity (alphabetical)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "The form entity"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Default entity of the validator"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Specific entity"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Default entity of a user type question answer"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "From a GLPI object > Entity type question answer"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "User type question"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Entity type question"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Show ticket categories"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Incident categories"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Equals to the answer to the question"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Ticket title"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Add validation message as first ticket followup"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Link to an other ticket"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "An other destination of this form"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "An existing ticket"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Invalid link type"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Invalid linked item type"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Linked item does not exists"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Failed to link the item"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Your form has been accepted by the validator"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Tags from questions"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Specific tags"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Tags from questions and specific tags"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Tags from questions or specific tags"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "equals to the answer to the question"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "calculated from the ticket creation date"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "calculated from the answer to the question"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgency from template or Medium"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Specific urgency"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Category from template or none"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Specific category"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Location from template or none"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Specific location"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgency"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Ticket tags"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Tags"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Location"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "The description cannot be empty!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancel"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "A form has been created"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Your request has been saved"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Your form has been refused by the validator"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Your form has been deleted by an administrator"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator - Sync service catalog issues"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicate"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Are you sure you want to delete this question?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Are you sure you want to delete this section?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "An error occured while querying forms"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Show empty"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Attribute"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Show ticket categories"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Direct access on homepage"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Default form in service catalog"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Add a section"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Add a question"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Full form"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "No form posted yet"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "All my forms (requester)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "All my forms (validator)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/es_419.mo b/locales/es_419.mo
index a0513ac29..9b35c838b 100644
Binary files a/locales/es_419.mo and b/locales/es_419.mo differ
diff --git a/locales/es_419.po b/locales/es_419.po
new file mode 100644
index 000000000..5e96bc135
--- /dev/null
+++ b/locales/es_419.po
@@ -0,0 +1,2763 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Nelson Guerrero , 2022
+# Lorenzo Salvador Osorio Orellana, 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Lorenzo Salvador Osorio Orellana, 2023\n"
+"Language-Team: Spanish (Latin America) (https://app.transifex.com/teclib/teams/28042/es_419/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_419\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Solicitud incorrecta"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Pregunta no encontrada"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "No tienes derecho a esta acción"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Pregunta de origen no encontrada"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "No se pudieron mover algunas preguntas"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "No se pudo agregar la sección"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Raíz del subárbol"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Seleccionable"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Limite la profundidad del subárbol"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Sin límite"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Sección de origen no encontrada"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "No se pudo eliminar la sección"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "No se pudo agregar la pregunta"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "No se pudo mover la sección"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "No se pudo agregar el actor"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "No se pudo eliminar al actor"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "No se pudo duplicar la sección"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "No se pudo actualizar la sección"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catálogo de servicios"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "Elemento no encontrado"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "Sin permisos para actualizar este elemento."
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "Petición errada al eliminar actor."
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creador de formularios"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "%1$s = %2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista de formularios"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "¡El formulario ha sido guardado exitosamente!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$s eliminó la reserva del artículo %2$s"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$s agrega la reserva%2$s para el elemento%3$s"
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] "Categoría"
+msgstr[1] "Categorías"
+msgstr[2] "Categorías"
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "Ver todo"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Por favor, describe tu necesidad aquí"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Textarea"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "El campo requerido está vacío:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "La expresión regular no es válida"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Usuario y formulario"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "Desplegable"
+msgstr[1] "Desplegables"
+msgstr[2] "Desplegables"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valor incorrecto para"
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "El campo de tipo de elemento es obligatorio: %s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo de menú desplegable no válido: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Restricción de entidad"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+"Para respetar el sistema de entidades GLPI, se debe seleccionar "
+"\"Formulario\". Otras configuraciones romperán las restricciones de la "
+"entidad"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Seleccionar LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "El directorio LDAP no está definido!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "El directorio LDAP no se ha encontrado!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Radios"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "El valor del campo es requerido:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Un campo requerido esta vacío: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Este no es un número entero: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "El formato especificado no coincide: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "El siguiente número debe ser mayor que %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "El siguiente número debe ser menor que %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Entero"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "Indefinido"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] "Dirección IP"
+msgstr[1] "Direcciones IP"
+msgstr[2] "Direcciones IP"
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "Urgencia"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "Muy alta"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "Alta"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Medio"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "Baja"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "Muy baja"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "Advertencia: el complemento de etiquetas está deshabilitado o falta"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "Etiqueta"
+msgstr[1] "Etiquetas"
+msgstr[2] "Etiquetas"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] "Nombre de anfitrión"
+msgstr[1] "Nombres de anfitrión"
+msgstr[2] "Nombres de anfitrión"
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Hora"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Este no es un correo electrónico valido: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] "Correo"
+msgstr[1] "De correos"
+msgstr[2] "Correos"
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Selector"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Fecha y hora"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] "Actor"
+msgstr[1] "De actores"
+msgstr[2] "Actores"
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valor no válido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Usuario no encontrado o dirección de correo electrónico no válida:%s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Documento no adjuntado"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento adjunto"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Falta un archivo obligatorio: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr "Archivo"
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Mutiselección"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+"Advertencia: el complemento de campos adicionales está deshabilitado o falta"
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr "Bloque"
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr "Campo"
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr "ver"
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr "¡El tipo de campo '%1$s' aún no está implementado!"
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr "Algunos campos numéricos contienen valores no numéricos"
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr "Algunos campos de URL contienen enlaces no válidos"
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr "Campos Adicionales"
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Casillas de verificación"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr "Rango mínimo"
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr "Rango máximo"
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Esto no es un número: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rango"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validación adicional"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr "Fecha"
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Descripción"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Un campo de descripción debe tener una descripción:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] "Campo oculto"
+msgstr[1] "De campos ocultos"
+msgstr[2] "Campos ocultos"
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] "Condición"
+msgstr[1] "Condiciones"
+msgstr[2] "Condiciones"
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "es visible"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "no es visible"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "La expresión regular coincide"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mostrar siempre"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Oculto amenos que"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Mostrar a meno que"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "No se pudo agregar o actualizar el %1$s %2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "No se puede exportar un objeto vacío: %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condiciones"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importando"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr "Importación en progreso"
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] "Problema"
+msgstr[1] "Problemas"
+msgstr[2] "Problemas"
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Actualizar datos de asuntos de casos y respuestas de formularios"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr "Encuesta de satisfacción caducada"
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr "Nombre"
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr "ID"
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] "Tipo"
+msgstr[1] "Tipos"
+msgstr[2] "Tipos"
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr "Estado"
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr "Fecha de apertura"
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr "Última modificación"
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] "Entidad"
+msgstr[1] "Entidades"
+msgstr[2] "Entidades"
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] "Solicitante"
+msgstr[1] "Solicitantes"
+msgstr[2] "Solicitantes"
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Aprobador del formulario"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentario"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Aprobador del caso"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr "Técnico"
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr "Grupo de técnicos"
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Grupo aprobador de formularios"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr "Grupo de aprobadores de casos"
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr "Solicitante del caso"
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr "Observador del caso"
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr "Técnico del caso"
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr "%1$s %2$s"
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr "Todos"
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr "Nuevos"
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr "Asignado"
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "Esperando"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Para validar"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr "Resuelto"
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Cerrado"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] "Categoría de formulario"
+msgstr[1] "Categorías de formularios"
+msgstr[2] "Categorías de formularios"
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoría de base de conocimiento"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr "Debajo de"
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Ícono"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Color del ícono"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] "Formulario"
+msgstr[1] "Formularios"
+msgstr[2] "Formularios"
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "El formulario se ha guardado"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un formulario necesita ser validado"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Se rechaza el formulario."
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Se acepta el formulario"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "El formulario fue borrado"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Formulario nombre"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] "Validador"
+msgstr[1] "Validadores"
+msgstr[2] "Validadores"
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr "Fecha de creación"
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Respuestas de formulario completo"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Enlace de validación"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulario #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validador"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentario rechazado"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Solicitud #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr "Autor"
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr "Autorizador"
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autor del formulario"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validador del formulario"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Persona específica"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona de la pregunta"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Grupo específico"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupo de la pregunta"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Grupo de un objeto"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Grupo técnico de un objeto"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Proveedor específico"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Proveedor de la pregunta"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actores para la pregunta"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "Supervisor del autor del formulario"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr "Observador"
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr "Asignado a"
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] "Actor objetivo"
+msgstr[1] "Actores objetivos"
+msgstr[2] "Actores objetivos"
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr "Solicitud incorrecta al agregar un participante."
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr "No se pudo encontrar un usuario: %1$s"
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr "No se pudo encontrar un grupo: %1$s"
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr "No se pudo encontrar un proveedor: %1$s"
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Aceptado"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] "Respuesta de formulario"
+msgstr[1] "Respuestas del formulario"
+msgstr[2] "Respuestas del formulario"
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Imprimir este formulario"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulario aceptado por el validador."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulario guardado exitosamente."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr "Guardar"
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Requerido si es rechazad"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Editar las respuestas"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "Cancelar edición"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aceptar"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "¡Se requiere comentario rechazado!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "No eres el validador de estas respuestas"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr "Elemento agregado con éxito: %1$s (%2$s: %3$s)"
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Datos del formulario"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "¡No se pueden generar los objetivos!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "¡Debe seleccionar el validador!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr "No puede eliminar este problema. Se tomara en cuenta."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "No se pudo eliminar este problema. Ocurrió un error interno."
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Buscar ayuda"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mis solicitudes de ayuda"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consultar fuentes"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] "Tipo de accesos"
+msgstr[1] "Tipos de accesos"
+msgstr[2] "Tipos de accesos"
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] "Idioma del formulario"
+msgstr[1] "Idiomas del formulario"
+msgstr[2] "Idiomas del formulario"
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] "Traducción"
+msgstr[1] "Traducciones"
+msgstr[2] "Traducciones"
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Agregar una traducción"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr "Actualizar una traducción"
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Nueva traducción"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "Lista de filtros"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "Traducción no encontrada"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "¿Quiere borrar los siguientes elementos?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Borrar "
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "Cadena original"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr "Agregar un nuevo idioma"
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr "Idioma"
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ninguno"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr "No"
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "Formulario no encontrado."
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Validación"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Escoger un validador"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr "Guardar"
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] "Problema objetivo"
+msgstr[1] "Problemas objetivos"
+msgstr[2] "Problemas objetivos"
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr "Propiedades"
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+"No se pudo agregar o actualizar %1$s %2$s: falta una pregunta y se usa en un"
+" parámetro del destino"
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "De actores"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr "Título del problema"
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "Contenido"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Impacto"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr "Motivo"
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr "Síntoma"
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr "Herencia de la entidad padre"
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Mesa de ayuda GLPI"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catálogo de servicio simplificado "
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catálogo de servicios extendido"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr "Todos los formularios disponibles"
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr "Solo formularios predeterminados"
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Orden por popularidad"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Orden alfabético"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Fusionado con formularios"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "Entrada de menú distinta"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Visible"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Oculto"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr "Altura variable"
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr "Altura uniforme"
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr "Buscar ayuda"
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr "Solicitudes de asistencia del usuario"
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Mesa de ayuda "
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modo mesa de ayuda"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr "Modo de lista de formulario predeterminado"
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Orden de clasificación"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "Base de conocimiento"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Buscar"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr "Tablero de contadores"
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "Mensaje del encabezado"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr "Buscar asunto"
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr "Página de inicio del catálogo de servicios"
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr "Diseño de cubierta"
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] "Encabezado"
+msgstr[1] "Encabezados"
+msgstr[2] "Encabezados"
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Mostrar campo de búsqueda"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Mostrar encabezado"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] "Rango de preguntas"
+msgstr[1] "Rangos de preguntas"
+msgstr[2] "Rangos de preguntas"
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "Rango mínimo"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "Rango máximo"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Acceso público "
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Acceso privado "
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Acceso restringido "
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr "Respuestas esperando validación"
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importar formularios"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr "Recursivo"
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Página principal"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acceso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr "Activo"
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr "Formulario predeterminado"
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr "Inactivo"
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr "Formulario no predeterminado"
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr "Todos los idiomas"
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] "Objetivo"
+msgstr[1] "Objetivos"
+msgstr[2] "Objetivos"
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr "Vista previa"
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr "Propiedades de respuesta de formulario"
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "¿Qué estás buscando?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "El nombre no puede estar vacío! "
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+"No se puede usar un nombre vacío para las respuestas del formulario. "
+"Manteniendo el valor anterior."
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "La pregunta %s no es compatible con formularios públicos"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "Duplicado con errores"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr "Publicar"
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulario duplicado:%s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulario transferido: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Atras"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Carga de ficheros JSON no permitida."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Deberías permitir la carga de ficheros JSON ahora."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Crear"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Por favor, póngase en contacto con su administrador GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Atras"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Carga de archivos JSON no habilitada."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Puede habilitar archivos JSON ahora."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Habilitar"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr "Enviar"
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "imposible importar el formulario, el archivo esta vacío"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Imposible importar formularios, el archivo parece corrupto"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+"La importación del formulario es imposible, el fichero se generó con otra "
+"versión"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formulario exitosamente importado de %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "El formulario %1$s ya existe y esta en una entidad no modificable."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "La entidad %1$s es necesaria para el formulario %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formularios sin categoría"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "No hay formulario disponible"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "Añadir un objetivo"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "plugin_formcreator_load_check"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "El título es requerido"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Requerido"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "La sección es requerida"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Este tipo de pregunta no es compatible con los formularios públicos."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "La entidad de formulario"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Un destino debe de ser asociado a el formulario."
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Un destino debe estar asociado a un formulario existente"
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Se requiere el nombre."
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr "Formcreator"
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Título del caso"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Otro destino para este formulario"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Su formulario ha sido aceptado por el validador"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "La descripción no puede estar vacía! "
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+"El esquema de la base de datos no es coherente con la versión anterior de "
+"Formcreator %s. Para ver los registros, ejecute el comando %s"
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+"Ya no se admite la actualización desde una versión anterior a la 2.5.0. "
+"Actualice a GLPI 9.5.7, actualice Formcreator a la versión 2.12.5, luego "
+"actualice nuevamente a GLPI 10 o posterior y Formcreator 2.13 o posterior."
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+"El esquema de la base de datos no es coherente con la versión actual de "
+"Formcreator %s. Para ver los registros, habilite el complemento y ejecute el"
+" comando %s"
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Se ha creado un formulario"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Su solicitud ha sido guardada"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\\\n Su solicitud del GLPI ha sido exitosamente guardada con el "
+"numero ##formcreator.request_id## y notificado al equipo de la mesa de "
+"ayuda.\\\\n Puede ver las respuestas del equipo en el siguiente link:\\\\n "
+"##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Su formulario ha sido rechazado por el validador"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Sentimos informar que el formulario ha sido rechazado por el validador por "
+"la siguiente razón:\\n ##formcreator.validation_comment##\\n\\n Puede "
+"modificarlo y reenviarlo en la siguiente liga: "
+"\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hola, \\\\Nos complace informarle que su formulario ha sido aceptado por el "
+"validador.\\\\n Su solicitud será procesada pronto."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Tu formulario ha sido eliminado por un administrador"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hola,\\nLamentamos informarle de que su solicitud no puede ser considerada, "
+"y ha sido eliminado por un administrador."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+"Formcreator - Problemas en la sincronización del catálogo de servicios"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancelar mi caso"
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+"El mini tablero de Formcreator no se puede usar de forma predeterminada. "
+"Esta configuración ha sido ignorada."
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+"No se encontró ningún formulario. Por favor, elija un formulario a "
+"continuación en su lugar."
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr "No se encontró ningún formulario."
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Ocurrió un error al consultar los formularios"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr "Enviar"
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostrar vacío"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atributo "
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Valores"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "Objeto GLPI"
+msgstr[1] "Objetos GLPI"
+msgstr[2] "Objetos GLPI"
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Acceso directo en la página de inicio"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Formulario por defecto en el catálogo de servicios"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr "Validadores"
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr "Acciones"
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Agregar una sección "
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr "No hay respuesta de formulario todavía"
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "Por favor, active el formulario para ver el enlace"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Habilitar captcha"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr "Restringido a"
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Agregar una pregunta"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Formulario completo"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "Mis %1$d últimos formularios (solicitante)"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "No se ha enviado el formulario aún"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Todos mis formularios (Solicitante) "
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "Mis %1$d últimos formularios (validador)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Todos mis formularios (Validador)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Mínimo "
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Máximo"
diff --git a/locales/es_AR.po b/locales/es_AR.po
new file mode 100644
index 000000000..6661149fb
--- /dev/null
+++ b/locales/es_AR.po
@@ -0,0 +1,2775 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Emiliano Cagliari , 2022
+# Luis Angel Uriarte , 2022
+# Fernando Toledo , 2023
+# Nicolás Gaviola, 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Nicolás Gaviola, 2023\n"
+"Language-Team: Spanish (Argentina) (https://app.transifex.com/teclib/teams/28042/es_AR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_AR\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Solicitud incorrecta"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Pregunta no encontrada"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "Usted no tiene derecho a esta acción"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Pregunta de origen no encontrada"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "No se pudieron mover algunas preguntas"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "No se pudo agregar la sección"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Subárbol raíz"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Seleccionable"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Limite la profundidad del subárbol"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Sin limite."
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Sección de origen no encontrada"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "No se pudo eliminar la sección"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "No se pudo agregar la pregunta"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "No se pudo mover la sección"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "No se pudo agregar el actor"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "No se pudo eliminar al actor"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "No se pudo duplicar la sección"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "No se pudo actualizar la sección"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catálogo de servicios"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "Ítem no encontrado"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "Sin permisos para actualizar este elemento."
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "Solicitud incorrecta al eliminar un actor."
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creador de Formularios"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "%1$s = %2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista de formularios"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "¡El formulario ha sido guardado con éxito!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$s eliminó la reserva del ítem %2$s"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$s agrega la reserva%2$s para el elemento%3$s"
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "Ver todo"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Por favor, describa su necesidad aquí"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Área de texto"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Campo obligatorio vacío:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "La expresión regular no es válida."
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Usuario y formulario"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "Menú desplegable"
+msgstr[1] "Menúes desplegables"
+msgstr[2] "Menúes desplegables"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valor incorrecto para"
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "El campo de tipo de elemento es obligatorio: %s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo de menú desplegable no válido: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Restricción de entidad"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+"Para respetar el sistema de entidades de GLPI, se debe seleccionar "
+"\"Formulario\". Otras configuraciones romperán las restricciones de la "
+"entidad"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Seleccionar LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "¡El directorio LDAP no está definido!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "¡El directorio LDAP no se ha encontrado!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Radios"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Valor de campo obligatorio:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Un campo requerido esta vacío: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Este no es un número entero: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "El formato especificado no coincide: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "El siguiente número debe ser mayor qué %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "El siguiente número debe ser menor qué %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Entero"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "Indefinido"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "Urgencia"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "Muy alto"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "Alto"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Medio"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "Bajo"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "Muy bajo"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "Advertencia: falta el complemento de etiquetas o está deshabilitado"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "Etiqueta"
+msgstr[1] "Etiquetas"
+msgstr[2] "Etiquetas"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Hora"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Este no es un correo electrónico válido: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] "Correo electrónico"
+msgstr[1] "Correos electrónicos"
+msgstr[2] "Correos electrónicos"
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Seleccionar"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Fecha y hora"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] "Actor"
+msgstr[1] "Actores"
+msgstr[2] "Actores"
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valor inválido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Usuario no encontrado o dirección de correo electrónico no válida:%s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "No hay documento adjunto"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento adjunto"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Falta un archivo obligatorio: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr "Archivo"
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Selección múltiple"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+"Advertencia: el complemento de campos adicionales está deshabilitado o falta"
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr "Bloque"
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr "Campo"
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr "mostrar"
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr "¡El tipo de campo '%1$s' aún no está implementado!"
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr "Algunos campos numéricos contienen valores no numéricos"
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr "Algunos campos de URL contienen enlaces no válidos"
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr "Campos Adicionales"
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Casillas de verificación"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr "La siguiente pregunta necesita al menos %d respuestas: %s"
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr "La siguiente pregunta no acepta más dé %d respuestas: %s"
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr "Rango mínimo"
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr "Rango máximo"
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Esto no es un número: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rango"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validación adicional"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr "Fecha"
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Descripción"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Un campo de descripción debe tener una descripción:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] "Campo oculto"
+msgstr[1] "Campos ocultos"
+msgstr[2] "Campos ocultos"
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "es visible"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "no es visible"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "coincidencias de expresiones regulares"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mostrar siempre"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Oculto amenos que"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Mostrar al menos que"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "No se pudo agregar o actualizar el %1$s %2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "No se puede exportar un objeto vacío: %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condiciones"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importando"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr "Importación en curso"
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] "Problema"
+msgstr[1] "Problemas"
+msgstr[2] "Problemas"
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Actualizar los datos de emisión de tickets y formular respuestas"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr "La encuesta de satisfacción ha caducada"
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr "Nombre"
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr "ID"
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr "Estado"
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr "Fecha de apertura"
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr "Última modificación"
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] "Entidad"
+msgstr[1] "Entidades"
+msgstr[2] "Entidades"
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] "Solicitante"
+msgstr[1] "Solicitantes"
+msgstr[2] "Solicitantes"
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Aprobador de formulario"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentario"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Aprobador de tickets"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr "Técnico"
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr "Grupo de técnicos"
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Grupo aprobador de formularios"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr "Grupo aprobador de ticket"
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "Tiempo para resolver"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "Tiempo de posesión "
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr "Solicitante del ticket"
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr "Observador del ticket"
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr "Técnico del ticket"
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr "%1$s %2$s"
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr "Todos"
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr "Nuevos"
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr "Asignado"
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "En espera"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Validar"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr "Resueltos"
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Cerrado"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoría de conocimiento"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr "Debajo de"
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Ícono"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Color del ícono"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Color de fondo"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "El formulario se ha guardado"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un formulario necesita autorización"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Se rechaza el formulario"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Se acepta el formulario"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Se borró el formulario"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr "ID de formulario"
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nombre del formulario"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr "Fecha de creación"
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Respuestas de formulario completo"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr "Comentario de validación"
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Enlace de validación"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr "Solicitar ID"
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulario #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Autorizante"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentario Rechazado"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Solicitud #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr "Autor"
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr "Autorizador"
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autor del formulario"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Autoriza el formulario"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Persona específica"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona de la pregunta"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Grupo específico"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupo de la pregunta"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Grupo desde un objeto"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Grupo técnico de un objeto"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Proveedor específico"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Proveedor de la pregunta"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actores de la pregunta"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "Supervisor del autor del formulario"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr "Observador"
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr "Asignado a"
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] "Actor objetivo"
+msgstr[1] "Actores objetivos"
+msgstr[2] "Actores objetivos"
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr "Solicitud incorrecta al agrgar un participante."
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr "No se pudo encontrar un usuario: %1$s"
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr "No se pudo encontrar un grupo: %1$s"
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr "No se pudo encontrar un proveedor: %1$s"
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Aceptado"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "cbvsxv"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulario aceptado por el validador."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulario correctamente guardado."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr "Guardar"
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Requerido si se rechaza"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Rechazo"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Editar respuestas"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "Cancelar edición"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aceptar"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "¡Se requiere comentario rechazado!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+"Ocurrió un error interno al verificar sus respuestas. Por favor informe al "
+"administrador."
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Usted no es el validador de estas respuestas"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr "Elemento agregado con éxito: %1$s (%2$s: %3$s)"
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Datos del formulario"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "¡No puede generar objetivos!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "¡Debe seleccionar el validador!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+"No puede eliminar este problema. Tal vez haya sido asignado y está en curso."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "No se pudo eliminar este problema. Ocurrió un error interno."
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Busque ayuda"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mis pedidos de asistencia"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr "Consultar recordatorios"
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consultar fuentes"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr "El nombre no puede estar vacío."
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr "El idioma debe estar asociado a un formulario."
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr "El idioma especificado no está disponible."
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Agregar una traducción"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr "Actualizar una traducción"
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Nueva traducción"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "Lista de filtros"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "Traducción no encontrada"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "¿Quiere borrar los siguientes elementos?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Borrar"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "Cadena original"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr "Agregar un nuevo idioma"
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr "Idioma"
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ninguna"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr "No"
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "Formulario no encontrado."
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Validación"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Elegir autorizante"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr "Guardar"
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr "Propiedades"
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+"No se pudo agregar o actualizar %1$s %2$s: falta una pregunta y se usa en un"
+" parámetro del destino"
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Actores"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr "Título del problema"
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "Contenido"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Impacto"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr "Motivo"
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr "Síntoma"
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr "Herencia de la entidad padre"
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Mesa de ayuda de GLPI"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catálogo de servicios simplificado"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catálogo de servicios ampliado"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr "Todos los formularios disponibles"
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr "Solo formularios predeterminados"
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Orden de popularidad"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Orden alfabética"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Fusionado con formularios"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "Entrada de menú distinta"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Visible"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Oculto"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr "Altura variable"
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr "Altura uniforme"
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr "Buscar ayuda"
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr "Solicitudes de asistencia del usuario"
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Mesa de ayuda"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modo Mesa de ayuda"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr "Modo de lista de formulario predeterminado"
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Ordenar"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "Base de conocimiento"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Buscar"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr "Panel de contadores"
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "Mensaje del encabezado"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr "Buscar asunto"
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr "Página de inicio del catálogo de servicios"
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr "Diseño de bloque"
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Mostrar campo de búsqueda"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Mostrar encabezado"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "Rango mínimo"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "Rango máximo"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Acceso público"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Acceso privado"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Acceso restringido"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr "Respuestas esperando validación"
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importar formularios"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr "Recursivo"
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Pagina de inicio"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acceso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr "Activo"
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr "Formulario predeterminado"
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr "Inactivo"
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr "Formulario no predeterminado"
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr "Todos los idiomas"
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr "Vista previa"
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr "Propiedades de respuesta de formulario"
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "¿Qué estás buscando?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "¡El nombre no puede estar vacío!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+"No se puede usar un nombre vacío para las respuestas del formulario. "
+"Manteniendo el valor anterior."
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "La pregunta %s no es compatible con formularios públicos"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "Duplicado con errores"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr "Publicar"
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulario duplicado: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulario transferido: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Atras"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr "Formulario actualizado: %s"
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Carga de archivos JSON no permitidos."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Puede permitir archivos JSON en este momento."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Crear"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Por favor, póngase en contacto con su administrador GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Atras"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Carga de archivos JSON no habilitados."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Puede habilitar los archivos JSON en este momento."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Habilitado"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr "Enviar"
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "imposible importar el formulario, el archivo esta vacío"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Imposible importar formularios, el archivo parece corrupto"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+"La importación del formulario es imposible, el fichero se generó con otra "
+"versión"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+"El archivo no especifica la versión del esquema. Probablemente fue generado "
+"con una versión anterior a 2.10. Rechazado."
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Error al importar %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formularios importados correctamente desde %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "El formulario %1$s ya existe y esta en una entidad no modificable."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr "No tiene derecho a actualizar la entidad %1$s."
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "La entidad %1$s es necesaria para el formulario %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Error al crear el tipo de documento JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "Tipo de documento JSON no encontrado"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Error al actualizar el tipo de documento JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formularios sin categoría"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "No hay formulario disponible"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "Agregar un destino"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Agregar"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Tipo de Destino no soportado"
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "plugin_formcreator_load_check"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Cambiar título"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr "Lista de control"
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr "Plan de despliegue"
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr "Plan de Backup"
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr "Lista de verificación"
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Se requiere el título"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr "Recuento de condiciones"
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr "No se pudo buscar %1$s %2$s"
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Obligatorio"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Se requiere la sección"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "El tipo de campo %1$sno esta disponible para esta pregunta %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Este tipo de pregunta no es compatible con los formularios públicos."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr "Niveles de servicio"
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "Acuerdo de Nivel de Operación"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr "Activos"
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr "Asistencia"
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr "Gestión"
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr "Herramientas"
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr "Notas"
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr "Canal RSS"
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr "Administración"
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] "Complemento"
+msgstr[1] "Complementos"
+msgstr[2] "Complementos"
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Parámetro"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Entidad activa actual"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Entidad del usuario solicitante predeterminada"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Entidad solicitante del primer solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Entidad solicitante del último solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "La entidad de formulario"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "La entidad predeterminada del validador"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Entidad específica"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Entidad predeterminada de un tipo de usuario pregunta respuesta"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "De un objeto GLPI> Tipo de entidad pregunta respuesta"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr "Generar siempre"
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr "Deshabilitado a menos que"
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr "Generado a menos que"
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Un destino debe de ser asociado a el formulario."
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Un destino debe estar asociado a un formulario existente"
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Se requiere el nombre."
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr "Entidad destino"
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Pregunta de tipo de usuario"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Tipo de entidad pregunta"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr "Buscando elementos no válidos..."
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr "Hecho."
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr "Paso 1: signos < y > de doble codificación."
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr "No se encontraron elementos no válidos."
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr "Paso 2: etiqueta literal BR."
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr "Paso 3: literal signo >."
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Categorías de solicitud"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Categorías de incidentes"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "Categorías de cambio"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "Respuesta"
+msgstr[1] "Respuestas"
+msgstr[2] "Respuestas"
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] "Relación de caso compuesto"
+msgstr[1] "Relaciones de casos compuesto"
+msgstr[2] "Relaciones de casos compuesto"
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "Especificar activo"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Igual a la respuesta a la pregunta"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Última respuesta válida"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+"Origen de plantilla o valor predeterminado de usuario o valor predeterminado"
+" de GLPI"
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr "Formcreator"
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr "Por defecto o de una plantilla"
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr "Tipo específico"
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Título del requerimiento"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Agregar mensaje de validación como seguimiento del primer ticket"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr "Agregar un campo"
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr "Campos administrados"
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr "Ningún campo administrado"
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Enlace a otro ticket"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Otro destino de este formulario"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Un Ticket existente."
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr "Un ticket a partir de una respuesta a una pregunta"
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr "Eliminar permanentemente"
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Tipo de enlace inválido"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Tipo de elemento vinculado no válido"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "El elemento vinculado no existe."
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Error al vincular el elemento."
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Su formulario ha sido aceptado por el validador"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr "Tipo de solicitud"
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "Tipo"
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr "Elementos asociados"
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Elemento"
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "No hay mas cadenas para traducir"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr "Error interno: cadena traducible no encontrada."
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "Idioma no encontrado"
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr "No se pudo agregar la traducción."
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Etiquetas de preguntas"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Etiquetas de preguntas y etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Etiquetas de preguntas o etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "Equivale a la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "Calculado a partir de la fecha de creación del ticket"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "Calculado a partir de la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "Plantilla de SLA o ninguna"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "Especificar SLA"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "Plantilla de OLA o ninguna"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "Especificar OLA"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgencia de plantilla o medio"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Urgencia específica"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categoría de la plantilla o ninguna"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Categoría específica"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Ubicación desde la plantilla o ninguno"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Ubicación específica"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr "Sin validación"
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr "Usuario o grupo específicos"
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr "Usuario desde la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr "Grupo a partir de respuesta de pregunta"
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] "Minuto"
+msgstr[1] "Minutos"
+msgstr[2] "Minutos"
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] "Hora"
+msgstr[1] "Horas"
+msgstr[2] "Horas"
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] "Día"
+msgstr[1] "Días"
+msgstr[2] "Días"
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] "Mes"
+msgstr[1] "Meses"
+msgstr[2] "Meses"
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Pregunta ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgencia"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Etiquetas de ticket"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr "Lugar"
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Ubicación"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "¡La descripción no puede estar vacía!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] "Observador"
+msgstr[1] "Observadores"
+msgstr[2] "Observadores"
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr "Seguimiento por correo"
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr "Usuario"
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr "Grupo"
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Grupo desde un objeto"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Grupo técnico del objeto"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr "Proveedor"
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr "Sí"
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr "Actualizar tablas a innoDB; corra %s"
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+"El esquema de la base de datos no es coherente con la versión anterior de "
+"Formcreator %s. Para ver los registros, ejecute el comando %s"
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+"Para ignorar las inconsistencias y actualizar de todos modos, ejecute %s"
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+"Ya no se admite la actualización desde una versión anterior a la 2.5.0. "
+"Actualice a GLPI 9.5.7, actualice Formcreator a la versión 2.12.5, luego "
+"actualice nuevamente a GLPI 10 o posterior y Formcreator 2.13 o posterior."
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+"El esquema de la base de datos no es coherente con la versión actual de "
+"Formcreator %s. Para ver los registros, habilite el complemento y ejecute el"
+" comando %s"
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+"Las tablas del complemento pasaron la verificación de integridad del "
+"esquema."
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Se ha creado un formulario"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Su solicitud ha sido guardado"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola, \\ nTu solicitud de GLPI se ha guardado con éxito con el número ## "
+"formcreator.request_id ## y se ha transmitido al equipo de helpdesk. \\ "
+"NPuede ver sus respuestas en el siguiente enlace: \\ n ## "
+"formcreator.validation_link ##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Su formulario ha sido rechazado por el validador"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola, \\ nLo sentimos informarle que el validador ha rechazado su formulario"
+" por las razones siguientes: \\ n ## formcreator.validation_comment ## \\ n "
+"\\ nAún puede modificarlo y volver a enviarlo haciendo clic en este enlace: "
+"\\ n ## formcreator.validation_link ##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hola, \\ nNos complace informarle que su formulario ha sido aceptado por el "
+"validador. \\ NLa solicitud será considerada pronto."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Su formulario ha sido eliminado por un administrador"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hola, \\ nLo sentimos informarle que su solicitud no puede ser considerada y"
+" ha sido eliminada por un administrador."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+"Creador de formularios - Sincronizar problemas con el catálogo de servicios"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr "¡No se pudo verificar la integridad de las tablas!"
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr "El esquema de tabla difiere para la tabla \"%s\"."
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr "Falta la tabla \"%s\"."
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr "Se ha encontrado la tabla desconocida \"%s\" en la base de datos."
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr "Transferir"
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr "Exportar"
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr "Derechos de acceso"
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancelar mi ticket"
+
+#: hook.php:774
+msgid "Old"
+msgstr "Antiguo"
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr "Número de %s"
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr "Resumen de asuntos"
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+"El mini tablero de Formcreator no se puede usar de forma predeterminada. "
+"Esta configuración ha sido ignorada."
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+"No se encontró ningún formulario. Por favor, elija un formulario a "
+"continuación en su lugar."
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr "No se encontró ningún formulario."
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr "No se encontró ningún ítem de preguntas frecuentes."
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "¿Seguro que quieres eliminar esta pregunta?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "¿Seguro que quieres eliminar esta sección?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr "Agregar traducciones"
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Se ha producido un error al consultar formularios"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr "Enviar"
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr "Ha ocurrido un error interno. Por favor reportarlo al administrador."
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr "¿Estás seguro de que quieres duplicar este destino?"
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr "¿Está seguro de que desea eliminar este destino?"
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr "Valores por defecto"
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostrar vacío"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] "Directorio LDAP"
+msgstr[1] "Directorios LDAP"
+msgstr[2] "Directorios LDAP"
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atributo"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Valores"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Mostrar categorías de ticket"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr "Raíz seleccionable"
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Acceso directo en la página principal"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Formulario predeterminado en el catálogo de servicios"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "¿Eres un robot?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr "Condición para mostrar la sección"
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr "Condición para generar un destino"
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr "Validadores"
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr "Acciones"
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr "Impactos"
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr "Lista de verificación"
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr "Título de las respuestas"
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Agregar sección"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr "Condición para mostrar el botón enviar"
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr "No hay respuesta de formulario todavía"
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr "%s últimos artículos"
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "Por favor, active el formulario para ver el enlace"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Habilitar captcha"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr "Restringido a"
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Agregar pregunta"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr "Lista de etiquetas disponibles"
+
+#: entrée standard:42
+msgid "Title"
+msgstr "Título"
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Formulario completo"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "Mis %1$d últimos formularios (solicitante)"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "No hay formulario todavía"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Todos mis formularios (solicitante)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "Mis %1$d últimos formularios (validador)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Todos mis formularios (autorizante)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Mín"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Máx"
diff --git a/locales/es_CL.po b/locales/es_CL.po
new file mode 100644
index 000000000..79170eff1
--- /dev/null
+++ b/locales/es_CL.po
@@ -0,0 +1,2723 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Language-Team: Spanish (Chile) (https://app.transifex.com/teclib/teams/28042/es_CL/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_CL\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr ""
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr ""
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr ""
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr ""
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr ""
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr ""
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr ""
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr ""
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr ""
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr ""
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr ""
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr ""
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr ""
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr ""
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr ""
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr ""
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr ""
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr ""
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr ""
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr ""
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr ""
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr ""
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr ""
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr ""
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr ""
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr ""
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr ""
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr ""
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr ""
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr ""
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr ""
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr ""
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr ""
+
+#: entrée standard:42
+msgid "Min"
+msgstr ""
+
+#: entrée standard:53
+msgid "Max"
+msgstr ""
diff --git a/locales/es_CO.mo b/locales/es_CO.mo
index c6d15b146..7115942d7 100644
Binary files a/locales/es_CO.mo and b/locales/es_CO.mo differ
diff --git a/locales/es_CO.po b/locales/es_CO.po
new file mode 100644
index 000000000..8db683b72
--- /dev/null
+++ b/locales/es_CO.po
@@ -0,0 +1,2751 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Haider López , 2022
+# miguelanruiz, 2022
+# Cristian Felipe de Jesús Casallas Prieto , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Cristian Felipe de Jesús Casallas Prieto , 2022\n"
+"Language-Team: Spanish (Colombia) (https://app.transifex.com/teclib/teams/28042/es_CO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_CO\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Solicitud incorrecta"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Pregunta no encontrada"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "No tienes derecho a esta acción"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Pregunta de origen no encontrada"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "No se pudieron mover algunas preguntas"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "No se pudo agregar la sección"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Raíz del subárbol"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Seleccionable"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Limite la profundidad del subárbol"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Sin límite"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Sección de origen no encontrada"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "No se pudo eliminar la sección"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "No se pudo mover la sección"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "No se pudo duplicar la sección"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "No se pudo actualizar la sección"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catálogo de servicios"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creador de formularios"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista de formularios"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "¡El formulario ha sido guardado exitosamente!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Por favor, describe su necesidad aquí"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Área de texto"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Un campo requerido está vacío:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "La expresión regular es invalida"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Usuario y formulario"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valor invalido para"
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo de menú desplegable no válido: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Restricción de entidad"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Seleccionar LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "¡El directorio LDAP no está definido!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "¡Directorio LDAP no encontrado!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Botón de radio"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "El valor del campo es requerido:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Un campo requerido esta vacío: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Este no es un entero: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Formato especificado no coincide: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "El siguiente número debe ser mayor que %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "El siguiente número debe ser menor que %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Entero"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Mediana"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Hora"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Este no es un correo electrónico valido: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Seleccionar"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Fecha y hora"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valor invalido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Usuario no encontrado o correo electrónico no valido: %s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Documento no adjuntado"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento adjuntado"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Falta un archivo requerido: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Selección múltiple"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Checkboxes"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Esto no es un número: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rango"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validación adicional"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Un campo de descripción debe tener una descripción:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "es visible"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "no es visible"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "coincidencias de expresiones regulares"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mostrar siempre"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Ocultar a menos que"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Mostrar al menos que"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "No se pudo agregar o actualizar el %1$s%2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "No se puede exportar un objeto vacío %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condiciones"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importando"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Actualizar datos de problemas de tickets y respuestas de formularios"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Aprobador del formulario"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentario"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Aprobador del ticket"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Grupo de aprobación del formulario"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "Tiempo para resolverlo"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "Tiempo de posesión "
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "Esperando"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Para validar"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Cerrado"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoría de base de conocimiento"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Icono"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Color del icono"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Color del fondo"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "El formulario ha sido guardado"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un formulario necesita ser validado"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Se rechaza el formulario."
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Se acepta el formulario."
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Se elimina el formulario"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nombre de formulario"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Todas las respuestas del formulario"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Enlace de validación"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulario #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validador"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentario rechazado"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Solicitud #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autor del formulario"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validador del formulario"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Especificar persona"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona para la pregunta"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Especificar grupo"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupo para la pregunta"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Grupo de un objeto"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Grupo técnico de un objeto"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Especificar proveedor"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Proveedor para la pregunta"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actores para la pregunta"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "Supervisor del autor del formulario"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Aceptado"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Imprimir este formulario"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulario aceptado por el validador."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulario guardado exitosamente."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Requerido si es rechazado"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Rechazar"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Editar respuestas"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "Cancelar edición"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aceptar"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "¡Se requiere comentario rechazado!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "No eres el validador de estas respuestas"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Datos del formulario"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "¡No puede generar objetivos!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "Debe seleccionar un validador"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr "No puede eliminar este problema. Se tomara en cuenta."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "No se pudo eliminar este problema. Ocurrió un error interno."
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Buscar asistencia"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mis solicitudes de asistencia"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consultar fuentes"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Agregar una traducción"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Nueva traducción"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "Lista de filtros"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "No se encontró traducción"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "¿Quieres eliminar los elementos seleccionados?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Eliminar"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "Cadena original"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ninguno"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "Formulario no encontrado"
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Validación"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Elegir un validador"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+"No se pudo agregar o actualizar %1$s%2$s: falta una pregunta y se usa en un "
+"parámetro del objetivo"
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Actores"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "Contenido"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Impacto"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Mesa de ayuda de GLPI"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catálogo de servicio simplificado "
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catálogo de servicio extendido"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Ordenar por popularidad"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Ordenar alfabeticamente"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Fusionado con formularios"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "Entrada de menú distinta"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Visible"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Oculto"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Mesa de ayuda "
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modo de mesa de ayuda"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Orden de clasificación"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "Base de conocimiento"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Búsqueda"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "Mensaje del encabezado"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Mostrar campo de búsqueda"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Mostrar encabezado"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "Rango mínimo"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "Rango máximo"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Acceso público "
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Acceso privado "
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Acceso restringido "
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importar formularios"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Página principal"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acceso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "¿Que estas buscando?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "¡El nombre no puede estar vacío!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "La pregunta %s no es compatible con formularios públicos"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "Error duplicado"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulario duplicado:%s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulario transferido: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Atrás"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Subir archivos JSON no está permitido."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Puede permitir archivos JSON ahora."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Crear"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Por favor contacta con el administrador del GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Atrás"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Subir archivos JSON no esta habilitado."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Puede habilitar archivos JSON ahora."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Habilitar"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "Imposible importar el formulario, el archivo esta vacío"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Imposible importar el formulario, el archivo esta corrupto"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+"Imposible importar formulario, el archivo fue generado con otra versión"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+"El archivo no especifica la versión del esquema. Probablemente fue generado "
+"con una versión anterior a 2.10. Rechazado."
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Fallo al importar %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formularios importados correctamente de %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+"El formulario %1$s ya existe y está en una entidad que no se puede "
+"modificar."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "Se requiere la entidad %1$s para el formulario %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Fallo al crear el tipo de documento JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "No se encontró el tipo de documento JSON"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Fallo al actualizar el tipo de documento JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formularios sin categoría"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "Formulario no disponible"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "Agregar un objetivo"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Agregar"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Tipo de objetivo no soportado."
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "Verificación de carga del plugin de Formcreator"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Cambiar título"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr "Lista de control"
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr "Plan de despliegue"
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr "Plan de respaldo"
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr "Lista de verificación"
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "El titulo es requerido"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr "Recuento de condiciones"
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Requerido"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "La sección es requerida"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "El tipo de campo %1$s no está disponible para la pregunta %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Este tipo de pregunta no es compatible con formularios públicos"
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "OLA"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Parametro"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Entidad activa actual"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Entidad predeterminada del usuario solicitante"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Primera entidad del usuario solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Última entidad del usuario solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Entidad del formulario"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Entidad predeterminada del validador"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Especificar entidad"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+"Entidad predeterminada de una respuesta de pregunta de tipo de usuario"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "Desde un objeto GLPI > Respuesta a la pregunta de tipo de entidad"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Un objetivo debe estar asociado a un formulario."
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Un objetivo debe estar asociado a un formulario existente."
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Nombre es requerido"
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Pregunta de tipo de usuario"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Pregunta del tipo entidad"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Categorías de solicitud"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Categorías de Incidentes"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "Categorías de cambio"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "Especificar activo"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Equivale a la respuesta a la pregunta"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Última respuesta valida"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr "Por defecto o de una plantilla"
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr "Especificar tipo"
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Título del ticket"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Agregar mensaje de validación como seguimiento del primer ticket"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Enlace para otro ticket"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "A otro destino de este formulario"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Un Ticket existente."
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Tipo de enlace inválido"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Tipo de elemento vinculado no válido"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "El elemento vinculado no existe."
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Error al vincular el elemento."
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Su formulario ha sido aceptado por el validador"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "Tipo"
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Item"
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "No mas cadenas para traducir"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "Idioma no encontrado"
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr "Fallo al agregar una traducción."
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Etiquetas de preguntas"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Especificar etiquetas"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Etiquetas de preguntas y etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Etiquetas de preguntas o etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "Equivale a la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "Calculado a partir de la fecha de creación del ticket"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "Calculado a partir de la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "Plantilla de SLA o nada"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "Especificar SLA"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "Plantilla de OLA o nada"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "Especificar OLA"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgencia de la plantilla o medio"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Especificar urgencia"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categoría de la plantilla o nada"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Especificar categoría"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Ubicación de la plantilla o nada"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Especificar ubicación"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Pregunta ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgencia"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Etiquetas del ticket"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Ubicación"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "¡La descripción no puede estar vacía!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr "Usuario"
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Grupo para un objeto"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Grupo técnico para un objeto"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Se ha creado un formulario"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Su solicitud ha sido guardada"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\\\n Su solicitud del GLPI ha sido exitosamente guardada con el numero"
+" ##formcreator.request_id## y notificado al equipo de la mesa de ayuda.\\\\n"
+" Puede ver las respuestas del equipo en el siguiente link:\\\\n "
+"##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Su formulario ha sido rechazado por el validador"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\nSentimos informarle que su formulario ha sido rechazado por el "
+"validador por la siguiente "
+"razón:\\n##formcreator.validation_comment##\\n\\nUsted puede modificarlo y "
+"volver a enviarlo haciendo clic en este "
+"enlace:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hola,\\nNos complace informarle que su formulario ha sido aceptado por el "
+"validador.\\n Su solicitud será considerada pronto."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Tu formulario ha sido eliminado por un administrador"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hola,\\nLamentamos informarle de que su solicitud no puede ser considerada, "
+"y ha sido eliminado por un administrador."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+"Formcreator - Problemas en la sincronización del catálogo de servicios"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancelar mi tiquete"
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "¿Esta seguro que quieres eliminar esta pregunta?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "¿Esta seguro que quiere eliminar esta sección?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Ocurrió un error al consultar los formularios"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostrar vacío"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atributo "
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Mostrar categorías de los tickets"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Acceso directo en la página de inicio"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Formulario predeterminado en el catálogo de servicios"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "¿Eres un robot?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr "Condición para mostrar la sección"
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Agregar una sección"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "Por favor activa el formulario para ver el enlace"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Habilitar captcha"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Agregar una pregunta"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Formulario completo"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "Mi ultimo formulario %1$d ( solicitante )"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Aún no se ha publicado el formulario"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Todos mis formularios (Solicitante) "
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "Mi ultimo formulario %1$d (validador)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Todos mis formularios (validador)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Mínimo"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Máximo"
diff --git a/locales/es_EC.mo b/locales/es_EC.mo
new file mode 100644
index 000000000..101155c62
Binary files /dev/null and b/locales/es_EC.mo differ
diff --git a/locales/es_EC.po b/locales/es_EC.po
new file mode 100644
index 000000000..845172eba
--- /dev/null
+++ b/locales/es_EC.po
@@ -0,0 +1,2781 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Soporte Infraestructura Standby, 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Soporte Infraestructura Standby, 2023\n"
+"Language-Team: Spanish (Ecuador) (https://app.transifex.com/teclib/teams/28042/es_EC/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_EC\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Solicitud incorrecta"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Pregunta no encontrada"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "No tienes derecho a esta acción"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Pregunta de origen no encontrada"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "No se pudieron mover algunas preguntas"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "No se pudo agregar la sección"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Raíz del subárbol"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Seleccionable"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Limite la profundidad del subárbol"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Sin límite"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Sección de origen no encontrada"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "No se pudo eliminar la sección"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "No se ha podido añadir la pregunta"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "No se pudo mover la sección"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "Error al añadir el actor"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "Error al eliminar el actor"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "No se pudo duplicar la sección"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "No se pudo actualizar la sección"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catálogo de servicios"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "Elemento no encontrado"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "No hay derecho a actualizar este artículo."
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "Solicitud errónea al eliminar un actor."
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creador de formularios"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "%1$s=%2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista de formularios"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "¡El formulario ha sido guardado exitosamente!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$spurga la reserva del artículo%2$s"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$sañade la reserva%2$s para el artículo%3$s"
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] "Categorias"
+msgstr[1] "Categorias"
+msgstr[2] "Categorias"
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "Ver todos"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Por favor, describe su necesidad aquí"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Área de texto"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Un campo requerido está vacío:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "La expresión regular es invalida"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Usuario y formulario"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr "Filtro de búsqueda"
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "Menús desplegables"
+msgstr[1] "Menús desplegables"
+msgstr[2] "Menús desplegables"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valor invalido para "
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "El campo tipo de artículo es obligatorio:%s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo de menú desplegable no válido: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Restricción de entidad"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+"Para respetar el sistema de entidades GLPI, debe seleccionarse \"Forma\". "
+"Otros ajustes romperán las restricciones de entidad"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Seleccionar LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "¡El directorio LDAP no está definido!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "¡Directorio LDAP no encontrado!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Botón de radio"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "El valor del campo es requerido:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Un campo requerido esta vacío: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Este no es un entero: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Formato especificado no coincide: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "El siguiente número debe ser mayor que %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "El siguiente número debe ser menor que %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Entero"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "Indefinido"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] "Direcciones IP"
+msgstr[1] "Direcciones IP"
+msgstr[2] "Direcciones IP"
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "Urgencia"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "Muy alto"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "Alto"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Medio"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "Bajo"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "Muy bajo"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "Advertencia: El plugin de etiquetas está deshabilitado o no existe"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "Etiquetas"
+msgstr[1] "Etiquetas"
+msgstr[2] "Etiquetas"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] "Nombres de dominio"
+msgstr[1] "Nombres de dominio"
+msgstr[2] "Nombres de dominio"
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Hora"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Este no es un correo electrónico valido: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] "Correos electrónicos"
+msgstr[1] "Correos electrónicos"
+msgstr[2] "Correos electrónicos"
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Seleccionar"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Fecha y hora"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] "Actores"
+msgstr[1] "Actores"
+msgstr[2] "Actores"
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valor invalido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Usuario no encontrado o correo electrónico no valido: %s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Documento no adjuntado"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento adjuntado"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Falta un archivo requerido: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr "Archivo"
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Selección múltiple"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+"Advertencia: El plugin de campos adicionales está deshabilitado o no existe"
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr "Bloquear"
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr "Campo"
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr "mostrar"
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr "¡El tipo de campo \"%1$s'' aún no se ha implementado!"
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr "Algunos campos numéricos contienen valores no numéricos"
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr "Algunos campos URL contienen enlaces no válidos"
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr "Campos adicionales"
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Checkboxes"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr "La siguiente pregunta necesita al menos una %drespuesta:%s"
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr "La siguiente pregunta no admite más que %drespuestas:%s"
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr "Rango mínimo"
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr "Rango máximo"
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Esto no es un número: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr "Número decimal"
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rango"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validación adicional"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr "Fecha"
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Descripción"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Un campo de descripción debe tener una descripción:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] "Campos ocultos"
+msgstr[1] "Campos ocultos"
+msgstr[2] "Campos ocultos"
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] "Condiciones"
+msgstr[1] "Condiciones"
+msgstr[2] "Condiciones"
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "es visible"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "no es visible"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "coincide con la expresión regular"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mostrar siempre"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Ocultar a menos que"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Mostrar al menos que"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "No se pudo agregar o actualizar el %1$s %2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "No se puede exportar un objeto vacío %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condiciones"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importando"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr "Importación en curso"
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] "Cuestiones"
+msgstr[1] "Cuestiones"
+msgstr[2] "Cuestiones"
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Actualizar datos de problemas de casos y respuestas de formularios"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr "Encuesta de satisfacción caducada"
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr "Nombre"
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr "ID"
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] "Tipos"
+msgstr[1] "Tipos"
+msgstr[2] "Tipos"
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr "Estado"
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr "Fecha de apertura"
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr "Última actualización"
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] "Entidades"
+msgstr[1] "Entidades"
+msgstr[2] "Entidades"
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] "Solicitantes"
+msgstr[1] "Solicitantes"
+msgstr[2] "Solicitantes"
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Aprobador del formulario"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentario"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Aprobador del caso"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr "Técnico"
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr "Grupo de técnicos"
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Grupo de aprobación del formulario"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr "Grupo de aprobación de ticket"
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "Tiempo para resolverlo"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr "Tiempo para resolver + Progreso"
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr "Tiempo interno de resolución"
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr "Tiempo interno para resolver + Progreso"
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr "Fecha de resolución"
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr "Tiempo interno de propiedad"
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr "Tiempo interno para poseer + Progreso"
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "Tiempo para adueñarse"
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr "Tiempo para poseer + Progreso"
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr "Sustituto del aprobador"
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr "Sustitución de un miembro del grupo de aprobación"
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr "Sustituto del aprobador de formularios"
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr "Grupo de aprobador de formulario actual"
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr "Aprobador de formulario actual"
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr "Solicitante de ticket"
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr "Observador de tickeet"
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr "Técnico de tickets"
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr "%1$s%2$s"
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr "Todos"
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr "Nuevo"
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr "Asignado"
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "Esperando"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Para validar"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr "Resuelto"
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Cerrado"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] "Categorías de formularios"
+msgstr[1] "Categorías de formularios"
+msgstr[2] "Categorías de formularios"
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoría de base de conocimiento"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr "Como hijo de"
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Icono"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Color del icono"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Color del fondo"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] "Formularios"
+msgstr[1] "Formularios"
+msgstr[2] "Formularios"
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "El formulario ha sido guardado"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un formulario necesita ser validado"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Se rechaza el formulario"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Se acepta el formulario"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Se elimina el formulario"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr "Formulario ID"
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nombre de formulario"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] "Validadores"
+msgstr[1] "Validadores"
+msgstr[2] "Validadores"
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr "Fecha de creación"
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Todas las respuestas del formulario"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr "Comentario de validación"
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Enlace de validación"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr "Solicitar ID"
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulario #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validador"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentario rechazado"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Solicitud #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr "Autor"
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr "Aprobador"
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autor del formulario"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validador del formulario"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Especificar persona"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona desde la pregunta"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Especificar grupo"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupo desde la pregunta"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Grupo de un objeto"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Grupo técnico de un objeto"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Especificar proveedor"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Proveedor de la pregunta"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actores de la pregunta"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "Supervisor del autor del formulario"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr "Observador"
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr "Asignado a"
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] "Actores objetivo"
+msgstr[1] "Actores objetivo"
+msgstr[2] "Actores objetivo"
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr "Solicitud incorrecta al añadir un actor."
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr "Error al encontrar un usuario:%1$s"
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr "No se ha encontrado ningún grupo:%1$s"
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr "No se ha encontrado proveedor:%1$s"
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Aceptado"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] "Formulario de respuestas"
+msgstr[1] "Formulario de respuestas"
+msgstr[2] "Formulario de respuestas"
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Imprimir este formulario"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulario aceptado por el validador."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulario guardado exitosamente."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr "Guardar"
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Requerido si es rechazado"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Rechazar"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Editar respuestas"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "Cancelar edición"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aceptar"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "¡Se requiere comentario rechazado!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+"Se ha producido un error interno al verificar sus respuestas. Por favor, "
+"comuníqueselo a su administrador."
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "No eres el validador de estas respuestas"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr "Artículo añadido con éxito:%1$s (%2$s: %3$s)"
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Datos del formulario"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+"Usted es un validador del formulario, entonces su aprobación ha sido añadida"
+" automáticamente."
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "¡No puede generar objetivos!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr "No se ha establecido ningún captcha."
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr "No pasó la prueba de captcha."
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "¡Debe seleccionar el validador!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+"No puede eliminar este problema. Tal vez haya sido asignado y está en curso."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "No se pudo eliminar este problema. Ocurrió un error interno."
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Buscar asistencia"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mis solicitudes de asistencia"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr "Consultar recordatorios"
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consultar fuentes"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr "Solicitar"
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] "Tipos de acceso"
+msgstr[1] "Tipos de acceso"
+msgstr[2] "Tipos de acceso"
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] "Idiomas de formulario"
+msgstr[1] "Idiomas de formulario"
+msgstr[2] "Idiomas de formulario"
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] "Traducciones"
+msgstr[1] "Traducciones"
+msgstr[2] "Traducciones"
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr "El nombre no puede estar vacío."
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr "La lengua debe estar asociada a un formulario."
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr "El idioma especificado no está disponible."
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Agregar una traducción"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr "Actualizar una traducción"
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Nueva traducción"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "Lista de filtros"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "No se encontró traducción"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "¿Quieres eliminar los elementos seleccionados?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Eliminar"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "Cadena original"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr "Agregar un nuevo idioma"
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr "Idioma"
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ninguno"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr "No"
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr "Supervisor del solicitante"
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "Formulario no encontrado."
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr "Validador no válido."
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr "Sólo se permite el nivel 1 para%s"
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr "Tipo de validador no válido."
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr "Nivel"
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Validación"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Elegir un validador"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr "Guardar"
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] "Problemas de destino"
+msgstr[1] "Problemas de destino"
+msgstr[2] "Problemas de destino"
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr "Propiedades"
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+"No se pudo agregar o actualizar %1$s%2$s: falta una pregunta y se usa en un "
+"parámetro del objetivo"
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Actores"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr "Título del problema"
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "Contenido"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Impacto"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr "Motivo"
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr "Síntoma"
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr "Herencia de la entidad matriz"
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Mesa de ayuda de GLPI"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catálogo de servicios simplificado"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catálogo de servicio extendido"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr "Todos los formularios disponibles"
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr "Sólo formularios predeterminados"
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Ordenar por popularidad"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Ordenar alfabeticamente"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Fusionado con formularios"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "Entrada de menú distinta"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Visible"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Oculto"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr "Altura variable"
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr "Altura uniforme"
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr "Búsqueda de ayuda"
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr "Solicitudes de asistencia de los usuarios"
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr "Sólo formularios"
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr "Formularios y lista de solicitudes"
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr "Plegado"
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr "Desplegado"
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Mesa de ayuda"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modo de mesa de ayuda"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr "Modo de lista de formularios predeterminado"
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Orden de clasificación"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "Base de conocimiento"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Búsqueda"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr "Panel de contadores"
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "Mensaje del encabezado"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr "Problema de búsqueda"
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr "Página principal del catálogo de servicios"
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr "Diseño de baldosas "
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr "Página principal"
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr "Visibilidad del menú (solo para el menú vertical)"
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] "Encabezados"
+msgstr[1] "Encabezados"
+msgstr[2] "Encabezados"
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Mostrar campo de búsqueda"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Mostrar encabezado"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] "Rangos de preguntas"
+msgstr[1] "Rangos de preguntas"
+msgstr[2] "Rangos de preguntas"
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "Rango mínimo"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "rango máximo"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Acceso público"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Acceso privado"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Acceso restringido"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr "Respuestas en espera de validación"
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importar formularios"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr "Recursivo"
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Página principal"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acceso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr "Activo"
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr "Forma predeterminada"
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr "Formulario siguiente"
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr "Inactivo"
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr "Formulario no predeterminado"
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr "Todos los idiomas"
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] "Objetivos"
+msgstr[1] "Objetivos"
+msgstr[2] "Objetivos"
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr "Vista previa"
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr "Propiedades del formulario de respuesta"
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "¿Qué esta buscando?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "¡El nombre no puede estar vacío!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr "Se genera un bucle."
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+"No se puede utilizar un nombre vacío para las respuestas del formulario. "
+"Mantener el valor anterior."
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "La pregunta %s no es compatible con formularios públicos"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "Duplicado con errores"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicar"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr "Exponer"
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulario duplicado:%s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulario transferido: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Atrás"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr "Formulario actualizado:%s"
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Subir archivos JSON no está permitido."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Puede permitir archivos JSON ahora."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Crear"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Por favor contacta con el administrador del GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Atrás"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Subir archivos JSON no esta habilitado."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Puede habilitar archivos JSON ahora."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Habilitar"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr "Enviar"
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "Imposible importar el formulario, el archivo esta vacío"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Imposible importar el formulario, el archivo esta corrupto"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+"Imposible importar formulario, el archivo fue generado con otra versión"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+"El archivo no especifica la versión del esquema. Probablemente fue generado "
+"con una versión anterior a 2.10. Rechazado."
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Fallo al importar %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formularios importados correctamente de %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+"El formulario %1$s ya existe y está en una entidad que no se puede "
+"modificar."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr "No tiene derecho a actualizar la entidad%1$s"
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "Se requiere la entidad %1$s para el formulario %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Fallo al crear el tipo de documento JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "No se encontró el tipo de documento JSON"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Fallo al actualizar el tipo de documento JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formularios sin categoría"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "Formulario no disponible"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "Agregar un objetivo"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Agregar"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Tipo de objetivo no soportado."
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "comprobación de carga del complemento formcreator"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] "Cambios en los objetivos"
+msgstr[1] "Cambios en los objetivos"
+msgstr[2] "Cambios en los objetivos"
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Cambiar título"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr "Lista de control"
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr "Plan de despliegue"
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr "Plan de respaldo"
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr "Lista de verificación"
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] "Filtros de preguntas"
+msgstr[1] "Filtros de preguntas"
+msgstr[2] "Filtros de preguntas"
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] "Secciones"
+msgstr[1] "Secciones"
+msgstr[2] "Secciones"
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "El titulo es requerido"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr "Recuento de condiciones"
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr "Error al encontrar%1$s%2$s"
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] "Preguntas"
+msgstr[1] "Preguntas"
+msgstr[2] "Preguntas"
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Requerido"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "La sección es requerida"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "El tipo de campo %1$s no está disponible para la pregunta %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Este tipo de pregunta no es compatible con formularios públicos."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+"El tipo de campo no se puede cambiar. Elimine y vuelva a crear la pregunta."
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr "Niveles de servicio"
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "OLA"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr "Activos"
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr "Asistencia"
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr "Gestión"
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr "herramientas"
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr "Notas"
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr "Fuente RSS"
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr "Administración"
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] "Plugins"
+msgstr[1] "Plugins"
+msgstr[2] "Plugins"
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Parametro"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Entidad activa actual"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Entidad predeterminada del usuario solicitante"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Primera entidad del usuario solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Última entidad del usuario solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Entidad del formulario"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Entidad predeterminada del validador"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Especificar entidad"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+"Entidad predeterminada de una respuesta de pregunta de tipo de usuario"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "Desde un objeto GLPI > Respuesta a la pregunta de tipo de entidad"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr "Siempre generado"
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr "Desactivado a menos que"
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr "Generado a menos que"
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Un objetivo debe estar asociado a un formulario."
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Un objetivo debe estar asociado a un formulario existente."
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Se requiere el nombre."
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr "Entidad de destino"
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Pregunta de tipo de usuario"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Pregunta del tipo entidad"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr "Búsqueda de elementos no válidos..."
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr "Hecho."
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr "Paso 1: codificación doble de los signos < y >."
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr "No se han encontrado elementos no válidos."
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr "Paso 2: etiqueta BR literal."
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr "Paso 3: litteral > signo."
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Categorías de solicitud"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Categorías de Incidentes"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "Categorías de cambio"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] "Supervisores solicitantes"
+msgstr[1] "Supervisores solicitantes"
+msgstr[2] "Supervisores solicitantes"
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr "Mi supervisor"
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] "Expresiones regulares de preguntas"
+msgstr[1] "Expresiones regulares de preguntas"
+msgstr[2] "Expresiones regulares de preguntas"
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] "Dependencias de preguntas"
+msgstr[1] "Dependencias de preguntas"
+msgstr[2] "Dependencias de preguntas"
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "Respuestas"
+msgstr[1] "Respuestas"
+msgstr[2] "Respuestas"
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] "Relaciones de tickets compuestos"
+msgstr[1] "Relaciones de tickets compuestos"
+msgstr[2] "Relaciones de tickets compuestos"
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] "Tickets objetivo"
+msgstr[1] "Tickets objetivo"
+msgstr[2] "Tickets objetivo"
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "Especificar activo"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Equivale a la respuesta a la pregunta"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Última respuesta valida"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr "Origen de la plantilla o usuario predeterminado o GLPI predeterminado"
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr "Creador de formularios"
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr "Por defecto o de una plantilla"
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr "Especificar tipo"
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Título del caso"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Agregar mensaje de validación como seguimiento del primer caso"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr "Añadir un campo"
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr "Campos administrados"
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr "Sin campo administrado"
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Enlace para otro caso"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "A otro destino de este formulario"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Un Caso existente"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr "Un ticket de una respuesta a una pregunta"
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr "Eliminar permanentemente"
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Tipo de enlace inválido"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Tipo de elemento vinculado no válido"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "El elemento vinculado no existe"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Error al vincular el elemento"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Su formulario ha sido aceptado por el validador"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr "Fuente de la solicitud"
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "Tipo "
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr "Elementos asociados"
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Elemento "
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "No mas cadenas para traducir"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr "Error interno: no se encontró la cadena traducible."
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "Idioma no encontrado."
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr "Fallo al agregar una traducción."
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Etiquetas de preguntas"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Especificar etiquetas"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Etiquetas de preguntas y etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Etiquetas de preguntas o etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr "TTR de plantilla o ninguno"
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "igual a la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "calculado a partir de la fecha de creación del caso"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "calculado a partir de la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "Plantilla de SLA o nada"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "Especificar SLA"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "Plantilla de OLA o nada"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "Especificar OLA"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgencia de la plantilla o medio"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Especificar urgencia"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categoría de la plantilla o nada"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Especificar categoría"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Ubicación de la plantilla o nada"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Especificar ubicación"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr "Contrato desde plantilla o ninguno"
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr "Contrato específico"
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr "Sin validación"
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr "Usuario o grupo específico"
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr "Usuario de la pregunta respuesta"
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr "Grupo de respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] "Minutos"
+msgstr[1] "Minutos"
+msgstr[2] "Minutos"
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] "Horas"
+msgstr[1] "Horas"
+msgstr[2] "Horas"
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] "Días "
+msgstr[1] "Días "
+msgstr[2] "Días "
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] "Meses"
+msgstr[1] "Meses"
+msgstr[2] "Meses"
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Pregunta ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgencia "
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Etiquetas del caso"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr "Ubicación"
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Ubicación "
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr "Contrato"
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr "Contrato"
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "¡La descripción no puede estar vacía!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] "Observadores"
+msgstr[1] "Observadores"
+msgstr[2] "Observadores"
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr "Seguimiento por correo electrónico"
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr "Usuario"
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr "Grupo"
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Grupo desde un objeto"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Grupo técnico desde un objeto"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr "Proveedor"
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr "Si"
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr "Actualizar tablas a innoDB; ejecutar%s"
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+"El esquema de base de datos no es coherente con la versión anterior de "
+"Creador de formularios%s. Para ver los registros, ejecute el comando%s"
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr "Para ignorar las incoherencias y actualizar de todos modos ejecute%s"
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+"Ya no se admite la actualización desde una versión anterior a la 2.5.0. "
+"Actualice a GLPI 9.5.7, actualice Formcreator a la versión 2.12.5 y, a "
+"continuación, actualice de nuevo a GLPI 10 o posterior y Formcreator 2.13 o "
+"posterior."
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+"Se ha producido un error grave en la actualización de %s! Actualización "
+"anulada. Compruebe los registros para solucionar el problema e inténtelo de "
+"nuevo."
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+"El esquema de la base de datos no es consistente con la versión actual de "
+"Formcreator%s . Para ver los registros habilite el plugin y ejecute el "
+"comando%s"
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+"Las tablas del plugin pasaron la verificación de integridad del esquema."
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Se ha creado un formulario"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Su solicitud ha sido guardada"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\\\n Su solicitud del GLPI ha sido exitosamente guardada con el numero"
+" ##formcreator.request_id## y notificado al equipo de la mesa de ayuda.\\\\n"
+" Puede ver las respuestas del equipo en el siguiente link:\\\\n "
+"##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr "Un formulario necesita validación"
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr "Un formulario de GLPI necesita ser validado"
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\nUn formulario de GLPI necesita ser validado y usted ha sido elegido "
+"como validador.\\nPuede acceder haciendo clic en este "
+"enlace:\\n##formcreator.validation_link##"
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Su formulario ha sido rechazado por el validador"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\nSentimos informarle que su formulario ha sido rechazado por el "
+"validador por la siguiente "
+"razón:\\n##formcreator.validation_comment##\\n\\nUsted puede modificarlo y "
+"volver a enviarlo haciendo clic en este "
+"enlace:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hola,\\nNos complace informarle que su formulario ha sido aceptado por el "
+"validador.\\n Su solicitud será considerada pronto."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Tu formulario ha sido eliminado por un administrador"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hola,\\nLamentamos informarle de que su solicitud no puede ser considerada, "
+"y ha sido eliminado por un administrador."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+"Formcreator - Problemas en la sincronización del catálogo de servicios"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr "¡Falló la comprobación de la sanidad de las tablas!"
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr "El esquema de la tabla difiere para la tabla \"%s\"."
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr "Falta la tabla \"%s\"."
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr "Se ha encontrado una tabla desconocida \"%s\" en la base de datos."
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicar"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr "Transferencia"
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr "Exportar"
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr "Derechos de acceso"
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancelar mi caso"
+
+#: hook.php:774
+msgid "Old"
+msgstr "Antiguo"
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr "Número de%s"
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr "Resumen de Temas"
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+"El mini dashboard de Formcreator no se puede utilizar por defecto. Este "
+"ajuste ha sido ignorado."
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+"No se ha encontrado ningún formulario. Por favor, elija un formulario de "
+"abajo en su lugar."
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr "No se ha encontrado ningún formulario."
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr "No se ha encontrado ningún elemento de FAQ."
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "¿Esta seguro que quieres eliminar esta pregunta?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "¿Esta seguro que quiere eliminar esta sección?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr "Añadir traducciones"
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Ocurrió un error al consultar los formularios"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr "Enviar"
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+"Se ha producido un error interno. Por favor, comuníquelo al administrador."
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr "¿Está seguro de que desea eliminar este validador?"
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr "¿Estás seguro de que quieres duplicar este objetivo?"
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr "¿Está seguro de que desea eliminar este objetivo?"
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr "Valores predeterminados"
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostrar vacío"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] "Directorios LDAP"
+msgstr[1] "Directorios LDAP"
+msgstr[2] "Directorios LDAP"
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atributo"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Valores"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Mostrar categorías de los casos"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr "Raíz seleccionable"
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "Objetos GLPI"
+msgstr[1] "Objetos GLPI"
+msgstr[2] "Objetos GLPI"
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Acceso directo en la página de inicio"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Formulario predeterminado en el catálogo de servicios"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "¿Eres un robot?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr "Condición para mostrar la sección"
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr "Condición para generar el objetivo"
+
+#: entrée standard:40
+msgid "General"
+msgstr "General"
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr "Porcentaje de validación"
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr "Agregar un validador"
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr "Nivel de validación"
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr "Tipo de validador"
+
+#: entrée standard:98
+msgid "Validators"
+msgstr "Validadores"
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr "Acciones"
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr "Impactos"
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr "Lista de verificación"
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr "Título de las respuestas"
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Agregar una sección"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr "Condición para mostrar el botón de envío"
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr "Aún no hay respuesta"
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr "%súltimos artículos "
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "Por favor activa el formulario para ver el enlace"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Habilitar captcha"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr "Restringido a"
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Agregar una pregunta"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr "Lista de etiquetas disponibles"
+
+#: entrée standard:42
+msgid "Title"
+msgstr "Título"
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Formulario completo"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr "Estado de validación"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "Mi último formulario %1$d (Solicitante)"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Aún no se ha publicado el formulario"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Todos mis formularios (Solicitante)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "Mi ultimo formulario %1$d (Validador)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Todos mis formularios (Validador)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Mínimo"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Máximo"
diff --git a/locales/es_ES.mo b/locales/es_ES.mo
index 5780ce2f3..60682b7a6 100644
Binary files a/locales/es_ES.mo and b/locales/es_ES.mo differ
diff --git a/locales/es_ES.po b/locales/es_ES.po
index 8642f350a..2b90de87e 100644
--- a/locales/es_ES.po
+++ b/locales/es_ES.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-30 14:13+0200\n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
"PO-Revision-Date: 2022-06-15 12:10+0000\n"
"Last-Translator: 5b63a00e0726b96d7ef35c99d5553cd0_b787b5f <8bb2d0f7e8927228f17fba8639d787be_31711>, 2022\n"
"Language-Team: Spanish (Spain) (https://app.transifex.com/teclib/teams/28042/es_ES/)\n"
@@ -184,16 +184,15 @@ msgid "Textarea"
msgstr "Textarea"
#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
-#: inc/field/ldapselectfield.class.php:115 inc/field/textfield.class.php:126
+#: inc/field/ldapselectfield.class.php:115
#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
#: inc/field/requesttypefield.class.php:161
msgid "A required field is empty:"
msgstr "Un campo requerido está vacío:"
-#: inc/field/textareafield.class.php:267 inc/field/textfield.class.php:179
-#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:194
-#: inc/conditionnabletrait.class.php:70
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
msgid "The regular expression is invalid"
msgstr "La expresión regular es inválida"
@@ -256,45 +255,12 @@ msgstr "El directorio LDAP no está definido!"
msgid "LDAP directory not found!"
msgstr "El directorio LDAP no se ha encontrado!"
-#: inc/field/textfield.class.php:147 inc/field/integerfield.class.php:71
-#: inc/field/floatfield.class.php:156
-#, php-format
-msgid "Specific format does not match: %s"
-msgstr "El formato especificado no coincide: %s"
-
-#: inc/field/textfield.class.php:156
-#, php-format
-msgid "The text is too short (minimum %d characters): %s"
-msgstr "El texto es demasiado corto (mínimo %d caracteres): %s"
-
-#: inc/field/textfield.class.php:161
-#, php-format
-msgid "The text is too long (maximum %d characters): %s"
-msgstr "El texto es demasiado largo (máximo %d caracteres): %s"
-
-#: inc/field/textfield.class.php:169
-msgid "Text"
-msgstr "Texto"
-
-#: inc/field/textfield.class.php:218 inc/field/floatfield.class.php:235
-#: inc/questionregex.class.php:62 entrée standard:42
-msgid "Regular expression"
-msgstr "Expresión regular"
-
-#: inc/field/textfield.class.php:223 inc/field/floatfield.class.php:240
-msgid "Range"
-msgstr "Rango"
-
-#: inc/field/textfield.class.php:229 inc/field/floatfield.class.php:246
-msgid "Additional validation"
-msgstr "Validación adicional"
-
#: inc/field/radiosfield.class.php:108
msgid "Radios"
msgstr "Radios"
-#: inc/field/radiosfield.class.php:114 inc/field/glpiselectfield.class.php:112
-#: inc/field/fieldsfield.class.php:513 inc/field/checkboxesfield.class.php:245
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
msgid "The field value is required:"
msgstr "El campo valor es requerido:"
@@ -311,6 +277,11 @@ msgstr "Un campo obligatorio está vacío: %s"
msgid "This is not an integer: %s"
msgstr "No es un entero: %s"
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "El formato especificado no coincide: %s"
+
#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
#, php-format
msgid "The following number must be greater than %d: %s"
@@ -376,13 +347,6 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: inc/field/glpiselectfield.class.php:97 entrée standard:38
-msgid "GLPI object"
-msgid_plural "GLPI objects"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
#: inc/field/hostnamefield.class.php:116
msgid "Hostname"
msgid_plural "Hostnames"
@@ -521,6 +485,19 @@ msgstr "Esto no es un número: %s"
msgid "Decimal number"
msgstr ""
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rango"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validación adicional"
+
#: inc/field/datefield.class.php:137
msgid "Date"
msgstr "Fecha"
@@ -578,7 +555,7 @@ msgstr "Mostrar a meno que"
#: inc/form.class.php:1908 inc/targetchange.class.php:304
#: inc/questionfilter.class.php:222 inc/section.class.php:381
#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
-#: inc/questionparameter/range.class.php:202 inc/questionregex.class.php:188
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
#: inc/targetticket.class.php:1461
#, php-format
@@ -591,7 +568,7 @@ msgstr "Fallo al añadir o actualizar el %1$s %2$s"
#: inc/form.class.php:1569 inc/targetchange.class.php:149
#: inc/questionfilter.class.php:154 inc/section.class.php:406
#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
-#: inc/questionparameter/range.class.php:137 inc/questionregex.class.php:120
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
#: inc/targetticket.class.php:1500
#, php-format
@@ -777,38 +754,38 @@ msgstr ""
msgid "Ticket technician"
msgstr ""
-#: inc/issue.class.php:1465
+#: inc/issue.class.php:1469
#, php-format
msgid "%1$s %2$s"
msgstr ""
-#: inc/issue.class.php:1723 inc/filter/itilcategoryfilter.class.php:56
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
#: hook.php:766
msgid "All"
msgstr "Todos"
-#: inc/issue.class.php:1729 hook.php:767
+#: inc/issue.class.php:1733 hook.php:767
msgid "New"
msgstr "Nuevo"
-#: inc/issue.class.php:1735 hook.php:768
+#: inc/issue.class.php:1739 hook.php:768
msgid "Assigned"
msgstr "Asignado"
-#: inc/issue.class.php:1741 inc/formanswer.class.php:78
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
#: inc/form_validator.class.php:70 hook.php:769
msgid "Waiting"
msgstr "Esperando"
-#: inc/issue.class.php:1747 hook.php:770
+#: inc/issue.class.php:1751 hook.php:770
msgid "To validate"
msgstr "Para validar"
-#: inc/issue.class.php:1753 hook.php:771
+#: inc/issue.class.php:1757 hook.php:771
msgid "Solved"
msgstr "Resuelto"
-#: inc/issue.class.php:1759 hook.php:772
+#: inc/issue.class.php:1763 hook.php:772
msgid "Closed"
msgstr "Cerrado"
@@ -1102,15 +1079,15 @@ msgstr ""
msgid "Cannot generate targets!"
msgstr "¡No se puede generar objetivos!"
-#: inc/formanswer.class.php:1512
+#: inc/formanswer.class.php:1511
msgid "No captcha set."
msgstr ""
-#: inc/formanswer.class.php:1518
+#: inc/formanswer.class.php:1517
msgid "You failed the captcha test."
msgstr ""
-#: inc/formanswer.class.php:1541
+#: inc/formanswer.class.php:1540
msgid "You must select validator!"
msgstr "Debe seleccionar un validador"
@@ -2635,6 +2612,13 @@ msgstr "Mostrar categorías de los tickets"
msgid "Selectable root"
msgstr ""
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
#: entrée standard:63
msgid "Direct access on homepage"
msgstr "Acceso directo a la página principal"
diff --git a/locales/es_MX.mo b/locales/es_MX.mo
index 988c9d374..2e692f0fc 100644
Binary files a/locales/es_MX.mo and b/locales/es_MX.mo differ
diff --git a/locales/es_MX.po b/locales/es_MX.po
new file mode 100644
index 000000000..bbfd69c83
--- /dev/null
+++ b/locales/es_MX.po
@@ -0,0 +1,2752 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Jesus Fernandez , 2022
+# Carlos Moreno Rodríguez , 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Carlos Moreno Rodríguez , 2023\n"
+"Language-Team: Spanish (Mexico) (https://app.transifex.com/teclib/teams/28042/es_MX/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: es_MX\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Solicitud incorrecta"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Pregunta no encontrada"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "No tiene permisos para esta acción"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Pregunta fuente no encontrada"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "No pudo mover algunas preguntas"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "No pude agregar una sección"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Por favor, describa su necesidad aquí"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Seleccionable"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Limitar la profundidad de la rama"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Sin limites "
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Sección fuente no encontrada"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "No pude borrar la sección"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "No se pudo agregar la pregunta"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "No pude mover la sección"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "No se pudo agregar el participante"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "No se pudo eliminar el participante"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "No pude duplicar la sección"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "No pude actualizar la sección"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catálogo de servicios"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "Elemento no encontrado"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "Sin permiso para actualizar el elemento"
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "Solicitud incorrecta al eliminar un participante."
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creador de formularios"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "%1$s = %2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista de formularios"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "¡El formulario ha sido exitosamente guardado!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$s eliminó la reserva del artículo %2$s"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$s agregó la reservación %2$s para el artículo %3$s"
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] "Categoría"
+msgstr[1] "Categorías"
+msgstr[2] "Categorías"
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "Ver todo"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Por favor, describa su necesidad aquí"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Área de texto"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Un campo obligatorio esta vacío:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "La expresión regular es invalida"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Usuario y forma"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "Opción de menú"
+msgstr[1] "Opciones de menú"
+msgstr[2] "Opciones de menú"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valor invalido para"
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "El campo de tipo de elemento es obligatorio: %s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo de menú desplegable no válido: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Restricción de entidad"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+"Para respetar el sistema de entidades de GLPI, se debe seleccionar "
+"\"Formulario\". Otras configuraciones romperán las restricciones de la "
+"entidad"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Seleccionar LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "¡Directorio LDAP no definido!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "¡Directorio LDAP no encontrado!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Botón de radio"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "El valor del campo es obligatorio:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Un campo requerido esta vacío: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Este no es un entero: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "El formato especificado no coincide: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "El siguiente numero debe de ser mas grande de %d : %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "El siguiente numero debe de ser menor a%d : %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Entero"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "Indefinido"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] "Dirección IP"
+msgstr[1] "Direcciones IP"
+msgstr[2] "Direcciones IP"
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "Urgencia"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "Muy alto"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "Alto"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Medio"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "Bajo"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "Muy bajo"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "¡Advertencia!: falta el complemento de etiquetas o está deshabilitado"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "Etiqueta"
+msgstr[1] "Etiquetas"
+msgstr[2] "Etiquetas"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Hora"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Este no es un correo electrónico valido: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Selector"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Fecha y hora"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valor invalido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Usuario no encontrado o correo electrónico no valido: %s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Documento no adjuntado"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento adjuntado"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Falta un archivo requerido: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Multiselector"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Casillas de verificación"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo de solicitud"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Este no es un numero: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresión regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rango"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validación adicional"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "un campo de descripción debe tener una descripción"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "es visible"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "no es visible"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "coincidencias de expresiones regulares"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mostrar siempre"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Ocultar a menos que"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Mostrar a no ser que"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "Fallo al agregar o actualizar la %1$s %2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "No se puede exportar un objeto vacío %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condiciónes"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importando"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Actualizar datos de problemas de tickets y respuestas de formularios"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Aprobador del formulario"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentario"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Aprobador de ticket"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Grupo de aprobación del formulario"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "Tiempo para resolverlo"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "Tiempo de posesión "
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "Esperando"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Para validar"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Cerrado"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoría base de conocimiento"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Icono"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Color del icono"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Color del fondo"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] "Formulario"
+msgstr[1] "Formularios"
+msgstr[2] "Formularios"
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "El formulario ha sido salvado"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un formulario necesita ser validado"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "El formulario fue rechazado"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "El formulario fue aceptado"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "El formulario fue borrado"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nombre del formulario"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Todas las respuestas del formulario"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Liga de validación"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulario #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validador"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentario rechazado"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Solicitud #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autor del formulario"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validador del formulario"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Especificar persona"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona para la pregunta"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Especificar grupo"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupo para la pregunta"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Grupo de un objeto"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Grupo técnico de un objeto"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Especificar proveedor"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Proveedor para la pregunta"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actores para la pregunta"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "Supervisor del autor del formulario"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Aceptado"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Imprimir este formulario"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulario aceptado por el validador."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulario exitosamente guardado."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Requerido si es rechazad"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Rechazado"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Editar respuestas"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "Cancelar edición"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aceptado"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "!El comentario es obligatorio, si es rechazado!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "No es el validador de estas respuestas"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Datos del formulario"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "¡No se pueden generar los objetivos!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "¡Debe de seleccionar un validador!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr "No puedes eliminar el problema. Se tomara en cuenta."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "no pude eliminar el problema"
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Buscar asistencia"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mi solicitud para asistencia"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Categorías de cambio"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Agregar una traducción"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Nueva traducción"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "Lista de filtros"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "No se encontró traducción"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "¿Quiere borrar los siguientes artículos?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Borrar"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "Cadena original"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ninguno"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "Formulario no encontrado"
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Validación"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Escoger un validador"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+"Falle al agregar o actualizar la %1$s %2$s: una pregunta se perdió y es "
+"usada en un parámetro de el objetivo"
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Actores"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "Contenido"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Impacto"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Mesa de ayuda del GLPI"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catálogo de servicios simplificado"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catálogo de servicios extendido"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Ordenar por popularidad"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Ordenar alfabeticamente"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Fusionado con el formulario"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "Entrada de menú distinta"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Visible"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Oculto"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Mesa de ayuda"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modo mesa de ayuda"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Orden de clasificación"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "Base de conocimiento"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Búsqueda"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "Mensaje del encabezado"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Mostrar campo de búsqueda"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Mostrar encabezado"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "Rango mínimo"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "Rango máximo"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Acceso público"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Acceso privado"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Acceso restringido"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importar formularios"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Página principal"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acceso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "¿Que estas buscando?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "¡El nombre no puede estar vacío!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "La pregunta %s no es compatible con formularios públicos"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "Error duplicado"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulario duplicado:%s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulario transferido: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Retroceder"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Subir archivos JSON no está permitido."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Puede permitir archivos JSON ahora."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Crear"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Por favor contacta al administrador del GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Retroceder"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Subir archivos JSON no esta habilitado."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Puede habilitar archivos JSON ahora."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Habilitar"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "imposible importar el formulario, el archivo esta vacío"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Imposible importar el formulario, el archivo esta corrupto"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+"Imposible importar formulario, el archivo fue generado con otra versión"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+"El archivo no especifica la versión de l esquema. Probablemente fue generado"
+" con una versión anterior a 2.10. Rechazado."
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Error al importar formulario %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formulario exitosamente importado de %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "El formulario %1$s ya existe y esta en una entidad no modificable."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "La entidad %1$s es necesaria para el formulario %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Error al crear documento del tipo JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "Documento JSON no encontrado"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Error al actualizar documento del tipo JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formulario sin categoría"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "Formulario no disponible"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "Agregar un objetivo"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Agregar"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Tipo de objetivo no soportado"
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "Verificación_de_carga_complemento_formcreator"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Cambiar título"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr "Lista de control"
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr "Plan de despliegue"
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr "Plan de respaldo"
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr "Lista de verificación"
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "El titulo es obligatorio"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr "recuento de condiciones"
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Obligatorio"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "La sección es obligatoria"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "El tipo de campo %1$sno esta disponible para esta pregunta %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Este tipo de pregunta no es compatible con formularios públicos"
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "OLA"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Parametro"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Nombre del campo"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Entidad actica actual"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Entidad predeterminada del usuario solicitante"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Primera entidad del usuario solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Última entidad del usuario solicitante dinámico (alfabético)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Entidad del formulario"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Entidad predeterminada del validador"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Especificar entidad"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+"Entidad predeterminada de la respuesta del usuario para este tipo de "
+"pregunta"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "Desde un objeto GLPI > Respuesta a la pregunta de tipo de entidad"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Un objetivo debe de ser asociado a el formulario."
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Un objetivo debe de ser asociado a un formulario existente."
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Nombre es requerido"
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Pregunta de tipo usuario"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Pregunta del tipo entidad"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Solicitar categorías"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Categorías de incidente"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "Categorías de cambio"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "Especificar activo"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Es igual la respuesta a la pregunta"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Última respuesta valida"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr "Por defecto o de una plantilla"
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr "Especificar tipo"
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Título del ticket"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Agregar mensaje de validación como primer seguimiento del ticket"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Ligar a otro ticket"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Otro destino de este formulario"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Un ticket existente"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Tipo ligado invalido"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "tipo de elemento vinculado no válido"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Elemento ligado no existe"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Fallo al ligar elemento"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Su formulario ha sido aceptado por el validador"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "Tipo"
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Elemento"
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "No mas cadenas para traducir"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "Idioma no encontrado"
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr "Fallo al agregar una traducción."
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Etiquetas de preguntas"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Especificar etiquetas"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Etiquetas de preguntas y etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Etiquetas de preguntas y etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "es igual la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "calculado de la fecha de creación del ticket"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "Calculado de la respuesta a la pregunta"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "plantilla de SLA o ninguna"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "Especificar SLA"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "plantilla de OLA o ninguna"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "Especificar OLA"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgencia la plantilla o media"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Especificar urgencia"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categoría de la plantilla o nada"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Especificar categoría"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Ubicación de la plantilla o nada"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Especificar ubicación"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Pregunta ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA ( TTO / TTR )"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgencia"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Etiquetas del ticket"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Ubicación"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "¡La descripción no puede estar vacía!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr "Usuario"
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Grupo del objeto"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Grupo técnico del objeto"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Un formulario ha sido creado"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "La solicitud ha sido guardada"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hola,\\\\n Su solicitud del GLPI ha sido exitosamente guardada con el "
+"numero ##formcreator.request_id## y notificado al equipo de la mesa de "
+"ayuda.\\\\n Puede ver las respuestas del equipo en el siguiente link:\\\\n "
+"##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "El formulario ha sido rechazado por el validador"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Sentimos informar que el formulario ha sido rechazado por el validador por "
+"la siguiente razón:\\n ##formcreator.validation_comment##\\n\\n Puede "
+"modificarlo y reenviarlo en la siguiente liga: "
+"\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hola, \\\\Nos complace informarle que su formulario ha sido aceptado por el "
+"validador.\\\\n Su solicitud será procesada pronto."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "El formulario ha sido borrado por el administrador"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hola, \\\\n Sentimos informarle que su solicitud no puede ser procesada y ha"
+" sido borrada por un administrador."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+"Creador de formularios - problemas de sincronización del catálogo de "
+"servicios"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancelar mi ticket"
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "¿Esta seguro que quiere borra esta pregunta?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "¿Esta seguro que quiere borra esta sección?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Ocurrió un error al consultar los formularios"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostrar vacío"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atributo"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Mostrar categorías del ticket"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "Objeto GLPI"
+msgstr[1] "Objetos GLPI"
+msgstr[2] "Objetos GLPI"
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Acceso directo a la página principal"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Formulario por defecto en el catálogo de servicios"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "¿Eres un robot?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr "Condición para mostrar la sección"
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Agregar una sección"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "Por favor activa el formulario para ver la liga"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Habilitar captcha"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Agregar una pregunta"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Forma completa"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "Mi ultimo formulario %1$d ( solicitante )"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "No se ha enviado el formulario aún"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Todos mis formularios (solicitante)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "Mi ultimo formulario %1$d (validador)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Todos mis formularios (validador)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Mínimo"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Máximo"
diff --git a/locales/fi_FI.mo b/locales/fi_FI.mo
index d23e4d0af..05eaaf2ff 100644
Binary files a/locales/fi_FI.mo and b/locales/fi_FI.mo differ
diff --git a/locales/fi_FI.po b/locales/fi_FI.po
new file mode 100644
index 000000000..b8ceece8a
--- /dev/null
+++ b/locales/fi_FI.po
@@ -0,0 +1,2696 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Markku Vepsä, 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Markku Vepsä, 2022\n"
+"Language-Team: Finnish (Finland) (https://app.transifex.com/teclib/teams/28042/fi_FI/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fi_FI\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Ei rajoitusta"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Palveluluettelo"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Lomakkeen tekijä"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lomakelista"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Lomake on tallennettu onnistuneesti!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Kuvaile tarpeesi tässä"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Tekstialue"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Pakollinen kenttä on tyhjä:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "Säännöllinen lauseke on virheellinen"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Suodatin"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "LDAP valinta"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "LDAP-hakemistoa ei ole määritetty!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "LDAP-hakemistoa ei löydetty!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Valintanapit"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Kentän arvo on pakollinen:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Kokonaisluku"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Keskitaso"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Valinta"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Päivämäärä & aika"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Liitetiedosto"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Monivalinta"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Valintaruudut"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Säännöllinen lauseke"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Alue"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Lisävahvistus"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Kuvauskentällä pitäisi olla kuvaus:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Aina näkyvissä"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Piilotettu, ellei"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Näytetään vain, jos"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Päivitä teemat tiketeistä ja lomakevastauksista"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Lomakkeen hyväksyjä"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Kommentti"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Tiketin hyväksyjä"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Lomakkeen hyväksyjäryhmä"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Vahvistus"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Suljettu"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Tietämyskannan kategoria"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Lomake on tallennettu"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Lomake on vahvistettava"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Lomake on hylätty"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Lomake on hyväksytty"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Lomake on poistettu"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Lomakkeen nimi"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Täydet lomakevastaukset"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Vahvistuslinkki"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Lomake #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Vahvistaja"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Hylätty kommentti"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Pyyntö #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Lomakkeen vahvistaja"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Tietty henkilö"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Henkilö kysymyksestä"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Tietty ryhmä"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Ryhmä kysymyksestä"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Tietty toimittaja"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Toimittaja kysymyksestä"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Toimijat kysymyksestä"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Tulosta tämä lomake"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Vahvistaja on hyväksynyt lomakkeen."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Lomake tallennettu onnistuneesti."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Vaaditaan, jos hylätty"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Hylkää"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Hyväksy"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Hylkäyksen syy vaaditaan!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Et ole näiden vastausten vahvistaja"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Lomakkeen tiedot"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Kohteita ei voi luoda!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "Sinun on valittava vahvistaja!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Hae apua"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Omat tukipyynnöt"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Kysy syötteiltä"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Poista"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ei mitään"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Valitse vahvistaja"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Toimijat"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPI-tukipalvelu"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Yksinkertaistettu palveluhakemisto"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Laajennettu palveluhakemisto"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Suosituimmuus lajittelu"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Aakkosellinen lajittelu"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesk"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Helpdesk-tila"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Julkinen pääsy"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Yksityinen pääsy"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Rajoitettu pääsy"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Tuo lomakkeita"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Kotisivu"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Pääsy"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Nimi ei voi olla tyhjä!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "Kysymys %s ei ole yhteensopiva julkisten lomakkeiden kanssa"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Monista"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Lomake monistettu: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Lomake siirretty: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Takaisin"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "JSON-tiedostojen lataaminen ei ole sallittua."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Nyt voit sallia JSON-tiedostot."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Luo"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Ota yhteyttä GLPI-ylläpitäjään."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Takaisin"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "JSON-tiedostojen lataus ei ole käytössä."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Nyt voit ottaa käyttöön JSON-tiedostot."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Ota käyttöön"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Lomakkeet on tuotu onnistuneesti %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "JSON-asiakirjatyyppiä ei voitu luoda"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "JSON-dokumenttityyppiä ei löydy"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "JSON-dokumenttityypin päivittäminen epäonnistui"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Lomakkeet ilman kategoriaa"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Vaihda otsikko"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Otsikko on pakollinen"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Pakollinen"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Osio on pakollinen"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "Kentän tyyppi %1$sei ole saatavilla kysymykseen %2$s. "
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+"Tämän tyyppinen kysymys ei ole yhteensopiva julkisten lomakkeiden kanssa."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Nykyinen aktiivinen yksikkö"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Oletus toimeksiantajan yksikkö"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Ensimmäisen dynaamisen toimeksiantajan yksikkö (aakkosellinen)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Viimeisen dynaamisen toimeksiantajan yksikkö (aakkosellinen)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Lomakkeen yksikkö"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Vahvistajan oletusyksikkö"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Tietty yksikkö"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Oletusyksikkö käyttäjätyypin kysymyksen vastaukselle"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "GLPI-objektista > Yksikkötyypin kysymyksen vastaukseen"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Käyttäjätyyppinen kysymys"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Yksikkötyyppinen kysymys"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Pyynnön luokat"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Tapauksen luokat"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Vastaa kysymykseen annettavaan vastaukseen"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Tiketin otsikko"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Lisää vahvistusviesti ensimmäiseksi tiketin seurantaan"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Linkki toiseen tikettiin"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Toinen kohde tässä lomakkeessa"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Olemassa oleva tiketti"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Virheellinen linkkityyppi"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Virheellinen linkitetyn kohteen tyyppi"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Linkitetty kohde ei ole olemassa"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Kohteen linkittäminen epäonnistui"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Vahvistaja on hyväksynyt lomakkeesi"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Tunnisteet kysymyksistä"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Tietyt tunnisteet"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Tunnisteet kysymyksistä sekä tietyt tunnisteet"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Tunnisteet kysymyksistä tai tietyt tunnisteet"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "vastaa kysymyksen vastausta"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "laskettu tiketin luontipäivästä"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "laskettu vastauksesta kysymykseen "
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Kiireellisyys mallista tai keskitaso"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Tietty kiireellisyys"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Kategoria mallista tai ei mitään"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Tietty kategoria"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Sijainti mallista tai ei mitään"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Tietty sijainti"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Kiireellisyys"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Tiketin tunnisteet"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Tunnisteet"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Sijainti"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "Kuvaus ei voi olla tyhjä!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Lomake on luotu"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Pyyntösi on tallennettu"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hei, \\nGLPI:n pyyntösi on tallennettu numerolla ## formcreator.request_id##"
+" ja lähetetty helpdesk-tiimiin. \\nVoit nähdä vastauksesi seuraavasta "
+"linkistä: \\n## formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Vahvistaja on hylännyt lomakkeesi"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hei,\\nPahoittelemme, että vahvistaja on hylännyt lomakkeesi seuraavasta "
+"syystä:\\n##formcreator.validation_comment##\\n\\nVoit edelleen muokata "
+"lomaketta ja lähettää sen uudelleen napsauttamalla tätä "
+"linkkiä:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hei,\\nMeillä on ilo ilmoittaa, että häväksyjä on hyväksynyt "
+"lomakkeenne.\\nPyyntösi käsitellään pian."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Järjestelmänvalvoja on poistanut lomakkeen"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hei,\\nPahoittelemme, että pyyntöäsi ei voida ottaa huomioon, ja "
+"järjestelmänvalvoja on poistanut sen."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator - Synkronoi palveluluettelon teemat"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Monista"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Haluatko varmasti poistaa tämän kysymyksen?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Haluatko varmasti poistaa tämän osion?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Lomakkeen kyselyssä tapahtui virhe"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Näytä tyhjä"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Ominaisuus"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Arvot"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Näytä tikettien luokat"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Suora pääsy kotisivulla"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Oletuslomake palveluluettelossa"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Lisää osio"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Lisää kysymys"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Täysi lomake"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Lomaketta ei ole vielä lähetetty"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Kaikki lomakkeeni (toimeksiantaja)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Kaikki lomakkeeni (vahvistaja)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/glpi.pot b/locales/glpi.pot
index d83d85a11..0d64201a8 100644
--- a/locales/glpi.pot
+++ b/locales/glpi.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-09-25 10:02+0200\n"
+"POT-Creation-Date: 2023-11-14 13:59+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -123,9 +123,8 @@ msgid "Bad request while deleting an actor."
msgstr ""
#: front/targetticket.form.php:95 front/targetchange.form.php:81
-#: front/formanswer.php:49 front/targetproblem.form.php:81
-#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:632
-#: inc/common.class.php:639
+#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:43
+#: inc/common.class.php:632 inc/common.class.php:639
msgid "Form Creator"
msgstr ""
@@ -139,8 +138,8 @@ msgstr ""
msgid "Form list"
msgstr ""
-#: front/formdisplay.php:90 inc/formanswer.class.php:1077
-#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+#: front/formdisplay.php:90 inc/formanswer.class.php:1083
+#: inc/formanswer.class.php:1331 inc/formanswer.class.php:1382
msgid "The form has been successfully saved!"
msgstr ""
@@ -170,11 +169,11 @@ msgstr ""
msgid "Please, describe your need here"
msgstr ""
-#: inc/field/textareafield.class.php:176
+#: inc/field/textareafield.class.php:177
msgid "Textarea"
msgstr ""
-#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:587
+#: inc/field/textareafield.class.php:240 inc/field/dropdownfield.class.php:597
#: inc/field/ldapselectfield.class.php:115 inc/field/textfield.class.php:126
#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
@@ -182,7 +181,7 @@ msgstr ""
msgid "A required field is empty:"
msgstr ""
-#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:179
+#: inc/field/textareafield.class.php:258 inc/field/textfield.class.php:179
#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:198
#: inc/conditionnabletrait.class.php:70
msgid "The regular expression is invalid"
@@ -196,36 +195,36 @@ msgstr ""
msgid "Search filter"
msgstr ""
-#: inc/field/dropdownfield.class.php:578 entrée standard:38
+#: inc/field/dropdownfield.class.php:588 entrée standard:38
msgid "Dropdown"
msgid_plural "Dropdowns"
msgstr[0] ""
msgstr[1] ""
-#: inc/field/dropdownfield.class.php:609
+#: inc/field/dropdownfield.class.php:619
msgid "Invalid value for "
msgstr ""
-#: inc/field/dropdownfield.class.php:622
+#: inc/field/dropdownfield.class.php:632
#, php-format
msgid "The itemtype field is required: %s"
msgstr ""
-#: inc/field/dropdownfield.class.php:638
+#: inc/field/dropdownfield.class.php:648
#, php-format
msgid "Invalid dropdown type: %s"
msgstr ""
-#: inc/field/dropdownfield.class.php:699 inc/questionfilter.class.php:62
+#: inc/field/dropdownfield.class.php:709 inc/questionfilter.class.php:62
#: entrée standard:68
msgid "Filter"
msgstr ""
-#: inc/field/dropdownfield.class.php:985 entrée standard:162 standard:134
+#: inc/field/dropdownfield.class.php:999 entrée standard:162 standard:134
msgid "Entity restriction"
msgstr ""
-#: inc/field/dropdownfield.class.php:994
+#: inc/field/dropdownfield.class.php:1008
msgid ""
"To respect the GLPI entity system, \"Form\" should be selected. Others "
"settings will break the entity restrictions"
@@ -243,6 +242,10 @@ msgstr ""
msgid "LDAP directory not found!"
msgstr ""
+#: inc/field/ldapselectfield.class.php:155
+msgid "LDAP attribute is required!"
+msgstr ""
+
#: inc/field/textfield.class.php:147 inc/field/floatfield.class.php:157
#, php-format
msgid "Specific format does not match: %s"
@@ -361,13 +364,13 @@ msgid_plural "Tags"
msgstr[0] ""
msgstr[1] ""
-#: inc/field/glpiselectfield.class.php:97 entrée standard:38
+#: inc/field/glpiselectfield.class.php:98 entrée standard:38
msgid "GLPI object"
msgid_plural "GLPI objects"
msgstr[0] ""
msgstr[1] ""
-#: inc/field/glpiselectfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/glpiselectfield.class.php:115 inc/field/fieldsfield.class.php:513
msgid "The field value is required:"
msgstr ""
@@ -468,7 +471,7 @@ msgid "Some URL fields contains invalid links"
msgstr ""
#: inc/field/fieldsfield.class.php:566
-msgid "Additionnal fields"
+msgid "Additional fields"
msgstr ""
#: inc/field/checkboxesfield.class.php:133
@@ -507,7 +510,7 @@ msgstr ""
msgid "Range max"
msgstr ""
-#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1168
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1169
msgid "Request type"
msgstr ""
@@ -580,20 +583,20 @@ msgstr ""
msgid "Displayed unless"
msgstr ""
-#: inc/condition.class.php:172 inc/target_actor.class.php:233
+#: inc/condition.class.php:172 inc/target_actor.class.php:234
#: inc/form_language.class.php:568 inc/form_validator.class.php:248
#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
-#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/form.class.php:1913 inc/targetchange.class.php:304
#: inc/questionfilter.class.php:222 inc/section.class.php:395
#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:885
#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
-#: inc/targetticket.class.php:1479
+#: inc/targetticket.class.php:1480
#, php-format
msgid "Failed to add or update the %1$s %2$s"
msgstr ""
-#: inc/condition.class.php:194 inc/target_actor.class.php:254
+#: inc/condition.class.php:194 inc/target_actor.class.php:255
#: inc/form_language.class.php:584 inc/form_validator.class.php:288
#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
#: inc/form.class.php:1569 inc/targetchange.class.php:149
@@ -601,7 +604,7 @@ msgstr ""
#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:912
#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
-#: inc/targetticket.class.php:1518
+#: inc/targetticket.class.php:1519
#, php-format
msgid "Cannot export an empty object: %s"
msgstr ""
@@ -633,7 +636,7 @@ msgid "Satisfaction survey expired"
msgstr ""
#: inc/issue.class.php:543 inc/form_language.class.php:232
-#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: inc/form.class.php:2213 entrée standard:52 standard:49 standard:57
#: standard:39 standard:105 standard:46
msgid "Name"
msgstr ""
@@ -646,7 +649,7 @@ msgstr ""
msgid "ID"
msgstr ""
-#: inc/issue.class.php:564 inc/form.class.php:2217 entrée standard:111
+#: inc/issue.class.php:564 inc/form.class.php:2222 entrée standard:111
#: standard:65 standard:104 standard:4
msgid "Type"
msgid_plural "Types"
@@ -673,7 +676,7 @@ msgstr[1] ""
#: inc/issue.class.php:617 inc/notificationtargetformanswer.class.php:76
#: inc/notificationtargetformanswer.class.php:96 inc/target_actor.class.php:101
-#: inc/formanswer.class.php:248 inc/formanswer.class.php:762
+#: inc/formanswer.class.php:248 inc/formanswer.class.php:768
#: inc/abstractitiltarget.class.php:1776 entrée standard:48
msgid "Requester"
msgid_plural "Requesters"
@@ -684,8 +687,8 @@ msgstr[1] ""
msgid "Form approver"
msgstr ""
-#: inc/issue.class.php:663 inc/formanswer.class.php:691
-#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/issue.class.php:663 inc/formanswer.class.php:697
+#: inc/formanswer.class.php:704 inc/formanswer.class.php:783
#: inc/form_language.class.php:246
msgid "Comment"
msgstr ""
@@ -785,32 +788,32 @@ msgid "%1$s %2$s"
msgstr ""
#: inc/issue.class.php:1739 inc/filter/itilcategoryfilter.class.php:56
-#: hook.php:765
+#: hook.php:778
msgid "All"
msgstr ""
-#: inc/issue.class.php:1745 hook.php:766
+#: inc/issue.class.php:1745 hook.php:779
msgid "New"
msgstr ""
-#: inc/issue.class.php:1751 hook.php:767
+#: inc/issue.class.php:1751 hook.php:780
msgid "Assigned"
msgstr ""
#: inc/issue.class.php:1757 inc/formanswer.class.php:78
-#: inc/form_validator.class.php:70 hook.php:768
+#: inc/form_validator.class.php:70 hook.php:781
msgid "Waiting"
msgstr ""
-#: inc/issue.class.php:1763 hook.php:769
+#: inc/issue.class.php:1763 hook.php:782
msgid "To validate"
msgstr ""
-#: inc/issue.class.php:1769 hook.php:770
+#: inc/issue.class.php:1769 hook.php:783
msgid "Solved"
msgstr ""
-#: inc/issue.class.php:1775 hook.php:771
+#: inc/issue.class.php:1775 hook.php:784
msgid "Closed"
msgstr ""
@@ -840,9 +843,7 @@ msgstr ""
msgid "Background color"
msgstr ""
-#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
-#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
-#: entrée standard:47
+#: inc/formlist.class.php:46 inc/form.class.php:111 entrée standard:47
msgid "Form"
msgid_plural "Forms"
msgstr[0] ""
@@ -994,17 +995,17 @@ msgstr[1] ""
msgid "Bad request while adding an actor."
msgstr ""
-#: inc/target_actor.class.php:197
+#: inc/target_actor.class.php:199
#, php-format
msgid "Failed to find a user: %1$s"
msgstr ""
-#: inc/target_actor.class.php:206
+#: inc/target_actor.class.php:208
#, php-format
msgid "Failed to find a group: %1$s"
msgstr ""
-#: inc/target_actor.class.php:215
+#: inc/target_actor.class.php:217
#, php-format
msgid "Failed to find a supplier: %1$s"
msgstr ""
@@ -1023,89 +1024,89 @@ msgid_plural "Form answers"
msgstr[0] ""
msgstr[1] ""
-#: inc/formanswer.class.php:676
+#: inc/formanswer.class.php:682
msgid "Print this form"
msgstr ""
-#: inc/formanswer.class.php:701
+#: inc/formanswer.class.php:707
msgid "Form accepted by validator."
msgstr ""
-#: inc/formanswer.class.php:703
+#: inc/formanswer.class.php:709
msgid "Form successfully saved."
msgstr ""
-#: inc/formanswer.class.php:770
+#: inc/formanswer.class.php:776
msgid "Save"
msgstr ""
-#: inc/formanswer.class.php:782
+#: inc/formanswer.class.php:788
msgid "Required if refused"
msgstr ""
-#: inc/formanswer.class.php:788
+#: inc/formanswer.class.php:794
msgid "Refuse"
msgstr ""
-#: inc/formanswer.class.php:796
+#: inc/formanswer.class.php:802
msgid "Edit answers"
msgstr ""
-#: inc/formanswer.class.php:802
+#: inc/formanswer.class.php:808
msgid "Cancel edition"
msgstr ""
-#: inc/formanswer.class.php:809
+#: inc/formanswer.class.php:815
msgid "Accept"
msgstr ""
-#: inc/formanswer.class.php:828
+#: inc/formanswer.class.php:834
msgid "Refused comment is required!"
msgstr ""
-#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+#: inc/formanswer.class.php:888 inc/formanswer.class.php:905
msgid ""
"An internal error occured when verifying your answers. Please report it to "
"your administrator."
msgstr ""
-#: inc/formanswer.class.php:933
+#: inc/formanswer.class.php:939
msgid "You are not the validator of these answers"
msgstr ""
-#: inc/formanswer.class.php:1083
+#: inc/formanswer.class.php:1089
#, php-format
msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
msgstr ""
-#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+#: inc/formanswer.class.php:1172 inc/formanswer.class.php:1174
msgid "Form data"
msgstr ""
-#: inc/formanswer.class.php:1301
+#: inc/formanswer.class.php:1307
msgid ""
"You are a validator of the form, then your approval hs been added "
"automatically."
msgstr ""
-#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+#: inc/formanswer.class.php:1316 inc/formanswer.class.php:1369
msgid "Cannot generate targets!"
msgstr ""
-#: inc/formanswer.class.php:1506
+#: inc/formanswer.class.php:1512
#, php-format
msgid "Answer is invalid in %1$s"
msgstr ""
-#: inc/formanswer.class.php:1534
+#: inc/formanswer.class.php:1540
msgid "No captcha set."
msgstr ""
-#: inc/formanswer.class.php:1540
+#: inc/formanswer.class.php:1546
msgid "You failed the captcha test."
msgstr ""
-#: inc/formanswer.class.php:1563
+#: inc/formanswer.class.php:1569
msgid "You must select validator!"
msgstr ""
@@ -1214,7 +1215,7 @@ msgstr ""
msgid "None"
msgstr ""
-#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2522
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2545
msgid "No"
msgstr ""
@@ -1279,7 +1280,7 @@ msgid "Properties"
msgstr ""
#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
-#: inc/targetticket.class.php:1461
+#: inc/targetticket.class.php:1462
#, php-format
msgid ""
"Failed to add or update the %1$s %2$s: a question is missing and is used in "
@@ -1691,41 +1692,41 @@ msgstr ""
msgid "The entity %1$s is required for the form %2$s."
msgstr ""
-#: inc/form.class.php:1952
+#: inc/form.class.php:1957
msgid "Failed to create JSON document type"
msgstr ""
-#: inc/form.class.php:1959
+#: inc/form.class.php:1964
msgid "JSON document type not found"
msgstr ""
-#: inc/form.class.php:1966
+#: inc/form.class.php:1971
msgid "Failed to update JSON document type"
msgstr ""
-#: inc/form.class.php:1986
+#: inc/form.class.php:1991
msgid "Forms without category"
msgstr ""
-#: inc/form.class.php:2007
+#: inc/form.class.php:2012
msgid "No form available"
msgstr ""
-#: inc/form.class.php:2205 entrée standard:47
+#: inc/form.class.php:2210 entrée standard:47
msgid "Add a target"
msgstr ""
-#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/form.class.php:2241 inc/targetticket.class.php:398
#: inc/abstractitiltarget.class.php:1800 inc/abstractitiltarget.class.php:2096
#: entrée standard:92 standard:94
msgid "Add"
msgstr ""
-#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+#: inc/form.class.php:2259 inc/form.class.php:2282 inc/form.class.php:2304
msgid "Unsupported target type."
msgstr ""
-#: inc/form.class.php:2333
+#: inc/form.class.php:2338
msgid "plugin_formcreator_load_check"
msgstr ""
@@ -1827,7 +1828,7 @@ msgstr ""
msgid "Assets"
msgstr ""
-#: inc/question.class.php:1237 hook.php:779 hook.php:796
+#: inc/question.class.php:1237 hook.php:792 hook.php:809
msgid "Assistance"
msgstr ""
@@ -2106,23 +2107,23 @@ msgstr ""
msgid "Failed to link the item"
msgstr ""
-#: inc/targetticket.class.php:923 install/install.php:498
+#: inc/targetticket.class.php:924 install/install.php:498
msgid "Your form has been accepted by the validator"
msgstr ""
-#: inc/targetticket.class.php:1155
+#: inc/targetticket.class.php:1156
msgid "Request source"
msgstr ""
-#: inc/targetticket.class.php:1180
+#: inc/targetticket.class.php:1181
msgid "Type "
msgstr ""
-#: inc/targetticket.class.php:1208
+#: inc/targetticket.class.php:1209
msgid "Associated elements"
msgstr ""
-#: inc/targetticket.class.php:1219
+#: inc/targetticket.class.php:1220
msgid "Item "
msgstr ""
@@ -2316,16 +2317,16 @@ msgstr[1] ""
msgid "Cancel"
msgstr ""
-#: inc/abstractitiltarget.class.php:2090 inc/abstractitiltarget.class.php:2518
-#: inc/abstractitiltarget.class.php:2522
+#: inc/abstractitiltarget.class.php:2090 inc/abstractitiltarget.class.php:2541
+#: inc/abstractitiltarget.class.php:2545
msgid "Email followup"
msgstr ""
-#: inc/abstractitiltarget.class.php:2121 inc/abstractitiltarget.class.php:2506
+#: inc/abstractitiltarget.class.php:2121 inc/abstractitiltarget.class.php:2529
msgid "User"
msgstr ""
-#: inc/abstractitiltarget.class.php:2132 inc/abstractitiltarget.class.php:2510
+#: inc/abstractitiltarget.class.php:2132 inc/abstractitiltarget.class.php:2533
msgid "Group"
msgstr ""
@@ -2337,11 +2338,11 @@ msgstr ""
msgid "Tech group from the object"
msgstr ""
-#: inc/abstractitiltarget.class.php:2161 inc/abstractitiltarget.class.php:2514
+#: inc/abstractitiltarget.class.php:2161 inc/abstractitiltarget.class.php:2537
msgid "Supplier"
msgstr ""
-#: inc/abstractitiltarget.class.php:2518
+#: inc/abstractitiltarget.class.php:2541
msgid "Yes"
msgstr ""
@@ -2487,24 +2488,24 @@ msgctxt "button"
msgid "Access rights"
msgstr ""
-#: hook.php:755
+#: hook.php:768
msgid "Cancel my ticket"
msgstr ""
-#: hook.php:773
+#: hook.php:786
msgid "Old"
msgstr ""
-#: hook.php:780
+#: hook.php:793
#, php-format
msgid "Number of %s"
msgstr ""
-#: hook.php:797
+#: hook.php:810
msgid "Issues summary"
msgstr ""
-#: hook.php:842
+#: hook.php:855
msgid ""
"Formcreator's mini dashboard not usable as default. This Setting has been "
"ignored."
diff --git a/locales/hu_HU.mo b/locales/hu_HU.mo
index 80f26965a..ab5789ab4 100644
Binary files a/locales/hu_HU.mo and b/locales/hu_HU.mo differ
diff --git a/locales/hu_HU.po b/locales/hu_HU.po
new file mode 100644
index 000000000..5ef22ee23
--- /dev/null
+++ b/locales/hu_HU.po
@@ -0,0 +1,2697 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Thierry Bugier , 2022
+# Laszlo Czirbesz , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Laszlo Czirbesz , 2022\n"
+"Language-Team: Hungarian (Hungary) (https://app.transifex.com/teclib/teams/28042/hu_HU/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hu_HU\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr ""
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Űrlap Készítő"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Űrlap lista"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Az űrlap sikeresen mentve!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr ""
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Szöveg terület"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Egy kötelező mező üres:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Szűrő"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "LDAP Érték"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Rádiógombok"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "A mező értéke kötelező:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Egész szám"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Saját legördülő lista"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Többszörös kiválasztás"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Jelölőnégyzetek"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Reguláris kifejezés"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "tartomány"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "További validálás"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Leírás"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "A leírás mezőnek tartalmaznia kell a leírást:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mindig megjelenik"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Rejtett amíg"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Megjelenik amíg"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Megjegyzés"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Az űrlap mentve"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Egy űrlapot jóvá kell hagynia"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Az űrlap elutasítva"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Az űrlap elfogadva"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Az űrlap törölve"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Űrlap neve"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "A teljes űrlap válaszai"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Jóváhagyó link"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Űrlap #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Jóváhagyó"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Elutasító megjegyzés"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Kérelem #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Űrlap jóváhagyó"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Különleges személy"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Személy a kérdésből"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Különleges csoport"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Csoport a kérdésből"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Különleges cég"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Cég a kérdésből"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Az űrlapját elfogadta a jóváhagyó"
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Az űrlap sikeresen mentve!"
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Elutasítás estén kötelező"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Elutasít"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Elfogad"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Az elutasítás megjegyzése kötelező!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Űrlap adatok"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Nem generálhatóak a célpontok!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Törlés"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Válasszon jóváhagyót"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Publikus elérés"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Privát elérés"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Korlátozott elérés"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Kezdőképernyő"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Elérés"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "A név nem lehet üres"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplikált"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Duplikált űrlap: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Áthelyezett űrlap: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Kategória nélküli űrlapok"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "A cím kötelező"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Kötelező"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "A szekció kötelező"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Jelenlegi aktív szervezet"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Alapértelmezett kérelmező felhasználó szervezete"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Első dinamikus kérelmező felhasználó szervezete (ABC)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Utolsó dinamikus kérelmező felhasználó szervezete (ABC)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Az űrlap szervezete"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Jóváhagyó alapértelmezett szervezete"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Különleges szervezet"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "A felhasználó típus kérdés válaszából az alapértelmezett szervezet"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "A GLPI objektum > szervezet típus kérdés válaszából "
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Felhasználó típus kérdés"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Szervezet típus kérdés"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Bejelentés tárgya"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Az érvényesítő üzenet kerüljön a bejelentés első utótevekenységébe"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Az űrlapját elfogadta a jóváhagyó"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Címkék a kérdésből"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Különleges címkék"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Címkék a kérdésekből és különleges címkék"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Címkék a kérdésekből vagy különleges címkék"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "Megegyezik a kérdésre adott válasszal"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "A bejelentés létrehozási dátumából számítva"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "A kérdés válaszából számítva"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Bejelentés címkék"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Címkék"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "A Leírás nem lehet üres!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Mégse"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Az űrlap létrehozva"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "A kérelme mentve"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Üdvözlöm,\\nA kérelme a GLPI-ben mentésre került, a "
+"száma:##formcreator.request_id##. Kérelmét továbbítottuk a helpdesk "
+"csapatnak.\\nA válaszokat az alábbi linken nézheti "
+"meg:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Az űrlapját visszautasította a jóváhagyó"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Üdvözlöm,\\nSajnálattal közöljük, hogy az Ön űrlapját elutasította a "
+"jóváhagyó. Az elutasítás "
+"oka:\\n##formcreator.validation_comment##\\nMódosíthatja, és újra elküldheti"
+" az alábbi linkre kattintva:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Üdvözlöm,\\nÖrömmel értesítjük, hogy az űrlapját elfogadta a "
+"jóváhagyó.\\nKérelme hamarosan mérlegelésre kerül."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Az űrlapját törölte egy Adminisztrátor"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Üdvözlöm,\\nSajnálattal közöljük, hogy az Ön kérelme nem mérlegelhető és egy"
+" Adminisztrátor törölte."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplikált"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Biztosan törli ezt a kérdést?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Biztosan törli ezt a szekciót?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Üres megjelenítése"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Attribútum"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Értékek"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Közvetlen elérés a kezdőképernyőről"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Szekció hozzáadása"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Kérdés hozzáadása"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Teljes űrlap"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Még nincs beküldött űrlap"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Minden űrlapom (kérelmező)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Minden űrlapom (jóváhagyó)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/it_IT.mo b/locales/it_IT.mo
index e2ff41a58..33df9058b 100644
Binary files a/locales/it_IT.mo and b/locales/it_IT.mo differ
diff --git a/locales/it_IT.po b/locales/it_IT.po
new file mode 100644
index 000000000..a021c8644
--- /dev/null
+++ b/locales/it_IT.po
@@ -0,0 +1,2745 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Alessandro Carloni , 2022
+# Roberto , 2022
+# Thierry Bugier , 2022
+# Pierfrancesco Passerini , 2023
+# Davide , 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Davide , 2023\n"
+"Language-Team: Italian (Italy) (https://app.transifex.com/teclib/teams/28042/it_IT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: it_IT\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Richiesta errata"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Domanda non trovata"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "Non hai i permessi per questa azione"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Domanda originale non trovata"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "Impossibile spostare alcune domande"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "Impossibile aggiungere la sezione"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "radice del sottoalbero"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Selezionabile"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "limita profondità del sottoalbero"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Nessun limite"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Sezione originale non trovata"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "Impossibile cancellare la sezione"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "Impossibile aggiungere la domanda"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "Impossibile spostare la sezione"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "Impossibile aggiungere l'attore"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "Impossibile cancellare l'attore"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "Impossibile duplicare la sezione"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "Impossibile aggiornare la sezione"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catalogo dei servizi"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "Oggetto non trovato"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "Non hai i diritti di modificare questo elemento"
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "Errore durante la cancellazione di un attore"
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creatore di moduli"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "1%1$s = 2%2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista dei moduli"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Il modulo è stato salvato correttamente!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$s cancella la prenotazione per l'elemento %2$s"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$s aggiunge la prenotazione %2$s per l'elemento %3$s"
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] "Categoria"
+msgstr[1] "Categorie"
+msgstr[2] "Categorie"
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "mostra tutti"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Descrivete la vostra necessità"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Area testuale"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Un campo obbligatorio risulta non compilato:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "L'espressione regolare non è valida"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Utente e modulo"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr "Filtro di ricerca"
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "Menù a tendina"
+msgstr[1] "Menù a tendina"
+msgstr[2] "Menù a tendina"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valore non valido per"
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "La tipologia del campo è richiesto: %s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo menù a discesa non valido: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Limite dell'entità"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+"Per conformità al sistema di entità di GLPI, \"Modello\" deve essere "
+"selezionato. Altre impostazioni corromperanno i limiti dell'entità"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Seleziona LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "LDAP directory non definita!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "LDAP directory non trovata!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Selettore radio"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Il valore del campo è obbligatorio:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Un campo obbligatorio risulta non compilato: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Non è un intero: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Il formato specificato non corrisponde: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "Il seguente numero deve essere maggiore di %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "Il seguente numero deve essere minore di %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Intero"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "Non definito"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] "Indirizzo IP"
+msgstr[1] "Indirizzi IP"
+msgstr[2] "Indirizzi IP"
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "Priorità"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "Altissima"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "Alta"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Media"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "Bassa"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "Bassissima"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "Attenzione: il plugin TAG è disabilitato o mancante"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "Etichetta"
+msgstr[1] "Etichette"
+msgstr[2] "Etichette"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] "Nome host"
+msgstr[1] "Nomi host"
+msgstr[2] "Nomi host"
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Ora"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Non è un'email valida: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] "E-mail"
+msgstr[1] "E-mail"
+msgstr[2] "E-mail"
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Seleziona"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Data & orario"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] "Attore"
+msgstr[1] "Attori"
+msgstr[2] "Attori"
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valore non valido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Utente non trovato o e-mail non valida :%s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Nessun documento allegato"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento allegato"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Manca un file richiesto: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr "File"
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Selettore multiplo"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr "Attenzione: il plugin Campi addizionali è disabilitato o mancante"
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr "Blocco"
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr "Campo"
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr "mostra"
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr "Nome"
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr "Campi addizionali"
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Checkbox"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo di richiesta"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Non è un numero: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr "Numero decimale"
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Espressione regolare"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Intervallo"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validazione addizionale"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr "Data"
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Descrizione"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Un campo descrizione deve avere una descrizione:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] "Campo nascosto"
+msgstr[1] "Campi nascosti"
+msgstr[2] "Campi nascosti"
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] "Condizione"
+msgstr[1] "Condizioni"
+msgstr[2] "Condizioni"
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "è visibile"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "non è visibile"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "corrispondenze di espressioni regolari"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Mostrato sempre"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Nascosto a meno che"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Mostrato a meno che"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condizioni"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importazione"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr "Importazione in corso"
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] "Chiamata"
+msgstr[1] "Chiamate"
+msgstr[2] "Chiamate"
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Aggiorna i dati sui problemi dai ticket e dai moduli di risposta"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr "Sondaggio di gradimento scaduto"
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr "Nome"
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr "ID"
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] "Tipo"
+msgstr[1] "Tipi"
+msgstr[2] "Tipi"
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr "Stato"
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr "Data di apertura"
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr "Ultimo aggiornamento"
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] "Entità"
+msgstr[1] "Entità"
+msgstr[2] "Entità"
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] "Richiedente"
+msgstr[1] "Richiedenti"
+msgstr[2] "Richiedenti"
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Approvatore del modulo"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Commento"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Approvatore della chiamata"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr "Tecnico"
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr "Gruppo tecnico"
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Gruppo approvatore del modulo"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "Tempo di risoluzione"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr "Data di soluzione"
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "Tempo di presa in carico"
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr "Tutti"
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr "Nuovo"
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr "Assegnato"
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "In attesa"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Da validare"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr "Risolto"
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Chiuso"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoria della base di conoscenza"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Icona"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Colore icona"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Colore sfondo"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] "Modulo #"
+msgstr[1] "Moduli"
+msgstr[2] "Moduli"
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Il modulo è stato salvato"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un modulo deve essere validato"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Il modulo è stato rifiutato"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Il modulo è stato accettato"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Il modulo è stato cancellato"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr "ID modulo"
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nome del modulo"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] "Validatore"
+msgstr[1] "Validatori"
+msgstr[2] "Validatori"
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr "Data di creazione"
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Tutte le risposte del modulo"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Link validazione"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr "ID Richiesta"
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Modulo #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validatore"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Commento rifiutato"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Richiesta #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr "Autore"
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr "Approvatore"
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autore modulo"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validatore modulo"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Persona specifica"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona dalla domanda"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Gruppo specifico"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Gruppo della domanda"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Gruppo dall'oggetto"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Gruppo tecnico dall'oggetto"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Fornitore specifico"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Fornitore della domanda"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Attori della domanda"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "Supervisore dell'autore del modulo"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr "Osservatore"
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr "Assegnato a"
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Rifiutato"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Accettato"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] "Risposta del modulo"
+msgstr[1] "Risposte del modulo"
+msgstr[2] "Risposte del modulo"
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Stampa questo modulo"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Modulo accettato dal coordinatore."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Modulo correttamente salvato."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr "Salva"
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Richiesto se rifiutato"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Rifiuta"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Modifica le risposte"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Accetta"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Commento obbligatorio in quanto rifiutato!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Non sei il validatore di queste risposte"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Dati del modulo"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Non posso generare la destinazione!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "Devi scegliere un validatore!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr "Non puoi eliminare questo problema. Forse è preso in considerazione."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+"Impossibile eliminare questo problema. Si è verificato un errore interno."
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Nuovo ticket"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "I miei ticket"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Notizie"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr "Applica"
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] "Tipo di accesso"
+msgstr[1] "Tipi di accesso"
+msgstr[2] "Tipi di accesso"
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Aggiungi una traduzione"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Nuova traduzione"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "Nessuna traduzione trovata"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "Vuoi cancellare l'elemento selezionato?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Cancella"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Nessuno"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr "Livello"
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Validazione"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Scegli un validatore"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr "Salva"
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Attori"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Impatto"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Assistenza GLPI"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catalogo dei servizi semplificato"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catalogo dei servizi esteso"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Ordinamento per popolarità"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Ordinamento alfabetico"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Visibile"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Nascosta"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Assistenza"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modalità Assistenza"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Ordinamento"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "Base di conoscenza"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Cerca"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr "Cerca chiamata"
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Visualizza campo di ricerca"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Visualizza header"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Accesso pubblico"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Accesso privato"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Accesso ristretto"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importa moduli"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Homepage"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Accesso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "Cosa stai cercando?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Il nome non può essere vuoto!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "La domanda 1%s non è compatibile che i moduli pubblici"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplica"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Modulo duplicato: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Modulo Trasferito: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Indietro"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Il caricamento di file JSON non è permesso."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Puoi autorizzare i file JSON ora."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Crea"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Per favore contatta il tuo amministratore di GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Indietro"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Il caricamento di file JSON non è abilitato."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Puoi abilitare i file JSON ora."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Abilita"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Errore durante l'importazione di %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Modulo correttamente importato da %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "Il modulo 1%1$s è già presente ed è in una entità non modificabile."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "L'entità %1$s è richiesta per il modulo %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "E' fallita la creazione del tipo di documento JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "Tipo di documento JSON non trovato"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Fallito l'aggiornamento del tipo di documento JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Moduli senza categoria"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "Nessun modulo disponibile"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Aggiungi"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Tipo di destinazione non supportata"
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Modifica titolo"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Il titolo è obbligatorio"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Obbligatorio"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "La sezione è richiesta"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "IL tipo di campo 1%1$s non è disponibile per la domanda 2%2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Questo tipo di domanda non è compatibile con i moduli pubblici."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr "Livelli di servizio"
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "OLA"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Parametro"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Nome campo"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Entità corrente attiva"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Richiesta predefinita di un entità utente"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Prima richiesta dinamica di un entità utente (alfabetico)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Ultima richiesta dinamica di un entità utente (alfabetico)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Entità del modulo"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Entità predefinita del validatore"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Entità specifica"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Entità predefinita di una risposta alla domanda di tipo utente"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "Da un oggetto GLPI > Risposta a una domanda di tipo entità"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Un obiettivo deve essere associato al form"
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Uno obiettivo deve essere associato al form esistente."
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Nome è obbligatorio"
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Domanda del tipo di utente"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Domanda del tipo di entità"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Categorie di richieste"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Categorie di incidenti"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "Modifica le categorie"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Uguale alla risposta alla domanda"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Ultima risposta valida"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Titolo della chiamata"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Aggiungi messaggio di validazione alla prima azione del ticket"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Collegamento ad altra chiamata"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Un'altra destinazione di questo modulo"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Una chiamata esistente"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Tipo di link non valido"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Tipo di elemento linkato non valido"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "L'elemento linkato non esiste"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Errore ad agganciare l'elemento"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Il tuo modulo è stato accettato dal validatore"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "Tipo"
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Elemento"
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "Non ci sono altre stringhe da tradurre"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "Lingua non trovata."
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Etichette dalle domande"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Etichette specifiche"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Etichette dalle domande e tags specifici"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Etichette dalle domande o tags specifici"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "uguale alla risposta alla domanda"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "calcolato dalla data di creazione del ticket"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "calcolato dalla risposta alla domanda"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "SLA del template o nessuna"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "SLA specifico"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "OLA del template o nessuna"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "OLA specifico"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgenza da un template o mezzo"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Determinata urgenza"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categoria del template o nessuna"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Determinata categoria"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Posizione del template o nessuna"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Determinato posizione"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Domanda (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgenza "
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Tag della chiamata"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etichette"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Luogo "
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "La descrizione non può essere vuota!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Annulla"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr "Utente"
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Gruppo dall'oggetto"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Gruppo tecnico dall'oggetto"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Un modulo è stato creato"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "La tua richiesta è stata salvata"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Salve,\\nLa tua richiesta da GLPI è stata salvata con successo con il numero"
+" ##formcreator.request_id## e trasmessa alla squadra di helpdesk.\\nPuoi "
+"vedere le tue risposte al seguente link:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Il tuo modulo è stato rifiutato dal validatore"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Salve,\\nSiamo spiacenti di informarti che il tuo modulo è stato rifiutato "
+"dal validatore per il seguente "
+"motivo:\\n##formcreator.validation_comment##\\n\\nPuoi modificare e inviarlo"
+" nuovamente cliccando sul seguente link:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Salve,\\nSiamo lieti di informarti che il tuo modulo è stato accettato dal "
+"validatore..\\nLa tua richiesta sarà considerata presto."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Il tuo modulo è stato cancellato da un amministratore"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Salve,\\nSiamo spiacenti di informarti che la tua richiesta non sarà "
+"considerata ed è stata eliminata da un amministratore."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator - Problema nel servizio di sincronizzazione del catalogo"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplica"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancella il mio ticket"
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr "Sommario Chiamate"
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Sei sicuro di voler eliminare questa domanda?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Sei sicuro di voler eliminare questa sezione?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Si è verificato un errore durante l'interrogazione del modulo"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr "Valori di default"
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostra opzione vuota"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Attributo"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Valori"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Visualizza le categorie dei ticket"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "Oggetto di GLPI"
+msgstr[1] "Oggetti di GLPI"
+msgstr[2] "Oggetti di GLPI"
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Accesso da homepage"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Modulo di default nel catalogo dei servizi"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "Sei un robot?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr "Validatori"
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr "Impatto"
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Aggiungi una sezione"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Abilita captcha"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Aggiungi una domanda"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Modulo completo"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Nessun modulo pubblicato"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Tutti i miei moduli (richiedente)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Tutti i miei moduli (validatore)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/ja_JP.mo b/locales/ja_JP.mo
new file mode 100644
index 000000000..bd275a293
Binary files /dev/null and b/locales/ja_JP.mo differ
diff --git a/locales/ja_JP.po b/locales/ja_JP.po
new file mode 100644
index 000000000..0f356c751
--- /dev/null
+++ b/locales/ja_JP.po
@@ -0,0 +1,2652 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# INOUE Daisuke, 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: INOUE Daisuke, 2023\n"
+"Language-Team: Japanese (Japan) (https://app.transifex.com/teclib/teams/28042/ja_JP/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ja_JP\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "不正なリクエスト"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "質問がありません"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "この操作をする権限がありません"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "ソースの質問がありません"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "いくつかの質問を移動できませんでした"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "セクションを追加できませんでした"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "サブツリー ルート"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "選択的"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "サブツリー階層の制限"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "制限なし"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "元のセクションがありません"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "このセクションを削除できません"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "質問を追加できません"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "セクションを移動できません"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "アクターの追加に失敗"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "アクターの削除に失敗"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "セクションの複製ができません"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "セクションの更新ができません"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "サービスカタログ"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "アイテムがありません"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "このアイテムを更新する権限がありません。"
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "アクターの削除で不正なリクエスト。"
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "フォーム作成"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "%1$s = %2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "フォーム一覧"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "フォームを保存しました!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$s が %2$s アイテムの予約を抹消"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$s が %3$s アイテムの予約を %2$s に追加。 "
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] "カテゴリー"
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "すべて表示"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "あなたの要望を記入してください"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "テキスト エリア"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "必要なフィールドが空 : "
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "正規表現が無効"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "ユーザーとフォーム"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr "検索フィルター"
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "ドロップダウン"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "無効な値 : "
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "アイテムの型のフィールドが必要です : %s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "不正なドロップダウンの型 : %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "フィルター"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "エンティティ制限"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr "GLPI のエンティティ システムを尊重するには、「フォーム」を選択すべきです。それ以外の設定の場合は、エンティティ制限を逸脱します。"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "LDAP 選択"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "LDAP ディレクトリが未定義です!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "LDAP ディレクトリーがありません!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "ラジオボタン"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "フィールドの値が必要です : "
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "必要なフィールドが空 : %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "これは整数ではありません : %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "特定の書式がマッチしません : %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "以下の数字は %d より大きくしてください : %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "以下の数字は %d より小さくしてください : %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "整数"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "未定義"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] "IP アドレス"
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "緊急度"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "最高"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "高"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "中"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "低"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "最低"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "警告 : タグ プラグインが無効かインストールされていません"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "タグ"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] "ホスト名"
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "時間"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "無効なメールアドレスです : %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] "メールアドレス"
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "選択"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "日時"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] "アクター"
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "無効な値 : %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "ユーザーが見つからないか、無効なメールアドレス : %s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "文書が添付されていません"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "添付文書"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "必要なファイルがありません : %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr "ファイル"
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "複数選択"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr "警告 : 追加のフィールドプラグインが無効か、インストールされていません"
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr "ブロック"
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr "フィールド"
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr "表示"
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr "「%1$s」フィールドの型は未実装です!"
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr "数字でない値を含む数値フィールドがあります"
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr "無効なリンクを含む URL フィールドがあります"
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr "追加のフィールド"
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "チェックボックス"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr "以下の質問では、少なくとも %d 個の回答が必要です : %s"
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr "以下の質問では、%d 個を超える回答は受け付けません : %s"
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr "範囲の下限"
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr "範囲の上限"
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "要求の型"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "これは数値ではありません : %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr "10進数"
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "正規表現"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "範囲"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "追加の検証"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr "日付"
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "説明"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "記述フィールドには記述が必要です : "
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] "非表示フィールド"
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] "状態"
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "表示?"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "非表示"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "正規表現で照合"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "常時表示"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "非表示条件 : "
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "表示条件 : "
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "%1$s %2$s の追加・更新に失敗 "
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "空のオブジェクトはエクスポートできません : %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "状態"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "インポート中"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr "インポートしています"
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] "問題"
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "チケットとフォームの回答をもとに問題データを更新する"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr "満足度調査の期限切れ"
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr "名前"
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr "ID"
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] "型"
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr "状態"
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr "開始日"
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr "最終更新日"
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] "エンティティ"
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] "要求者"
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "フォーム承認者"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "コメント"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "チケットの承認者"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr "技術者"
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr "技術者グループ"
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "フォーム承認グループ"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr "チケット承認者グループ"
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "解決までの時間"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr "解決までの時間 + 進捗状況"
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr "解決までの内部時間 "
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr "解決までの内部時間 + 進捗状況"
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr "解決日"
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr "割当までの内部時間"
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr "割当までの内部時間 + 進捗状況"
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "割当までの時間"
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr "割当までの時間 + 進捗状況"
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr "承認者の交代"
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr "承認者グループのメンバーの交代"
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr "フォーム承認者交代"
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr "現在のフォーム承認者グループ"
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr "現在のフォーム承認者"
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr "チケット要求者"
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr "チケット オブザーバー"
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr "チケット技術者"
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr "%1$s %2$s"
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr "すべて"
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr "新規"
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr "割当済み"
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "待ち"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "検証待ち"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr "解決"
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "終了"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] "フォームの分類"
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "ナレッジベースの分類"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr "親 "
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "アイコン"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "アイコンの色"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "背景色"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] "フォーム"
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "フォームを保存しました"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "フォームは検証が必要です"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "フォームの再利用"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "フォームを受け付けました"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "フォームを削除しました"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr "フォーム ID"
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "フォーム名"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] "検証者"
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr "作成日"
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "全フォーム回答"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr "検証コメント"
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "検証リンク"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr "要求 ID"
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "フォーム #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "検証者"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "拒否コメント"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "要求 #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr "作者"
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr "承認者"
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "フォーム作者"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "フォーム検証者"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "特定の人"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "質問で特定する人"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "特定のグループ"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "質問で特定するグループ"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "オブジェクトのグループ"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "オブジェクトの技術者グループ"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "特定のサプライヤ"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "質問で特定するサプライヤ"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "質問で特定する実行者"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr "フォーム作成者の担当責任者"
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr "オブザーバー"
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr "割当先"
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] "対象実行者"
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr "実行者の追加で不正なリクエスト。"
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr "ユーザーの検索に失敗 : %1$s"
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr "グループの検索に失敗 : %1$s"
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr "サプライヤの検索に失敗 : %1$s"
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "拒否済み"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "承認"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] "フォームの回答"
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "このフォームを印刷"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "フォームが検証者に承認されました。"
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "フォームを保存しました。"
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr "保存"
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "拒否されたら必須"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "拒否"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "回答を編集"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "編集をキャンセル"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "承認"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "拒否する場合はコメント必須です!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr "回答の検証で内部エラー発生。管理者に報告してください。"
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "あなたはこの回答の検証者ではありません"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr "アイテムを追加 : %1$s (%2$s: %3$s)"
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "フォーム データ"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr "あなたはフォームの承認者です。あなたの承認を自動的に追加します。"
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "対象を生成できません!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr "captcha 設定なし。"
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr "captcha テストに失敗しました。"
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "検証者を選択してください!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr "この問題を削除できません。アカウントを考慮していると思われます。"
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "この問題を削除できません。内部エラーが発生しました。"
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "ユーザーサポートを検索"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "自分へのサポート要求"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr "リマインダーを参照する"
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "フィードを参照する"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr "適用"
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] "アクセスの型"
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] "フォームの言語"
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] "翻訳"
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr "名前を入力してください。"
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr "言語をフォームに関連付けてください。"
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr "指定の言語は無効です。"
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "翻訳の追加"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr "翻訳の更新"
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "新しい翻訳"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "フィルター一覧"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "翻訳がありません"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "選択したアイテムを削除します。よろしいですか?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "削除"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "元の文字列"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr "新しい言語を追加"
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr "言語"
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "なし"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr "いいえ"
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr "要求者の監督者"
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "フォームが見つかません。"
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr "無効な承認者。"
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr "%s はレベル 1 のみ許可しています"
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr "無効な承認者型です。"
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr "レベル"
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "検証"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "検証者を選択"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr "保存"
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] "対象の問題"
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr "プロパティー"
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr "%1$s %2$s の追加または更新に失敗 : 質問が存在せず、対象のパラメーターとして設定されています "
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "アクター"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr "問題のタイトル"
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "内容"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "影響"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr "原因"
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr "症状"
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr "親エンティティーの検証"
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPI ヘルプデスク"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "シンプル サービスカタログ"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "拡張 サービスカタログ"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr "すべての有効なフォーム"
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr "標準フォームのみ"
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "活用順"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "辞書順"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "フォームとマージ済み"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "個別のメニューエントリー"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "表示"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "非表示"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr "可変の高さ"
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr "統一した高さ"
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr "ユーザーサポートを検索"
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr "ユーザーのサポート要求"
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr "フォームのみ"
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr "フォームと要求の一覧"
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr "折りたたみ"
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr "展開"
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "ヘルプデスク"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "ヘルプデスク モード"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr "標準フォーム一覧モード"
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "並び順"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "ナレッジベース"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "検索"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr "ダッシュボードのカウンター"
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "ヘッダー メッセージ"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr "問題の検索"
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr "サービスカタログ ホームページ"
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr "タイル デザイン"
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr "ホームページ"
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr "メニューの表示 (縦メニュー用)"
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] "ヘッダー"
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "検索フィールドを表示"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "ヘッダーを表示"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] "質問範囲"
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "最小範囲"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "最大範囲"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "オープン アクセス"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "自分のみアクセス"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "制限アクセス"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr "検証待ちの回答"
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "フォームのインポート"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr "再帰的"
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "ホームページ"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "アクセス"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr "稼働"
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr "標準フォーム"
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr "次のフォーム"
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr "停止"
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr "非標準フォーム"
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr "すべての言語"
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] "対象"
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr "プレビュー"
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr "フォーム回答プロパティー"
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "何をお探しですか?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "名前を入力してください!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr "ループができています!"
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr "フォームの回答では名前の入力が必要です。以前の値を使います。"
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "%s 質問は、オープン フォームとは互換性がありません"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "複製でエラー"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "複製"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr "投稿"
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "複製済みフォーム : %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "転送済みフォーム : %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "戻る"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr "フォームを更新しました : %s"
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "JSON ファイルのアップロードを許可されていません"
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "すぐに JSON ファイルを許可してもらえるでしょう。"
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "作成"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "GLPI 管理者に連絡してください。"
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "戻る"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "JSON ファイルのアップロードは無効です。"
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "すぐに JSON ファイルを有効にしてもらえるでしょう。"
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "有効"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr "送信"
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "ファイルが空なので、フォームのインポートができません"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "ファイルが壊れているようなので、フォームのインポートができません"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr "違うバージョンで作成されたファイルなので、フォームのインポートができません"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr "ファイルでスキーマバージョンが指定されていません。おそらく 2.10 よりも古いバージョンで作成されたのでしょう。対応できません。"
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "%s のインポートに失敗"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "%s からフォームをインポートしました"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "%1$s フォームはすでに存在し、変更不可能なエンティティー内にあります。"
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr "%1$s エンティティーを更新する権限がありません。"
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "%2$s フォームは %1$s エンティティーを必要としてます。"
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "JSON 書式の作成に失敗"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "JSON 書式が見つかりません"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "JSON 書式の更新に失敗"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "分類のないフォーム"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "有効なフォームがありません"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "対象を追加"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "追加"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "未対応の対象型です。"
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "plugin_formcreator_load_check"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] "対象の変更"
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "変更のタイトル"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr "制御一覧"
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr "配置計画"
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr "バックアップ計画"
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr "チェックリスト"
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] "質問フィルター"
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] "セクション"
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "タイトルを入力してください"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr "条件のカウント"
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr "%1$s %2$s が見つかりません"
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] "質問"
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "必須"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "セクションが必要です"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "質問 %2$s には、%1$s のフィールド型は使用できません。"
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "この型の質問は、オープン フォームと互換性がありません。"
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr "フィールド型は変更できません。質問を削除して再作成してください。"
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr "サービスレベル"
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "OLA"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr "情報資産"
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr "ユーザーサポート"
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr "管理"
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr "ツール"
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr "メモ"
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr "RSS フィード"
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr "管理"
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] "プラグイン"
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "パラメーター"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "フィールド名"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "現在の稼働中エンティティー"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "要求者の標準エンティティー"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "最初の動的要求者エンティティー(辞書順)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "最後の動的要求者エンティティー(辞書順)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "フォームエンティティー"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "検証者の標準エンティティー"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "特定のエンティティー"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "ユーザーの型への回答の標準エンティティー"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "GLPI オブジェクト > エンティティー型質問の回答"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr "常に生成"
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr "無効条件 : "
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr "生成条件 : "
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "対象は、フォームに関連付いていなくてはなりません。"
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "対象は、既存のフォームに関連付いていなくてはなりません。"
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "名前を入力してください。"
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr "宛先エンティティー"
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "ユーザー型の質問"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "エンティティー型の質問"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr "無効な項目を検索しています..."
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr "完了しました。"
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr "ステップ 1 : URL エンコーディングした < と > の特殊記号。"
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr "無効なアイテムは見つかりません。"
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr "ステップ 2 : 明示的 BR タグ。"
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr "ステップ 3 : 明示的 > 特殊文字。"
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "要求カテゴリー"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "インシデント カテゴリー"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "変更カテゴリー"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] "要求者の監督者"
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr "自分の監督者"
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] "正規表現質問"
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] "質問の依存関係"
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] "回答"
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] "チケットと関連付ける"
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] "対象チケット"
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "特定の情報資産"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "質問の回答と等しい"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "最後の有効な回答"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr "テンプレート、またはユーザーの標準、または GLPI の標準を元に"
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr "フォーム作成"
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr "標準またはテンプレートから"
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr "特定の型"
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "チケットのタイトル"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "最初の回答として検証メッセージを追加"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr "フィールドを追加"
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr "管理フィールド"
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr "管理フィールドがありません"
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "別のチケットにリンク"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "このフォームの別の宛先"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "既存のチケット"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr "質問に対する回答からのチケット"
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr "完全に削除"
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "無効なリンク型"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "リンク先のアイテム型が無効"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "リンク先のアイテムが存在しません"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "アイテムへのリンクに失敗"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "あなたのフォームは検証者に承認されました"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr "要求元"
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "型"
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr "関連する要素"
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "アイテム"
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "もう翻訳する文字列がありません"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr "内部エラー : 翻訳可能な文字列がありません。"
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "言語が見つかりません。"
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr "翻訳の追加に失敗しました。"
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "質問からのタグ"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "特定のタグ"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "質問からのタグと特定のタグ"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "質問からのタグまたは特定のタグ"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr "テンプレートの TTR または、なし"
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "質問の回答と等しい"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "チケットの作成日から計算"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "質問の回答から計算"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "テンプレートからの SLA または、なし"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "特定の SLA"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "テンプレートからの OLA または、なし"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "特定の OLA"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "テンプレートからの緊急度または中"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "特定の緊急度"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "テンプレートのカテゴリーまたは、なし"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "特定のカテゴリー"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "テンプレートの場所またはなし"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "特定の場所"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr "テンプレートの契約または、なし"
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr "特定の契約"
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr "検証なし"
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr "特定のユーザーまたはグループ"
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr "質問の回答からのユーザー"
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr "質問の回答からのグループ"
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] "分"
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] "時間"
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] "日"
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] "月"
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA (TTO・TTR)"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "質問(TTO・TTR)"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA (TTO・TTR)"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "緊急度"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "チケットのタグ"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "タグ"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr "場所「"
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "場所"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr "契約"
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr "契約"
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "説明を空にはできません!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] "助言者"
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "キャンセル"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr "メール フォロー"
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr "ユーザー"
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr "グループ"
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "オブジェクトのグループか"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "オブジェクトの技術者グループ"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr "サプライヤ"
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr "はい"
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr "innoDB のテーブルをアップグレードするには、%s を実行"
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+"データベーススキーマは、Formcreator の古い %s バージョンとの整合性がとれていません。ログを見るには、%s コマンドを実行してください。"
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr "矛盾を無視してアップグレードする場合は、%s を実行"
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+"2.5.0 より古いバージョンからのアップグレードはすでにサポートしていません。GLPI 9.5.7 にアップグレードし、「フォーム作成」を "
+"2.12.5 にアップグレードし、それから GLPI 10以上に、「フォーム作成」を 2.13 以降にそれぞれアップグレードしてください。"
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr "%s からのアップグレードで致命的なエラー! アップグレードを中断しました。ログを確認して問題を解決し、再度実行してください。"
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+"データベース スキーマが現在の「フォーム作成」のバージョン、%s と整合性がとれていません。ログを見るには、プラグインを有効にして、%s "
+"コマンドを実行してください。"
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr "プラグインのテーブルは、スキーマ整合性チェックを通過しました。"
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "フォームを作成しました"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "あなたからの要求を保存しました"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"こんにちは。\\nGLPI にあなたが要求として投稿した内容は、受付番号 ##formcreator.request_id## "
+"として保存し、ヘルプデスク チームに転送しました。\\nご自分の回答は以下のリンクで確認できます : "
+"\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr "フォームは検証が必要です"
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr "GLPI のフォームで検証が必要です"
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr "こんにちは。\\nGLPI のフォームで検証が必要となり、あなたが検証者として選ばれました。\\n以下のリンクでアクセスできます : "
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "あなたのフォームは検証者から拒否されました"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"こんにちは。\\n残念ながら、あなたのフォームは以下の理由により検証者に拒否されました : "
+"\\n##formcreator.validation_comment##\\n\\n以下のリンクをクリックして、変更・再検証を提出することができます "
+": \\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr "こんにちは\\nあなたのフォームが検証者より承認されたことをご報告します。\\nすぐにあなたの要求の検討をはじめます。"
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "あなたのフォームは管理者が削除しました。"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr "こんにちは\\n残念ながらあなたの要求は検討に値しないものとして管理者が削除しました。"
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "フォーム作成 - サービス カタログの問題を同期"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr "テーブルの整合性検査に失敗しました!"
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr "「%s」テーブルのテーブルスキーマが異なります。"
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr "「%s」テーブルが見つかりン銭。"
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr "不明な「%s」テーブルがデータベースに見つかりました。"
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "複製"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr "転送"
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr "エクスポート"
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr "アクセス権"
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "自分のチケットを中止"
+
+#: hook.php:774
+msgid "Old"
+msgstr "古い"
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr "%s の数"
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr "問題概要"
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr "フォーム作成のミニダッシュボードは、標準では使用できません。この設定は無視されます。"
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr "フォームが見つかりません。代わりに以下のフォームから選択してください。"
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr "フォームが見つかりません。"
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr "FAQ アイテムが見つかりません。"
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "この質問を削除します。よろしいですか?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "このセクションを削除します。よろしいですか?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr "翻訳を追加"
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "フォームのクエリーでエラーが発生"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr "送信"
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr "内部エラー発生。管理者に報告してください。"
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr "この承認者を削除します。よろしいですか?"
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr "この承認者を複製します。よろしいですか?"
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr "この対象を削除します。よろしいですか?"
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr "標準値"
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "空を表示"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] "LDAP ディレクトリー"
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "属性"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "値"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "チケット カテゴリーを表示"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr "選択可能なルート"
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "GLPI オブジェクト"
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "ホームページへの直接接続"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "サービス カタログでの標準フォーム"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "あなたはロボットですか?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr "このセクションを表示する条件"
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr "対象を生成する条件"
+
+#: entrée standard:40
+msgid "General"
+msgstr "一般"
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr "承認率"
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr "承認者の追加"
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr "承認レベル"
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr "承認型"
+
+#: entrée standard:98
+msgid "Validators"
+msgstr "検証者"
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr "操作"
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr "影響"
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr "チェックリスト"
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr "回答のタイトル"
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "セクションの追加"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr "「投稿する」を表示する条件"
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr "まだフォームの回答なし"
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr "最後に利用した %s 件のアイテム"
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "リンクを表示するには、フォームを稼働させてください"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "CAPCHA を有効に"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr "制限 : "
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "質問を追加"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr "利用できるタグ一覧"
+
+#: entrée standard:42
+msgid "Title"
+msgstr "タイトル"
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "全フォーム"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr "承認状態"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "最近使った %1$d 件のフォーム(要求者)"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "まだフォームを投稿していません"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "自分のフォームのすべて(要求者)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "最近使った %1$d 件のフォーム(検証者)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "自分のフォームのすべて(検証者)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "最小"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "最大"
diff --git a/locales/lv_LV.mo b/locales/lv_LV.mo
index 09596f4a2..0fb123097 100644
Binary files a/locales/lv_LV.mo and b/locales/lv_LV.mo differ
diff --git a/locales/lv_LV.po b/locales/lv_LV.po
new file mode 100644
index 000000000..b46693b7c
--- /dev/null
+++ b/locales/lv_LV.po
@@ -0,0 +1,2738 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Andrejs , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Andrejs , 2022\n"
+"Language-Team: Latvian (Latvia) (https://app.transifex.com/teclib/teams/28042/lv_LV/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: lv_LV\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Nav limitu"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Servisu katalogs"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Formas Veidotājs"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Formas saraksts"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Forma veiksmīgi saglabāta!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Lūdzu definējiet jūsu prasību"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Tekstlodziņš"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Nepieciešamais lauks tukšs:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "Nederīga regulāra izteiksme"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtrs"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "LDAP atlase"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Radio pogas"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Nepieciešams ievadīt lauka vērtību:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "vesels skaitlis"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Vidējs"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Atlasīt"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Pievienots dokuments"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Daudzatlase"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Izvēles rūtiņas"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Regulārā izteiksme"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Diapazons"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Papildus apstiprināšana"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Apraksts"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Apraksta laukam jābūt aizpildītam:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Vienmēr rādīt"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Paslēpts kamēr"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Rādīt kamēr"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Atjaunot problēmas informāciju no pieteikuma un formas atbildēm"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Formas apstiprinātājs"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Komentārs"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Pieteikuma apstiprinātājs"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Formas apstiprinātāju grupa"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Apstiprināšanai"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Aizvērts"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Zināšanas bāzes kategorija"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Forma saglabāta"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Formai jābūt apstiprinātai"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Forma noraidīta"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Forma akceptēta"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Forma izdzēsta"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Formas virsraksts"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Pilnas formas atbildes"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Apstiprināšanas links"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Forma #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Apstiprinātājs"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Noraidīts komentārs"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Pieprasījums #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Formas apstiprinātājs"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Noteikta persona"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persona no jautājuma"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Noteikta grupa"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupa no jautājuma"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Norādīt piegādātāju"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Piegādātājs no jautājuma"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Dalībnieki no jautājuma"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Izdrukāt formu"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formu akceptēja apstiprinātājs."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Forma saglabāta veiksmīgi."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Nepieciešams ja noraidīts"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Noraidīt"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Akceptēt"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Nepieciešams noraidīšanas komentārs!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Jūs neesat apstiprinātājs šīm atbildēm"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Formas dati"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Nevar ģenerēt mērķi"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Meklēt palidzību"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mans palīdzības pieprasījums"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Palīg plūsma"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Izdzēst"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Nekas"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Izvēlēties apstiprinātāju"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Dalībnieki"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPI helpdesks"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Vienkāršots servisu katalogs"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Izvērst servisu katalogs"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Sakārtot pēc popularitātes"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Sakārtot alfabēta secībā"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesks"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Helpdesk režīms"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Publiska pieeja"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Privāta pieeja"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Ierobežota pieeja"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importēt formas"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Sākumlapa"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Piekļuve"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Virsraksts nevar būt tukšs!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Dublikāts"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formas dublikāts: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Forma pārnesta: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Atpakaļ"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "JSON datņu augšupielāde liegta"
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Nepieciešams atļaut JSON datnes."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Izveidot"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Lūdzu sazināties ar GLPI administratoru."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Atpakaļ"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "JSON datnes augšupielādēšana nav iespējota."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Tagad jums nepieciešams iespējot JSON datnes."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Iespējot"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formas veiksmīgi importētas no %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Neizdevās izveidot JSON dokumenta tipu"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "JSON dokumenta tips nav atrasts"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Neizdevās atjaunot JSON dokumenta tipu"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formas bez kategorijas"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Izmainīt virsrakstu"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Virsraksts ir nepieciešams"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Nepieciešams"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Sadaļa ir nepieciešama"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Tekoša aktīva nodaļa"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Noklusēta pieprasītāja nodaļa"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Pirmā dinamiska pieteicēja nodaļa (alfabētiski)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Pēdēja dinamiska pieteicēja nodaļa (alfabētiski)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Formas nodaļa"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Noklusēta apstiprinātāju nodaļa"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Noteikta nodaļa"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Noklusēta lietotāja tipa atbildes nodaļa"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "No GLPI objekta > Nodaļas tipa jautājuma atbilde"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Lietotāja jautājuma tips"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Nodaļas jautājuma tips"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Pieprasījuma kategorijas"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Incidentu kategorijas"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Vienlīdzīgs ar jautājuma atbildi"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Pieteikumu virsraksts"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Pievienot apstiprināšanas ziņojumu kā pirmo pieteikuma sekojumu"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Salinkot ar citu pieteikumu"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Cits galamērķis šai formai"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Eksistējošs pieteikums"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Nederīgs salinkots tips"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Nederīgs salinkotas vienības tips"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Salinkota vienība neeksistē"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Neizdevis salinkot ar vienību"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Jūsu formu akceptēja apstiprinātājs"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Tagi no jautājumiem"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Noteiktie tagi"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Tagi no jautājumiem un noteiktiem tagiem"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Tagi no jautājumiem vai noteiktiem tagiem"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "vienlīdzīgs ar jautājuma atbildi"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "saskaitīts no pieteikuma izveidošanas datuma"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "saskaitīts no atbildes uz jautājumu"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Steidzamība no veidnes vai Vidēja"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Norādīt steidzamību"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Kategorija no veidnes vai bez kategorijas"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Norādīt kategoriju"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Vieta no veidnes vai nenorādīta"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Noteikta vieta"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Steidzamība"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Pieteikumu tagi"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Tagi"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Atrašanās vietas"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "Apraksts nevar būt tukšs!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Atcelt"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Forma izveidota"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Jūsu pieprasījums saglabāts"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Sveicināti,\\nJūsu pieprasījums no GLPI veiksmīgi saglabāts ar numuru "
+"##formcreator.request_id## un nodots helpdesk komandai.\\nJūs varat sekot "
+"līdzi sekojošā vietnē:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Jūsu formu noraidījis apstiprinātājs"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Sveicināti,\\nJūsu formu noraidīta apstiprinātājs ar sekojošo "
+"iemeslu:\\n##formcreator.validation_comment##\\n\\nJūs varat veikt izmaiņas "
+"un atkartoti iesniegt formu sekojošā "
+"vietnē:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Sveicināti,\\nInformējam, jūsu formu akceptēja apstiprinātājs.\\nJūsu "
+"pieteikums drīz tiks izskatīts."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Jūsu formu izdzēsa administrators"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Sveicināti,\\nInformējam, jūsu pieprasījums netiks izskatīts un tika "
+"izdzēsts."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator - Sinhronizēt problēmas ar servisa katalogu"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Dublikāts"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Vai jūs tiešām gribat izdzēst šo jautājumu?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Vai jūs tiešām gribat izdzēst šo sadaļu?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Radās kļūda veicot formas vaicājumu"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Parādīt tukšo"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atribūts"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Vērtības"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Parādīt pieteikuma kategorijas"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Tiešsaiste no sākumlapas"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Noklusēta forma servisu katalogā"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Pievienot sadaļu"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Pievienot jautājumu"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Pilna forma"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Nav nosūtītas formas"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Visas manas formas (pieteicējs)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Visas manas formas (Apstiprinātājs)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Maks"
diff --git a/locales/nb_NO.po b/locales/nb_NO.po
new file mode 100644
index 000000000..09bfe68fb
--- /dev/null
+++ b/locales/nb_NO.po
@@ -0,0 +1,2687 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# jostein berge , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: jostein berge , 2022\n"
+"Language-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/teclib/teams/28042/nb_NO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: nb_NO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Ingen grense"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Tjenestekatalog"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Skjema Lager"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Skjemaliste"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Vennligst, beskriv ditt behov"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Et påkrevd felt innholder ingen verdi"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filter"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Felt verdi er påkrevd:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Medium"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Vedlagt dokument"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Alltid vist"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Skjult dersom ikke"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Fremvist dersom ikke"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Kommentar"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Til godkjenning"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Lukket"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Kunnskapsdatabase kategori"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Skjema har blitt lagret"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Et skjema trenger godkjenning"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Skjema er avist"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Skjema er akseptert"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Skjema er slettet"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Skjema navn"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Hele skjema svar"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Godkjennings lenke"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Skjema #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Godkjenner"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Avist kommentar"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Forespørsel #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Skjema godkjenner"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Bestemt person"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Person ifra spørsmålet"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Bestemt gruppe"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Gruppe ifra spørsmålet"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Bestemt leverandør"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Leverandør ifra spørsmålet"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Skriv ut dette skjema"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Skjema akseptert av godkjenner."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Skjema lagring vellykket."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Avise"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aksepter"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Du er ikke godkjenner for disse svarene"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Skjemadata"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Be om assistanse"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Slett"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Ingen"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Velg en godkjenner"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPi's helpdesk"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Tjenestekatalog enkel"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Tjenestekatalog utvidet"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesk"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Helpdesk modus"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Offentlig tilgang"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Privat tilgang"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Begrenset tilgang"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importer skjema"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Navnet kan ikke være tomt!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplikat"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Skjema duplisert: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Skjema overført: 1%s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Skjema import vellykket ifra 1%s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Feilet med å opprette JSON dokument type"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "JSON dokument type ikke funnet"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Feil med oppdatering av JSON dokument type"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Skjema uten kategori"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Endre tittel"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Tittel er påkrevd"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Påkrevd"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Del er påkrevd"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Skjema enhet"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Standard enhet for godkjenner "
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Bestemt enhet"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Bruker type spørsmål"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Hendlese kategorier"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Sakstittel"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Lenke til en annen sak"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "En annen destinasjon for dette skjema"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "En eksisterende sak"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Ugyldig lenke type"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Ditt skjema har blitt akseptert av godkjenner"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Bestemt viktighet"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Bestemt kategori"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Bestemt lokasjon"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Viktighet"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Lokasjon"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Kanseller"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Et skjema har blitt opprettet"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Din forespørsel har blitt lagret"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hei,\\nDin henvendelse til GLPI har blitt opprettet med saksnummer "
+"##formcreator.request_id## og oversent til helpdesk.\\nDu kan se dine svar "
+"ved å klikke lenken:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Skjema ditt har blitt avist av godkjenner"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Skjema ditt har blitt slettet av en administrator"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplikat"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Vis tomme"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Attributt"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Verdier"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Vis saks kategorier"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Legg til del"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Legg til et spørsmål"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Hele skjema"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Ingen skjema publisert enda"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Alle mine skjema (innmelder)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Alle mine skjema (godkjenner)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr ""
+
+#: entrée standard:53
+msgid "Max"
+msgstr ""
diff --git a/locales/nl_BE.po b/locales/nl_BE.po
new file mode 100644
index 000000000..02f31b097
--- /dev/null
+++ b/locales/nl_BE.po
@@ -0,0 +1,2694 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Thierry Bugier , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Thierry Bugier , 2022\n"
+"Language-Team: Dutch (Belgium) (https://app.transifex.com/teclib/teams/28042/nl_BE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: nl_BE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Geen limit"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Service Catalogus"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Formcreator"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Formulieren lijst"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Het formulier is succesvol bewaard"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Vul hier je zoektermen in"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Een verplicht veld is leeg:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "The reguliere expressie is invalide"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filteren"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Veldgegevens zijn verplicht:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Gemiddeld"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Bijgevoegde document"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Reguliere expressie"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Range"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Additionele validatie"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Altijd zien"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Verborgen tenzij"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Laten zien behalve als"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Update problemen data van tickets en formulier antwoorden"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Commentaar"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Om te valideren"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Gesloten"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Kennisdatabank categorie"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Het formulier is bewaard"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Een formulier heeft validatie nodig"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Het formulier is geweigerd"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Het formulier is geaccepteerd"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Het formulier is verwijderd"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Formulier naam"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Volledig formulier antwoorden"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Validatie link"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulier #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validatiegever"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Geweigerd commentaar"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Aanvraag #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Formulier validatiegever"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Specifiek persoon"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Persoon van vraag"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Specifieke groep"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Groep van deze vraag"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Specifieke leverancier"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Leverancier van deze vraag"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Actors van deze vraag"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Dit formulier printen"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulier geaccepteerd door validator."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulier succesvol bewaard."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Verplicht als het geweigerd wordt"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Geweigerd"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Accepteren"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Geweigerd. Commentaar is verplicht!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Jij bent niet de validatie gever van deze antwoorden"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Formulier data"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Kan het doel niet genereren"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Assistentie"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Mijn verzoeken tot assistentie"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consult feeds"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Verwijder"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Geen"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Kies een validator"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPI's helpdesk"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Service catalogus versimpeld"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Service catalogus uitgebreid"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Sorteer op populariteit"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Sorteer op alfabet"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesk"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Helpdesk modus"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Publieke toegang"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Private toegang"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Beperkte toegang"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importeer formulieren"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "De naam kan niet leeg zijn"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Dupliceren"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulier gedupliceerd: 1%s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulier verplaatst: 1%s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formulieren succesvol geïmporteerd van 1%s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Het is niet gelukt om een JSON document type te maken"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "JSON document type is niet gevonden"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Het is niet gelukt om het JSON document type te updaten"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formulieren zonder categorie"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Verander titel"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Titel is verplicht"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Verplicht"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Gedeelte is verplicht"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Huidige actieve entiteit"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Aanvragers standaard entiteit "
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Eerste dynamische gebruikers entiteit (alfabet)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Laatste dynamische gebruikers entiteit (alfabet)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Formulier entiteit"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Standaard entiteit van validatiegever"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Specifieke entiteit"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Standaard entiteit van een gebruiker type antwoord"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "Van een GLPI object -> Entiteit type vraag"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Gebruikers type vraag"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Entiteit type vraag"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Aanvraag categorieën "
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Incident categorieën "
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Gelijk aan antwoord op deze vraag"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Ticket titel"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Voeg validatie bericht toe als eerste opvolging"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Link aan een ander ticket"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Een ander doel van dit formulier"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Een bestaand ticket"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Invalide link type"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Invalide gelinkt item type. "
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Gelinkt item bestaat niet"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Gefaald om item te linken"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Je formulier is geaccepteerd door de validator"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Tags van vragen"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Specifieke tags"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Tags van vragen en specifieke tags"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Tags van vragen of specifieke tags"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "Gelijk aan antwoord op deze vraag"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "Uitgerekend vanaf datum aanmaak ticket"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "Uitgerekend vanaf antwoord op deze vraag"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgentie van template of gemiddeld"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Specifieke urgentie"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categorie van template of geen"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Specifieke categorie"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Locatie van template of geen"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Specifieke locatie"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgentie"
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Ticket tags"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Tags"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Locatie"
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "De omschrijving kan niet leeg zijn"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Een formulier is gemaakt"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Je verzoek is bewaard"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hallo, je aanvraag van GLPI is succesvol bewaard met nummer "
+"##formcreator.request_id## en aan de helpdesk toegekend.\\nJe kunt hier je "
+"ticket volgen:\\n##formcreator.validation_link## "
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Je formulier is geweigerd door de validator"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Hallo,\\nHet spijt ons om je te moeten informeren dat je formulier geweigerd is door de validatiegever. Met deze reden:\n"
+"\\n##formcreator.validation_comment##\\n\\nJe kunt nog steeds het formulieren wijzigen en opnieuw invoeren met deze link:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Hallo,\\nWe willen je laten weten dat je formulier geaccepteerd is door de "
+"validatiegever.\\nJe aanvraag zal binnenkort uitgevoerd worden."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Je formulier is verwijderd door de administrator"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Hallo,\\nHet spijt ons om je te moeten informeren dat je aanvraag niet in "
+"behandeling genomen zal worden, omdat een administrator je aanvraag heeft "
+"verwijderd. "
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator: Sync service catalogus problemen"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Dupliceren"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Weet je zeker dat je deze vraag wilt verwijderen?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Weet je zeker dat je dit gedeelte wilt verwijderen?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Er is een fout opgetreden terwijl we de formulieren opvroegen"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Laat leeg zien"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Attribuut"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Waardes"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Laat ticket categorieën zien"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Meteen toegang op homepage"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Standaard formulier in service catalogus"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Voeg een gedeelte toe"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Voeg een vraag toe"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Volledig formulier"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Geen formulieren gepost"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Al mijn formulieren (aanvrager)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Al mijn formulieren (validatie)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/nl_NL.mo b/locales/nl_NL.mo
index f4d83c234..a0d317ef1 100644
Binary files a/locales/nl_NL.mo and b/locales/nl_NL.mo differ
diff --git a/locales/nl_NL.po b/locales/nl_NL.po
index 1c358b58b..b8711af7b 100644
--- a/locales/nl_NL.po
+++ b/locales/nl_NL.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-30 14:13+0200\n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
"PO-Revision-Date: 2022-06-15 12:10+0000\n"
"Last-Translator: Glenn Franssen , 2022\n"
"Language-Team: Dutch (Netherlands) (https://app.transifex.com/teclib/teams/28042/nl_NL/)\n"
@@ -179,16 +179,15 @@ msgid "Textarea"
msgstr "Tekstveld"
#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
-#: inc/field/ldapselectfield.class.php:115 inc/field/textfield.class.php:126
+#: inc/field/ldapselectfield.class.php:115
#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
#: inc/field/requesttypefield.class.php:161
msgid "A required field is empty:"
msgstr "Een verplicht veld is leeg:"
-#: inc/field/textareafield.class.php:267 inc/field/textfield.class.php:179
-#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:194
-#: inc/conditionnabletrait.class.php:70
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
msgid "The regular expression is invalid"
msgstr "The reguliere expressie is invalide"
@@ -250,45 +249,12 @@ msgstr "LDAP map niet gedefinieerd!"
msgid "LDAP directory not found!"
msgstr "LDAP map niet gevonden"
-#: inc/field/textfield.class.php:147 inc/field/integerfield.class.php:71
-#: inc/field/floatfield.class.php:156
-#, php-format
-msgid "Specific format does not match: %s"
-msgstr "Een specifiek formaat komt niet overeen: %s"
-
-#: inc/field/textfield.class.php:156
-#, php-format
-msgid "The text is too short (minimum %d characters): %s"
-msgstr "De tekst is te kort (er zijn minimaal %d karakters vereist): %s"
-
-#: inc/field/textfield.class.php:161
-#, php-format
-msgid "The text is too long (maximum %d characters): %s"
-msgstr "De tekst is te lang (er zijn maximaal %d karakters toegestaan): %s"
-
-#: inc/field/textfield.class.php:169
-msgid "Text"
-msgstr "Tekst"
-
-#: inc/field/textfield.class.php:218 inc/field/floatfield.class.php:235
-#: inc/questionregex.class.php:62 entrée standard:42
-msgid "Regular expression"
-msgstr "Reguliere expressie"
-
-#: inc/field/textfield.class.php:223 inc/field/floatfield.class.php:240
-msgid "Range"
-msgstr "Bereik"
-
-#: inc/field/textfield.class.php:229 inc/field/floatfield.class.php:246
-msgid "Additional validation"
-msgstr "Aanvullende validatie"
-
#: inc/field/radiosfield.class.php:108
msgid "Radios"
msgstr "Selectieknoppen"
-#: inc/field/radiosfield.class.php:114 inc/field/glpiselectfield.class.php:112
-#: inc/field/fieldsfield.class.php:513 inc/field/checkboxesfield.class.php:245
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
msgid "The field value is required:"
msgstr "Veldgegevens zijn verplicht:"
@@ -305,6 +271,11 @@ msgstr "Een vereist veld is leeg: %s"
msgid "This is not an integer: %s"
msgstr "Dit is geen cijfer: %s"
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Een specifiek formaat komt niet overeen: %s"
+
#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
#, php-format
msgid "The following number must be greater than %d: %s"
@@ -368,12 +339,6 @@ msgid_plural "Tags"
msgstr[0] ""
msgstr[1] ""
-#: inc/field/glpiselectfield.class.php:97 entrée standard:38
-msgid "GLPI object"
-msgid_plural "GLPI objects"
-msgstr[0] ""
-msgstr[1] ""
-
#: inc/field/hostnamefield.class.php:116
msgid "Hostname"
msgid_plural "Hostnames"
@@ -509,6 +474,19 @@ msgstr "Dit is geen cijfer: %s "
msgid "Decimal number"
msgstr ""
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Reguliere expressie"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Bereik"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Aanvullende validatie"
+
#: inc/field/datefield.class.php:137
msgid "Date"
msgstr "Datum"
@@ -564,7 +542,7 @@ msgstr "Weergeven tenzij"
#: inc/form.class.php:1908 inc/targetchange.class.php:304
#: inc/questionfilter.class.php:222 inc/section.class.php:381
#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
-#: inc/questionparameter/range.class.php:202 inc/questionregex.class.php:188
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
#: inc/targetticket.class.php:1461
#, php-format
@@ -577,7 +555,7 @@ msgstr "Het toevoegen of bijwerken van %1$s %2$s is gefaald"
#: inc/form.class.php:1569 inc/targetchange.class.php:149
#: inc/questionfilter.class.php:154 inc/section.class.php:406
#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
-#: inc/questionparameter/range.class.php:137 inc/questionregex.class.php:120
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
#: inc/targetticket.class.php:1500
#, php-format
@@ -758,38 +736,38 @@ msgstr ""
msgid "Ticket technician"
msgstr ""
-#: inc/issue.class.php:1465
+#: inc/issue.class.php:1469
#, php-format
msgid "%1$s %2$s"
msgstr "%1$s %2$s"
-#: inc/issue.class.php:1723 inc/filter/itilcategoryfilter.class.php:56
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
#: hook.php:766
msgid "All"
msgstr "Alles"
-#: inc/issue.class.php:1729 hook.php:767
+#: inc/issue.class.php:1733 hook.php:767
msgid "New"
msgstr "Nieuw"
-#: inc/issue.class.php:1735 hook.php:768
+#: inc/issue.class.php:1739 hook.php:768
msgid "Assigned"
msgstr "Toegewezen"
-#: inc/issue.class.php:1741 inc/formanswer.class.php:78
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
#: inc/form_validator.class.php:70 hook.php:769
msgid "Waiting"
msgstr "Wachtend"
-#: inc/issue.class.php:1747 hook.php:770
+#: inc/issue.class.php:1751 hook.php:770
msgid "To validate"
msgstr "Om te valideren"
-#: inc/issue.class.php:1753 hook.php:771
+#: inc/issue.class.php:1757 hook.php:771
msgid "Solved"
msgstr "Opgelost"
-#: inc/issue.class.php:1759 hook.php:772
+#: inc/issue.class.php:1763 hook.php:772
msgid "Closed"
msgstr "Gesloten"
@@ -1078,15 +1056,15 @@ msgstr ""
msgid "Cannot generate targets!"
msgstr "Kan het doel niet genereren"
-#: inc/formanswer.class.php:1512
+#: inc/formanswer.class.php:1511
msgid "No captcha set."
msgstr ""
-#: inc/formanswer.class.php:1518
+#: inc/formanswer.class.php:1517
msgid "You failed the captcha test."
msgstr ""
-#: inc/formanswer.class.php:1541
+#: inc/formanswer.class.php:1540
msgid "You must select validator!"
msgstr "U moet een validatie kiezen!"
@@ -2584,6 +2562,12 @@ msgstr "Laat ticket categorieën zien"
msgid "Selectable root"
msgstr ""
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+
#: entrée standard:63
msgid "Direct access on homepage"
msgstr "Meteen toegang op homepage"
diff --git a/locales/pl_PL.mo b/locales/pl_PL.mo
index 8e9975e20..95ccbe2ad 100644
Binary files a/locales/pl_PL.mo and b/locales/pl_PL.mo differ
diff --git a/locales/pl_PL.po b/locales/pl_PL.po
index eb2d46634..78850a668 100644
--- a/locales/pl_PL.po
+++ b/locales/pl_PL.po
@@ -2,7 +2,7 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
-#
+#
# Translators:
# Norbert Błaszczyk, 2022
# Thierry Bugier , 2022
@@ -11,13 +11,13 @@
# Agnieszka Pacyga , 2022
# Ryszard Jeziorski , 2022
# Daniel Wróblewski , 2023
-#
+#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-30 14:13+0200\n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
"PO-Revision-Date: 2022-06-15 12:10+0000\n"
"Last-Translator: Daniel Wróblewski , 2023\n"
"Language-Team: Polish (Poland) (https://app.transifex.com/teclib/teams/28042/pl_PL/)\n"
@@ -186,16 +186,15 @@ msgid "Textarea"
msgstr "Obszar tekstu"
#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
-#: inc/field/ldapselectfield.class.php:115 inc/field/textfield.class.php:126
+#: inc/field/ldapselectfield.class.php:115
#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
#: inc/field/requesttypefield.class.php:161
msgid "A required field is empty:"
msgstr "Wymagane pole jest puste:"
-#: inc/field/textareafield.class.php:267 inc/field/textfield.class.php:179
-#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:194
-#: inc/conditionnabletrait.class.php:70
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
msgid "The regular expression is invalid"
msgstr "Wyrażenie regularne jest nieprawidłowe"
@@ -259,45 +258,12 @@ msgstr "Katalog LDAP nie został zdefiniowany"
msgid "LDAP directory not found!"
msgstr "Katalog LDAP nie znaleziony"
-#: inc/field/textfield.class.php:147 inc/field/integerfield.class.php:71
-#: inc/field/floatfield.class.php:156
-#, php-format
-msgid "Specific format does not match: %s"
-msgstr "Podany format nie pasuje: %s"
-
-#: inc/field/textfield.class.php:156
-#, php-format
-msgid "The text is too short (minimum %d characters): %s"
-msgstr "Tekst jest zbyt krótki (minimalnie %d znaków): %s"
-
-#: inc/field/textfield.class.php:161
-#, php-format
-msgid "The text is too long (maximum %d characters): %s"
-msgstr "Tekst jest zbyt długi (maksymalnie %d znaków): %s"
-
-#: inc/field/textfield.class.php:169
-msgid "Text"
-msgstr "Tekst"
-
-#: inc/field/textfield.class.php:218 inc/field/floatfield.class.php:235
-#: inc/questionregex.class.php:62 entrée standard:42
-msgid "Regular expression"
-msgstr "Wyrażenie regularne"
-
-#: inc/field/textfield.class.php:223 inc/field/floatfield.class.php:240
-msgid "Range"
-msgstr "Zakres"
-
-#: inc/field/textfield.class.php:229 inc/field/floatfield.class.php:246
-msgid "Additional validation"
-msgstr "Dodatkowa weryfikacja"
-
#: inc/field/radiosfield.class.php:108
msgid "Radios"
msgstr "Pola opcji"
-#: inc/field/radiosfield.class.php:114 inc/field/glpiselectfield.class.php:112
-#: inc/field/fieldsfield.class.php:513 inc/field/checkboxesfield.class.php:245
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
msgid "The field value is required:"
msgstr "Wymagana wartość w polu:"
@@ -314,6 +280,11 @@ msgstr "Wymagane pole jest puste: %s"
msgid "This is not an integer: %s"
msgstr "To nie jest liczba całkowita: %s"
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Podany format nie pasuje: %s"
+
#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
#, php-format
msgid "The following number must be greater than %d: %s"
@@ -381,14 +352,6 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: inc/field/glpiselectfield.class.php:97 entrée standard:38
-msgid "GLPI object"
-msgid_plural "GLPI objects"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
#: inc/field/hostnamefield.class.php:116
msgid "Hostname"
msgid_plural "Hostnames"
@@ -530,6 +493,19 @@ msgstr "To nie jest liczba: %s"
msgid "Decimal number"
msgstr ""
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Wyrażenie regularne"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Zakres"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Dodatkowa weryfikacja"
+
#: inc/field/datefield.class.php:137
msgid "Date"
msgstr "Data"
@@ -589,7 +565,7 @@ msgstr "Widoczny jeżeli"
#: inc/form.class.php:1908 inc/targetchange.class.php:304
#: inc/questionfilter.class.php:222 inc/section.class.php:381
#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
-#: inc/questionparameter/range.class.php:202 inc/questionregex.class.php:188
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
#: inc/targetticket.class.php:1461
#, php-format
@@ -602,7 +578,7 @@ msgstr "Nie udało się dodać lub zaktualizować %1$s %2$s"
#: inc/form.class.php:1569 inc/targetchange.class.php:149
#: inc/questionfilter.class.php:154 inc/section.class.php:406
#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
-#: inc/questionparameter/range.class.php:137 inc/questionregex.class.php:120
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
#: inc/targetticket.class.php:1500
#, php-format
@@ -791,38 +767,38 @@ msgstr ""
msgid "Ticket technician"
msgstr ""
-#: inc/issue.class.php:1465
+#: inc/issue.class.php:1469
#, php-format
msgid "%1$s %2$s"
msgstr "%1$s%2$s"
-#: inc/issue.class.php:1723 inc/filter/itilcategoryfilter.class.php:56
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
#: hook.php:766
msgid "All"
msgstr "Wszystkie"
-#: inc/issue.class.php:1729 hook.php:767
+#: inc/issue.class.php:1733 hook.php:767
msgid "New"
msgstr "Nowy"
-#: inc/issue.class.php:1735 hook.php:768
+#: inc/issue.class.php:1739 hook.php:768
msgid "Assigned"
msgstr "Przypisany"
-#: inc/issue.class.php:1741 inc/formanswer.class.php:78
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
#: inc/form_validator.class.php:70 hook.php:769
msgid "Waiting"
msgstr "Oczekiwanie"
-#: inc/issue.class.php:1747 hook.php:770
+#: inc/issue.class.php:1751 hook.php:770
msgid "To validate"
msgstr "Do zatwierdzenia"
-#: inc/issue.class.php:1753 hook.php:771
+#: inc/issue.class.php:1757 hook.php:771
msgid "Solved"
msgstr "Rozwiązany"
-#: inc/issue.class.php:1759 hook.php:772
+#: inc/issue.class.php:1763 hook.php:772
msgid "Closed"
msgstr "Zamknięte"
@@ -1121,15 +1097,15 @@ msgstr ""
msgid "Cannot generate targets!"
msgstr "Nie można wygenerowć obiektów docelowych!"
-#: inc/formanswer.class.php:1512
+#: inc/formanswer.class.php:1511
msgid "No captcha set."
msgstr ""
-#: inc/formanswer.class.php:1518
+#: inc/formanswer.class.php:1517
msgid "You failed the captcha test."
msgstr ""
-#: inc/formanswer.class.php:1541
+#: inc/formanswer.class.php:1540
msgid "You must select validator!"
msgstr "Musisz wybrać osobę zatwierdzającą"
@@ -2674,6 +2650,14 @@ msgstr "Pokaż kategorię zgłoszeń"
msgid "Selectable root"
msgstr ""
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
#: entrée standard:63
msgid "Direct access on homepage"
msgstr "Dostęp ze stony domowej"
@@ -2803,7 +2787,7 @@ msgstr "Moje %1$d ostatnie formularze (zatwierdzający)"
#: entrée standard:63
msgid "All my forms (validator)"
-msgstr "Moje wszystkie formularze (zatwierdzający)"
+msgstr "Moje wszystkie formilarze (zatwierdzający)"
#: entrée standard:42
msgid "Min"
diff --git a/locales/pt_PT.mo b/locales/pt_PT.mo
index 05965bcd5..922d10262 100644
Binary files a/locales/pt_PT.mo and b/locales/pt_PT.mo differ
diff --git a/locales/pt_PT.po b/locales/pt_PT.po
new file mode 100644
index 000000000..6cea2eba9
--- /dev/null
+++ b/locales/pt_PT.po
@@ -0,0 +1,2747 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Pedro Rocha , 2022
+# Rui Melo , 2022
+# Pedro B., 2023
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Pedro B., 2023\n"
+"Language-Team: Portuguese (Portugal) (https://app.transifex.com/teclib/teams/28042/pt_PT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_PT\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Pedido incorreto"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Questão não encontrada"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "Não tem privilégios para esta ação"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Não foi encontrada a questão fonte"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "Não foi possível mover algumas questões"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "Não foi possível adicionar a secção"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Árvore raiz"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Escolhidos"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Limitar profundidade de árvore "
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Sem limite"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Não foi encontrada a secção fonte"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "Não foi possível apagar a secção"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr "Não foi possível adicionar a questão"
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "Não foi possível mover a secção"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr "Falhou ao adicionar o ator"
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr "Falhou ao apagar o ator"
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "Não foi possível duplicar a secção"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "Não foi possível atualizar a secção"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Catálogo de serviços"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr "Item não encontrado"
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr "Não tem acesso a atualizar este item."
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr "Pedido incorreto ao apagar um ator."
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Criador de formulários"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr "%1$s = %2$s"
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista de formulários"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "O formulário foi gravado com sucesso!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr "%1$s elimina a reserva para o item %2$s"
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr "%1$s adiciona a reserva %2$s para o item %3$s"
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] "Categoria"
+msgstr[1] "Categorias"
+msgstr[2] "Categorias"
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr "Ver tudo"
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Por favor, descreva sua necessidade aqui"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Área de texto"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Um campo obrigatório está disponível:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "A expressão regular é inválida"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr "Utilizador e formulário"
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] "Lista de seleção"
+msgstr[1] "Listas de seleção"
+msgstr[2] "Listas de seleção"
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Valor inválido para"
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr "O campo tipo de item é obrigatório\\: %s"
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Tipo de lista suspensa inválida: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtro"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr "Restrição de entidade"
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+"Para respeitar o sistema de entidades GLPI, deve-se selecionar "
+"\"Formulário\". Outras configurações quebrarão as restrições da entidade"
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Selecionar LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "Diretório LDAP não definido!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "Diretório LDAP não encontrado!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Rádios"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "O valor do campo é necessário:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Um campo obrigatório está vazio: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Isto não é um número inteiro: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Formato específico não corresponde: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "O número deve ser maior que %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "O número deve ser menor que %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Inteiro"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr "Indefinido"
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] "Endereço IP"
+msgstr[1] "Endereços IP"
+msgstr[2] "Endereços IP"
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr "Urgência"
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr "Muito alto"
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr "Alto"
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr "Médio"
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr "Baixo"
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr "Muito baixo"
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr "Aviso\\: O plug-in da tag está desabilitado ou ausente"
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] "Etiqueta"
+msgstr[1] "Etiquetas"
+msgstr[2] "Etiquetas"
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] "Nome de host"
+msgstr[1] "Nomes de hosts"
+msgstr[2] "Nomes de hosts"
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Horário"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Este não é um e-mail válido: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] "E-mail"
+msgstr[1] "E-mails"
+msgstr[2] "E-mails"
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Selecione"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Data & Hora"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] "Ator"
+msgstr[1] "Atores"
+msgstr[2] "Atores"
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Valor inválido: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Utilizador não encontrado ou endereço de e-mail inválido: %s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Nenhum documento anexado"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Documento anexado"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr "Ficheiro"
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Multiselect"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr "Aviso\\: O plug-in da etiqueta está desabilitado ou ausente"
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr "Bloquear"
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr "Campo"
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr "mostrar"
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr "Tipo de campo '%1$s' ainda não implementado!"
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr "Alguns campos numéricos contêm valores não numéricos"
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr "Alguns campos da URL contêm links inválidos"
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr "Campos adicionais"
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Caixas"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr "A pergunta a seguir precisa de pelo menos %d resposta(s): %s"
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr "A questão a seguir não aceita mais de %drespostas: %s"
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr "Intervalo mín"
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr "Intervalo máx"
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Tipo de pedido"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Este não é um número: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expressão regular"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Gama"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validação adicional"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr "Data"
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Descrição"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Um campo de descrição deve ter uma descrição:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] "Campo oculto"
+msgstr[1] "Campos ocultos"
+msgstr[2] "Campos ocultos"
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] "Condição"
+msgstr[1] "Condições"
+msgstr[2] "Condições"
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "é visível"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "não é visível"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "correspondências de expressão regular"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Sempre exibido"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Escondido a menos que"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Exibido a menos que"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "Falha ao adicionar ou atualiza o %1$s %2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "Não é possível exportar um objeto vazio: %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Condições"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Importando"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr "Importação em progresso"
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] "Issue"
+msgstr[1] "Issues"
+msgstr[2] "Issues"
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Atualizar dados de emissão de tickets e respostas de formulário"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Aprovador do formulário"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentário"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Aprovador de tickets"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Grupo de aprovação do formulário"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Para validar"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Encerrado"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Categoria de base de conhecimento"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] "Formulário"
+msgstr[1] "Formulários"
+msgstr[2] "Formulários"
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "O formulário foi guardado"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Um formulário precisa ser validado"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "O formulário é recusado"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "O formulário é aceite"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "O formulário é apagado"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nome do formulário"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Respostas completas do formulário"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Ligação de validação"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formulário #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validador"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentário recusado"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Pedido #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Autor do formulário"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validador do formulário"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Pessoa específica"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Pessoa da questão"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Grupo específico"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupo da questão"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Fornecedor específico"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Fornecedor da questão"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Atores da questão"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Recusado"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Imprimir este formulário"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Formulário aceite pelo validador."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Formulário guardado com sucesso."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Necessário se recusado"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Recusar"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Aceitar"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "É exigido comentário de recusa!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Você não é o validador dessas respostas"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Dados do formulário"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Não é possível gerar alvos!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "Deves selecionar o validador!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Procurar assistência"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Os meus pedidos de assistência"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Consultar feeds"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Excluir"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Nenhum"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Escolher um validador"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Atores"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Helpdesk do GLPi"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Catálogo de serviços simplificado"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Catálogo de serviços estendido"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Classificação de popularidade"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Classificação alfabética"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Associado com Formulários"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesk"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Modo helpdesk"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Acesso público"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Acesso privado"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Acesso restrito"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Importar formulários"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Página inicial"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acesso"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "O nome não pode ser vazio!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "A questão %s não é compatível com formulários públicos"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Formulário duplicado: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Formulário transferido: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Voltar"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Não é permitido o upload de ficheiros JSON."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Você pode agora permitir ficheiros JSON."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Criar"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Por favor, contate o administrador do GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Voltar"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Não está habilitado a fazer upload de ficheiros JSON."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Pode agora habilitar ficheiros JSON."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Habilitado"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "Não foi possível importar formulários. O ficheiro está vazio"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Não foi possível importar formulários. O ficheiro está corrompido."
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+"Não foi possível importar formulários. O ficheiro foi gerado com outra "
+"versão"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Falha na importação %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Formulários importados com êxito de %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "O formulário %1$s já existe e é uma entidade não alterável."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "A entidade %1$s é necessária para o formulário %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Falha ao criar o tipo de documento JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "Tipo de documento JSON não encontrado"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Falha ao atualizar o tipo de documento JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Formulários sem categoria"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Adicionar"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Tipo de destino não suportado."
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Mudar título"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "O título é obrigatório"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Necessário"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "A seção é exigida"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "O tipo de campo %1$s não está disponível para a questão %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Este tipo de questão não é compatível com formulários públicos."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Parâmetro "
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Campo nome"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Entidade atual ativa"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Entidade padrão do utilizador requerente"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+"Primeira entidade dinâmica do utilizador requerente (em ordem alfabética)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+"Ultima entidade dinâmica do utilizador requerente (em ordem alfabética)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "A entidade do formulário"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Entidade padrão do validador"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Entidade específica"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Entidade padrão de uma resposta de questão de tipo de usuário"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "De um objeto GLPI > resposta de questão de tipo de entidade"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Um alvo deve ser associado a um formulário"
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Um alvo deve ser associado a um formulário existente."
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "É necessário um nome."
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Pergunta tipo de utilizador"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Pergunta de tipo de entidade"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Solicitar categorias"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Categorias de incidentes"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "Ativo específico"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Igual à resposta à questão"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Ultima resposta válida"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Título do ticket"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+"Adicionar mensagem de validação como primeiro acompanhamento do ticket"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Ligação para outro ticket"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Outro destino deste formulário"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Um ticket existente"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Tipo de ligação inválida"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Inválido tipo de item ligado"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Item vinculado não existe"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Falha ao ligar o item"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "O seu formulário foi aceite pelo validador"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Item "
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Tags de questões"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Etiquetas específicas"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Tags de questões e tags específicas"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Tags de questões ou tags específicas"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "equivale à resposta para a questão"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "calculado a partir da data de criação do ticket"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "calculado a partir da resposta à questão"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "ANS do modelo ou nenhum"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "ANS especifico"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "Acordo de Nível Operacional do modelo ou nenhum"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "Acordo de Nível Operacional especifico"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Urgência do modelo ou médio"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Urgência específica"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Categoria do modelo ou nenhum"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Categoria específica"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Localização do modelo ou nenhum"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Localização específica"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Questão (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Urgência "
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Etiquetas de tickets"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Localização "
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "A descrição não pode estar vazia!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Grupo do objeto"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Grupo técnico do objeto"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Um formulário foi criado"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Seu pedido foi gravado"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Olá,\\n O seu pedido de GLPI foi gravado com sucesso com o número "
+"##formcreator.request_id## e transmitido para a equipa de helpdesk. \\n Pode"
+" verificar as suas respostas no seguinte "
+"link:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "O seu formulário foi recusado pelo validador"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Oi,\\nLamentamos informá-lo que o seu formulário foi recusado pelo validador"
+" pela razão abaixo:\\n##formcreator.validation_comment##\\n\\nPoderá ainda "
+"modificá-lo e reenviá-lo clicando no link:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Ola,\\nTemos o prazer de informá-lo que o seu formulário foi aceite pelo "
+"validador.\\nO seu pedido será considerado em breve."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "O seu formulário foi excluído por um administrador"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Olá,\\nLamentamos informá-lo de que o seu pedido não pode ser considerado e "
+"foi excluído por um administrador."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator-problemas de catálogo de serviços de sincronização"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Cancelar o meu ticket"
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Tem certeza de que deseja excluir essa questão?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Tem a certeza de que pretende eliminar esta secção?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Ocorreu um erro ao consultar formulários"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Mostrar vazio"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atributo"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Valores"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Mostrar categorias de tickets"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] "Objeto do GLPI"
+msgstr[1] "Objetos GLPI"
+msgstr[2] "Objetos GLPI"
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Acesso direto à página inicial"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Formulário padrão no catálogo de serviços"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Adicionar secção"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Adicionar questão"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Formulário completo"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Nenhum formulário publicado"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Todos os meus formulários (requerente)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Todos os meus formulários (validador)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Mín"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Máx"
diff --git a/locales/ro_RO.mo b/locales/ro_RO.mo
index b2b7b3269..24abdd262 100644
Binary files a/locales/ro_RO.mo and b/locales/ro_RO.mo differ
diff --git a/locales/ro_RO.po b/locales/ro_RO.po
new file mode 100644
index 000000000..d10e4b93a
--- /dev/null
+++ b/locales/ro_RO.po
@@ -0,0 +1,2728 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Thierry Bugier , 2022
+# Doru DEACONU , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Doru DEACONU , 2022\n"
+"Language-Team: Romanian (Romania) (https://app.transifex.com/teclib/teams/28042/ro_RO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ro_RO\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr ""
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Creator de Formulare"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Listă Formular"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr ""
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Textarea"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Un câmp cerut este necompletat:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filtru"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "LDAP Select"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Butoane Radio"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Integer"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Select"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Multiselect"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Checkboxes"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Expresie regulată"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Rang"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Validare suplimentară"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr ""
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Comentariu"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Un formular necesită să fie validat"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Formularul este refuzat"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Formularul este acceptat"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Formularul este şters"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Nume Formular"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Raspunsuri formular complet"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Link validare"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Formular #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validator"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Comentariu refuzat"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validator formular"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Specific grup"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Furnizor specific"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Cerut dacă i refuzat"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Refuz"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Accept"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Comentariu refuzat este cerut"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Data Formular"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Şterge"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Alege un validator"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Public acces"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Privat acces"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Restricţionat acces"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Homepage"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Acces"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr ""
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplicheaza"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr ""
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr ""
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr ""
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Titlul este cerut"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Cerut"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Secţiunea este cerută"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Titlu Tichet"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Anulează"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplicheaza"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Arată gol"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Atribut"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Valori"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Adaugă o secţiune"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Adaugă o întrebare"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Formular complet"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr ""
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/ru_UA.mo b/locales/ru_UA.mo
new file mode 100644
index 000000000..217b92277
Binary files /dev/null and b/locales/ru_UA.mo differ
diff --git a/locales/ru_UA.po b/locales/ru_UA.po
new file mode 100644
index 000000000..e16f20445
--- /dev/null
+++ b/locales/ru_UA.po
@@ -0,0 +1,2766 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Language-Team: Russian (Ukraine) (https://app.transifex.com/teclib/teams/28042/ru_UA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: ru_UA\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr ""
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr ""
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr ""
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr ""
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr ""
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr ""
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr ""
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr ""
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr ""
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr ""
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr ""
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr ""
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr ""
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr ""
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr ""
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr ""
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr ""
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr ""
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr ""
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr ""
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr ""
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr ""
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr ""
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr ""
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr ""
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr ""
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr ""
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr ""
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr ""
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr ""
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr ""
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr ""
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr ""
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr ""
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr ""
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr ""
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr ""
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr ""
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr ""
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr ""
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr ""
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr ""
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr ""
+
+#: entrée standard:42
+msgid "Min"
+msgstr ""
+
+#: entrée standard:53
+msgid "Max"
+msgstr ""
diff --git a/locales/sr_RS.mo b/locales/sr_RS.mo
index 5a02770e7..235a90e69 100644
Binary files a/locales/sr_RS.mo and b/locales/sr_RS.mo differ
diff --git a/locales/sr_RS.po b/locales/sr_RS.po
new file mode 100644
index 000000000..ae64159bb
--- /dev/null
+++ b/locales/sr_RS.po
@@ -0,0 +1,2738 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Sinisa R , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Sinisa R , 2022\n"
+"Language-Team: Serbian (Serbia) (https://app.transifex.com/teclib/teams/28042/sr_RS/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: sr_RS\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Katalog servisa"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Kreiranje obrazaca"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Lista obrazaca"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Obrazac snimljen"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Molim, opišite ovdje Vašu potrebu"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Tekstaulna zona"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Obavezno polje je prazno:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Filter"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Izbor LDAP-a"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Radios"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Vrijednost polja je obavezna:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Integer"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Izbor"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Višestruki"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Polja za potvrdu"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Regularan izraz"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Opseg"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Dodatna potvrda"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Opis"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Polje opisa bi trebalo da ima opis:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Uvijek prikazano"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Skriveno sve dok"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Prikazano sve dok"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Komentar"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Na potvrdu "
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Zatvoreno"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Kategorija baze znanja"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Obrazac snimljen"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Obrazac potrebno odobriti"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Obrazac je odbijen"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Obrazac prihvaćen"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Obrazac obrisan"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Ime obrasca"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Svi odgovori u potpunosti"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Veza odobravanja"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Obrazac #"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Validator"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Obrazloženje odbijanja"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Zahtjev #"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Validator obrasca"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Određena osoba"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Osoba iz pitanja"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Određena grupa"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Grupa iz pitanja"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Dobavljač iz pitanja"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Učesnici iz pitanja"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr ""
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr ""
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Obrazac odobren od validatora."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Obrazac snimljen."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Obavezno ako je odbijen"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Odbiti"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Prihvatiti"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Komentar obavezan ako je odbijeno!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Vi niste validator za ove odgovore"
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Podaci na obrascu"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Ne mogu se generisati ciljevi!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Traži pomoć"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Moji zahtjevi za pomoć"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Konsultuj agregator "
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Obrisati"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Izaberi validatora"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Učesnici"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPI Helpdesk"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Pojednostavljeni katalog servisa"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Prošireni katalog servisa"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Sortiraj po popularnosti"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Sortiraj abecedno"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Helpdesk"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Helpdesk mod"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Javni pristup"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Privatni pristup"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Ograničeni pristup"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Uvezi obrasce!"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Početna strana"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Pristup"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Ime ne može biti prazno"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr ""
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Duplikat"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Dupli obrazac: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Obrazac proslijeđen: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr ""
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr ""
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr ""
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr ""
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr ""
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Obrasci uspješno uvezeni iz %s"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr ""
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr ""
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Obrasci bez kategorije"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Naslov je obavezan"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Obavezno"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Sekcija je obavezna"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr ""
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Trenutno aktivan entitet"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Podrazumijevani entitet podnosioca zahtjeva"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Prvi dinamički entitet podnosiova zahtjeva (abecedno)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Poslednji dinamički entitet podnosioca zahtjeva (abecedno)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Entitet obrasca"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Podrazumjevani entitet validatora"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Odreeđeni entitet"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Podrazumijevani entitet korisnikovih pitanja odgovora "
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "Od GLPI objekta > Vrsta pitanja odgovora entiteta"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Vrsta pitanja korisnik"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Vrsta pitanja entitet"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Jednako odgovoru na pitanje"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Naslov tiketa"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Dodaj poruku o potvrdi zahtjeva kao prvo praćenje tiketa"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr ""
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr ""
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Validator prihvatio obrazac"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr ""
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Tagovi od pitanja"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Određeni tagovi"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Tagovi od pitanja i određenih tagova"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Tagovi od pitanja ili određenih tagova"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "jednako odgovoru na pitanje"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "izračunato od datuma kreiranja tiketa"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "izračunato od odgovora na pitanje"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Hitnost od šablona ili Srednje"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Tiket tagovi"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Tagovi"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "Opis ne može biti prazan!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Otkaži"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Obrazac kreiran"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Vaš zahtjev snimljen"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Pozdrav,\\nVaš zahtjev je snimljen sa brojem ##formcreator.request_id## i "
+"proslijeđen helpdesku.\\nVaše odgovore možete vidjeti na sledećem "
+"linku:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Validator je odbio Vaš obrazac"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Pozdrav,\\nObavještamo vas da je validator odbio Vaš obrazac "
+"zbog:\\n##formcreator.validation_comment##\\n\\nJoš uvijek ga moćete "
+"izmijeniti i ponovo poslati na odobrenje preko "
+"linka:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Pozdrav,\\nObavještavamo vas da je validator prihvatio Vaš "
+"obrazac.\\nZahtjev će uskoro biti razmotren."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Administrator je obrisao obrazac"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Pozdrav,\\nMoramo Vas informisati da Vaš zahtjev ne možemo uzeti u "
+"razmatranje i da ga je administrator obrisao."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Duplikat"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Da li ste sigurni da želite da obrišete ovo pitanje?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Da li ste sigurni da želite da obrišete ovu sekciju?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Desila se greška prilikom učitavanja obrasca"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Prikaz praznih"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Pridjev"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Vrijednosti"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr " Direktan pristup na početnoj stranici"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Podrazumijevani obrazac u katalogu servisa"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Dodaj sekciju"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Dodaj pitanje"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Puni oblik"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Nijedan obrazac još nije objavljen"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Svi moji obrasci (podnosilac zahtjeva)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Svi moji obrasci (validator)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Min"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Max"
diff --git a/locales/uk_UA.mo b/locales/uk_UA.mo
index 49e913843..225962ad4 100644
Binary files a/locales/uk_UA.mo and b/locales/uk_UA.mo differ
diff --git a/locales/uk_UA.po b/locales/uk_UA.po
new file mode 100644
index 000000000..6fee0fd47
--- /dev/null
+++ b/locales/uk_UA.po
@@ -0,0 +1,2786 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# Thierry Bugier , 2022
+# Andriy Smilyanets , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: Andriy Smilyanets , 2022\n"
+"Language-Team: Ukrainian (Ukraine) (https://app.transifex.com/teclib/teams/28042/uk_UA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: uk_UA\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr "Невірний запит"
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr "Запитання не знайдено"
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr "Ви не маєте права на цю дію"
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr "Вихідне запитання не знайдено"
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr "Не вдалося перенести деякі запитання"
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr "Не вдалося додати розділ"
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr "Категорії заявок"
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr "Вибір"
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr "Обмеження висоти категорії заявки"
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr "Без обмежень"
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr "Розділ джерела не знайдено"
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr "Не вдалося видалити розділ"
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr "Не вдалося перемістити розділ"
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr "Не вдалося продублювати розділ"
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr "Не вдалось оновити розділ"
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "Каталог сервісів"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "Редактор Замовлень"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "Список Замовлення"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "Замовлення збережено успішно!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "Будь ласка, опишіть тут свою потребу"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr "Область тексту"
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr "Обов'язкове поле порожнє:"
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr "Регулярний вираз недійсний"
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr "Недійсне значення для "
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr "Недійсний тип випадаючого списку: %s"
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr "Фільтр"
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr "Виберіть LDAP"
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "Каталог LDAP не визначено!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr "Каталог LDAP не знайдено!"
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr "Радіо"
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr "Значення поля є обов'язковим:"
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr "Обов’язкове поле порожнє: %s"
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr "Це не ціле число: %s"
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr "Конкретний формат не відповідає: %s"
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr "Наступне число повинне перевищувати %d: %s"
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr "Наступне число має бути меншим за %d: %s"
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr "Ціле число"
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr "Час"
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr "Це не дійсний електронний лист: %s"
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr "Виберіть"
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr "Дата & час"
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr "Недійсне значення: %s"
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr "Користувача не знайдено або недійсна електронна адреса: %s"
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr "Прикріпленого документа немає"
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr "Доданий документ"
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr "Необхідний файл відсутній: %s"
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr "Багатовибір"
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "Прапорці"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr "Тип запиту"
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr "Це не число: %s"
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr "Регулярний вираз"
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr "Інтервал"
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr "Додаткова перевірка"
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr "Опис"
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr "Поле опису повинне містити опис:"
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr "Видимі"
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr "не видиме"
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr "збіги регулярних виразів"
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr "Завжди видимі"
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "Приховане доки"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr "Видимі доки"
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr "Не вдалося додати або оновити %1$s %2$s"
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr "Неможливо експортувати порожній об'єкт: %s"
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr "Умови"
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr "Імпортування"
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr "Оновіть дані про випуск із тікетів та формуйте відповіді"
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr "Затверджувач форми"
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr "Пояснення"
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr "Затверджувач тікетів"
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr "Група затверджувачів форм"
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr "Час для вирішення"
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr "Час для володіння"
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr "Очікування"
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr "Для схвалення"
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr "Закрито"
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr "Категорія бази знань"
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr "Значок"
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr "Колір значка"
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr "Колір фону"
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr "Замовлення збережено"
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr "Замовлення має бути перевірене контролером"
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr "Замовлення відхилено"
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr "Замовлення ухвалене"
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr "Замовлення видалено"
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr "Назва Замовлення"
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr "Повні відповіді Замовлення"
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr "Посилання контролю"
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr "Замовлення №"
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr "Контролер"
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr "Пояснення відхилення"
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr "Запит №"
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr "Учасник форми"
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr "Контролер Замовлення"
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr "Вказана персона"
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr "Персона з запитання"
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr "Вказана група"
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr "Група з запитання"
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr "Вказана група"
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr "Технічна група з об'єкта"
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr "Вказаний постачальник"
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr "Постачальник з запитання"
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr "Учасники з питання"
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "Відхилено"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr "Ухвалено"
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "Надрукувати цю форму"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr "Замовлення ухвалене контролером."
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr "Замовлення успішно збережено."
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr "Обов'язково для відхилення"
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr "Відхилити"
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr "Редагувати відповіді"
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr "Скасувати редагування"
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr "Ухвалити"
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr "Пояснення відхилення обов'язкове!"
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr "Ви не є контролером цих відповідей."
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr "Інформація Замовлення"
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr "Неможливо згенерувати призначення!"
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr "Слід вибрати узгоджувача!"
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr "Ви не можете видалити цю проблему. Можливо, це враховано."
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr "Не вдалося видалити цю проблему. Сталася внутрішня помилка."
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr "Шукати допомогу"
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr "Мої запити допомоги"
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr "Канали консультації"
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr "Додайте переклад"
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr "Новий переклад"
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr "Список фільтрів"
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr "Немає перекладів"
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr "Видалити вибрані елементи?"
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "Видалити"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr "Оригінальний рядок"
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr "Жоден"
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr "Форму не знайдено."
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr "Перевірка"
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr "Обрати контролера"
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+"Не вдалося додати або оновити %1$s %2$s: питання відсутнє і використовується"
+" в параметрі цілі"
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr "Учасники"
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr "Зміст"
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr "Вплив"
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "Сервіс-деск GLPi"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "Спрощений каталог сервісів"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "Розширений каталог сервісів"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "Сортувати за популярністю"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "Сортувати за абеткою"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr "Об’єднано з формами"
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr "Окремий запис у меню"
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr "Видимий"
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr "Прихований"
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "Сервіс-деск"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "Режим Сервіс-деску"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr "Порядок сортування"
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr "База знань"
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr "Пошук"
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr "Тема повідомлення"
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr "Відобразити поле пошуку"
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr "Відображення заголовка"
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr "Мінімальний діапазон"
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr "максимальний діапазон"
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "Публічний доступ"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "Приватний доступ"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "Обмежений доступ"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "Імпорт Замовлень"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "Головна сторінка"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr "Доступ"
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr "Що Ви шукаєте?"
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "Ім'я не може бути порожнім!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "Питання %s не сумісне з публічними формами"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr "Помилковий дублікат"
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "Дублювати"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "Замовлення продубльовано: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "Замовлення перенесено: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr "Назад"
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "Завантаження файлів JSON заборонено."
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr "Ви можете дозволити JSON файли прямо зараз."
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "Створити"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "Зверніться до адміністратора GLPI."
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr "Назад"
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "Завантаження файлів JSON не ввімкнуто."
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "Ви можете ввімкнути файли JSON прямо зараз."
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "Активувати"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr "Імпорт форм неможливий, файл порожній"
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr "Імпорт форм неможливий, файл здається пошкодженим"
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr "Імпорт форм неможливий, файл створено з іншою версією"
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+"У файлі не вказана версія схеми. Ймовірно, його було створено з версією, "
+"старшою за 2.10. Покинути."
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr "Не вдалося імпортувати %s"
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr "Замовлення з %s успішно імпортовані"
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr "Форма %1$s існує та має немодифіфікувану сутність."
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr "Сутність %1$s потрібна для форми %2$s."
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "Не вдалося створити тип документа JSON"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "Тип документа JSON не знайдено"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "Не вдалося оновити тип документа JSON"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "Замовлення без категорії"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr "Немає доступних форм"
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr "Додати ціль"
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr "Додати"
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr "Непідтримуваний тип цілі."
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr "plugin_formcreator_load_check"
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr "Змінити заголовок"
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr "Контрольний список"
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr "План резервування"
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr "Контрольний список"
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr "Назва є обов'язковою"
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr "Кількість умов"
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr "Обов'язкове"
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr "Розділ є обов'язковим"
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "Тип поля %1$s недоступний для запитання %2$s."
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr "Цей тип питань несумісний із загальнодоступними формами."
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr "SLA"
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr "OLA"
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr "Параметр"
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr "Назва поля"
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr "Поточний активний підрозділ"
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr "Типовий підрозділ замовника"
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr "Перший динамічний підрозділ замовника (за абеткою)"
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "Останній динамічний підрозділ замовника (за абеткою)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr "Підрозділ Замовлення"
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr "Типовий підрозділ контролера"
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr "Вказаний підрозділ"
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr "Відповідь для питання типу Типовий підрозділ користувача"
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr "З об'єкту GLPI > Відповідь для питання типу Підрозділ"
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr "Ціль має бути пов'язана з формою."
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr "Ціль має бути пов'язана з існуючою формою."
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr "Потрібно вказати ім’я."
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr "Запитання типу користувача"
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr "Запитання типу підрозділу"
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr "Категорії запитів"
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr "Категорії інцидентів"
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr "Змінити категорії"
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr "Конкретний актив"
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "Дорівнює відповіді на запитання"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr "Остання дійсна відповідь"
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr "За замовчуванням або з шаблону"
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr "Конкретний тип"
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr "Назва заявки"
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr "Додати повідомлення перевірки як першу відповідь заявки"
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr "Посилання на інший тікет"
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr "Інший пункт призначення цієї форми"
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr "Існуючий тікет"
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "Недійсний тип посилання"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "Недійсний тип зв’язаного елемента"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr "Пов’язаний елемент не існує"
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr "Не вдалося зв’язати елемент"
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr "Ваше Замовлення схвалене контролером"
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr "Тип "
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "Елемент "
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr "Немає більше рядка для перекладу"
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr "Мова не знайдена."
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr "Не вдалося додати переклад."
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr "Тег з запитань"
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "Визначені теги"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr "Теги з запитань та визначених тегів"
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr "Теги з запитань або визначених тегів"
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr "дорівнює відповіді на запитання"
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr "обраховується з дати створення заявки"
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr "обраховується з відповіді на запитання"
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr "SLA із шаблону або жодного"
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr "Конкретна SLA"
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr "OLA із шаблону або жодного"
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr "Специфічна OLA"
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr "Терміновість з шаблону або Medium"
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr "Конкретна терміновість"
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "Категорія за шаблоном або жодна"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr "Конкретна категорія"
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr "Розташування за шаблоном або жодне"
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr "Конкретне розташування"
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr "SLA (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr "Запитання (TTO / TTR)"
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr "OLA (TTO/TTR)"
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr "Терміновість "
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr "Теги заявки"
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr "Теги"
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr "Місцезнаходження "
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr "Опис не може бути порожнім!"
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "Відміна"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr "Група з об'єкта"
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr "Технічна група з об'єкта"
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr "Замовлення створено"
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr "Ваше Замовлення створено"
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"Вітаємо!\\nВаше Замовлення успішно збережено з номером "
+"##formcreator.request_id## і передано команді Сервіс-деску.\\nВи можете "
+"спостерігати Замовлення за наступним "
+"посиланням:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr "Ваша Замовлення було відхилено контролером"
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+"Привіт!\\nНа жаль, Ваше Замовлення відхилене контролером з наступним "
+"поясненням:\\n##formcreator.validation_comment##\\n\\nВи можете внести зміни"
+" за посиланням:\\n##formcreator.validation_link##"
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+"Вітаємо!\\nПовідомляємо, що Ваше Замовлення схвалене контролером та буде "
+"розглянуто найближчим часом."
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr "Ваше Замовлення було видалене адміністратором"
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+"Привіт!\\nНа жаль, Ваше Замовлення не може бути розглянуте і було видалене "
+"адміністратором."
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr "Formcreator - Проблеми з каталогом служби синхронізації"
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "Дублювати"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr "Скасувати мій тікет"
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr "Ви впевнені, що необхідно видалити це запитання?"
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr "Ви впевнені, що необхідно видалити цей розділ?"
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr "Під час роботи з Замовленнями виникла помилка"
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr "Показувати порожнє"
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr "Атрибут"
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr "Значення"
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr "Показати категорії тикетів"
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "Прямий доступ до головної сторінки"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "Типове Замовлення каталогу сервісів"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr "Ви робот?"
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr "Умова для показу розділу"
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr "Додати розділ"
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr "Будь ласка, активуйте форму, щоб переглянути посилання"
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr "Увімкнути капчу"
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr "Додати запитання"
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr "Повне Замовлення"
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr "Мої %1$d останні Форми (замовник)"
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "Заповнених Замовлень ще немає"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "Всі мої Замовлення (замовник)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr "Мої %1$d останні форми (валідатор)"
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "Всі мої Замовлення (контролер)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "Мінімум"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "Максимум"
diff --git a/locales/zh_CN.mo b/locales/zh_CN.mo
new file mode 100644
index 000000000..b238d30d2
Binary files /dev/null and b/locales/zh_CN.mo differ
diff --git a/locales/zh_CN.po b/locales/zh_CN.po
new file mode 100644
index 000000000..5f255e32e
--- /dev/null
+++ b/locales/zh_CN.po
@@ -0,0 +1,2644 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+# Translators:
+# 李赋 , 2022
+# liAnGjiA , 2022
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2023-05-31 16:21+0200\n"
+"PO-Revision-Date: 2022-06-15 12:10+0000\n"
+"Last-Translator: liAnGjiA , 2022\n"
+"Language-Team: Chinese (China) (https://app.transifex.com/teclib/teams/28042/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ajax/question_update.php:38 ajax/section_update.php:37
+msgid "Bad request"
+msgstr ""
+
+#: ajax/question_update.php:47 ajax/question_move.php:45
+#: ajax/question_delete.php:42 ajax/question_toggle_required.php:49
+msgid "Question not found"
+msgstr ""
+
+#: ajax/question_update.php:53 ajax/question_duplicate.php:49
+#: ajax/question_move.php:50 ajax/section_add.php:38
+#: ajax/section_delete.php:50 ajax/section_move.php:55
+#: ajax/section_duplicate.php:50 ajax/question_delete.php:49
+#: ajax/question_toggle_required.php:55 ajax/section_update.php:44
+msgid "You don't have right for this action"
+msgstr ""
+
+#: ajax/question_duplicate.php:43
+msgid "Source question not found"
+msgstr ""
+
+#: ajax/question_move.php:73
+msgid "Could not move some questions"
+msgstr ""
+
+#: ajax/section_add.php:44
+msgid "Could not add the section"
+msgstr ""
+
+#: ajax/commontree.php:55 entrée standard:128 standard:100
+msgid "Subtree root"
+msgstr ""
+
+#: ajax/commontree.php:59
+msgid "Selectable"
+msgstr ""
+
+#: ajax/commontree.php:74 entrée standard:137 standard:109
+msgid "Limit subtree depth"
+msgstr ""
+
+#: ajax/commontree.php:84
+msgid "No limit"
+msgstr ""
+
+#: ajax/section_delete.php:44 ajax/section_move.php:49
+#: ajax/section_duplicate.php:44
+msgid "Source section not found"
+msgstr ""
+
+#: ajax/section_delete.php:56
+msgid "Could not delete the section"
+msgstr ""
+
+#: ajax/question_add.php:45
+msgid "Could not add the question"
+msgstr ""
+
+#: ajax/section_move.php:66
+msgid "Could not move the section"
+msgstr ""
+
+#: ajax/target_actor.php:51
+msgid "Failed to add the actor"
+msgstr ""
+
+#: ajax/target_actor.php:62
+msgid "Failed to delete the actor"
+msgstr ""
+
+#: ajax/section_duplicate.php:56
+msgid "Could not duplicate the section"
+msgstr ""
+
+#: ajax/section_update.php:50
+msgid "Could not update the section"
+msgstr ""
+
+#: front/knowbaseitem.php:42 front/knowbaseitem.php:47
+#: front/wizardreminders.php:49 front/wizardreminders.php:51
+#: front/wizard.php:45 front/wizard.php:50 front/wizardfeeds.php:49
+#: front/wizardfeeds.php:51 front/issue.php:44 front/issue.php:50
+#: front/formanswer.php:44 front/reservation.php:46 front/reservation.php:48
+#: front/knowbaseitem.form.php:48 front/knowbaseitem.form.php:50
+#: front/reservationitem.php:42 front/reservationitem.php:44
+#: front/formanswer.form.php:74 front/reservation.form.php:46
+#: front/reservation.form.php:48
+msgid "Service catalog"
+msgstr "服务目录"
+
+#: front/issue.form.php:46
+msgid "Item not found"
+msgstr ""
+
+#: front/targetticket.form.php:46 front/targetticket.form.php:56
+#: front/targetticket.form.php:81 front/targetchange.form.php:46
+#: front/targetproblem.form.php:46
+msgid "No right to update this item."
+msgstr ""
+
+#: front/targetticket.form.php:75
+msgid "Bad request while deleting an actor."
+msgstr ""
+
+#: front/targetticket.form.php:95 front/targetchange.form.php:81
+#: front/formanswer.php:47 front/targetproblem.form.php:81
+#: front/formanswer.form.php:77 front/form.php:43 inc/common.class.php:654
+#: inc/common.class.php:661
+msgid "Form Creator"
+msgstr "创建表单"
+
+#: front/targetticket.form.php:105 front/targetchange.form.php:90
+#: front/targetproblem.form.php:90
+#, php-format
+msgid "%1$s = %2$s"
+msgstr ""
+
+#: front/formlist.php:46 front/formlist.php:52 inc/common.class.php:648
+msgid "Form list"
+msgstr "表单列表"
+
+#: front/formdisplay.php:90 inc/formanswer.class.php:1077
+#: inc/formanswer.class.php:1325 inc/formanswer.class.php:1376
+msgid "The form has been successfully saved!"
+msgstr "表格已成功保存!"
+
+#. TRANS: %s is the user login
+#: front/reservation.form.php:71
+#, php-format
+msgid "%1$s purges the reservation for item %2$s"
+msgstr ""
+
+#: front/reservation.form.php:124
+#, php-format
+msgid "%1$s adds the reservation %2$s for item %3$s"
+msgstr ""
+
+#: inc/knowbase.class.php:60 inc/entityconfig.class.php:478
+#: inc/form.class.php:611
+msgid "Category"
+msgid_plural "Categories"
+msgstr[0] ""
+
+#: inc/knowbase.class.php:62 inc/form.class.php:614 entrée standard:39
+msgid "See all"
+msgstr ""
+
+#: inc/knowbase.class.php:83
+msgid "Please, describe your need here"
+msgstr "请在此描述您的需求"
+
+#: inc/field/textareafield.class.php:186
+msgid "Textarea"
+msgstr ""
+
+#: inc/field/textareafield.class.php:249 inc/field/dropdownfield.class.php:594
+#: inc/field/ldapselectfield.class.php:115
+#: inc/field/urgencyfield.class.php:166 inc/field/tagfield.class.php:166
+#: inc/field/timefield.class.php:114 inc/field/fieldsfield.class.php:489
+#: inc/field/requesttypefield.class.php:161
+msgid "A required field is empty:"
+msgstr ""
+
+#: inc/field/textareafield.class.php:267 inc/field/integerfield.class.php:112
+#: inc/field/floatfield.class.php:194 inc/conditionnabletrait.class.php:70
+msgid "The regular expression is invalid"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:81 inc/filter/entityfilter.class.php:48
+msgid "User and form"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:87
+msgid "Search filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:585 entrée standard:38
+msgid "Dropdown"
+msgid_plural "Dropdowns"
+msgstr[0] ""
+
+#: inc/field/dropdownfield.class.php:616
+msgid "Invalid value for "
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:628
+#, php-format
+msgid "The itemtype field is required: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:644
+#, php-format
+msgid "Invalid dropdown type: %s"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:704 inc/questionfilter.class.php:62
+#: entrée standard:68
+msgid "Filter"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:987 entrée standard:162 standard:134
+msgid "Entity restriction"
+msgstr ""
+
+#: inc/field/dropdownfield.class.php:996
+msgid ""
+"To respect the GLPI entity system, \"Form\" should be selected. Others "
+"settings will break the entity restrictions"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:96
+msgid "LDAP Select"
+msgstr ""
+
+#: inc/field/ldapselectfield.class.php:140
+msgid "LDAP directory not defined!"
+msgstr "LDAP目录未定义!"
+
+#: inc/field/ldapselectfield.class.php:147
+msgid "LDAP directory not found!"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:108
+msgid "Radios"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:114 inc/field/fieldsfield.class.php:513
+#: inc/field/checkboxesfield.class.php:245
+msgid "The field value is required:"
+msgstr ""
+
+#: inc/field/radiosfield.class.php:192 inc/field/selectfield.class.php:104
+#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:258
+#: inc/field/checkboxesfield.class.php:191 inc/field/floatfield.class.php:125
+#: inc/field/datefield.class.php:116
+#, php-format
+msgid "A required field is empty: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:59
+#, php-format
+msgid "This is not an integer: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:71 inc/field/floatfield.class.php:156
+#, php-format
+msgid "Specific format does not match: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:167
+#, php-format
+msgid "The following number must be greater than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:173
+#, php-format
+msgid "The following number must be lower than %d: %s"
+msgstr ""
+
+#: inc/field/integerfield.class.php:101
+msgid "Integer"
+msgstr ""
+
+#: inc/field/undefinedfield.class.php:44
+msgid "Undefined"
+msgstr ""
+
+#: inc/field/ipfield.class.php:123
+msgid "IP address"
+msgid_plural "IP addresses"
+msgstr[0] ""
+
+#: inc/field/urgencyfield.class.php:86 inc/abstractitiltarget.class.php:1040
+msgid "Urgency"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:120
+msgctxt "urgency"
+msgid "Very high"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:121
+msgctxt "urgency"
+msgid "High"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:122
+msgctxt "urgency"
+msgid "Medium"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:123
+msgctxt "urgency"
+msgid "Low"
+msgstr ""
+
+#: inc/field/urgencyfield.class.php:124
+msgctxt "urgency"
+msgid "Very low"
+msgstr ""
+
+#: inc/field/tagfield.class.php:52
+msgid "Warning: Tag plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/tagfield.class.php:200
+msgid "Tag"
+msgid_plural "Tags"
+msgstr[0] ""
+
+#: inc/field/hostnamefield.class.php:116
+msgid "Hostname"
+msgid_plural "Hostnames"
+msgstr[0] ""
+
+#: inc/field/timefield.class.php:130
+msgid "Time"
+msgstr ""
+
+#: inc/field/emailfield.class.php:89
+#, php-format
+msgid "This is not a valid e-mail: %s"
+msgstr ""
+
+#: inc/field/emailfield.class.php:100
+msgid "Email"
+msgid_plural "Emails"
+msgstr[0] ""
+
+#: inc/field/selectfield.class.php:97
+msgid "Select"
+msgstr ""
+
+#: inc/field/datetimefield.class.php:140
+msgid "Date & time"
+msgstr ""
+
+#: inc/field/actorfield.class.php:84
+msgid "Actor"
+msgid_plural "Actors"
+msgstr[0] ""
+
+#: inc/field/actorfield.class.php:268
+#, php-format
+msgid "Invalid value: %s"
+msgstr ""
+
+#: inc/field/actorfield.class.php:291
+#, php-format
+msgid "User not found or invalid email address: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:124
+msgid "No attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:133 inc/field/filefield.class.php:254
+#: inc/field/filefield.class.php:261
+msgid "Attached document"
+msgstr ""
+
+#: inc/field/filefield.class.php:175
+#, php-format
+msgid "A required file is missing: %s"
+msgstr ""
+
+#: inc/field/filefield.class.php:192
+msgid "File"
+msgstr ""
+
+#: inc/field/multiselectfield.class.php:86
+msgid "Multiselect"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:154
+msgid "Warning: Additional Fields plugin is disabled or missing"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:168
+msgid "Block"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:172 inc/targetticket.class.php:346
+msgid "Field"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:254
+msgid "show"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:390
+#, php-format
+msgid "Field '%1$s' type not implemented yet!"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:467
+msgid "Some numeric fields contains non numeric values"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:472
+msgid "Some URL fields contains invalid links"
+msgstr ""
+
+#: inc/field/fieldsfield.class.php:566
+msgid "Additionnal fields"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:133
+msgid "Checkboxes"
+msgstr "复选框"
+
+#: inc/field/checkboxesfield.class.php:227
+#, php-format
+msgid "The following question needs at least %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:233
+#, php-format
+msgid "The following question does not accept more than %d answers: %s"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:305
+msgid "Range min"
+msgstr ""
+
+#: inc/field/checkboxesfield.class.php:306
+msgid "Range max"
+msgstr ""
+
+#: inc/field/requesttypefield.class.php:87 inc/targetticket.class.php:1150
+msgid "Request type"
+msgstr ""
+
+#: inc/field/floatfield.class.php:142
+#, php-format
+msgid "This is not a number: %s"
+msgstr ""
+
+#: inc/field/floatfield.class.php:183
+msgid "Decimal number"
+msgstr ""
+
+#: inc/field/floatfield.class.php:235 inc/questionregex.class.php:62 entrée
+#: standard:42
+msgid "Regular expression"
+msgstr ""
+
+#: inc/field/floatfield.class.php:240
+msgid "Range"
+msgstr ""
+
+#: inc/field/floatfield.class.php:246
+msgid "Additional validation"
+msgstr ""
+
+#: inc/field/datefield.class.php:137
+msgid "Date"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:106 inc/form.class.php:151
+#: inc/question.class.php:188 entrée standard:82 standard:52 standard:114
+msgid "Description"
+msgstr ""
+
+#: inc/field/descriptionfield.class.php:113
+msgid "A description field should have a description:"
+msgstr ""
+
+#: inc/field/hiddenfield.class.php:96
+msgid "Hidden field"
+msgid_plural "Hidden fields"
+msgstr[0] ""
+
+#: inc/condition.class.php:65
+msgid "Condition"
+msgid_plural "Conditions"
+msgstr[0] ""
+
+#: inc/condition.class.php:103
+msgid "is visible"
+msgstr ""
+
+#: inc/condition.class.php:104
+msgid "is not visible"
+msgstr ""
+
+#: inc/condition.class.php:105
+msgid "regular expression matches"
+msgstr ""
+
+#: inc/condition.class.php:116
+msgid "Always displayed"
+msgstr ""
+
+#: inc/condition.class.php:117
+msgid "Hidden unless"
+msgstr "除非隐藏"
+
+#: inc/condition.class.php:118
+msgid "Displayed unless"
+msgstr ""
+
+#: inc/condition.class.php:178 inc/target_actor.class.php:233
+#: inc/form_language.class.php:565 inc/form_validator.class.php:248
+#: inc/targetproblem.class.php:527 inc/questionrange.class.php:199
+#: inc/form.class.php:1908 inc/targetchange.class.php:304
+#: inc/questionfilter.class.php:222 inc/section.class.php:381
+#: inc/restrictedformcriteria.class.php:200 inc/question.class.php:867
+#: inc/questionparameter/range.class.php:198 inc/questionregex.class.php:188
+#: inc/questiondependency.class.php:196 inc/item_targetticket.class.php:154
+#: inc/targetticket.class.php:1461
+#, php-format
+msgid "Failed to add or update the %1$s %2$s"
+msgstr ""
+
+#: inc/condition.class.php:200 inc/target_actor.class.php:254
+#: inc/form_language.class.php:581 inc/form_validator.class.php:288
+#: inc/targetproblem.class.php:362 inc/questionrange.class.php:131
+#: inc/form.class.php:1569 inc/targetchange.class.php:149
+#: inc/questionfilter.class.php:154 inc/section.class.php:406
+#: inc/restrictedformcriteria.class.php:226 inc/question.class.php:894
+#: inc/questionparameter/range.class.php:133 inc/questionregex.class.php:120
+#: inc/questiondependency.class.php:211 inc/item_targetticket.class.php:64
+#: inc/targetticket.class.php:1500
+#, php-format
+msgid "Cannot export an empty object: %s"
+msgstr ""
+
+#: inc/condition.class.php:268
+msgid "Conditions"
+msgstr ""
+
+#: inc/linker.class.php:78
+msgid "Importing"
+msgstr ""
+
+#: inc/linker.class.php:80
+msgid "Import in progress"
+msgstr ""
+
+#: inc/issue.class.php:43
+msgid "Issue"
+msgid_plural "Issues"
+msgstr[0] ""
+
+#: inc/issue.class.php:56
+msgid "Update issue data from tickets and form answers"
+msgstr ""
+
+#: inc/issue.class.php:393
+msgid "Satisfaction survey expired"
+msgstr ""
+
+#: inc/issue.class.php:531 inc/form_language.class.php:229
+#: inc/form.class.php:2208 entrée standard:52 standard:49 standard:57
+#: standard:38 standard:39 standard:105 standard:46
+msgid "Name"
+msgstr ""
+
+#: inc/issue.class.php:543 inc/formanswer.class.php:229
+#: inc/formanswer.class.php:320 inc/targetproblem.class.php:610
+#: inc/form.class.php:142 inc/targetchange.class.php:335
+#: inc/section.class.php:95 inc/question.class.php:178
+#: inc/targetticket.class.php:180 entrée standard:45
+msgid "ID"
+msgstr ""
+
+#: inc/issue.class.php:552 inc/form.class.php:2217 entrée standard:111
+#: standard:65 standard:104 standard:4
+msgid "Type"
+msgid_plural "Types"
+msgstr[0] ""
+
+#: inc/issue.class.php:565 inc/formanswer.class.php:307
+msgid "Status"
+msgstr ""
+
+#: inc/issue.class.php:577
+msgid "Opening date"
+msgstr ""
+
+#: inc/issue.class.php:586
+msgid "Last update"
+msgstr ""
+
+#: inc/issue.class.php:595 inc/abstracttarget.class.php:517
+msgid "Entity"
+msgid_plural "Entities"
+msgstr[0] ""
+
+#: inc/issue.class.php:605 inc/notificationtargetformanswer.class.php:76
+#: inc/notificationtargetformanswer.class.php:96
+#: inc/target_actor.class.php:101 inc/formanswer.class.php:248
+#: inc/formanswer.class.php:762 inc/abstractitiltarget.class.php:1804 entrée
+#: standard:48
+msgid "Requester"
+msgid_plural "Requesters"
+msgstr[0] ""
+
+#: inc/issue.class.php:619 inc/formanswer.class.php:258
+msgid "Form approver"
+msgstr ""
+
+#: inc/issue.class.php:651 inc/formanswer.class.php:691
+#: inc/formanswer.class.php:698 inc/formanswer.class.php:777
+#: inc/form_language.class.php:243
+msgid "Comment"
+msgstr ""
+
+#: inc/issue.class.php:663
+msgid "Ticket approver"
+msgstr ""
+
+#: inc/issue.class.php:736
+msgid "Technician"
+msgstr ""
+
+#: inc/issue.class.php:767
+msgid "Technician group"
+msgstr ""
+
+#: inc/issue.class.php:799 inc/formanswer.class.php:287
+msgid "Form approver group"
+msgstr ""
+
+#: inc/issue.class.php:829
+msgid "Ticket approver group"
+msgstr ""
+
+#: inc/issue.class.php:863 inc/abstractitiltarget.class.php:787 entrée
+#: standard:108
+msgid "Time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:874
+msgid "Time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:884
+msgid "Internal time to resolve"
+msgstr ""
+
+#: inc/issue.class.php:895
+msgid "Internal time to resolve + Progress"
+msgstr ""
+
+#: inc/issue.class.php:905
+msgid "Resolution date"
+msgstr ""
+
+#: inc/issue.class.php:914
+msgid "Internal time to own"
+msgstr ""
+
+#: inc/issue.class.php:925
+msgid "Internal time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:935 entrée standard:109
+msgid "Time to own"
+msgstr ""
+
+#: inc/issue.class.php:946
+msgid "Time to own + Progress"
+msgstr ""
+
+#: inc/issue.class.php:958
+msgid "Approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1022
+msgid "Substitute of a member of approver group"
+msgstr ""
+
+#: inc/issue.class.php:1095
+msgid "Form approver substitute"
+msgstr ""
+
+#: inc/issue.class.php:1163
+msgid "Current form approver group"
+msgstr ""
+
+#: inc/issue.class.php:1193
+msgid "Current form approver"
+msgstr ""
+
+#: inc/issue.class.php:1227
+msgid "Ticket requester"
+msgstr ""
+
+#: inc/issue.class.php:1274
+msgid "Ticket observer"
+msgstr ""
+
+#: inc/issue.class.php:1322
+msgid "Ticket technician"
+msgstr ""
+
+#: inc/issue.class.php:1469
+#, php-format
+msgid "%1$s %2$s"
+msgstr ""
+
+#: inc/issue.class.php:1727 inc/filter/itilcategoryfilter.class.php:56
+#: hook.php:766
+msgid "All"
+msgstr ""
+
+#: inc/issue.class.php:1733 hook.php:767
+msgid "New"
+msgstr ""
+
+#: inc/issue.class.php:1739 hook.php:768
+msgid "Assigned"
+msgstr ""
+
+#: inc/issue.class.php:1745 inc/formanswer.class.php:78
+#: inc/form_validator.class.php:70 hook.php:769
+msgid "Waiting"
+msgstr ""
+
+#: inc/issue.class.php:1751 hook.php:770
+msgid "To validate"
+msgstr ""
+
+#: inc/issue.class.php:1757 hook.php:771
+msgid "Solved"
+msgstr ""
+
+#: inc/issue.class.php:1763 hook.php:772
+msgid "Closed"
+msgstr ""
+
+#: inc/category.class.php:50 hook.php:72
+msgid "Form category"
+msgid_plural "Form categories"
+msgstr[0] ""
+
+#: inc/category.class.php:80
+msgid "Knowbase category"
+msgstr ""
+
+#: inc/category.class.php:86
+msgid "As child of"
+msgstr ""
+
+#: inc/category.class.php:92 inc/form.class.php:247 entrée standard:65
+msgid "Icon"
+msgstr ""
+
+#: inc/category.class.php:98 inc/form.class.php:255 entrée standard:67
+msgid "Icon color"
+msgstr ""
+
+#: inc/category.class.php:104 inc/form.class.php:263 entrée standard:80
+msgid "Background color"
+msgstr ""
+
+#: inc/formlist.class.php:46 inc/entityconfig.class.php:93
+#: inc/form.class.php:111 inc/form.class.php:516 inc/form.class.php:2015
+#: entrée standard:47
+msgid "Form"
+msgid_plural "Forms"
+msgstr[0] ""
+
+#: inc/notificationtargetformanswer.class.php:43
+msgid "The form as been saved"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:44
+msgid "A form need to be validate"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:45 install/install.php:490
+msgid "The form is refused"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:46 install/install.php:496
+msgid "The form is accepted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:47 install/install.php:502
+msgid "The form is deleted"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:74
+msgid "Form ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:75
+#: inc/notificationtargetformanswer.class.php:95
+msgid "Form name"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:77
+#: inc/form_validator.class.php:91
+msgid "Validator"
+msgid_plural "Validators"
+msgstr[0] ""
+
+#: inc/notificationtargetformanswer.class.php:78
+#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:278
+#: entrée standard:49
+msgid "Creation date"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:79
+#: inc/notificationtargetformanswer.class.php:99
+msgid "Full form answers"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:80
+msgid "Validation comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:81
+#: inc/notificationtargetformanswer.class.php:101
+msgid "Validation link"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:82
+msgid "Request ID"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:94
+msgid "Form #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:97
+msgctxt "tag"
+msgid "Validator"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:100
+msgid "Refused comment"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:102
+msgid "Request #"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:114
+msgid "Author"
+msgstr ""
+
+#: inc/notificationtargetformanswer.class.php:115
+#: inc/abstractitiltarget.class.php:1374
+msgid "Approver"
+msgstr ""
+
+#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2141
+msgid "Form author"
+msgstr ""
+
+#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2144
+msgid "Form validator"
+msgstr ""
+
+#: inc/target_actor.class.php:72
+msgid "Specific person"
+msgstr ""
+
+#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2154
+msgid "Person from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:74
+msgid "Specific group"
+msgstr ""
+
+#: inc/target_actor.class.php:75 inc/abstractitiltarget.class.php:2165
+msgid "Group from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:76
+msgid "Group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:77
+msgid "Tech group from an object"
+msgstr ""
+
+#: inc/target_actor.class.php:78
+msgid "Specific supplier"
+msgstr ""
+
+#: inc/target_actor.class.php:79 inc/abstractitiltarget.class.php:2194
+msgid "Supplier from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2183
+msgid "Actors from the question"
+msgstr ""
+
+#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2198
+msgid "Form author's supervisor"
+msgstr ""
+
+#: inc/target_actor.class.php:102
+msgid "Observer"
+msgstr ""
+
+#: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1818
+msgid "Assigned to"
+msgstr ""
+
+#: inc/target_actor.class.php:109
+msgid "Target actor"
+msgid_plural "Target actors"
+msgstr[0] ""
+
+#: inc/target_actor.class.php:115 inc/target_actor.class.php:131
+#: inc/target_actor.class.php:140
+msgid "Bad request while adding an actor."
+msgstr ""
+
+#: inc/target_actor.class.php:197
+#, php-format
+msgid "Failed to find a user: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:206
+#, php-format
+msgid "Failed to find a group: %1$s"
+msgstr ""
+
+#: inc/target_actor.class.php:215
+#, php-format
+msgid "Failed to find a supplier: %1$s"
+msgstr ""
+
+#: inc/formanswer.class.php:79 inc/form_validator.class.php:72
+msgid "Refused"
+msgstr "拒绝"
+
+#: inc/formanswer.class.php:80 inc/form_validator.class.php:71
+msgid "Accepted"
+msgstr ""
+
+#: inc/formanswer.class.php:214
+msgid "Form answer"
+msgid_plural "Form answers"
+msgstr[0] ""
+
+#: inc/formanswer.class.php:676
+msgid "Print this form"
+msgstr "打印此表单"
+
+#: inc/formanswer.class.php:701
+msgid "Form accepted by validator."
+msgstr ""
+
+#: inc/formanswer.class.php:703
+msgid "Form successfully saved."
+msgstr ""
+
+#: inc/formanswer.class.php:770
+msgid "Save"
+msgstr ""
+
+#: inc/formanswer.class.php:782
+msgid "Required if refused"
+msgstr ""
+
+#: inc/formanswer.class.php:788
+msgid "Refuse"
+msgstr ""
+
+#: inc/formanswer.class.php:796
+msgid "Edit answers"
+msgstr ""
+
+#: inc/formanswer.class.php:802
+msgid "Cancel edition"
+msgstr ""
+
+#: inc/formanswer.class.php:809
+msgid "Accept"
+msgstr ""
+
+#: inc/formanswer.class.php:828
+msgid "Refused comment is required!"
+msgstr ""
+
+#: inc/formanswer.class.php:882 inc/formanswer.class.php:899
+msgid ""
+"An internal error occured when verifying your answers. Please report it to "
+"your administrator."
+msgstr ""
+
+#: inc/formanswer.class.php:933
+msgid "You are not the validator of these answers"
+msgstr ""
+
+#: inc/formanswer.class.php:1083
+#, php-format
+msgid "Item sucessfully added: %1$s (%2$s: %3$s)"
+msgstr ""
+
+#: inc/formanswer.class.php:1166 inc/formanswer.class.php:1168
+msgid "Form data"
+msgstr ""
+
+#: inc/formanswer.class.php:1301
+msgid ""
+"You are a validator of the form, then your approval hs been added "
+"automatically."
+msgstr ""
+
+#: inc/formanswer.class.php:1310 inc/formanswer.class.php:1363
+msgid "Cannot generate targets!"
+msgstr ""
+
+#: inc/formanswer.class.php:1511
+msgid "No captcha set."
+msgstr ""
+
+#: inc/formanswer.class.php:1517
+msgid "You failed the captcha test."
+msgstr ""
+
+#: inc/formanswer.class.php:1540
+msgid "You must select validator!"
+msgstr ""
+
+#: inc/common.class.php:229
+msgid "You cannot delete this issue. Maybe it is taken into account."
+msgstr ""
+
+#: inc/common.class.php:234
+msgid "Failed to delete this issue. An internal error occured."
+msgstr ""
+
+#: inc/common.class.php:745
+msgid "Seek assistance"
+msgstr ""
+
+#: inc/common.class.php:751 inc/common.class.php:755
+msgid "My requests for assistance"
+msgstr ""
+
+#: inc/common.class.php:791
+msgid "Consult reminders"
+msgstr ""
+
+#: inc/common.class.php:811
+msgid "Consult feeds"
+msgstr ""
+
+#: inc/abstractfield.class.php:89 inc/question.class.php:758
+msgid "Apply"
+msgstr ""
+
+#: inc/formaccesstype.class.php:41 entrée standard:39
+msgid "Access type"
+msgid_plural "Access types"
+msgstr[0] ""
+
+#: inc/form_language.class.php:51
+msgid "Form language"
+msgid_plural "Form languages"
+msgstr[0] ""
+
+#: inc/form_language.class.php:78 inc/form_language.class.php:364
+msgid "Translation"
+msgid_plural "Translations"
+msgstr[0] ""
+
+#: inc/form_language.class.php:119
+msgid "The name cannot be empty."
+msgstr ""
+
+#: inc/form_language.class.php:127
+msgid "The language must be associated to a form."
+msgstr ""
+
+#: inc/form_language.class.php:135
+msgid "The specified language is not available."
+msgstr ""
+
+#: inc/form_language.class.php:265
+msgid "Add a translation"
+msgstr ""
+
+#: inc/form_language.class.php:299 js/scripts.js:1214
+msgid "Update a translation"
+msgstr ""
+
+#: inc/form_language.class.php:329 inc/form_language.class.php:331
+msgid "New translation"
+msgstr ""
+
+#: inc/form_language.class.php:334
+msgid "Filter list"
+msgstr ""
+
+#: inc/form_language.class.php:339 inc/form_language.class.php:438
+msgid "No translation found"
+msgstr ""
+
+#: inc/form_language.class.php:344
+msgid "Do you want to delete the selected items?"
+msgstr ""
+
+#: inc/form_language.class.php:353 inc/form_language.class.php:401
+#: inc/abstractitiltarget.class.php:1710 entrée standard:124 standard:31
+msgid "Delete"
+msgstr "删除"
+
+#: inc/form_language.class.php:363
+msgid "Original string"
+msgstr ""
+
+#: inc/form_language.class.php:424
+msgid "Add a new language"
+msgstr ""
+
+#: inc/form_language.class.php:457 inc/form_language.class.php:489
+#: inc/form.class.php:178 entrée standard:72
+msgid "Language"
+msgstr ""
+
+#: inc/form_validator.class.php:69 inc/targetticket.class.php:99
+#: inc/abstractitiltarget.class.php:186
+msgid "None"
+msgstr ""
+
+#: inc/form_validator.class.php:78 inc/abstractitiltarget.class.php:2552
+msgid "No"
+msgstr ""
+
+#: inc/form_validator.class.php:81
+msgid "Supervisor of the requester"
+msgstr ""
+
+#: inc/form_validator.class.php:116 inc/translation.class.php:221
+msgid "Form not found."
+msgstr ""
+
+#: inc/form_validator.class.php:121 inc/form_validator.class.php:129
+#: inc/form_validator.class.php:138
+msgid "Invalid validator."
+msgstr ""
+
+#: inc/form_validator.class.php:147
+#, php-format
+msgid "Only level 1 is allowed for %s."
+msgstr ""
+
+#: inc/form_validator.class.php:156
+msgid "Invalid validator type."
+msgstr ""
+
+#: inc/form_validator.class.php:194 entrée standard:103
+msgid "Level"
+msgstr ""
+
+#: inc/form_validator.class.php:592 inc/abstractitiltarget.class.php:1354
+msgid "Validation"
+msgstr ""
+
+#: inc/form_validator.class.php:594
+msgid "Choose a validator"
+msgstr ""
+
+#: inc/profile.class.php:62 inc/targetproblem.class.php:147
+#: inc/entityconfig.class.php:520 inc/targetchange.class.php:484
+#: inc/targetticket.class.php:323 inc/targetticket.class.php:358
+#: inc/abstractitiltarget.class.php:2124
+msgctxt "button"
+msgid "Save"
+msgstr ""
+
+#: inc/targetproblem.class.php:43 entrée standard:43
+msgid "Target problem"
+msgid_plural "Target problems"
+msgstr[0] ""
+
+#: inc/targetproblem.class.php:109 inc/targetproblem.class.php:565
+#: inc/targetchange.class.php:105 inc/targetchange.class.php:441
+#: inc/targetticket.class.php:135 inc/targetticket.class.php:238
+msgid "Properties"
+msgstr ""
+
+#: inc/targetproblem.class.php:509 inc/targetchange.class.php:286
+#: inc/targetticket.class.php:1443
+#, php-format
+msgid ""
+"Failed to add or update the %1$s %2$s: a question is missing and is used in "
+"a parameter of the target"
+msgstr ""
+
+#: inc/targetproblem.class.php:566 inc/targetchange.class.php:106
+#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1216
+msgid "Actors"
+msgstr ""
+
+#: inc/targetproblem.class.php:619 entrée standard:48
+msgid "Problem title"
+msgstr ""
+
+#: inc/targetproblem.class.php:629 inc/targetchange.class.php:354
+#: inc/targetticket.class.php:199
+msgid "Content"
+msgstr ""
+
+#: inc/targetproblem.class.php:639 inc/targetchange.class.php:364
+msgid "Impact"
+msgstr ""
+
+#: inc/targetproblem.class.php:649 entrée standard:56
+msgid "Cause"
+msgstr ""
+
+#: inc/targetproblem.class.php:659 entrée standard:58
+msgid "Symptom"
+msgstr ""
+
+#: inc/entityconfig.class.php:101 inc/entityconfig.class.php:110
+#: inc/entityconfig.class.php:118 inc/entityconfig.class.php:126
+#: inc/entityconfig.class.php:134 inc/entityconfig.class.php:142
+#: inc/entityconfig.class.php:150 inc/entityconfig.class.php:158
+#: inc/entityconfig.class.php:166 inc/entityconfig.class.php:180
+#: inc/entityconfig.class.php:188 inc/entityconfig.class.php:196
+msgid "Inheritance of the parent entity"
+msgstr ""
+
+#: inc/entityconfig.class.php:102
+msgid "GLPi's helpdesk"
+msgstr "GLPI技术支持"
+
+#: inc/entityconfig.class.php:103
+msgid "Service catalog simplified"
+msgstr "服务目录简化"
+
+#: inc/entityconfig.class.php:104
+msgid "Service catalog extended"
+msgstr "服务目录扩展"
+
+#: inc/entityconfig.class.php:111
+msgid "All available forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:112
+msgid "Only default forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:119
+msgid "Popularity sort"
+msgstr "人气排序"
+
+#: inc/entityconfig.class.php:120
+msgid "Alphabetic sort"
+msgstr "字母排序"
+
+#: inc/entityconfig.class.php:127
+msgid "Merged with Forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:128
+msgid "Distinct menu entry"
+msgstr ""
+
+#: inc/entityconfig.class.php:135 inc/entityconfig.class.php:143
+#: inc/entityconfig.class.php:151 inc/entityconfig.class.php:159
+#: inc/entityconfig.class.php:189 inc/form.class.php:271 entrée standard:100
+msgid "Visible"
+msgstr ""
+
+#: inc/entityconfig.class.php:136 inc/entityconfig.class.php:144
+#: inc/entityconfig.class.php:152 inc/entityconfig.class.php:160
+#: inc/entityconfig.class.php:190
+msgid "Hidden"
+msgstr ""
+
+#: inc/entityconfig.class.php:167
+msgid "Variable height"
+msgstr ""
+
+#: inc/entityconfig.class.php:168
+msgid "Uniform height"
+msgstr ""
+
+#: inc/entityconfig.class.php:173
+msgid "Search for assistance"
+msgstr ""
+
+#: inc/entityconfig.class.php:174
+msgid "User's assistance requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:181
+msgid "Only forms"
+msgstr ""
+
+#: inc/entityconfig.class.php:182
+msgid "Forms and list of requests"
+msgstr ""
+
+#: inc/entityconfig.class.php:197
+msgid "Folded"
+msgstr ""
+
+#: inc/entityconfig.class.php:198
+msgid "Unfolded"
+msgstr ""
+
+#: inc/entityconfig.class.php:298
+msgid "Helpdesk"
+msgstr "技术支持"
+
+#: inc/entityconfig.class.php:306 inc/entityconfig.class.php:534 entrée
+#: standard:44
+msgid "Helpdesk mode"
+msgstr "技术支持模式"
+
+#: inc/entityconfig.class.php:317 inc/entityconfig.class.php:604
+msgid "Default Form list mode"
+msgstr ""
+
+#: inc/entityconfig.class.php:335 inc/entityconfig.class.php:544
+msgid "Sort order"
+msgstr ""
+
+#: inc/entityconfig.class.php:351 inc/entityconfig.class.php:554
+msgid "Knowledge base"
+msgstr ""
+
+#: inc/entityconfig.class.php:366
+msgid "Search"
+msgstr ""
+
+#: inc/entityconfig.class.php:382 inc/entityconfig.class.php:614
+msgid "Counters dashboard"
+msgstr ""
+
+#: inc/entityconfig.class.php:398
+msgid "Header message"
+msgstr ""
+
+#: inc/entityconfig.class.php:414 inc/entityconfig.class.php:624
+msgid "Search issue"
+msgstr ""
+
+#: inc/entityconfig.class.php:430 inc/entityconfig.class.php:594
+msgid "Service catalog home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:446 inc/entityconfig.class.php:634
+msgid "Tile design"
+msgstr ""
+
+#: inc/entityconfig.class.php:462
+msgid "Home page"
+msgstr ""
+
+#: inc/entityconfig.class.php:494
+msgid "Menu visibility (only for vertical menu)"
+msgstr ""
+
+#: inc/entityconfig.class.php:506 inc/entityconfig.class.php:584
+#: inc/form.class.php:225 entrée standard:84
+msgid "Header"
+msgid_plural "Headers"
+msgstr[0] ""
+
+#: inc/entityconfig.class.php:564
+msgid "Display search field"
+msgstr ""
+
+#: inc/entityconfig.class.php:574
+msgid "Display header"
+msgstr ""
+
+#: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56
+msgid "Question range"
+msgid_plural "Question ranges"
+msgstr[0] ""
+
+#: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66
+msgid "Minimum range"
+msgstr ""
+
+#: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75
+msgid "maximum range"
+msgstr ""
+
+#: inc/form.class.php:66 inc/form.class.php:429
+msgid "Public access"
+msgstr "公共访问"
+
+#: inc/form.class.php:67 inc/form.class.php:433
+msgid "Private access"
+msgstr "私人访问"
+
+#: inc/form.class.php:68 inc/form.class.php:437
+msgid "Restricted access"
+msgstr "禁止访问"
+
+#: inc/form.class.php:122
+msgid "Answers waiting for validation"
+msgstr ""
+
+#: inc/form.class.php:124 inc/form.class.php:1663 inc/form.class.php:1689
+msgid "Import forms"
+msgstr "导入表格"
+
+#: inc/form.class.php:169
+msgid "Recursive"
+msgstr ""
+
+#: inc/form.class.php:190
+msgid "Homepage"
+msgstr "主页"
+
+#: inc/form.class.php:203
+msgid "Access"
+msgstr ""
+
+#: inc/form.class.php:234 inc/form.class.php:327 inc/form.class.php:394 entrée
+#: standard:54
+msgid "Active"
+msgstr ""
+
+#: inc/form.class.php:286 inc/form.class.php:338 inc/form.class.php:413
+msgid "Default form"
+msgstr ""
+
+#: inc/form.class.php:296 entrée standard:106
+msgid "Next form"
+msgstr ""
+
+#: inc/form.class.php:326 inc/form.class.php:391
+msgid "Inactive"
+msgstr ""
+
+#: inc/form.class.php:337 inc/form.class.php:410
+msgid "Not default form"
+msgstr ""
+
+#: inc/form.class.php:361 inc/form.class.php:445 entrée standard:75
+msgid "All languages"
+msgstr ""
+
+#: inc/form.class.php:508 entrée standard:3
+msgid "Target"
+msgid_plural "Targets"
+msgstr[0] ""
+
+#: inc/form.class.php:511
+msgid "Preview"
+msgstr ""
+
+#: inc/form.class.php:512
+msgid "Form answer properties"
+msgstr ""
+
+#: inc/form.class.php:854
+msgid "What are you looking for?"
+msgstr ""
+
+#: inc/form.class.php:993 inc/form.class.php:1156
+#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1625
+msgid "The name cannot be empty!"
+msgstr "名字不能为空!"
+
+#: inc/form.class.php:1026 inc/form.class.php:1191
+msgid "A loop is generated!"
+msgstr ""
+
+#: inc/form.class.php:1167
+msgid "Cannot use empty name for form answers. Keeping the previous value."
+msgstr ""
+
+#: inc/form.class.php:1303
+#, php-format
+msgid "The question %s is not compatible with public forms"
+msgstr "这个问题 %s 与公共表格不相符"
+
+#: inc/form.class.php:1386
+msgid "Errored duplicate"
+msgstr ""
+
+#: inc/form.class.php:1397 entrée standard:23
+msgid "Duplicate"
+msgstr "重复"
+
+#: inc/form.class.php:1442 inc/form.class.php:1452
+msgctxt "button"
+msgid "Post"
+msgstr ""
+
+#: inc/form.class.php:1475
+#, php-format
+msgid "Form duplicated: %s"
+msgstr "重复表格: %s"
+
+#: inc/form.class.php:1491
+#, php-format
+msgid "Form Transfered: %s"
+msgstr "转移表格: %s"
+
+#: inc/form.class.php:1515
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1526
+#, php-format
+msgid "Form updated: %s"
+msgstr ""
+
+#: inc/form.class.php:1636
+msgid "Upload of JSON files not allowed."
+msgstr "不允许上传JSON文件。"
+
+#: inc/form.class.php:1639
+msgid "You may allow JSON files right now."
+msgstr ""
+
+#: inc/form.class.php:1640
+msgctxt "button"
+msgid "Create"
+msgstr "创建"
+
+#: inc/form.class.php:1643 inc/form.class.php:1654
+msgid "Please contact your GLPI administrator."
+msgstr "请联系您的GLPI管理员。"
+
+#: inc/form.class.php:1644 inc/form.class.php:1655
+msgctxt "button"
+msgid "Back"
+msgstr ""
+
+#: inc/form.class.php:1647
+msgid "Upload of JSON files not enabled."
+msgstr "未启用JSON文件的上传。"
+
+#: inc/form.class.php:1650 inc/form.class.php:1653
+msgid "You may enable JSON files right now."
+msgstr "您可以立即启用JSON文件。"
+
+#: inc/form.class.php:1651
+msgctxt "button"
+msgid "Enable"
+msgstr "启用"
+
+#: inc/form.class.php:1698
+msgctxt "button"
+msgid "Send"
+msgstr ""
+
+#: inc/form.class.php:1717
+msgid "Forms import impossible, the file is empty"
+msgstr ""
+
+#: inc/form.class.php:1721 inc/form.class.php:1725
+msgid "Forms import impossible, the file seems corrupt"
+msgstr ""
+
+#: inc/form.class.php:1731
+msgid "Forms import impossible, the file was generated with another version"
+msgstr ""
+
+#: inc/form.class.php:1738
+msgid ""
+"The file does not specifies the schema version. It was probably generated "
+"with a version older than 2.10. Giving up."
+msgstr ""
+
+#: inc/form.class.php:1764
+#, php-format
+msgid "Failed to import %s"
+msgstr ""
+
+#: inc/form.class.php:1769
+#, php-format
+msgid "Forms successfully imported from %s"
+msgstr ""
+
+#: inc/form.class.php:1832
+#, php-format
+msgid "The form %1$s already exists and is in an unmodifiable entity."
+msgstr ""
+
+#: inc/form.class.php:1840
+#, php-format
+msgid "You don't have right to update the entity %1$s."
+msgstr ""
+
+#: inc/form.class.php:1850
+#, php-format
+msgid "The entity %1$s is required for the form %2$s."
+msgstr ""
+
+#: inc/form.class.php:1952
+msgid "Failed to create JSON document type"
+msgstr "无法创建JSON文档类型"
+
+#: inc/form.class.php:1959
+msgid "JSON document type not found"
+msgstr "找不到JSON文档类型"
+
+#: inc/form.class.php:1966
+msgid "Failed to update JSON document type"
+msgstr "无法更新JSON文档类型"
+
+#: inc/form.class.php:1986
+msgid "Forms without category"
+msgstr "无类别表格"
+
+#: inc/form.class.php:2007
+msgid "No form available"
+msgstr ""
+
+#: inc/form.class.php:2205 entrée standard:47
+msgid "Add a target"
+msgstr ""
+
+#: inc/form.class.php:2236 inc/targetticket.class.php:398
+#: inc/abstractitiltarget.class.php:1828 inc/abstractitiltarget.class.php:2124
+#: entrée standard:92 standard:94
+msgid "Add"
+msgstr ""
+
+#: inc/form.class.php:2254 inc/form.class.php:2277 inc/form.class.php:2299
+msgid "Unsupported target type."
+msgstr ""
+
+#: inc/form.class.php:2333
+msgid "plugin_formcreator_load_check"
+msgstr ""
+
+#: inc/targetchange.class.php:44 entrée standard:43
+msgid "Target change"
+msgid_plural "Target changes"
+msgstr[0] ""
+
+#: inc/targetchange.class.php:344 entrée standard:48
+msgid "Change title"
+msgstr ""
+
+#: inc/targetchange.class.php:374 entrée standard:56
+msgid "Control list"
+msgstr ""
+
+#: inc/targetchange.class.php:384 entrée standard:58
+msgid "Deployment plan"
+msgstr ""
+
+#: inc/targetchange.class.php:394 entrée standard:60
+msgid "Backup plan"
+msgstr ""
+
+#: inc/targetchange.class.php:404
+msgid "Check list"
+msgstr ""
+
+#: inc/questionfilter.class.php:52
+msgid "Question filter"
+msgid_plural "Question filters"
+msgstr[0] ""
+
+#: inc/section.class.php:71 entrée standard:53 standard:44
+msgid "Section"
+msgid_plural "Sections"
+msgstr[0] ""
+
+#: inc/section.class.php:123 inc/section.class.php:166
+#: inc/question.class.php:348
+msgid "The title is required"
+msgstr ""
+
+#: inc/section.class.php:553 inc/question.class.php:234 entrée standard:37
+msgid "Count of conditions"
+msgstr ""
+
+#: inc/restrictedformcriteria.class.php:179
+#, php-format
+msgid "Failed to find %1$s %2$s"
+msgstr ""
+
+#: inc/question.class.php:73 inc/abstractitiltarget.class.php:1127 entrée
+#: standard:41
+msgid "Question"
+msgid_plural "Questions"
+msgstr[0] ""
+
+#: inc/question.class.php:197 entrée standard:43 standard:50 standard:44
+#: standard:49 standard:79
+msgid "Required"
+msgstr ""
+
+#: inc/question.class.php:355
+msgid "The section is required"
+msgstr ""
+
+#: inc/question.class.php:365
+#, php-format
+msgid "Field type %1$s is not available for question %2$s."
+msgstr "字段类型 %1$s 不可用于问题 %2$s。"
+
+#: inc/question.class.php:379
+msgid "This type of question is not compatible with public forms."
+msgstr ""
+
+#: inc/question.class.php:469
+msgid "The field type cannot be changed. Delete then recreate the question."
+msgstr ""
+
+#: inc/question.class.php:1184
+msgid "Service levels"
+msgstr ""
+
+#: inc/question.class.php:1185 inc/abstractitiltarget.class.php:851
+msgid "SLA"
+msgstr ""
+
+#: inc/question.class.php:1186 inc/abstractitiltarget.class.php:924
+msgid "OLA"
+msgstr ""
+
+#: inc/question.class.php:1205 inc/question.class.php:1248
+#: inc/question.class.php:1251
+msgid "Assets"
+msgstr ""
+
+#: inc/question.class.php:1219 hook.php:780 hook.php:797
+msgid "Assistance"
+msgstr ""
+
+#: inc/question.class.php:1225
+msgid "Management"
+msgstr ""
+
+#: inc/question.class.php:1236
+msgid "Tools"
+msgstr ""
+
+#: inc/question.class.php:1237
+msgid "Notes"
+msgstr ""
+
+#: inc/question.class.php:1238
+msgid "RSS feed"
+msgstr ""
+
+#: inc/question.class.php:1240
+msgid "Administration"
+msgstr ""
+
+#: inc/question.class.php:1248 inc/question.class.php:1251
+msgid "Plugin"
+msgid_plural "Plugins"
+msgstr[0] ""
+
+#: inc/abstractquestionparameter.class.php:98
+msgid "Parameter"
+msgstr ""
+
+#: inc/abstractquestionparameter.class.php:105
+msgid "Field name"
+msgstr ""
+
+#: inc/abstracttarget.class.php:97
+msgid "Current active entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:98
+msgid "Default requester user's entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:99
+msgid "First dynamic requester user's entity (alphabetical)"
+msgstr ""
+
+#: inc/abstracttarget.class.php:100
+msgid "Last dynamic requester user's entity (alphabetical)"
+msgstr "最后一个动态请求者用户的实体(按字母顺序排列)"
+
+#: inc/abstracttarget.class.php:101
+msgid "The form entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:102
+msgid "Default entity of the validator"
+msgstr ""
+
+#: inc/abstracttarget.class.php:103
+msgid "Specific entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:104
+msgid "Default entity of a user type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:105
+msgid "From a GLPI object > Entity type question answer"
+msgstr ""
+
+#: inc/abstracttarget.class.php:116
+msgid "Always generated"
+msgstr ""
+
+#: inc/abstracttarget.class.php:117
+msgid "Disabled unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:118
+msgid "Generated unless"
+msgstr ""
+
+#: inc/abstracttarget.class.php:129
+msgid "A target must be associated to a form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:134
+msgid "A target must be associated to an existing form."
+msgstr ""
+
+#: inc/abstracttarget.class.php:139
+msgid "Name is required."
+msgstr ""
+
+#: inc/abstracttarget.class.php:502
+msgid "Destination entity"
+msgstr ""
+
+#: inc/abstracttarget.class.php:518
+msgid "User type question"
+msgstr ""
+
+#: inc/abstracttarget.class.php:519
+msgid "Entity type question"
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:53
+msgid "Searching for invalid items..."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:61
+msgid "Done."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:135
+msgid "Step 1: double encoded < and > signs."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:146
+#: inc/command/cleanticketscommand.class.php:196
+#: inc/command/cleanticketscommand.class.php:260
+msgid "No invalid items found."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:187
+msgid "Step 2: literal BR tag."
+msgstr ""
+
+#: inc/command/cleanticketscommand.class.php:251
+msgid "Step 3: litteral > sign."
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:52
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Request categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:53
+#: inc/filter/itilcategoryfilter.class.php:54
+msgid "Incident categories"
+msgstr ""
+
+#: inc/filter/itilcategoryfilter.class.php:55
+msgid "Change categories"
+msgstr ""
+
+#: inc/supervisorvalidator.class.php:44
+msgid "Requester supervisor"
+msgid_plural "Requester supervisors"
+msgstr[0] ""
+
+#: inc/supervisorvalidator.class.php:52
+msgid "My supervisor"
+msgstr ""
+
+#: inc/questionregex.class.php:52
+msgid "Question regular expression"
+msgid_plural "Question regular expressions"
+msgstr[0] ""
+
+#: inc/questiondependency.class.php:66
+msgid "Question dependency"
+msgid_plural "Question dependencies"
+msgstr[0] ""
+
+#: inc/answer.class.php:66 entrée standard:43
+msgid "Answer"
+msgid_plural "Answers"
+msgstr[0] ""
+
+#: inc/item_targetticket.class.php:52
+msgid "Composite ticket relation"
+msgid_plural "Composite ticket relations"
+msgstr[0] ""
+
+#: inc/targetticket.class.php:57 entrée standard:43
+msgid "Target ticket"
+msgid_plural "Target tickets"
+msgstr[0] ""
+
+#: inc/targetticket.class.php:100
+msgid "Specific asset"
+msgstr ""
+
+#: inc/targetticket.class.php:101 inc/targetticket.class.php:117
+#: inc/abstractitiltarget.class.php:207 inc/abstractitiltarget.class.php:215
+#: inc/abstractitiltarget.class.php:223 inc/abstractitiltarget.class.php:231
+#: inc/abstractitiltarget.class.php:240 inc/abstractitiltarget.class.php:249
+msgid "Equals to the answer to the question"
+msgstr "等于问题的答案"
+
+#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:232
+#: inc/abstractitiltarget.class.php:241 inc/abstractitiltarget.class.php:250
+msgid "Last valid answer"
+msgstr ""
+
+#: inc/targetticket.class.php:108
+msgid "Source from template or user default or GLPI default"
+msgstr ""
+
+#: inc/targetticket.class.php:109
+msgid "Formcreator"
+msgstr ""
+
+#: inc/targetticket.class.php:115
+msgid "Default or from a template"
+msgstr ""
+
+#: inc/targetticket.class.php:116
+msgid "Specific type"
+msgstr ""
+
+#: inc/targetticket.class.php:189 entrée standard:48
+msgid "Ticket title"
+msgstr ""
+
+#: inc/targetticket.class.php:307
+msgid "Add validation message as first ticket followup"
+msgstr ""
+
+#: inc/targetticket.class.php:341
+msgid "Add a field"
+msgstr ""
+
+#: inc/targetticket.class.php:369
+msgid "Managed fields"
+msgstr ""
+
+#: inc/targetticket.class.php:376
+msgid "No managed field"
+msgstr ""
+
+#: inc/targetticket.class.php:396
+msgid "Link to an other ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:405
+msgid "An other destination of this form"
+msgstr ""
+
+#: inc/targetticket.class.php:406
+msgid "An existing ticket"
+msgstr ""
+
+#: inc/targetticket.class.php:407
+msgid "A ticket from an answer to a question"
+msgstr ""
+
+#: inc/targetticket.class.php:488
+msgctxt "button"
+msgid "Delete permanently"
+msgstr ""
+
+#: inc/targetticket.class.php:743
+msgid "Invalid link type"
+msgstr "链接类型无效"
+
+#: inc/targetticket.class.php:763
+msgid "Invalid linked item type"
+msgstr "链接的项目类型无效"
+
+#: inc/targetticket.class.php:776
+msgid "Linked item does not exists"
+msgstr ""
+
+#: inc/targetticket.class.php:789
+msgid "Failed to link the item"
+msgstr ""
+
+#: inc/targetticket.class.php:905 install/install.php:497
+msgid "Your form has been accepted by the validator"
+msgstr ""
+
+#: inc/targetticket.class.php:1137
+msgid "Request source"
+msgstr ""
+
+#: inc/targetticket.class.php:1162
+msgid "Type "
+msgstr ""
+
+#: inc/targetticket.class.php:1190
+msgid "Associated elements"
+msgstr ""
+
+#: inc/targetticket.class.php:1201
+msgid "Item "
+msgstr "项目"
+
+#: inc/translation.class.php:153
+msgid "No more string to translate"
+msgstr ""
+
+#: inc/translation.class.php:164
+msgid "Internal error: translatable string not found."
+msgstr ""
+
+#: inc/translation.class.php:216
+msgid "Language not found."
+msgstr ""
+
+#: inc/translation.class.php:236
+msgid "Failed to add the translation."
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:187
+msgid "Tags from questions"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:188
+msgid "Specific tags"
+msgstr "特定标签"
+
+#: inc/abstractitiltarget.class.php:189
+msgid "Tags from questions and specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:190
+msgid "Tags from questions or specific tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:196
+msgid "TTR from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:197
+msgid "equals to the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:198
+msgid "calculated from the ticket creation date"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:199
+msgid "calculated from the answer to the question"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:205
+msgid "SLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:206
+msgid "Specific SLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:213
+msgid "OLA from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:214
+msgid "Specific OLA"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:221
+msgid "Urgency from template or Medium"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:222
+msgid "Specific urgency"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:229
+msgid "Category from template or none"
+msgstr "模板中的类别或无"
+
+#: inc/abstractitiltarget.class.php:230
+msgid "Specific category"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:238
+msgid "Location from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:239
+msgid "Specific location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:247
+msgid "Contract from template or none"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:248
+msgid "Specific contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:256
+msgid "No validation"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:257
+msgid "Specific user or group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:258
+msgid "User from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:259
+msgid "Group from question answer"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:839
+msgid "Minute"
+msgid_plural "Minutes"
+msgstr[0] ""
+
+#: inc/abstractitiltarget.class.php:840
+msgid "Hour"
+msgid_plural "Hours"
+msgstr[0] ""
+
+#: inc/abstractitiltarget.class.php:841
+msgid "Day"
+msgid_plural "Days"
+msgstr[0] ""
+
+#: inc/abstractitiltarget.class.php:842
+msgid "Month"
+msgid_plural "Months"
+msgstr[0] ""
+
+#: inc/abstractitiltarget.class.php:874
+msgid "SLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:875 inc/abstractitiltarget.class.php:948
+msgid "Question (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:947
+msgid "OLA (TTO/TTR)"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1051
+msgid "Urgency "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1080
+msgid "Ticket tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1128
+msgid "Tags"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1247
+msgid "Location"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1259
+msgid "Location "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1312
+msgid "Contract"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1324
+msgid "Contract "
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1635
+msgid "The description cannot be empty!"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:1811
+msgid "Watcher"
+msgid_plural "Watchers"
+msgstr[0] ""
+
+#: inc/abstractitiltarget.class.php:1830
+msgid "Cancel"
+msgstr "取消"
+
+#: inc/abstractitiltarget.class.php:2118 inc/abstractitiltarget.class.php:2548
+#: inc/abstractitiltarget.class.php:2552
+msgid "Email followup"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2149 inc/abstractitiltarget.class.php:2536
+msgid "User"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2160 inc/abstractitiltarget.class.php:2540
+msgid "Group"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2171
+msgid "Group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2177
+msgid "Tech group from the object"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2189 inc/abstractitiltarget.class.php:2544
+msgid "Supplier"
+msgstr ""
+
+#: inc/abstractitiltarget.class.php:2548
+msgid "Yes"
+msgstr ""
+
+#: install/install.php:163
+#, php-format
+msgid "Upgrade tables to innoDB; run %s"
+msgstr ""
+
+#: install/install.php:199
+#, php-format
+msgid ""
+"The database schema is not consistent with the previous version of "
+"Formcreator %s. To see the logs run the command %s"
+msgstr ""
+
+#: install/install.php:208
+#, php-format
+msgid "To ignore the inconsistencies and upgrade anyway run %s"
+msgstr ""
+
+#: install/install.php:225
+msgid ""
+"Upgrade from version older than 2.5.0 is no longer supported. Please upgrade"
+" to GLPI 9.5.7, upgrade Formcreator to version 2.12.5, then upgrade again to"
+" GLPI 10 or later and Formcreator 2.13 or later."
+msgstr ""
+
+#: install/install.php:251
+#, php-format
+msgid ""
+"A fatal error occured in the upgrade from %s! Upgrade aborted. Please check "
+"logs to fix the problem then try again."
+msgstr ""
+
+#: install/install.php:294
+#, php-format
+msgid ""
+"The database schema is not consistent with the current version of "
+"Formcreator %s. To see the logs enable the plugin and run the command %s"
+msgstr ""
+
+#: install/install.php:305
+msgid "The tables of the plugin passed the schema integrity check."
+msgstr ""
+
+#: install/install.php:478
+msgid "A form has been created"
+msgstr ""
+
+#: install/install.php:479
+msgid "Your request has been saved"
+msgstr ""
+
+#: install/install.php:480
+msgid ""
+"Hi,\\nYour request from GLPI has been successfully saved with number "
+"##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can "
+"see your answers onto the following link:\\n##formcreator.validation_link##"
+msgstr ""
+"嗨,\\n您的GLPI请求已成功保存编号为 ##formcreator.request_id## "
+"并传送给技术支持团队。\\n您可以在以下链接中看到您的答案:\\n##formcreator.validation_link##"
+
+#: install/install.php:484
+msgid "A form need validation"
+msgstr ""
+
+#: install/install.php:485
+msgid "A form from GLPI need to be validated"
+msgstr ""
+
+#: install/install.php:486
+msgid ""
+"Hi,\\nA form from GLPI need to be validated and you have been choosen as the"
+" validator.\\nYou can access it by clicking onto this "
+"link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:491
+msgid "Your form has been refused by the validator"
+msgstr ""
+
+#: install/install.php:492
+msgid ""
+"Hi,\\nWe are sorry to inform you that your form has been refused by the "
+"validator for the reason "
+"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and "
+"resubmit it by clicking onto this link:\\n##formcreator.validation_link##"
+msgstr ""
+
+#: install/install.php:498
+msgid ""
+"Hi,\\nWe are pleased to inform you that your form has been accepted by the "
+"validator.\\nYour request will be considered soon."
+msgstr ""
+
+#: install/install.php:503
+msgid "Your form has been deleted by an administrator"
+msgstr ""
+
+#: install/install.php:504
+msgid ""
+"Hi,\\nWe are sorry to inform you that your request cannot be considered and "
+"has been deleted by an administrator."
+msgstr ""
+
+#: install/install.php:732
+msgid "Formcreator - Sync service catalog issues"
+msgstr ""
+
+#: install/install.php:945
+msgid "Failed to check the sanity of the tables!"
+msgstr ""
+
+#: install/install.php:959
+#, php-format
+msgid "Table schema differs for table \"%s\"."
+msgstr ""
+
+#: install/install.php:962
+#, php-format
+msgid "Table \"%s\" is missing."
+msgstr ""
+
+#: install/install.php:965
+#, php-format
+msgid "Unknown table \"%s\" has been found in database."
+msgstr ""
+
+#: hook.php:439
+msgctxt "button"
+msgid "Duplicate"
+msgstr "重复"
+
+#: hook.php:440
+msgid "Transfer"
+msgstr ""
+
+#: hook.php:441
+msgctxt "button"
+msgid "Export"
+msgstr ""
+
+#: hook.php:442
+msgctxt "button"
+msgid "Access rights"
+msgstr ""
+
+#: hook.php:756
+msgid "Cancel my ticket"
+msgstr ""
+
+#: hook.php:774
+msgid "Old"
+msgstr ""
+
+#: hook.php:781
+#, php-format
+msgid "Number of %s"
+msgstr ""
+
+#: hook.php:798
+msgid "Issues summary"
+msgstr ""
+
+#: hook.php:843
+msgid ""
+"Formcreator's mini dashboard not usable as default. This Setting has been "
+"ignored."
+msgstr ""
+
+#: js/scripts.js:300
+msgid "No form found. Please choose a form below instead."
+msgstr ""
+
+#: js/scripts.js:302
+msgid "No form found."
+msgstr ""
+
+#: js/scripts.js:306
+msgid "No FAQ item found."
+msgstr ""
+
+#: js/scripts.js:707
+msgid "Are you sure you want to delete this question?"
+msgstr ""
+
+#: js/scripts.js:917
+msgid "Are you sure you want to delete this section?"
+msgstr ""
+
+#: js/scripts.js:1161
+msgid "Add translations"
+msgstr ""
+
+#: js/scripts.js:1300 js/scripts.js:1324
+msgid "An error occured while querying forms"
+msgstr ""
+
+#: js/scripts.js:1416 entrée standard:139
+msgid "Send"
+msgstr ""
+
+#: js/scripts.js:1425
+msgid "An internal error occurred. Please report it to administrator."
+msgstr ""
+
+#: js/scripts.js:1468
+msgid "Are you sure you want to delete this validator ?"
+msgstr ""
+
+#: js/scripts.js:1520
+msgid "Are you sure you want to duplicate this target?"
+msgstr ""
+
+#: js/scripts.js:1537
+msgid "Are you sure you want to delete this target?"
+msgstr ""
+
+#: entrée standard:57 standard:61 standard:60 standard:59 standard:43
+#: standard:69 standard:52 standard:76
+msgid "Default values"
+msgstr ""
+
+#: entrée standard:52 standard:59 standard:58
+msgid "Show empty"
+msgstr ""
+
+#: entrée standard:39
+msgid "LDAP directory"
+msgid_plural "LDAP directories"
+msgstr[0] ""
+
+#: entrée standard:78
+msgid "Attribute"
+msgstr ""
+
+#: entrée standard:70 standard:68
+msgid "Values"
+msgstr ""
+
+#: entrée standard:90
+msgid "Show ticket categories"
+msgstr ""
+
+#: entrée standard:146 standard:118
+msgid "Selectable root"
+msgstr ""
+
+#: entrée standard:38
+msgid "GLPI object"
+msgid_plural "GLPI objects"
+msgstr[0] ""
+
+#: entrée standard:63
+msgid "Direct access on homepage"
+msgstr "直接访问主页"
+
+#: entrée standard:86
+msgid "Default form in service catalog"
+msgstr "服务目录中的默认表单"
+
+#: entrée standard:113 standard:114
+msgid "Are you a robot ?"
+msgstr ""
+
+#: entrée standard:64
+msgid "Condition to show the section"
+msgstr ""
+
+#: entrée standard:40
+msgid "Condition to generate the target"
+msgstr ""
+
+#: entrée standard:40
+msgid "General"
+msgstr ""
+
+#: entrée standard:45
+msgid "validation percent"
+msgstr ""
+
+#: entrée standard:52
+msgid "Add a validator"
+msgstr ""
+
+#: entrée standard:57 standard:36
+msgid "Validation level"
+msgstr ""
+
+#: entrée standard:73
+msgid "Validator type"
+msgstr ""
+
+#: entrée standard:98
+msgid "Validators"
+msgstr ""
+
+#: entrée standard:106 standard:5
+msgid "Actions"
+msgstr ""
+
+#: entrée standard:54
+msgid "Impacts"
+msgstr ""
+
+#: entrée standard:62
+msgid "Checklist"
+msgstr ""
+
+#: entrée standard:36
+msgid "Answers title"
+msgstr ""
+
+#: entrée standard:45
+msgid "Add a section"
+msgstr ""
+
+#: entrée standard:55
+msgid "Condition to show the submit button"
+msgstr ""
+
+#: entrée standard:33
+msgid "No form answer yet"
+msgstr ""
+
+#: entrée standard:38
+#, php-format
+msgid "%s latest items"
+msgstr ""
+
+#: entrée standard:54
+msgid "Please activate the form to view the link"
+msgstr ""
+
+#: entrée standard:63
+msgid "Enable captcha"
+msgstr ""
+
+#: entrée standard:79
+msgid "Restricted to"
+msgstr ""
+
+#: entrée standard:83
+msgid "Add a question"
+msgstr ""
+
+#: entrée standard:39
+msgid "List of available tags"
+msgstr ""
+
+#: entrée standard:42
+msgid "Title"
+msgstr ""
+
+#: entrée standard:47
+msgid "Full form"
+msgstr ""
+
+#: entrée standard:37
+msgid "Validation status"
+msgstr ""
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (requester)"
+msgstr ""
+
+#: entrée standard:39
+msgid "No form posted yet"
+msgstr "尚未发布任何表格"
+
+#: entrée standard:63
+msgid "All my forms (requester)"
+msgstr "我的所有表格(请求者)"
+
+#: entrée standard:36
+#, php-format
+msgid "My %1$d last forms (validator)"
+msgstr ""
+
+#: entrée standard:63
+msgid "All my forms (validator)"
+msgstr "我所有的表格(验证员)"
+
+#: entrée standard:42
+msgid "Min"
+msgstr "最小值"
+
+#: entrée standard:53
+msgid "Max"
+msgstr "最大值"
diff --git a/plugin.xml b/plugin.xml
index dc7eeaa09..009461403 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -58,6 +58,11 @@ Features
Teclib'
+
+ 2.13.8
+ ~10.0
+ https://github.com/pluginsGLPI/formcreator/releases/download/2.13.8/glpi-formcreator-2.13.8.tar.bz2
+
2.13.7
~10.0