From a4b038c79adfc0a197c4590c866e1cc4d0e70d77 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Oct 2023 09:27:50 +0200 Subject: [PATCH 1/8] bump(2.13.8): version 2.13.8 --- .../mysql/plugin_formcreator_2.13.8_empty.sql | 352 ++++++++++++++++++ package.json | 2 +- plugin.xml | 5 + setup.php | 2 +- 4 files changed, 359 insertions(+), 2 deletions(-) create mode 100644 install/mysql/plugin_formcreator_2.13.8_empty.sql 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/package.json b/package.json index 6e0588487..9ce66e9f4 100644 --- a/package.json +++ b/package.json @@ -13,5 +13,5 @@ "tag": true } }, - "version": "2.13.7" + "version": "2.13.8" } 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 diff --git a/setup.php b/setup.php index 865d211b5..585666260 100644 --- a/setup.php +++ b/setup.php @@ -33,7 +33,7 @@ global $CFG_GLPI; // Version of the plugin (major.minor.bugfix) -define('PLUGIN_FORMCREATOR_VERSION', '2.13.7'); +define('PLUGIN_FORMCREATOR_VERSION', '2.13.8'); // Schema version of this version (major.minor only) define('PLUGIN_FORMCREATOR_SCHEMA_VERSION', '2.13'); // is or is not an official release of the plugin From 07969282c04a9142ec07b914f25abab8fb6ec4fa Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Oct 2023 09:54:00 +0200 Subject: [PATCH 2/8] chore: debug argument no longer supported by tx --- RoboFilePlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RoboFilePlugin.php b/RoboFilePlugin.php index bb391934e..8ef4ee29f 100644 --- a/RoboFilePlugin.php +++ b/RoboFilePlugin.php @@ -126,7 +126,7 @@ public function localesPush() { * @return void */ public function localesPull($percent = 70) { - $this->_exec('tx pull --debug -f -a --minimum-perc=' .$percent); + $this->_exec('tx pull -f -a --minimum-perc=' .$percent); return $this; } From 666ad556899496af1c3c16aac9db6901891f2d27 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Oct 2023 09:55:08 +0200 Subject: [PATCH 3/8] docs(locales): update --- inc/field/fieldsfield.class.php | 2 +- locales/ca_ES.po | 452 +++--- locales/cs_CZ.po | 456 +++--- locales/de_DE.po | 452 +++--- locales/en_GB.mo | Bin 39086 -> 39890 bytes locales/en_GB.po | 137 +- locales/en_US.po | 6 +- locales/es_419.po | 6 +- locales/es_AR.mo | Bin 28703 -> 43774 bytes locales/es_AR.po | 873 +++++----- locales/es_CO.po | 6 +- locales/es_EC.mo | Bin 0 -> 42986 bytes locales/es_EC.po | 2645 +++++++++++++++++++++++++++++++ locales/es_ES.po | 454 +++--- locales/es_MX.po | 6 +- locales/es_VE.mo | Bin 40826 -> 43594 bytes locales/es_VE.po | 495 +++--- locales/fi_FI.po | 6 +- locales/fr_CA.po | 454 +++--- locales/fr_FR.mo | Bin 43464 -> 44342 bytes locales/fr_FR.po | 458 +++--- locales/glpi.pot | 133 +- locales/hr_HR.mo | Bin 39380 -> 40362 bytes locales/hr_HR.po | 470 +++--- locales/hu_HU.po | 6 +- locales/it_IT.po | 6 +- locales/ja_JP.mo | Bin 0 -> 44849 bytes locales/ja_JP.po | 2526 +++++++++++++++++++++++++++++ locales/ko_KR.po | 450 +++--- locales/lv_LV.po | 6 +- locales/nb_NO.po | 6 +- locales/nl_BE.po | 6 +- locales/nl_NL.po | 6 +- locales/pl_PL.mo | Bin 30341 -> 30329 bytes locales/pl_PL.po | 460 +++--- locales/pt_BR.mo | Bin 40334 -> 42030 bytes locales/pt_BR.po | 493 +++--- locales/pt_PT.po | 6 +- locales/ro_RO.po | 6 +- locales/ru_RU.po | 456 +++--- locales/sk_SK.po | 456 +++--- locales/sr_RS.po | 6 +- locales/tr_TR.mo | Bin 39141 -> 41844 bytes locales/tr_TR.po | 508 +++--- locales/uk_UA.po | 6 +- 45 files changed, 9301 insertions(+), 3619 deletions(-) create mode 100644 locales/es_EC.mo create mode 100644 locales/es_EC.po create mode 100644 locales/ja_JP.mo create mode 100644 locales/ja_JP.po diff --git a/inc/field/fieldsfield.class.php b/inc/field/fieldsfield.class.php index e8ee6e9fb..7c6c282eb 100644 --- a/inc/field/fieldsfield.class.php +++ b/inc/field/fieldsfield.class.php @@ -562,7 +562,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/locales/ca_ES.po b/locales/ca_ES.po index 4c9efdd69..a7ebccc33 100644 --- a/locales/ca_ES.po +++ b/locales/ca_ES.po @@ -2,17 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Daniel Bonet , 2021 # Nuria Costa , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Nuria Costa , 2023\n" "Language-Team: Catalan (Spain) (https://app.transifex.com/teclib/teams/28042/ca_ES/)\n" @@ -69,7 +69,7 @@ msgstr "Sense límit" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulari" @@ -112,7 +112,7 @@ msgstr "No s'ha pogut actualitzar la secció" #: 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/formanswer.php:46 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 @@ -135,9 +135,8 @@ msgid "Bad request while deleting an actor." msgstr "Sol·licitud incorrecta eliminant 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Creador de formularis" @@ -151,8 +150,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Llista de formularis" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "S'ha guardat el formulari correctament!" @@ -181,11 +180,11 @@ msgstr "Veure-ho tot" msgid "Please, describe your need here" msgstr "Si us plau, descriu què necessites aquí" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Textarea" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -193,41 +192,41 @@ msgstr "Textarea" msgid "A required field is empty:" msgstr "Un camp obligatori està buit:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Expressió regular no vàlida" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Usuari i formulari" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Desplegable" msgstr[1] "Desplegables" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valor no vàlid per" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "El camp \"Tipus d'element\" és obligatori: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "El tipus de desplegable no és vàlid: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restricció d'entitat" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -247,8 +246,7 @@ msgstr "Directori LDAP no defnint!" msgid "LDAP directory not found!" msgstr "Directori LDAP no trobat!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "El format específic no coincideix: %s" @@ -267,52 +265,53 @@ msgstr "El text és massa llarg (màxim %d caràcters): %s" msgid "Text" msgstr "Text" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expressió regular" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Interval" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validació addicional" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Radios" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "El camp Valor és obligatori" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Un camp obligatori està buit: %s" -#: inc/field/integerfield.class.php:59 -#, php-format -msgid "This is not an integer: %s" -msgstr "Això no és un enter: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "El número %s ha de ser més gran que %d" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "El número %s ha de ser més petit que %d" +msgid "This is not an integer: %s" +msgstr "Això no és un enter: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Enter" @@ -365,12 +364,16 @@ msgid_plural "Tags" msgstr[0] "Etiquetes" msgstr[1] "Etiquetes" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objecte GLPI" msgstr[1] "Objectes GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "El camp Valor és obligatori" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -392,11 +395,11 @@ msgid_plural "Emails" msgstr[0] "Email" msgstr[1] "Emails" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Select" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Data i hora" @@ -434,7 +437,7 @@ msgstr "Falta un fitxer necessari: %s" msgid "File" msgstr "Arxiu" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Multiselect" @@ -468,32 +471,46 @@ msgid "Some URL fields contains invalid links" msgstr "Alguns camps d'URL contenen enllaços no vàlids" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Camps addicionals" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Checkboxes" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Interval mínim" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Interval màxim" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Tipus de petició" @@ -502,11 +519,21 @@ msgstr "Tipus de petició" msgid "This is not a number: %s" msgstr "Això no és un número: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "El número %s ha de ser més gran que %d" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "El número %s ha de ser més petit que %d" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Float" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Data" @@ -555,31 +582,31 @@ msgstr "Ocult llevat que" msgid "Displayed unless" msgstr "Mostra llevat que" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "No s'ha pogut afegir o actualitzar %1$s%2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "No es pot exportar un objecte buit: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Condicions" @@ -606,13 +633,13 @@ msgstr "" msgid "Satisfaction survey expired" msgstr "L'enquesta de satisfacció ha caducat" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nom" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -620,115 +647,115 @@ msgstr "Nom" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" msgstr[0] "Tipus" msgstr[1] "Tipus" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Estat" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Data d'obertura" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Última actualització" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entitat" msgstr[1] "Entitats" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" msgstr[0] "Sol·licitant" msgstr[1] "Sol·licitants" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Usuari que aprova la sol·licitud" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Comentari" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Qui aprova tiquets" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Tècnic/a" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Grup tècnic" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grup que aprova la sol·licitud" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Tot" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nou" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Assignat" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Esperant" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Per validar" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Resolt" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Tancat" @@ -750,19 +777,19 @@ msgstr "Com a fill de" msgid "The form as been saved" msgstr "S'ha guardat la sol·licitud" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "La sol·licitud ha de ser validada" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Sol·licitud denegada" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Sol·licitud acceptada" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Sol·licitud eliminada" @@ -775,13 +802,6 @@ msgstr "" msgid "Form name" msgstr "Nom del formulari" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Validador" -msgstr[1] "Validadors" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -928,78 +948,83 @@ msgid_plural "Form answers" msgstr[0] "Resposta del formulari" msgstr[1] "Respostes del formulari" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Imprimeix el formulari" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Sol·licitud acceptada pel validador." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Sol·licitud guardada correctament." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Desa" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Es requereix si es va denegar" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Denega" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Edita respostes" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Cancel·la l'edició" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Acceptat" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Cal un comentari de denegació!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "No ets el validador d'aquestes respostes" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Dades de la sol·licitud" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "No es poden generar objectius!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "No hi ha conjunt de proves de turing" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Has fallat el test de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Cal que seleccionis un/a validador/a!" @@ -1055,62 +1080,62 @@ msgid_plural "Form languages" msgstr[0] "Idioma del formulari" msgstr[1] "Idiomes del formulari" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Traducció" msgstr[1] "Traduccions" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Afegeix una traducció" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Actualitza la traducció" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nova traducció" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Llista de filtres" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "No s'ha trobat cap traducció" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Vols eliminar els elements seleccionats?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Elimina" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Text original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Afegeix un idioma nou" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Idioma" @@ -1120,6 +1145,12 @@ msgstr "Idioma" msgid "None" msgstr "Cap" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validador" +msgstr[1] "Validadors" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Necessita validació?" @@ -1157,7 +1188,7 @@ msgid "Properties" msgstr "Propietats" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1420,7 +1451,7 @@ msgstr "Accions" msgid "Duplicate" msgstr "Duplicada" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Afegeix un objectiu" @@ -1594,36 +1625,36 @@ msgstr "No tens permisos per actualitzar l'entitat %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "L'entitat %1$s es necessari pel formulari %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Error en la creació de documents tipus JSON." -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Document tipus JSON no trobat." -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Error en actualitzar el document tipus JSON." -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formularis sense categoria" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "No hi ha formulari disponible" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Afegeix" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Tipus d'objectiu no admès." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1660,11 +1691,11 @@ msgstr[0] "Secció" msgstr[1] "Seccions" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "El títol és obligatori" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Recompte de condicions" @@ -1680,73 +1711,73 @@ msgid_plural "Questions" msgstr[0] "Pregunta" msgstr[1] "Preguntes" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "El camp Tipus és obligatori" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Cal una secció" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Els arxius de tipus %1$s no està disponible per la pregunta %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Aquest tipus de pregunta no és compatible amb els formularis públics." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Aquest tipus de pregunta requereix paràmetres" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Falta un paràmetre per a aquest tipus de pregunta" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Nivells de servei" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Actius" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Assistència" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Gestió" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Eines" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notes" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "Canal RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administració" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Connector" @@ -1820,15 +1851,15 @@ msgstr "Un objectiu ha d'estar associat a un formulari existent." msgid "Name is required." msgstr "El nom és obligatori." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Entitat destí" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Pregunta de tipus Usuari" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Pregunta de tipus Entitat" @@ -1991,23 +2022,23 @@ msgstr "L'element enllaçat no existeix" msgid "Failed to link the item" msgstr "No s'ha pogut enllaçar l'element" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "La teva sol·licitud ha estat acceptada pel validador" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Origen de la sol·licitud" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Tipus" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Elements associats" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Element" @@ -2218,50 +2249,50 @@ msgstr "Proveïdor" msgid "Yes" msgstr "Sí" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" -#: install/install.php:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "S'ha creat el formulari" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "La teva sol·licitud s'ha guardat" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2271,11 +2302,11 @@ msgstr "" " ##formcreator.request_id## i s'ha tramès a l'equip de suport. \\nPots veure" " les seves respostes a l'enllaç : \\n ##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Hi ha una sol·licitud pendent de validació" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2285,11 +2316,11 @@ msgstr "" " com a validador. \\ nPots accedir-hi fent clic en aquest enllaç :.\\n " "##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "La teva sol·licitud ha estat denegada pel validador" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2300,7 +2331,7 @@ msgstr "" " ##formcreator.validation_comment##.\\n\\nEncara la pot modificar i tornar a" " enviar fent clic en aquest enllaç: \\n ##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2308,11 +2339,11 @@ msgstr "" "Hola, \\nEns complau informar-te que la seva sol·licitud ha estat acceptada " "pel validador. \\nLa sol·licitud serà tramitada en breu." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "La teva sol·licitud ha estat eliminada per un administrador" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2320,25 +2351,25 @@ msgstr "" "Hola, \\n Malauradament la teva sol·licitud no pot ser considerada i ha " "estat eliminada per un administrador." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator - Problemes amb la sincronització del catàleg de serveis" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "" -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "" @@ -2362,24 +2393,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Cancel·lar el meu tiquet" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Antic" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Nombre de %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Resum de problemes" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2431,7 +2462,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Obligatori" diff --git a/locales/cs_CZ.po b/locales/cs_CZ.po index da10c199f..2957b8a2d 100644 --- a/locales/cs_CZ.po +++ b/locales/cs_CZ.po @@ -2,18 +2,18 @@ # 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 , 2021 # Pavel Borecki , 2022 # David Stepan , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: David Stepan , 2023\n" "Language-Team: Czech (Czech Republic) (https://app.transifex.com/teclib/teams/28042/cs_CZ/)\n" @@ -70,7 +70,7 @@ msgstr "Žádný limit" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulář" @@ -115,7 +115,7 @@ msgstr "Není možné aktualizovat sekci" #: 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/formanswer.php:46 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 @@ -138,9 +138,8 @@ msgid "Bad request while deleting an actor." msgstr "Špatný požadavek při mazání aktéra." #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Tvorba formulářů" @@ -154,8 +153,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Seznam formulářů" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Formulář byl úspěšně uložen!" @@ -186,11 +185,11 @@ msgstr "Zobrazit vše" msgid "Please, describe your need here" msgstr "Zde popište své potřeby" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Textové pole" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -198,17 +197,17 @@ msgstr "Textové pole" msgid "A required field is empty:" msgstr "Není vyplněná povinná kolonka:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Regulární výraz není platný" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Uživatel a formulář" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Rozbalovací seznam" @@ -216,25 +215,25 @@ msgstr[1] "Rozbalovacích seznamů" msgstr[2] "Rozbalovacích seznamů" msgstr[3] "Rozbalovací seznamy" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Neplatná hodnota pro" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Je vyžadováno pole typu položky: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Neplatný typ rozbalovacího seznamu: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Omezení entity" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -254,8 +253,7 @@ msgstr "Není určený LDAP adresář!" msgid "LDAP directory not found!" msgstr "LDAP adresář nenalezen!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Konkrétní formát neodpovídá: %s" @@ -274,52 +272,53 @@ msgstr "Text je příliš dlouhý (nejvýše %d znaků): %s" msgid "Text" msgstr "Text" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Regulární výraz" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Rozmezí" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Dodatečné ověření" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Přepínač" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Je třeba vyplnit hodnotu do kolonky:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Povinné pole je prázdné: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "Toto není celé číslo: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 -#, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Je třeba, aby následující číslo bylo vyšší než %d: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Je třeba, aby následující číslo bylo nižší než %d: %s" +msgid "This is not an integer: %s" +msgstr "Toto není celé číslo: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Celé číslo" @@ -376,7 +375,7 @@ msgstr[1] "Tagů" msgstr[2] "Tagů" msgstr[3] "Tagy" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "GLPI objekt" @@ -384,6 +383,10 @@ msgstr[1] "GLPI objektů" msgstr[2] "GLPI objektů" msgstr[3] "GLPI objekty" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Je třeba vyplnit hodnotu do kolonky:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -409,11 +412,11 @@ msgstr[1] "Emailů" msgstr[2] "Emailů" msgstr[3] "Emaily" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Vybrat" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Datum a čas" @@ -453,7 +456,7 @@ msgstr "Chybí požadovaný soubor: %s" msgid "File" msgstr "Soubor" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Výběr vícero položek" @@ -487,32 +490,46 @@ msgid "Some URL fields contains invalid links" msgstr "Některá pole adres URL obsahují neplatné odkazy" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Další pole" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Zaškrtávací kolonka" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Rozsah min" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Rozsah max" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Typ dotazu" @@ -521,11 +538,21 @@ msgstr "Typ dotazu" msgid "This is not a number: %s" msgstr "Toto není číslo: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Je třeba, aby následující číslo bylo vyšší než %d: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Je třeba, aby následující číslo bylo nižší než %d: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Desetinné číslo" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Datum" @@ -578,31 +605,31 @@ msgstr "Skrýt dokud" msgid "Displayed unless" msgstr "Zobrazit dokud" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Nepodařilo se přidat nebo aktualizovat %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Nelze exportovat prázdný objekt: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Podmínky" @@ -630,13 +657,13 @@ msgstr "Aktualizovat data problému z požadavků a odpovědí z formulářů" msgid "Satisfaction survey expired" msgstr "Platnost průzkumu spokojenosti vypršela" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Název" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -644,7 +671,7 @@ msgstr "Název" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -653,19 +680,19 @@ msgstr[1] "Typů" msgstr[2] "Typů" msgstr[3] "Typy" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Stav" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Datum otevření" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Poslední aktualizace" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entita" @@ -673,10 +700,10 @@ msgstr[1] "Entit" msgstr[2] "Entit" msgstr[3] "Entity" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -685,80 +712,80 @@ msgstr[1] "Žadatelů" msgstr[2] "Žadatelů" msgstr[3] "Žadatelé" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Schvalovatel formuláře" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Komentář" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Schvalovatel požadavku" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Technik" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Skupina technika" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Skupina schvalovatele formuláře" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s%2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Vše" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nový" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Přířazeno" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Čeká se" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "K ověření" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Vyřešeno" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Uzavřeno" @@ -782,19 +809,19 @@ msgstr "Jako potomek" msgid "The form as been saved" msgstr "Formulář byl uložen" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Formulář je třeba ověřit" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Formulář byl zamítnut" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Formulář byl přijat" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Formulář byl smazán" @@ -807,15 +834,6 @@ msgstr "" msgid "Form name" msgstr "Název formuláře" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Ověřovatel" -msgstr[1] "Ověřovatelů" -msgstr[2] "Ověřovatelů" -msgstr[3] "Ověřovatelé" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -966,78 +984,83 @@ msgstr[1] "Odpovědí formuláře" msgstr[2] "Odpovědí formuláře" msgstr[3] "Odpovědi formuláře" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Vytisknout tento formulář" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulář byl schválen ověřovatelem." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulář byl úspěšně uložen." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Uložit" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Požadováno pokud je zamítnuto" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Zamítnout" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Upravit odpovědi" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Zrušit úpravu" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Schválit" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Komentář k zamítnutí je povinný!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Nejste ověřovatelem těchto odpovědí" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Data formuláře" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Není možné vytvářet cíle!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Žádná sada Turingových testů" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Neuspěl jsi v Turingově testu" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Je třeba vybrat ověřovatele!" @@ -1097,7 +1120,7 @@ msgstr[1] "Jazyků formuláře" msgstr[2] "Jazyků formuláře" msgstr[3] "Jazyky formuláře" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Překlad" @@ -1105,56 +1128,56 @@ msgstr[1] "Překladů" msgstr[2] "Překladů" msgstr[3] "Překlady" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Přidat překlad" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Aktualizovat překlad" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nový překlad" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Seznam filtrů" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Nebyl nalezen žádný překlad" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Chcete smazat vybrané položky?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Smazat" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Původní řetězec" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Přidat nový jazyk" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Jazyk" @@ -1164,6 +1187,14 @@ msgstr "Jazyk" msgid "None" msgstr "Žádné" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Ověřovatel" +msgstr[1] "Ověřovatelů" +msgstr[2] "Ověřovatelů" +msgstr[3] "Ověřovatelé" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Potřebujete ověření?" @@ -1203,7 +1234,7 @@ msgid "Properties" msgstr "Vlastnosti" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1472,7 +1503,7 @@ msgstr "Akce" msgid "Duplicate" msgstr "Kopírovat" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Přidat cíl" @@ -1643,36 +1674,36 @@ msgstr "Nemáte právo aktualizovat entitu %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "Entita %1$s je potřebná pro formulář %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Nepodařilo se vytvořit typ dokumentu JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Typ JSON dokumentu nenalezen" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Nepodařilo se aktualizovat typ JSON dokumentu" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formuláře bez kategorie" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Není k dispozici žádný formulář" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Přidat" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Nepodporovaný typ cíle." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1713,11 +1744,11 @@ msgstr[2] "Sekcí" msgstr[3] "Sekce" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Název je povinný" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Počet podmínek" @@ -1735,73 +1766,73 @@ msgstr[1] "Otázek" msgstr[2] "Otázek" msgstr[3] "Otázky" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Typ kolonky je povinný" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Sekce je povinná" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Typ kolonky %1$s není k dispozici pro otázku %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Tento typ otázky není kompatibilní s veřejnými formuláři." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Tento typ otázky vyžaduje parametry" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Chybí parametr pro tento typ otázky" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Úrovně služby" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Aktiva" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Podpora" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Management" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Nástroje" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Poznámky" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS kanál" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Správa" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Zásuvný modul" @@ -1877,15 +1908,15 @@ msgstr "Je třeba, aby cíl byl přiřazen k existujícímu formuláři." msgid "Name is required." msgstr "Název je povinný." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Cílová entita" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Typ uživatele dle otázky" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Typ entity dle otázky" @@ -2058,23 +2089,23 @@ msgstr "Odkazovaná položka neexistuje" msgid "Failed to link the item" msgstr "Nepodařilo se odkázat na položku" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Váš formulář byl ověřen ověřovatelem" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Zdroj dotazu" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Typ" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Přidružené prvky" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Položka" @@ -2295,50 +2326,50 @@ msgstr "Dodavatel" msgid "Yes" msgstr "Ano" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" -#: install/install.php:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Formulář byl vytvořen" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Vaše žádost byla uložena" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2348,11 +2379,11 @@ msgstr "" "##formcreator.request_id## a předán týmu podpory. Odpovědi můžete vidět na " "následujícím odkazu:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Formulář z GLPI je třeba ověřit" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2362,11 +2393,11 @@ msgstr "" "jako ověřovatel.\\n K formuláři můžete přistoupit kliknutím na tento " "odkaz:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Váš formulář byl zamítnut ověřovatelem" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2377,7 +2408,7 @@ msgstr "" "\\n##formcreator.validation_comment##\\n\\nFormulář můžete nadále upravovat " "kliknutím na tento odkaz:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2385,35 +2416,35 @@ msgstr "" "Dobrý den,\\n Váš formulář byl schválen ověřovatelem.\\n Váš požadavek bude " "brzy řešen." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Váš formulář byl smazán správcem" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." msgstr "Dobrý den,\\n Váš formulář nebude řešen a byl smazán správcem." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Vytváření formulářů – problémy katalogu synchronizační služby" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "" -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "" @@ -2437,24 +2468,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Zrušit můj požadavek" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Staré" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Počet z %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Shrnutí problémů" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2506,7 +2537,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Povinné" diff --git a/locales/de_DE.po b/locales/de_DE.po index d42843e91..64b93407c 100644 --- a/locales/de_DE.po +++ b/locales/de_DE.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: # armin0103 , 2021 # Janosch, 2021 @@ -13,13 +13,13 @@ # Kerstin Heim , 2022 # Florian Ried , 2022 # Michael Schieferer, 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Michael Schieferer, 2023\n" "Language-Team: German (Germany) (https://app.transifex.com/teclib/teams/28042/de_DE/)\n" @@ -76,7 +76,7 @@ msgstr "Uneingeschränkt" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formular" @@ -119,7 +119,7 @@ msgstr "Konnte den Abschnitt nicht aktualisieren" #: 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/formanswer.php:46 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 @@ -142,9 +142,8 @@ msgid "Bad request while deleting an actor." msgstr "Ungültige Anforderung beim Löschen des Akteurs" #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Formular erstellen" @@ -158,8 +157,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Formularliste" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Das Formular wurde erfolgreich gespeichert" @@ -188,11 +187,11 @@ msgstr "Alle anzeigen" msgid "Please, describe your need here" msgstr "Bitte beschreiben Sie hier Ihre Anforderung" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Textbereich" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -200,41 +199,41 @@ msgstr "Textbereich" msgid "A required field is empty:" msgstr "Ein notwendiges Feld ist nicht ausgefüllt:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Der reguläre Ausdruck ist ungültig" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Benutzer und Formular" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Dropdown" msgstr[1] "Dropdowns" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Ungültiger Wert: " -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Eintragstyp muss definiert sein: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Ungültiger Dropdown-Typ: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "EInschränkung" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -254,8 +253,7 @@ msgstr "LDAP-Verzeichnis nicht angegeben!" msgid "LDAP directory not found!" msgstr "LDAP-Verzeichnis nicht gefunden!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Spezifisches Format stimmt nicht überein: %s" @@ -274,52 +272,53 @@ msgstr "Der Text ist zu lang (maximal %d Zeichen): %s" msgid "Text" msgstr "Text" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "reguläre Bezeichnung" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Reichweite" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "nachträgliche Genehmigung" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Radios" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Dieses Feld muss ausgefüllt werden:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Ein notwendiges Feld ist nicht ausgefüllt: %s" -#: inc/field/integerfield.class.php:59 -#, php-format -msgid "This is not an integer: %s" -msgstr "Dies ist keine Zahl: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Die folgende Zahl muss größer als %d sein: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Die folgende Zahl muss kleiner als %d sein: %s" +msgid "This is not an integer: %s" +msgstr "Dies ist keine Zahl: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Integer" @@ -372,12 +371,16 @@ msgid_plural "Tags" msgstr[0] "Tag" msgstr[1] "Tags" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "GLPI Objekt" msgstr[1] "GLPI Objekte" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Dieses Feld muss ausgefüllt werden:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -399,11 +402,11 @@ msgid_plural "Emails" msgstr[0] "Email" msgstr[1] "Emails" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "auswählen" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Datum & Uhrzeit" @@ -441,7 +444,7 @@ msgstr "Eine erforderliche Datei fehlt: %s" msgid "File" msgstr "Datei" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Multiselect" @@ -475,32 +478,46 @@ msgid "Some URL fields contains invalid links" msgstr "Manche Felder für URL enthalten keine Links" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Zusätzliche Felder" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Checkbox" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Bereichsminimum" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Bereichsmaximum" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Anfragetyp" @@ -509,11 +526,21 @@ msgstr "Anfragetyp" msgid "This is not a number: %s" msgstr "Dies ist keine Zahl: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Die folgende Zahl muss größer als %d sein: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Die folgende Zahl muss kleiner als %d sein: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Gleitkommazahl" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Datum" @@ -562,31 +589,31 @@ msgstr "versteckt, es sei denn" msgid "Displayed unless" msgstr "angezeigt, es sei denn" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Fehler beim Hinzufügen oder Aktualisieren von %1$s%2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Kann ein leeres Objekt nicht exportieren: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Bedingungen" @@ -612,13 +639,13 @@ msgstr "Aktualisieren Sie Problemdaten aus Tickets und Formularantworten" msgid "Satisfaction survey expired" msgstr "Zufriedenheitsumfrage abgelaufen" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Name" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -626,115 +653,115 @@ msgstr "Name" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" msgstr[0] "Typ" msgstr[1] "Typen" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Status" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Eröffnungsdatum" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Letztes Update" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Gruppe" msgstr[1] "Gruppen" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" msgstr[0] "Anforderer" msgstr[1] "Anforderer" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Formulargenehmiger" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "notwendig bei Ablehnung" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Ticket-Genehmiger" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Techniker" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Technikergruppe" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Formulargenehmigergruppe" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "Ticket-Genehmigergruppe" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "Ticket Anforderer" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "Ticket Beobachter" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "Ticket Techniker" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Alle" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Neu" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Zugewiesen" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Warte" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Zu genehmigen" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Gelöst" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Abgeschlossen" @@ -756,19 +783,19 @@ msgstr "Als Kind von" msgid "The form as been saved" msgstr "Das Formular wurde gespeichert" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Ein Formular wartet auf Genehmigung" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Das Formular wurde abgelehnt" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Das Formular wurde akzeptiert" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Das Formular wurde gelöscht" @@ -781,13 +808,6 @@ msgstr "" msgid "Form name" msgstr "Formularname" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Prüfer" -msgstr[1] "Prüfer" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -934,78 +954,83 @@ msgid_plural "Form answers" msgstr[0] "Formularantwort" msgstr[1] "Formularantworten" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Drucke dieses Formular" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formular genehmigt" -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formular erfolgreich gespeichert" -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Speichern" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Erforderlich, falls abgelehnt" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "ablehnen" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Fragen bearbeiten" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Bearbeitung abbrechen" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "akzeptieren" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Kommentar zur Ablehnung erforderlich" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Sie sind nicht der Genehmiger dieser Anforderung" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "Eintrag erfolgreich hinzugefügt: %1$s (%2$s:%3$s)" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Formulardaten " -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Zugriff generieren nicht möglich!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Kein Turingtest eingestellt" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Du hast den Turingtest nicht bestanden" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Du musst einen Genehmiger auswählen!" @@ -1065,62 +1090,62 @@ msgid_plural "Form languages" msgstr[0] "Formularsprache" msgstr[1] "Formularsprachen" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Übersetzung" msgstr[1] "Übersetzungen" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Eine Übersetzung hinzufügen" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Übersetzung aktualisieren" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Neue Übersetzung" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Liste filtern" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Keine Übersetzungen gefunden" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Willst Du die gewählten Einträge löschen?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Löschen" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Originalwortlaut" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Neue Sprache hinzufügen" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Sprache" @@ -1130,6 +1155,12 @@ msgstr "Sprache" msgid "None" msgstr "Kein" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Prüfer" +msgstr[1] "Prüfer" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Muss geprüft werden?" @@ -1167,7 +1198,7 @@ msgid "Properties" msgstr "Eigenschaften" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1430,7 +1461,7 @@ msgstr "Aktionen" msgid "Duplicate" msgstr "duplizieren" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Ziel hinzufügen" @@ -1603,36 +1634,36 @@ msgstr "Keine Berechtigung zum Ändern von %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "%1$s ist erforderlich für das Formular %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Das Anlegen des JSON-Dokumenten-Typs schlug fehl" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "JSON Dokumenttyp nicht gefunden" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Update des JSON Dokumenttyps fehlgeschlagen" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formulare ohne Kategorie" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Kein Formular verfügbar" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Hinzufügen" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Zieltyp nicht unterstützt." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1669,11 +1700,11 @@ msgstr[0] "Abschnitt" msgstr[1] "Abschnitte" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Der Titel wird benötigt" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Anzahl der Bedingungen" @@ -1689,73 +1720,73 @@ msgid_plural "Questions" msgstr[0] "Frage" msgstr[1] "Fragen" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Feldtyp bitte eingeben" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Die Sektion ist notwendig" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Typ %1$s is nicht verfügbar für die Frage %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Art der Frage ist nicht verfügbar bei öffentlichen Formularen." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Diese Art der Frage erfordert Parameter" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Ein Parameter fehlt für diesen Fragetyp" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Service levels" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Assets" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Unterstützung" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Management" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Tools" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notizen" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS feed" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administration" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Plugin" @@ -1829,15 +1860,15 @@ msgstr "Ein Ziel muss einem bestehendem Formular zugeordnet sein." msgid "Name is required." msgstr "Name ist erforderlich" -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Zielgruppe" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Benutzerfragestellung" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Gruppen-Antwort" @@ -2000,23 +2031,23 @@ msgstr "Verknüpftes Element existiert nicht" msgid "Failed to link the item" msgstr "Verknüpfung zum Element fehlgeschlagen" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Ihr Formular wurde genehmigt." -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Anfragequelle" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Typ" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Verbundene Typen" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Item" @@ -2227,25 +2258,25 @@ msgstr "Lieferant" msgid "Yes" msgstr "Ja" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Aktualisiere Tabellen der InnoDB; ausführen von %s" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" "Um die Inkonsistenzen zu ignorieren und trotzdem ein Upgrade auszuführen: %s" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2256,27 +2287,27 @@ msgstr "" "Version 2.12.5, aktualisieren Sie dann erneut auf GLPI 10 oder höher und " "Formcreator 2.13 oder höher." -#: install/install.php:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" "Die Tabellen des Plugins haben die Schema-Integritätsprüfung bestanden." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Ein Formular wurde erstellt" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Ihre Anfrage wurde erfolgreich gespeichert" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2287,11 +2318,11 @@ msgstr "" "Sie können Ihre Anforderung unter folgendem Link einsehen: " "\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Ein Formular von GLPI wartet auf Genehmigung" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2302,11 +2333,11 @@ msgstr "" " werden, um genehmigt bzw. abgelehnt zu " "werden:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Ihr Formular wurde abgelehnt" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2318,7 +2349,7 @@ msgstr "" "\\n\\n Sie können Ihre Anforderung unter folgendem Link bearbeiten und " "erneut einreichen:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2327,11 +2358,11 @@ msgstr "" "von der genehmigenden Person akzeptiert worden ist. \\nIhre Anfrage wird " "somit schnellstmöglich von der IT-Abteilung berücksichtigt." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Ihr Formular wurde von einem Administrator gelöscht" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2339,25 +2370,25 @@ msgstr "" "Guten Tag, \\nLeider müssen wir Ihnen mitteilen, dass Ihre Anfrage nicht " "berücksichtigt werden kann und von einem Administrator gelöscht wurde." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator – Probleme mit dem Synchronisierungsdienstkatalog" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "Korrektheit der Tabellen konnte nicht überprüft werden!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "Das Tabellenschema unterscheidet sich für die Tabelle \"%s\"." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "Tabelle \"%s\" fehlt" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "Unbekannte Tabelle \"%s\" in Datenbank gefunden." @@ -2381,24 +2412,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Mein Ticket abbrechen" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Alt" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Anzahl von %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "usammenfassung der Probleme" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2451,7 +2482,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "erforderlich" diff --git a/locales/en_GB.mo b/locales/en_GB.mo index 41979dd9bb8f0c2dd460444d713b433eb56d3508..58860f82bec60fbf76b3dcc5213b0d599c6c2ef8 100644 GIT binary patch literal 39890 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 RO}E_K?Y7dbw&*t7{{w$=>BIm4 literal 39086 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, YEAR. -# +# # Translators: # Thierry Bugier , 2022 -# +# #, fuzzy msgid "" msgstr "" @@ -465,7 +465,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/es_419.po b/locales/es_419.po index c5ef749d1..773668e60 100644 --- a/locales/es_419.po +++ b/locales/es_419.po @@ -2,11 +2,11 @@ # 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 "" @@ -479,7 +479,7 @@ msgid "Some URL fields contains invalid links" msgstr "Algunos campos de URL contienen enlaces no válidos" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Campos Adicionales" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/es_AR.mo b/locales/es_AR.mo index 870300cdf88d4bfd26c3bf4b8d9fba1aef4cd018..73e5c067d9353df31d5a21aca96fd7fcc5b9c40c 100644 GIT binary patch literal 43774 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 r7~g7@Gn`q5ouX, 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-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Nicolás Gaviola, 2023\n" "Language-Team: Spanish (Argentina) (https://app.transifex.com/teclib/teams/28042/es_AR/)\n" @@ -71,7 +71,7 @@ msgstr "Sin limite." #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulario" @@ -115,7 +115,7 @@ msgstr "No se pudo actualizar la sección" #: 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/formanswer.php:46 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 @@ -138,9 +138,8 @@ 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Creador de Formularios" @@ -154,8 +153,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Lista de formularios" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "¡El formulario ha sido guardado con éxito!" @@ -185,11 +184,11 @@ msgstr "Ver todo" msgid "Please, describe your need here" msgstr "Por favor, describa su necesidad aquí" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Área de texto" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -197,42 +196,42 @@ msgstr "Área de texto" msgid "A required field is empty:" msgstr "Campo obligatorio vacío:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: 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:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Usuario y formulario" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 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:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valor incorrecto para" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "El campo de tipo de elemento es obligatorio: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Tipo de menú desplegable no válido: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restricción de entidad" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -253,8 +252,7 @@ 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:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "El formato especificado no coincide: %s" @@ -262,63 +260,64 @@ msgstr "El formato especificado no coincide: %s" #: inc/field/textfield.class.php:155 #, php-format msgid "The text is too short (minimum %d characters): %s" -msgstr "" +msgstr "El texto es demasiado corto (mínimo %d caracteres): %s" #: inc/field/textfield.class.php:160 #, php-format msgid "The text is too long (maximum %d characters): %s" -msgstr "" +msgstr "El texto es demasiado largo (máximo %d caracteres): %s" #: inc/field/textfield.class.php:168 msgid "Text" msgstr "Texto" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expresión regular" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Rango" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validación adicional" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Radios" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Valor de campo obligatorio:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "El valor del campo es obligatorio." -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "Sólo se permite un valor predeterminado." + +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "El valor predeterminado no está en la lista de valores disponibles." + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" -msgstr "" +msgstr "Un campo requerido está vacío: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "" +msgid "This value %1$s is not allowed: %2$s" +msgstr "Este valor %1$s no está permitido: %2$s" -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "" - -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 -#, php-format -msgid "The following number must be lower than %d: %s" -msgstr "" +msgid "This is not an integer: %s" +msgstr "Este no es un número entero: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Entero" @@ -373,13 +372,17 @@ msgstr[0] "Etiqueta" msgstr[1] "Etiquetas" msgstr[2] "Etiquetas" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objeto GLPI" msgstr[1] "Objetos GLPI" msgstr[2] "Objetos GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Valor de campo obligatorio:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -403,11 +406,11 @@ msgstr[0] "Correo electrónico" msgstr[1] "Correos electrónicos" msgstr[2] "Correos electrónicos" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Seleccionar" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Fecha y hora" @@ -421,7 +424,7 @@ msgstr[2] "Actores" #: inc/field/actorfield.class.php:267 #, php-format msgid "Invalid value: %s" -msgstr "" +msgstr "Valor inválido: %s" #: inc/field/actorfield.class.php:290 #, php-format @@ -430,7 +433,7 @@ msgstr "Usuario no encontrado o dirección de correo electrónico no válida:%s" #: inc/field/filefield.class.php:123 msgid "No attached document" -msgstr "" +msgstr "No hay documento adjunto" #: inc/field/filefield.class.php:132 inc/field/filefield.class.php:268 #: inc/field/filefield.class.php:275 @@ -440,13 +443,13 @@ msgstr "Documento adjunto" #: inc/field/filefield.class.php:174 #, php-format msgid "A required file is missing: %s" -msgstr "" +msgstr "Falta un archivo obligatorio: %s" #: inc/field/filefield.class.php:191 msgid "File" msgstr "Archivo" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Selección múltiple" @@ -474,52 +477,77 @@ msgstr "¡El tipo de campo '%1$s' aún no está implementado!" #: inc/field/fieldsfield.class.php:466 msgid "Some numeric fields contains non numeric values" -msgstr "" +msgstr "Algunos campos numéricos contienen valores no numéricos" #: inc/field/fieldsfield.class.php:471 msgid "Some URL fields contains invalid links" -msgstr "" +msgstr "Algunos campos de URL contienen enlaces no válidos" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Campos Adicionales" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Casillas de verificación" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "No se permiten valores vacíos: %s" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "Este valor %1$s no está permitido: %2$s" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" -msgstr "" +msgstr "La siguiente pregunta necesita al menos %d respuestas: %s" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" +msgstr "La siguiente pregunta no acepta más de %d respuestas: %s" + +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." msgstr "" +"Los valores predeterminados no están en la lista de valores disponibles." -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Rango mínimo" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Rango máximo" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Tipo de solicitud" #: inc/field/floatfield.class.php:141 #, php-format msgid "This is not a number: %s" -msgstr "" +msgstr "Esto no es un número: %s" + +#: inc/field/floatfield.class.php:170 +#, 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/floatfield.class.php:176 +#, 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/floatfield.class.php:182 +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Flotador" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Fecha" @@ -556,7 +584,7 @@ msgstr "no es visible" #: inc/condition.class.php:106 msgid "regular expression matches" -msgstr "" +msgstr "coincidencias de expresiones regulares" #: inc/condition.class.php:117 msgid "Always displayed" @@ -570,31 +598,31 @@ msgstr "Oculto amenos que" msgid "Displayed unless" msgstr "Mostrar al menos que" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, 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:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" -msgstr "" +msgstr "No se puede exportar un objeto vacío: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Condiciones" @@ -609,9 +637,9 @@ msgstr "Importación en curso" #: inc/issue.class.php:43 msgid "Issue" msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Problema" +msgstr[1] "Problemas" +msgstr[2] "Problemas" #: inc/issue.class.php:56 msgid "Update issue data from tickets and form answers" @@ -619,15 +647,15 @@ msgstr "Actualizar los datos de emisión de tickets y formular respuestas" #: inc/issue.class.php:379 msgid "Satisfaction survey expired" -msgstr "" +msgstr "La encuesta de satisfacción ha caducada" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nombre" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -635,7 +663,7 @@ msgstr "Nombre" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -643,110 +671,110 @@ msgstr[0] "Tipo" msgstr[1] "Tipos" msgstr[2] "Tipos" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Estado" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Fecha de apertura" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Última modificación" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entidad" msgstr[1] "Entidades" msgstr[2] "Entidades" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Solicitante" +msgstr[1] "Solicitantes" +msgstr[2] "Solicitantes" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Aprobador de formulario" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Comentario" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Aprobador de tickets" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" -msgstr "" +msgstr "Técnico" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" -msgstr "" +msgstr "Grupo de técnicos" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grupo aprobador de formularios" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" -msgstr "" +msgstr "Grupo aprobador de ticket" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" -msgstr "" +msgstr "Solicitante del ticket" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" -msgstr "" +msgstr "Observador del ticket" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" -msgstr "" +msgstr "Técnico del ticket" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" -msgstr "" +msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" -msgstr "" +msgstr "Todos" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" -msgstr "" +msgstr "Nuevos" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" -msgstr "" +msgstr "Asignado" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" -msgstr "" +msgstr "En espera" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Validar" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" -msgstr "" +msgstr "Resueltos" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Cerrado" @@ -763,45 +791,37 @@ msgstr "Categoría de conocimiento" #: inc/category.class.php:78 msgid "As child of" -msgstr "" +msgstr "Debajo de" #: inc/notificationtargetformanswer.class.php:43 msgid "The form as been saved" msgstr "El formulario se ha guardado" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Un formulario necesita autorización" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Se rechaza el formulario" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Se acepta el formulario" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Se borró el formulario" #: inc/notificationtargetformanswer.class.php:74 msgid "Form ID" -msgstr "" +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:76 -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:281 #: entrée standard:49 @@ -815,7 +835,7 @@ msgstr "Respuestas de formulario completo" #: inc/notificationtargetformanswer.class.php:80 msgid "Validation comment" -msgstr "" +msgstr "Comentario de validación" #: inc/notificationtargetformanswer.class.php:81 #: inc/notificationtargetformanswer.class.php:101 @@ -824,7 +844,7 @@ msgstr "Enlace de validación" #: inc/notificationtargetformanswer.class.php:82 msgid "Request ID" -msgstr "" +msgstr "Solicitar ID" #: inc/notificationtargetformanswer.class.php:94 msgid "Form #" @@ -845,12 +865,12 @@ msgstr "Solicitud #" #: inc/notificationtargetformanswer.class.php:114 msgid "Author" -msgstr "" +msgstr "Autor" #: inc/notificationtargetformanswer.class.php:115 #: inc/abstractitiltarget.class.php:1318 msgid "Approver" -msgstr "" +msgstr "Aprobador" #: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2090 msgid "Form author" @@ -902,18 +922,18 @@ msgstr "Supervisor del autor del formulario" #: inc/target_actor.class.php:102 msgid "Observer" -msgstr "" +msgstr "Observador" #: inc/target_actor.class.php:103 inc/abstractitiltarget.class.php:1767 msgid "Assigned to" -msgstr "" +msgstr "Asignado a" #: inc/target_actor.class.php:109 msgid "Target actor" msgid_plural "Target actors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +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 @@ -923,17 +943,17 @@ msgstr "Solicitud incorrecta al agrgar un participante." #: inc/target_actor.class.php:197 #, php-format msgid "Failed to find a user: %1$s" -msgstr "" +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 "" +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 "" +msgstr "No se pudo encontrar un proveedor: %1$s" #: inc/formanswer.class.php:79 inc/form_validator.class.php:71 msgid "Refused" @@ -941,7 +961,7 @@ msgstr "Rechazado" #: inc/formanswer.class.php:80 inc/form_validator.class.php:70 msgid "Accepted" -msgstr "" +msgstr "Aceptado" #: inc/formanswer.class.php:226 msgid "Form answer" @@ -950,88 +970,96 @@ msgstr[0] "Respuesta de formulario" msgstr[1] "Respuestas del formulario" msgstr[2] "Respuestas del formulario" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "cbvsxv" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulario aceptado por el validador." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulario correctamente guardado." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" -msgstr "" +msgstr "Guardar" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Requerido si se rechaza" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Rechazo" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" -msgstr "" +msgstr "Editar respuestas" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" -msgstr "" +msgstr "Cancelar edición" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Aceptar" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "¡Se requiere comentario rechazado!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 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:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Usted no es el validador de estas respuestas" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, 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:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Datos del formulario" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "¡No puede generar objetivos!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "La respuesta no es válida en %1$s" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" -msgstr "" +msgstr "No se ha configurado una prueba de Turing" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" -msgstr "" +msgstr "Fallaste en la prueba de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" -msgstr "" +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 "" +msgstr "No se pudo eliminar este problema. Ocurrió un error interno." #: inc/common.class.php:783 msgid "Seek assistance" @@ -1043,7 +1071,7 @@ msgstr "Mis pedidos de asistencia" #: inc/common.class.php:829 msgid "Consult reminders" -msgstr "" +msgstr "Consultar recordatorios" #: inc/common.class.php:849 msgid "Consult feeds" @@ -1066,7 +1094,7 @@ msgstr "Por favor, active el formulario para ver el enlace" #: inc/formaccesstype.class.php:100 inc/form.class.php:1505 msgid "Enable captcha" -msgstr "" +msgstr "Habilitar captcha" #: inc/formaccesstype.class.php:112 msgid "Restricted to" @@ -1079,63 +1107,63 @@ 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 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Traducción" msgstr[1] "Traducciones" msgstr[2] "Traducciones" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." -msgstr "" +msgstr "El nombre no puede estar vacío." -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." -msgstr "" +msgstr "El idioma debe estar asociado a un formulario." -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." -msgstr "" +msgstr "El idioma especificado no está disponible." -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Agregar una traducción" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Actualizar una traducción" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nueva traducción" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" -msgstr "" +msgstr "Lista de filtros" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Traducción no encontrada" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" -msgstr "" +msgstr "¿Quiere borrar los siguientes elementos?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Borrar" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" -msgstr "" +msgstr "Cadena original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Agregar un nuevo idioma" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Idioma" @@ -1145,13 +1173,20 @@ msgstr "Idioma" msgid "None" msgstr "Ninguna" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validador" +msgstr[1] "Validadores" +msgstr[2] "Validadores" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "¿Necesita validación?" #: inc/form_validator.class.php:118 inc/abstractitiltarget.class.php:2499 msgid "No" -msgstr "" +msgstr "No" #: inc/form_validator.class.php:295 inc/targetproblem.class.php:147 #: inc/entityconfig.class.php:435 inc/targetchange.class.php:484 @@ -1159,7 +1194,7 @@ msgstr "" #: inc/abstractitiltarget.class.php:2073 msgctxt "button" msgid "Save" -msgstr "" +msgstr "Guardar" #: inc/form_validator.class.php:709 inc/abstractitiltarget.class.php:1298 msgid "Validation" @@ -1183,7 +1218,7 @@ msgid "Properties" msgstr "Propiedades" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1199,24 +1234,24 @@ msgstr "Actores" #: inc/targetproblem.class.php:633 entrée standard:48 msgid "Problem title" -msgstr "" +msgstr "Título del problema" #: inc/targetproblem.class.php:643 inc/targetchange.class.php:354 #: inc/targetticket.class.php:199 msgid "Content" -msgstr "" +msgstr "Contenido" #: inc/targetproblem.class.php:653 inc/targetchange.class.php:364 msgid "Impact" -msgstr "" +msgstr "Impacto" #: inc/targetproblem.class.php:663 entrée standard:56 msgid "Cause" -msgstr "" +msgstr "Motivo" #: inc/targetproblem.class.php:673 entrée standard:58 msgid "Symptom" -msgstr "" +msgstr "Síntoma" #: inc/entityconfig.class.php:92 inc/entityconfig.class.php:101 #: inc/entityconfig.class.php:109 inc/entityconfig.class.php:117 @@ -1224,7 +1259,7 @@ msgstr "" #: inc/entityconfig.class.php:141 inc/entityconfig.class.php:149 #: inc/entityconfig.class.php:157 msgid "Inheritance of the parent entity" -msgstr "" +msgstr "Herencia de la entidad padre" #: inc/entityconfig.class.php:93 msgid "GLPi's helpdesk" @@ -1240,7 +1275,7 @@ msgstr "Catálogo de servicios ampliado" #: inc/entityconfig.class.php:102 msgid "All available forms" -msgstr "" +msgstr "Todos los formularios disponibles" #: inc/entityconfig.class.php:103 msgid "Only default forms" @@ -1256,38 +1291,38 @@ msgstr "Orden alfabética" #: inc/entityconfig.class.php:118 msgid "Merged with Forms" -msgstr "" +msgstr "Fusionado con formularios" #: inc/entityconfig.class.php:119 msgid "Distinct menu entry" -msgstr "" +msgstr "Entrada de menú distinta" #: inc/entityconfig.class.php:126 inc/entityconfig.class.php:134 #: inc/entityconfig.class.php:142 inc/entityconfig.class.php:150 #: inc/form.class.php:285 entrée standard:100 msgid "Visible" -msgstr "" +msgstr "Visible" #: inc/entityconfig.class.php:127 inc/entityconfig.class.php:135 #: inc/entityconfig.class.php:143 inc/entityconfig.class.php:151 msgid "Hidden" -msgstr "" +msgstr "Oculto" #: inc/entityconfig.class.php:158 msgid "Variable height" -msgstr "" +msgstr "Altura variable" #: inc/entityconfig.class.php:159 msgid "Uniform height" -msgstr "" +msgstr "Altura uniforme" #: inc/entityconfig.class.php:164 msgid "Search for assistance" -msgstr "" +msgstr "Buscar ayuda" #: inc/entityconfig.class.php:165 msgid "User's assistance requests" -msgstr "" +msgstr "Solicitudes de asistencia del usuario" #: inc/entityconfig.class.php:261 msgid "Helpdesk" @@ -1304,19 +1339,19 @@ msgstr "Modo de lista de formulario predeterminado" #: inc/entityconfig.class.php:298 inc/entityconfig.class.php:459 msgid "Sort order" -msgstr "" +msgstr "Ordenar" #: inc/entityconfig.class.php:314 inc/entityconfig.class.php:469 msgid "Knowledge base" -msgstr "" +msgstr "Base de conocimiento" #: inc/entityconfig.class.php:329 msgid "Search" -msgstr "" +msgstr "Buscar" #: inc/entityconfig.class.php:345 inc/entityconfig.class.php:529 msgid "Counters dashboard" -msgstr "" +msgstr "Panel de contadores" #: inc/entityconfig.class.php:361 msgid "Header message" @@ -1324,15 +1359,15 @@ msgstr "Mensaje del encabezado" #: inc/entityconfig.class.php:377 inc/entityconfig.class.php:539 msgid "Search issue" -msgstr "" +msgstr "Buscar asunto" #: inc/entityconfig.class.php:393 inc/entityconfig.class.php:509 msgid "Service catalog home page" -msgstr "" +msgstr "Página de inicio del catálogo de servicios" #: inc/entityconfig.class.php:409 inc/entityconfig.class.php:549 msgid "Tile design" -msgstr "" +msgstr "Diseño de bloque" #: inc/entityconfig.class.php:421 inc/entityconfig.class.php:499 #: inc/form.class.php:239 entrée standard:84 @@ -1344,11 +1379,11 @@ msgstr[2] "Encabezados" #: inc/entityconfig.class.php:479 msgid "Display search field" -msgstr "" +msgstr "Mostrar campo de búsqueda" #: inc/entityconfig.class.php:489 msgid "Display header" -msgstr "" +msgstr "Mostrar encabezado" #: inc/questionrange.class.php:52 inc/questionparameter/range.class.php:56 msgid "Question range" @@ -1359,11 +1394,11 @@ msgstr[2] "Rangos de preguntas" #: inc/questionrange.class.php:62 inc/questionparameter/range.class.php:66 msgid "Minimum range" -msgstr "" +msgstr "Rango mínimo" #: inc/questionrange.class.php:71 inc/questionparameter/range.class.php:75 msgid "maximum range" -msgstr "" +msgstr "Rango máximo" #: inc/form.class.php:66 inc/form.class.php:432 msgid "Public access" @@ -1387,11 +1422,11 @@ msgstr "Importar formularios" #: inc/form.class.php:140 msgid "Characteristics" -msgstr "" +msgstr "Características" #: inc/form.class.php:183 msgid "Recursive" -msgstr "" +msgstr "Recursivo" #: inc/form.class.php:204 msgid "Homepage" @@ -1404,7 +1439,7 @@ msgstr "Acceso" #: inc/form.class.php:248 inc/form.class.php:330 inc/form.class.php:397 entrée #: standard:54 msgid "Active" -msgstr "" +msgstr "Activo" #: inc/form.class.php:261 entrée standard:65 msgid "Icon" @@ -1424,7 +1459,7 @@ msgstr "Formulario predeterminado" #: inc/form.class.php:329 inc/form.class.php:394 msgid "Inactive" -msgstr "" +msgstr "Inactivo" #: inc/form.class.php:340 inc/form.class.php:413 msgid "Not default form" @@ -1443,27 +1478,27 @@ msgstr[2] "Destinos" #: inc/form.class.php:504 msgid "Actions" -msgstr "" +msgstr "Acciones" #: inc/form.class.php:527 inc/form.class.php:1433 msgid "Duplicate" msgstr "Duplicado" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Agregar un destino" #: inc/form.class.php:575 msgid "Preview" -msgstr "" +msgstr "Vista previa" #: inc/form.class.php:576 msgid "Form answer properties" -msgstr "" +msgstr "Propiedades de respuesta de formulario" #: inc/form.class.php:900 msgid "What are you looking for?" -msgstr "" +msgstr "¿Qué estás buscando?" #: inc/form.class.php:909 #, php-format @@ -1509,12 +1544,12 @@ msgstr "La pregunta %s no es compatible con formularios públicos" #: inc/form.class.php:1422 msgid "Errored duplicate" -msgstr "" +msgstr "Error duplicado" #: inc/form.class.php:1480 inc/form.class.php:1508 msgctxt "button" msgid "Post" -msgstr "" +msgstr "Publicar" #: inc/form.class.php:1527 #, php-format @@ -1533,7 +1568,7 @@ msgstr "Atras" #: inc/form.class.php:1568 #, php-format msgid "Form updated: %s" -msgstr "" +msgstr "Formulario actualizado: %s" #: inc/form.class.php:1668 msgid "Upload of JSON files not allowed." @@ -1573,30 +1608,34 @@ msgstr "Habilitado" #: inc/form.class.php:1730 msgctxt "button" msgid "Send" -msgstr "" +msgstr "Enviar" #: inc/form.class.php:1749 msgid "Forms import impossible, the file is empty" -msgstr "" +msgstr "imposible importar el formulario, el archivo esta vacío" #: inc/form.class.php:1753 inc/form.class.php:1757 msgid "Forms import impossible, the file seems corrupt" -msgstr "" +msgstr "Imposible importar formularios, el archivo parece corrupto" #: inc/form.class.php:1763 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:1770 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:1796 #, php-format msgid "Failed to import %s" -msgstr "" +msgstr "Error al importar %s" #: inc/form.class.php:1801 #, php-format @@ -1606,7 +1645,7 @@ msgstr "Formularios importados correctamente desde %s" #: inc/form.class.php:1864 #, php-format msgid "The form %1$s already exists and is in an unmodifiable entity." -msgstr "" +msgstr "El formulario %1$s ya existe y esta en una entidad no modificable." #: inc/form.class.php:1872 #, php-format @@ -1616,40 +1655,40 @@ msgstr "No tiene derecho a actualizar la entidad %1$s." #: inc/form.class.php:1882 #, php-format msgid "The entity %1$s is required for the form %2$s." -msgstr "" +msgstr "La entidad %1$s es necesaria para el formulario %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Error al crear el tipo de documento JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Tipo de documento JSON no encontrado" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Error al actualizar el tipo de documento JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formularios sin categoría" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "No hay formulario disponible" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Agregar" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Tipo de Destino no soportado" -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" -msgstr "" +msgstr "plugin_formcreator_load_check" #: inc/targetchange.class.php:44 entrée standard:43 msgid "Target change" @@ -1664,19 +1703,19 @@ msgstr "Cambiar título" #: inc/targetchange.class.php:374 entrée standard:56 msgid "Control list" -msgstr "" +msgstr "Lista de control" #: inc/targetchange.class.php:384 entrée standard:58 msgid "Deployment plan" -msgstr "" +msgstr "Plan de despliegue" #: inc/targetchange.class.php:394 entrée standard:60 msgid "Backup plan" -msgstr "" +msgstr "Plan de respaldo" #: inc/targetchange.class.php:404 msgid "Check list" -msgstr "" +msgstr "Lista de verificación" #: inc/section.class.php:71 entrée standard:53 standard:44 msgid "Section" @@ -1686,18 +1725,18 @@ msgstr[1] "Secciones" msgstr[2] "Secciones" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Se requiere el título" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 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 "" +msgstr "No se pudo buscar %1$s %2$s" #: inc/question.class.php:70 inc/abstractitiltarget.class.php:1111 entrée #: standard:41 @@ -1707,86 +1746,86 @@ msgstr[0] "Pregunta" msgstr[1] "Preguntas" msgstr[2] "Preguntas" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Se requiere campo tipo" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Se requiere la sección" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, 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:361 +#: inc/question.class.php:358 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:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Este tipo de de pregunta requiere parámetros" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Falta un parámetro para este tipo de pregunta" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" -msgstr "" +msgstr "Niveles de servicio" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" -msgstr "" +msgstr "Acuerdo de Nivel de Operación - OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" -msgstr "" +msgstr "Activos" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" -msgstr "" +msgstr "Asistencia" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" -msgstr "" +msgstr "Gestión" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" -msgstr "" +msgstr "Herramientas" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" -msgstr "" +msgstr "Notas" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" -msgstr "" +msgstr "Canal RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" -msgstr "" +msgstr "Administración" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Complemento" +msgstr[1] "Complementos" +msgstr[2] "Complementos" #: inc/abstractquestionparameter.class.php:92 msgid "Parameter" -msgstr "" +msgstr "Parámetro" #: inc/abstractquestionparameter.class.php:99 msgid "Field name" -msgstr "" +msgstr "Nombre del campo" #: inc/abstracttarget.class.php:97 msgid "Current active entity" @@ -1846,45 +1885,45 @@ msgstr "Un destino debe estar asociado a un formulario existente" #: inc/abstracttarget.class.php:139 msgid "Name is required." -msgstr "" +msgstr "Se requiere el nombre." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" -msgstr "" +msgstr "Entidad destino" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Pregunta de tipo de usuario" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Tipo de entidad pregunta" #: inc/command/cleanticketscommand.class.php:53 msgid "Searching for invalid items..." -msgstr "" +msgstr "Buscando elementos no válidos..." #: inc/command/cleanticketscommand.class.php:61 msgid "Done." -msgstr "" +msgstr "Hecho." #: inc/command/cleanticketscommand.class.php:135 msgid "Step 1: double encoded < and > signs." -msgstr "" +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 "" +msgstr "No se encontraron elementos no válidos." #: inc/command/cleanticketscommand.class.php:187 msgid "Step 2: literal BR tag." -msgstr "" +msgstr "Paso 2: etiqueta literal BR." #: inc/command/cleanticketscommand.class.php:251 msgid "Step 3: litteral > sign." -msgstr "" +msgstr "Paso 3: signo > literal." #: inc/filter/itilcategoryfilter.class.php:52 #: inc/filter/itilcategoryfilter.class.php:54 @@ -1898,7 +1937,7 @@ msgstr "Categorías de incidentes" #: inc/filter/itilcategoryfilter.class.php:55 msgid "Change categories" -msgstr "" +msgstr "Categorías de cambio" #: inc/questionregex.class.php:52 msgid "Question regular expression" @@ -1917,16 +1956,16 @@ msgstr[2] "Dependencia de las preguntas" #: inc/answer.class.php:66 entrée standard:43 msgid "Answer" msgid_plural "Answers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +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] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Relación de ticket compuesto" +msgstr[1] "Relaciones de ticket compuesto" +msgstr[2] "Relaciones de ticket compuesto" #: inc/targetticket.class.php:57 entrée standard:43 msgid "Target ticket" @@ -1959,7 +1998,7 @@ msgstr "" #: inc/targetticket.class.php:109 msgid "Formcreator" -msgstr "" +msgstr "Formcreator" #: inc/targetticket.class.php:115 msgid "Default or from a template" @@ -1983,11 +2022,11 @@ msgstr "Agregar un campo" #: inc/targetticket.class.php:364 msgid "Managed fields" -msgstr "" +msgstr "Campos administrados" #: inc/targetticket.class.php:371 msgid "No managed field" -msgstr "" +msgstr "Ningún campo administrado" #: inc/targetticket.class.php:391 msgid "Link to an other ticket" @@ -2008,7 +2047,7 @@ msgstr "Un ticket a partir de una respuesta a una pregunta" #: inc/targetticket.class.php:483 msgctxt "button" msgid "Delete permanently" -msgstr "" +msgstr "Eliminar permanentemente" #: inc/targetticket.class.php:724 msgid "Invalid link type" @@ -2026,25 +2065,25 @@ msgstr "El elemento vinculado no existe." msgid "Failed to link the item" msgstr "Error al vincular el elemento." -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Su formulario ha sido aceptado por el validador" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Tipo de solicitud" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Tipo" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Elementos asociados" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " -msgstr "" +msgstr "ítem" #: inc/translation.class.php:153 msgid "No more string to translate" @@ -2052,7 +2091,7 @@ msgstr "No hay mas cadenas para traducir" #: inc/translation.class.php:164 msgid "Internal error: translatable string not found." -msgstr "" +msgstr "Error interno: cadena traducible no encontrada." #: inc/translation.class.php:216 msgid "Language not found." @@ -2060,7 +2099,7 @@ msgstr "Idioma no encontrado" #: inc/translation.class.php:221 msgid "Form not found." -msgstr "" +msgstr "Formulario no encontrado." #: inc/translation.class.php:236 msgid "Failed to add the translation." @@ -2157,30 +2196,30 @@ msgstr "Tiempo para resolver" #: inc/abstractitiltarget.class.php:822 msgid "Minute" msgid_plural "Minutes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Minuto" +msgstr[1] "Minutos" +msgstr[2] "Minutos" #: inc/abstractitiltarget.class.php:823 msgid "Hour" msgid_plural "Hours" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Hora" +msgstr[1] "Horas" +msgstr[2] "Horas" #: inc/abstractitiltarget.class.php:824 msgid "Day" msgid_plural "Days" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Día" +msgstr[1] "Días" +msgstr[2] "Días" #: inc/abstractitiltarget.class.php:825 msgid "Month" msgid_plural "Months" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Mes" +msgstr[1] "Meses" +msgstr[2] "Meses" #: inc/abstractitiltarget.class.php:857 msgid "SLA (TTO/TTR)" @@ -2208,7 +2247,7 @@ msgstr "Etiquetas" #: inc/abstractitiltarget.class.php:1231 msgid "Location" -msgstr "" +msgstr "Lugar" #: inc/abstractitiltarget.class.php:1243 msgid "Location " @@ -2221,9 +2260,9 @@ msgstr "¡La descripción no puede estar vacía!" #: inc/abstractitiltarget.class.php:1760 msgid "Watcher" msgid_plural "Watchers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Observador" +msgstr[1] "Observadores" +msgstr[2] "Observadores" #: inc/abstractitiltarget.class.php:1779 msgid "Cancel" @@ -2232,15 +2271,15 @@ msgstr "Cancelar" #: inc/abstractitiltarget.class.php:2067 inc/abstractitiltarget.class.php:2495 #: inc/abstractitiltarget.class.php:2499 msgid "Email followup" -msgstr "" +msgstr "Seguimiento por correo" #: inc/abstractitiltarget.class.php:2098 inc/abstractitiltarget.class.php:2483 msgid "User" -msgstr "" +msgstr "Usuario" #: inc/abstractitiltarget.class.php:2109 inc/abstractitiltarget.class.php:2487 msgid "Group" -msgstr "" +msgstr "Grupo" #: inc/abstractitiltarget.class.php:2120 msgid "Group from the object" @@ -2252,56 +2291,67 @@ msgstr "Grupo técnico del objeto" #: inc/abstractitiltarget.class.php:2138 inc/abstractitiltarget.class.php:2491 msgid "Supplier" -msgstr "" +msgstr "Proveedor" #: inc/abstractitiltarget.class.php:2495 msgid "Yes" -msgstr "" +msgstr "Sí" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" -msgstr "" +msgstr "Actualizar tablas a innoDB; corra %s" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, 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:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 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:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Se ha creado un formulario" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Su solicitud ha sido guardado" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2312,11 +2362,11 @@ msgstr "" "NPuede ver sus respuestas en el siguiente enlace: \\ n ## " "formcreator.validation_link ##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Un formulario de GLPI necesita ser validado" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2326,11 +2376,11 @@ msgstr "" "como validador. \\ NPuedes acceder a él haciendo clic en este enlace: \\ n " "## formcreator.validation_link ##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Su formulario ha sido rechazado por el validador" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2342,7 +2392,7 @@ msgstr "" "\\ nAún puede modificarlo y volver a enviarlo haciendo clic en este enlace: " "\\ n ## formcreator.validation_link ##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2350,11 +2400,11 @@ msgstr "" "Hola, \\ nNos complace informarle que su formulario ha sido aceptado por el " "validador. \\ NLa solicitud será considerada pronto." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Su formulario ha sido eliminado por un administrador" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2362,29 +2412,29 @@ msgstr "" "Hola, \\ nLo sentimos informarle que su solicitud no puede ser considerada y" " ha sido eliminada por un administrador." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "" "Creador de formularios - Sincronizar problemas con el catálogo de servicios" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" -msgstr "" +msgstr "¡No se pudo verificar la integridad de las tablas!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." -msgstr "" +msgstr "El esquema de tabla difiere para la tabla \"%s\"." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." -msgstr "" +msgstr "Falta la tabla \"%s\"." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." -msgstr "" +msgstr "Se ha encontrado la tabla desconocida \"%s\" en la base de datos." #: hook.php:378 msgctxt "button" @@ -2393,36 +2443,36 @@ msgstr "Duplicado" #: hook.php:379 msgid "Transfer" -msgstr "" +msgstr "Transferir" #: hook.php:380 msgctxt "button" msgid "Export" -msgstr "" +msgstr "Exportar" #: hook.php:381 msgctxt "button" msgid "Access rights" -msgstr "" +msgstr "Derechos de acceso" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" -msgstr "" +msgstr "Cancelar mi ticket" -#: hook.php:699 +#: hook.php:706 msgid "Old" -msgstr "" +msgstr "Antiguo" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" -msgstr "" +msgstr "Número de %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" -msgstr "" +msgstr "Resumen de asuntos" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2433,6 +2483,8 @@ msgstr "" #: js/scripts.js:296 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:298 msgid "No form found." @@ -2440,7 +2492,7 @@ msgstr "No se encontró ningún formulario." #: js/scripts.js:302 msgid "No FAQ item found." -msgstr "" +msgstr "No se encontró ningún ítem de preguntas frecuentes." #: js/scripts.js:688 msgid "Are you sure you want to delete this question?" @@ -2460,21 +2512,22 @@ msgstr "Se ha producido un error al consultar formularios" #: js/scripts.js:1372 entrée standard:139 msgid "Send" -msgstr "" +msgstr "Enviar" #: js/scripts.js:1381 msgid "An internal error occurred. Please report it to administrator." -msgstr "" +msgstr "Ha ocurrido un error interno. Por favor reportarlo al administrador." #: js/scripts.js:1449 msgid "Are you sure you want to duplicate this target?" -msgstr "" +msgstr "¿Estás seguro de que quieres duplicar este destino?" #: js/scripts.js:1466 msgid "Are you sure you want to delete this target?" -msgstr "" +msgstr "¿Está seguro de que desea eliminar este destino?" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Obligatorio" @@ -2490,9 +2543,9 @@ msgstr "Mostrar vacío" #: entrée standard:39 msgid "LDAP directory" msgid_plural "LDAP directories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Directorio LDAP" +msgstr[1] "Directorios LDAP" +msgstr[2] "Directorios LDAP" #: entrée standard:68 msgid "Filter" @@ -2512,11 +2565,11 @@ msgstr "Mostrar categorías de ticket" #: entrée standard:109 msgid "Time to own" -msgstr "" +msgstr "Tiempo de posesión " #: entrée standard:146 standard:118 msgid "Selectable root" -msgstr "" +msgstr "Raíz seleccionable" #: entrée standard:63 msgid "Direct access on homepage" @@ -2528,7 +2581,7 @@ msgstr "Formulario predeterminado en el catálogo de servicios" #: entrée standard:113 standard:114 msgid "Are you a robot ?" -msgstr "" +msgstr "¿Eres un robot?" #: entrée standard:64 msgid "Condition to show the section" @@ -2544,15 +2597,15 @@ msgstr "Condicion para mostrar la pregunta" #: entrée standard:54 msgid "Impacts" -msgstr "" +msgstr "Impactos" #: entrée standard:62 msgid "Checklist" -msgstr "" +msgstr "Lista de verificación" #: entrée standard:36 msgid "Answers title" -msgstr "" +msgstr "Título de las respuestas" #: entrée standard:45 msgid "Add a section" @@ -2564,12 +2617,12 @@ msgstr "Condición para mostrar el botón enviar" #: entrée standard:33 msgid "No form answer yet" -msgstr "" +msgstr "No hay respuesta de formulario todavía" #: entrée standard:38 #, php-format msgid "%s latest items" -msgstr "" +msgstr "%s últimos artículos" #: entrée standard:83 msgid "Add a question" @@ -2577,11 +2630,11 @@ msgstr "Agregar pregunta" #: entrée standard:39 msgid "List of available tags" -msgstr "" +msgstr "Lista de etiquetas disponibles" #: entrée standard:42 msgid "Title" -msgstr "" +msgstr "Título" #: entrée standard:47 msgid "Full form" diff --git a/locales/es_CO.po b/locales/es_CO.po index 32256e09a..ab2f48a4a 100644 --- a/locales/es_CO.po +++ b/locales/es_CO.po @@ -2,12 +2,12 @@ # 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 , 2023 -# +# #, fuzzy msgid "" msgstr "" @@ -476,7 +476,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/es_EC.mo b/locales/es_EC.mo new file mode 100644 index 0000000000000000000000000000000000000000..ffa2e5d8a03638322716097efbb6feea81e37eee GIT binary patch literal 42986 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

4r%qENYDhovcyiK5RkH4agbBsmh>!ROha>% z95N}4)D4&RxXdvm!RN=H#OmxQ`Gm_%kyu#J1=9oc=p8`rr&ML zmn#P$V>5&KhdP*;Shv7q{dJox*$YFS6-|k%yvnHJz` zXApe!kXAJ^a+$`zJ&4;0`+asawiQzZ>Gr%#l}2Ppm_+rueDMrhjU|M3<&>I1+sVF2Fo9ZoDK_ zUakAivd@NSxfx#4FNtKE&BeW~LGDo1)0Jt8bYR|PnJ46cgqa-7x;TrVTIZV&T8nRT zGF*LM5WPLYj4M*7VltR1QbE?%nH_?2bCXQeZsB1dt_zgMyv=Lp(2zC(8uM($LN5Ee4;(U^JBs*1LHZ2B%2E|`e^ zifKYJjB-VE4RgGc;JrFbUETnzqO_XINRQg}#iH(NM=5OA$ZTfnd8vciWU|U}c+2)% zDb6Ak!ZRsiSA>GNwnN~4!rORv)D}~ZEtA3^8$AdUUH!p`VsX+w8YdE4@}njisjtp{ zFcgaLb2|VQ^^O@o5LX+3tVd97I<|SnDI~MVTcTpMlz=H(m!vrzHA8mS`pB`bK-2;)K-wxN?3-=&1b9S%>hfkEyGDHljJt7e{ zqt7xiLqI|NMB^slo)Rt5kfW06j1trtw)0@a&0ZPN_{+a&Qg~&A+s3_bj!6HL!j={w zU6(IR*gBY?^aP8Sb+xlLtS& IXlpt8zo&w6761SM literal 0 HcmV?d00001 diff --git a/locales/es_EC.po b/locales/es_EC.po new file mode 100644 index 000000000..b76d96a00 --- /dev/null +++ b/locales/es_EC.po @@ -0,0 +1,2645 @@ +# 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-10-20 09:50+0200\n" +"PO-Revision-Date: 2021-08-30 07:22+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/homepage_link.php:36 inc/formlist.class.php:46 +#: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 +#: inc/form.class.php:2032 entrée standard:47 +msgid "Form" +msgid_plural "Forms" +msgstr[0] "Formularios" +msgstr[1] "Formularios" +msgstr[2] "Formularios" + +#: 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:46 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 "Artículo 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:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 +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:686 +msgid "Form list" +msgstr "Lista de formularios" + +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 +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/form.class.php:658 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Categorias" +msgstr[1] "Categorias" +msgstr[2] "Categorias" + +#: inc/knowbase.class.php:62 inc/form.class.php:661 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:176 +msgid "Textarea" +msgstr "Área de texto" + +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 +#: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 +#: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 +#: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 +#: inc/field/requesttypefield.class.php:160 +msgid "A required field is empty:" +msgstr "Un campo requerido está vacío:" + +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 +#: inc/conditionnabletrait.class.php:70 +msgid "The regular expression is invalid" +msgstr "La expresión regular es invalida" + +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 +msgid "User and form" +msgstr "Usuario y formulario" + +#: inc/field/dropdownfield.class.php:434 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:465 +msgid "Invalid value for " +msgstr "Valor invalido para " + +#: inc/field/dropdownfield.class.php:477 +#, php-format +msgid "The itemtype field is required: %s" +msgstr "El campo tipo de artículo es obligatorio:%s" + +#: inc/field/dropdownfield.class.php:493 +#, php-format +msgid "Invalid dropdown type: %s" +msgstr "Tipo de menú desplegable no válido: %s" + +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 +msgid "Entity restriction" +msgstr "Restricción de entidad" + +#: inc/field/dropdownfield.class.php:840 +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:95 +msgid "LDAP Select" +msgstr "Seleccionar LDAP" + +#: inc/field/ldapselectfield.class.php:139 +msgid "LDAP directory not defined!" +msgstr "¡El directorio LDAP no está definido!" + +#: inc/field/ldapselectfield.class.php:146 +msgid "LDAP directory not found!" +msgstr "¡Directorio LDAP no encontrado!" + +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 +#, php-format +msgid "Specific format does not match: %s" +msgstr "Formato especificado no coincide: %s" + +#: inc/field/textfield.class.php:155 +#, 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:160 +#, 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:168 +msgid "Text" +msgstr "Texto" + +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 +#: inc/questionregex.class.php:62 entrée standard:42 +msgid "Regular expression" +msgstr "Expresión regular" + +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 +msgid "Range" +msgstr "Rango" + +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 +msgid "Additional validation" +msgstr "Validación adicional" + +#: inc/field/radiosfield.class.php:108 +msgid "Radios" +msgstr "Botón de radio" + +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" + +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 +#: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 +#, php-format +msgid "A required field is empty: %s" +msgstr "Un campo requerido esta vacío: %s" + +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 +#, php-format +msgid "This value %1$s is not allowed: %2$s" +msgstr "" + +#: inc/field/integerfield.class.php:60 +#, php-format +msgid "This is not an integer: %s" +msgstr "Este no es un entero: %s" + +#: inc/field/integerfield.class.php:71 +msgid "Integer" +msgstr "Entero" + +#: inc/field/undefinedfield.class.php:44 +msgid "Undefined" +msgstr "Indefinido" + +#: inc/field/ipfield.class.php:122 +msgid "IP address" +msgid_plural "IP addresses" +msgstr[0] "Direcciones IP" +msgstr[1] "Direcciones IP" +msgstr[2] "Direcciones IP" + +#: inc/field/urgencyfield.class.php:85 inc/abstractitiltarget.class.php:1023 +msgid "Urgency" +msgstr "Urgencia" + +#: inc/field/urgencyfield.class.php:119 +msgctxt "urgency" +msgid "Very high" +msgstr "Muy alto" + +#: inc/field/urgencyfield.class.php:120 +msgctxt "urgency" +msgid "High" +msgstr "Alto" + +#: inc/field/urgencyfield.class.php:121 +msgctxt "urgency" +msgid "Medium" +msgstr "Medio" + +#: inc/field/urgencyfield.class.php:122 +msgctxt "urgency" +msgid "Low" +msgstr "Bajo" + +#: inc/field/urgencyfield.class.php:123 +msgctxt "urgency" +msgid "Very low" +msgstr "Muy bajo" + +#: inc/field/tagfield.class.php:51 +msgid "Warning: Tag plugin is disabled or missing" +msgstr "Advertencia: El plugin de etiquetas está deshabilitado o no existe" + +#: inc/field/tagfield.class.php:197 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "Etiquetas" +msgstr[1] "Etiquetas" +msgstr[2] "Etiquetas" + +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Objetos GLPI" +msgstr[1] "Objetos GLPI" +msgstr[2] "Objetos GLPI" + +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "El valor del campo es requerido:" + +#: inc/field/hostnamefield.class.php:115 +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:129 +msgid "Time" +msgstr "Hora" + +#: inc/field/emailfield.class.php:88 +#, 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:99 +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:98 +msgid "Select" +msgstr "Seleccionar" + +#: inc/field/datetimefield.class.php:140 +msgid "Date & time" +msgstr "Fecha y hora" + +#: inc/field/actorfield.class.php:83 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "Actores" +msgstr[1] "Actores" +msgstr[2] "Actores" + +#: inc/field/actorfield.class.php:267 +#, php-format +msgid "Invalid value: %s" +msgstr "Valor invalido: %s" + +#: inc/field/actorfield.class.php:290 +#, 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:123 +msgid "No attached document" +msgstr "Documento no adjuntado" + +#: inc/field/filefield.class.php:132 inc/field/filefield.class.php:268 +#: inc/field/filefield.class.php:275 +msgid "Attached document" +msgstr "Documento adjuntado" + +#: inc/field/filefield.class.php:174 +#, php-format +msgid "A required file is missing: %s" +msgstr "Falta un archivo requerido: %s" + +#: inc/field/filefield.class.php:191 +msgid "File" +msgstr "Archivo" + +#: inc/field/multiselectfield.class.php:89 +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:167 +msgid "Block" +msgstr "Bloquear" + +#: inc/field/fieldsfield.class.php:171 inc/targetticket.class.php:341 +msgid "Field" +msgstr "Campo" + +#: inc/field/fieldsfield.class.php:253 +msgid "show" +msgstr "mostrar" + +#: inc/field/fieldsfield.class.php:389 +#, 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:466 +msgid "Some numeric fields contains non numeric values" +msgstr "Algunos campos numéricos contienen valores no numéricos" + +#: inc/field/fieldsfield.class.php:471 +msgid "Some URL fields contains invalid links" +msgstr "Algunos campos URL contienen enlaces no válidos" + +#: inc/field/fieldsfield.class.php:565 +msgid "Additional fields" +msgstr "Campos adicionales" + +#: inc/field/checkboxesfield.class.php:132 +msgid "Checkboxes" +msgstr "Checkboxes" + +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 +#, 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:242 +#, 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:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 +msgid "Range min" +msgstr "Rango mínimo" + +#: inc/field/checkboxesfield.class.php:326 +msgid "Range max" +msgstr "Rango máximo" + +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 +msgid "Request type" +msgstr "Tipo de solicitud" + +#: inc/field/floatfield.class.php:141 +#, php-format +msgid "This is not a number: %s" +msgstr "Esto no es un número: %s" + +#: inc/field/floatfield.class.php:170 +#, 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/floatfield.class.php:176 +#, 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/floatfield.class.php:186 +msgid "Float" +msgstr "Flotante" + +#: inc/field/datefield.class.php:66 +msgid "Date" +msgstr "Fecha" + +#: inc/field/descriptionfield.class.php:105 inc/form.class.php:165 +#: inc/question.class.php:166 entrée standard:82 standard:52 standard:113 +msgid "Description" +msgstr "Descripción" + +#: inc/field/descriptionfield.class.php:112 +msgid "A description field should have a description:" +msgstr "Un campo de descripción debe tener una descripción:" + +#: inc/field/hiddenfield.class.php:95 +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:104 +msgid "is visible" +msgstr "es visible" + +#: inc/condition.class.php:105 +msgid "is not visible" +msgstr "no es visible" + +#: inc/condition.class.php:106 +msgid "regular expression matches" +msgstr "coincide con la expresión regular" + +#: inc/condition.class.php:117 +msgid "Always displayed" +msgstr "Mostrar siempre" + +#: inc/condition.class.php:118 +msgid "Hidden unless" +msgstr "Ocultar a menos que" + +#: inc/condition.class.php:119 +msgid "Displayed unless" +msgstr "Mostrar al menos que" + +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 +#: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 +#: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 +#, 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:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 +#: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 +#: inc/form.class.php:1611 inc/targetchange.class.php:149 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 +#: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 +#, php-format +msgid "Cannot export an empty object: %s" +msgstr "No se puede exportar un objeto vacío %s" + +#: inc/condition.class.php:263 +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:379 +msgid "Satisfaction survey expired" +msgstr "Encuesta de satisfacción caducada" + +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 +#: standard:49 standard:57 standard:38 standard:39 standard:46 +msgid "Name" +msgstr "Nombre" + +#: inc/issue.class.php:539 inc/formanswer.class.php:241 +#: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 +#: inc/form.class.php:147 inc/targetchange.class.php:335 +#: inc/section.class.php:95 inc/question.class.php:156 +#: inc/targetticket.class.php:180 entrée standard:45 +msgid "ID" +msgstr "ID" + +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 +#: entrée standard:111 standard:65 +msgid "Type" +msgid_plural "Types" +msgstr[0] "Tipos" +msgstr[1] "Tipos" +msgstr[2] "Tipos" + +#: inc/issue.class.php:561 inc/formanswer.class.php:301 +msgid "Status" +msgstr "Estado" + +#: inc/issue.class.php:573 +msgid "Opening date" +msgstr "Fecha de apertura" + +#: inc/issue.class.php:582 +msgid "Last update" +msgstr "Última actualización" + +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 +msgid "Entity" +msgid_plural "Entities" +msgstr[0] "Entidades" +msgstr[1] "Entidades" +msgstr[2] "Entidades" + +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 +#: inc/notificationtargetformanswer.class.php:96 +#: inc/target_actor.class.php:101 inc/formanswer.class.php:260 +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 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:270 +msgid "Form approver" +msgstr "Aprobador del formulario" + +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 +msgid "Comment" +msgstr "Comentario" + +#: inc/issue.class.php:655 +msgid "Ticket approver" +msgstr "Aprobador del caso" + +#: inc/issue.class.php:728 +msgid "Technician" +msgstr "Técnico" + +#: inc/issue.class.php:759 +msgid "Technician group" +msgstr "Grupo de técnicos" + +#: inc/issue.class.php:795 inc/formanswer.class.php:290 +msgid "Form approver group" +msgstr "Grupo de aprobación del formulario" + +#: inc/issue.class.php:817 +msgid "Ticket approver group" +msgstr "Grupo de aprobación de ticket" + +#: inc/issue.class.php:857 +msgid "Ticket requester" +msgstr "Solicitante de ticket" + +#: inc/issue.class.php:904 +msgid "Ticket observer" +msgstr "Observador de tickeet" + +#: inc/issue.class.php:952 +msgid "Ticket technician" +msgstr "Técnico de tickets" + +#: inc/issue.class.php:1099 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s%2$s" + +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 +msgid "All" +msgstr "Todos" + +#: inc/issue.class.php:1363 hook.php:699 +msgid "New" +msgstr "Nuevo" + +#: inc/issue.class.php:1369 hook.php:700 +msgid "Assigned" +msgstr "Asignado" + +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 +msgid "Waiting" +msgstr "Esperando" + +#: inc/issue.class.php:1381 hook.php:702 +msgid "To validate" +msgstr "Para validar" + +#: inc/issue.class.php:1387 hook.php:703 +msgid "Solved" +msgstr "Resuelto" + +#: inc/issue.class.php:1393 hook.php:704 +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:72 +msgid "Knowbase category" +msgstr "Categoría de base de conocimiento" + +#: inc/category.class.php:78 +msgid "As child of" +msgstr "Como hijo de" + +#: inc/notificationtargetformanswer.class.php:43 +msgid "The form as been saved" +msgstr "El formulario ha sido guardado" + +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 +msgid "A form need to be validate" +msgstr "Un formulario necesita ser validado" + +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 +msgid "The form is refused" +msgstr "Se rechaza el formulario" + +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 +msgid "The form is accepted" +msgstr "Se acepta el formulario" + +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 +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:78 +#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 +#: 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:1318 +msgid "Approver" +msgstr "Aprobador" + +#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2090 +msgid "Form author" +msgstr "Autor del formulario" + +#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2093 +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:2103 +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:2114 +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:2143 +msgid "Supplier from the question" +msgstr "Proveedor de la pregunta" + +#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2132 +msgid "Actors from the question" +msgstr "Actores de la pregunta" + +#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2147 +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:1767 +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:71 +msgid "Refused" +msgstr "Rechazado" + +#: inc/formanswer.class.php:80 inc/form_validator.class.php:70 +msgid "Accepted" +msgstr "Aceptado" + +#: inc/formanswer.class.php:226 +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:629 +msgid "Print this form" +msgstr "Imprimir este formulario" + +#: inc/formanswer.class.php:654 +msgid "Form accepted by validator." +msgstr "Formulario aceptado por el validador." + +#: inc/formanswer.class.php:656 +msgid "Form successfully saved." +msgstr "Formulario guardado exitosamente." + +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 +msgid "Save" +msgstr "Guardar" + +#: inc/formanswer.class.php:738 +msgid "Required if refused" +msgstr "Requerido si es rechazado" + +#: inc/formanswer.class.php:744 +msgid "Refuse" +msgstr "Rechazar" + +#: inc/formanswer.class.php:752 +msgid "Edit answers" +msgstr "Editar respuestas" + +#: inc/formanswer.class.php:758 +msgid "Cancel edition" +msgstr "Cancelar edición" + +#: inc/formanswer.class.php:765 +msgid "Accept" +msgstr "Aceptar" + +#: inc/formanswer.class.php:788 +msgid "Refused comment is required!" +msgstr "¡Se requiere comentario rechazado!" + +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 +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:882 +msgid "You are not the validator of these answers" +msgstr "No eres el validador de estas respuestas" + +#: inc/formanswer.class.php:1021 +#, 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:1104 inc/formanswer.class.php:1106 +msgid "Form data" +msgstr "Datos del formulario" + +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 +msgid "Cannot generate targets!" +msgstr "¡No puede generar objetivos!" + +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 +msgid "No turing test set" +msgstr "Sin equipo de prueba de Turing" + +#: inc/formanswer.class.php:1472 +msgid "You failed the Turing test" +msgstr "Fallo la prueba de Turing" + +#: inc/formanswer.class.php:1496 +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:783 +msgid "Seek assistance" +msgstr "Buscar asistencia" + +#: inc/common.class.php:789 inc/common.class.php:793 +msgid "My requests for assistance" +msgstr "Mis solicitudes de asistencia" + +#: inc/common.class.php:829 +msgid "Consult reminders" +msgstr "Consultar recordatorios" + +#: inc/common.class.php:849 +msgid "Consult feeds" +msgstr "Consultar fuentes" + +#: inc/formaccesstype.class.php:39 inc/formaccesstype.class.php:64 +msgid "Access type" +msgid_plural "Access types" +msgstr[0] "Tipos de acceso" +msgstr[1] "Tipos de acceso" +msgstr[2] "Tipos de acceso" + +#: inc/formaccesstype.class.php:79 +msgid "Link to the form" +msgstr "Enlace al formulario" + +#: inc/formaccesstype.class.php:92 +msgid "Please activate the form to view the link" +msgstr "Por favor activa el formulario para ver el enlace" + +#: inc/formaccesstype.class.php:100 inc/form.class.php:1505 +msgid "Enable captcha" +msgstr "Habilitar captcha" + +#: inc/formaccesstype.class.php:112 +msgid "Restricted to" +msgstr "Restringido a" + +#: 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:81 inc/form_language.class.php:367 +msgid "Translation" +msgid_plural "Translations" +msgstr[0] "Traducciones" +msgstr[1] "Traducciones" +msgstr[2] "Traducciones" + +#: inc/form_language.class.php:122 +msgid "The name cannot be empty." +msgstr "El nombre no puede estar vacío." + +#: inc/form_language.class.php:130 +msgid "The language must be associated to a form." +msgstr "La lengua debe estar asociada a un formulario." + +#: inc/form_language.class.php:138 +msgid "The specified language is not available." +msgstr "El idioma especificado no está disponible." + +#: inc/form_language.class.php:268 +msgid "Add a translation" +msgstr "Agregar una traducción" + +#: inc/form_language.class.php:302 js/scripts.js:1171 +msgid "Update a translation" +msgstr "Actualizar una traducción" + +#: inc/form_language.class.php:332 inc/form_language.class.php:334 +msgid "New translation" +msgstr "Nueva traducción" + +#: inc/form_language.class.php:337 +msgid "Filter list" +msgstr "Lista de filtros" + +#: inc/form_language.class.php:342 inc/form_language.class.php:441 +msgid "No translation found" +msgstr "No se encontró traducción" + +#: inc/form_language.class.php:347 +msgid "Do you want to delete the selected items?" +msgstr "¿Quieres eliminar los elementos seleccionados?" + +#: inc/form_language.class.php:356 inc/form_language.class.php:404 +#: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 +msgid "Delete" +msgstr "Eliminar" + +#: inc/form_language.class.php:366 +msgid "Original string" +msgstr "Cadena original" + +#: inc/form_language.class.php:427 +msgid "Add a new language" +msgstr "Agregar un nuevo idioma" + +#: inc/form_language.class.php:460 inc/form_language.class.php:492 +#: inc/form.class.php:192 entrée standard:72 +msgid "Language" +msgstr "Idioma" + +#: inc/form_validator.class.php:68 inc/targetticket.class.php:99 +#: inc/abstractitiltarget.class.php:178 +msgid "None" +msgstr "Ninguno" + +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validadores" +msgstr[1] "Validadores" +msgstr[2] "Validadores" + +#: inc/form_validator.class.php:114 +msgid "Need validaton?" +msgstr "¿Necesita validación?" + +#: inc/form_validator.class.php:118 inc/abstractitiltarget.class.php:2499 +msgid "No" +msgstr "No" + +#: inc/form_validator.class.php:295 inc/targetproblem.class.php:147 +#: inc/entityconfig.class.php:435 inc/targetchange.class.php:484 +#: inc/targetticket.class.php:318 inc/targetticket.class.php:353 +#: inc/abstractitiltarget.class.php:2073 +msgctxt "button" +msgid "Save" +msgstr "Guardar" + +#: inc/form_validator.class.php:709 inc/abstractitiltarget.class.php:1298 +msgid "Validation" +msgstr "Validación" + +#: inc/form_validator.class.php:711 +msgid "Choose a validator" +msgstr "Elegir un validador" + +#: 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:579 +#: 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:523 inc/targetchange.class.php:286 +#: inc/targetticket.class.php:1399 +#, 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:580 inc/targetchange.class.php:106 +#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1200 +msgid "Actors" +msgstr "Actores" + +#: inc/targetproblem.class.php:633 entrée standard:48 +msgid "Problem title" +msgstr "Título del problema" + +#: inc/targetproblem.class.php:643 inc/targetchange.class.php:354 +#: inc/targetticket.class.php:199 +msgid "Content" +msgstr "Contenido" + +#: inc/targetproblem.class.php:653 inc/targetchange.class.php:364 +msgid "Impact" +msgstr "Impacto" + +#: inc/targetproblem.class.php:663 entrée standard:56 +msgid "Cause" +msgstr "Motivo" + +#: inc/targetproblem.class.php:673 entrée standard:58 +msgid "Symptom" +msgstr "Síntoma" + +#: inc/entityconfig.class.php:92 inc/entityconfig.class.php:101 +#: inc/entityconfig.class.php:109 inc/entityconfig.class.php:117 +#: inc/entityconfig.class.php:125 inc/entityconfig.class.php:133 +#: inc/entityconfig.class.php:141 inc/entityconfig.class.php:149 +#: inc/entityconfig.class.php:157 +msgid "Inheritance of the parent entity" +msgstr "Herencia de la entidad matriz" + +#: inc/entityconfig.class.php:93 +msgid "GLPi's helpdesk" +msgstr "Mesa de ayuda de GLPI" + +#: inc/entityconfig.class.php:94 +msgid "Service catalog simplified" +msgstr "Catálogo de servicios simplificado" + +#: inc/entityconfig.class.php:95 +msgid "Service catalog extended" +msgstr "Catálogo de servicio extendido" + +#: inc/entityconfig.class.php:102 +msgid "All available forms" +msgstr "Todos los formularios disponibles" + +#: inc/entityconfig.class.php:103 +msgid "Only default forms" +msgstr "Sólo formularios predeterminados" + +#: inc/entityconfig.class.php:110 +msgid "Popularity sort" +msgstr "Ordenar por popularidad" + +#: inc/entityconfig.class.php:111 +msgid "Alphabetic sort" +msgstr "Ordenar alfabeticamente" + +#: inc/entityconfig.class.php:118 +msgid "Merged with Forms" +msgstr "Fusionado con formularios" + +#: inc/entityconfig.class.php:119 +msgid "Distinct menu entry" +msgstr "Entrada de menú distinta" + +#: inc/entityconfig.class.php:126 inc/entityconfig.class.php:134 +#: inc/entityconfig.class.php:142 inc/entityconfig.class.php:150 +#: inc/form.class.php:285 entrée standard:100 +msgid "Visible" +msgstr "Visible" + +#: inc/entityconfig.class.php:127 inc/entityconfig.class.php:135 +#: inc/entityconfig.class.php:143 inc/entityconfig.class.php:151 +msgid "Hidden" +msgstr "Oculto" + +#: inc/entityconfig.class.php:158 +msgid "Variable height" +msgstr "Altura variable" + +#: inc/entityconfig.class.php:159 +msgid "Uniform height" +msgstr "Altura uniforme" + +#: inc/entityconfig.class.php:164 +msgid "Search for assistance" +msgstr "Búsqueda de ayuda" + +#: inc/entityconfig.class.php:165 +msgid "User's assistance requests" +msgstr "Solicitudes de asistencia de los usuarios" + +#: inc/entityconfig.class.php:261 +msgid "Helpdesk" +msgstr "Mesa de ayuda" + +#: inc/entityconfig.class.php:269 inc/entityconfig.class.php:449 entrée +#: standard:44 +msgid "Helpdesk mode" +msgstr "Modo de mesa de ayuda" + +#: inc/entityconfig.class.php:280 inc/entityconfig.class.php:519 +msgid "Default Form list mode" +msgstr "Modo de lista de formularios predeterminado" + +#: inc/entityconfig.class.php:298 inc/entityconfig.class.php:459 +msgid "Sort order" +msgstr "Orden de clasificación" + +#: inc/entityconfig.class.php:314 inc/entityconfig.class.php:469 +msgid "Knowledge base" +msgstr "Base de conocimiento" + +#: inc/entityconfig.class.php:329 +msgid "Search" +msgstr "Búsqueda" + +#: inc/entityconfig.class.php:345 inc/entityconfig.class.php:529 +msgid "Counters dashboard" +msgstr "Panel de contadores" + +#: inc/entityconfig.class.php:361 +msgid "Header message" +msgstr "Mensaje del encabezado" + +#: inc/entityconfig.class.php:377 inc/entityconfig.class.php:539 +msgid "Search issue" +msgstr "Problema de búsqueda" + +#: inc/entityconfig.class.php:393 inc/entityconfig.class.php:509 +msgid "Service catalog home page" +msgstr "Página principal del catálogo de servicios" + +#: inc/entityconfig.class.php:409 inc/entityconfig.class.php:549 +msgid "Tile design" +msgstr "Diseño de baldosas " + +#: inc/entityconfig.class.php:421 inc/entityconfig.class.php:499 +#: inc/form.class.php:239 entrée standard:84 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Encabezados" +msgstr[1] "Encabezados" +msgstr[2] "Encabezados" + +#: inc/entityconfig.class.php:479 +msgid "Display search field" +msgstr "Mostrar campo de búsqueda" + +#: inc/entityconfig.class.php:489 +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:432 +msgid "Public access" +msgstr "Acceso público" + +#: inc/form.class.php:67 inc/form.class.php:436 +msgid "Private access" +msgstr "Acceso privado" + +#: inc/form.class.php:68 inc/form.class.php:440 +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:1695 inc/form.class.php:1721 +msgid "Import forms" +msgstr "Importar formularios" + +#: inc/form.class.php:140 +msgid "Characteristics" +msgstr "Características" + +#: inc/form.class.php:183 +msgid "Recursive" +msgstr "Recursivo" + +#: inc/form.class.php:204 +msgid "Homepage" +msgstr "Página principal" + +#: inc/form.class.php:217 +msgid "Access" +msgstr "Acceso" + +#: inc/form.class.php:248 inc/form.class.php:330 inc/form.class.php:397 entrée +#: standard:54 +msgid "Active" +msgstr "Activo" + +#: inc/form.class.php:261 entrée standard:65 +msgid "Icon" +msgstr "Icono" + +#: inc/form.class.php:269 entrée standard:67 +msgid "Icon color" +msgstr "Color del icono" + +#: inc/form.class.php:277 entrée standard:80 +msgid "Background color" +msgstr "Color del fondo" + +#: inc/form.class.php:300 inc/form.class.php:341 inc/form.class.php:416 +msgid "Default form" +msgstr "Formulario predeterminado" + +#: inc/form.class.php:329 inc/form.class.php:394 +msgid "Inactive" +msgstr "Inactivo" + +#: inc/form.class.php:340 inc/form.class.php:413 +msgid "Not default form" +msgstr "Formulario no predeterminado" + +#: inc/form.class.php:364 inc/form.class.php:448 entrée standard:75 +msgid "All languages" +msgstr "Todos los idiomas" + +#: inc/form.class.php:502 inc/form.class.php:572 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Objetivos" +msgstr[1] "Objetivos" +msgstr[2] "Objetivos" + +#: inc/form.class.php:504 +msgid "Actions" +msgstr "Acciones" + +#: inc/form.class.php:527 inc/form.class.php:1433 +msgid "Duplicate" +msgstr "Duplicar" + +#: inc/form.class.php:554 inc/form.class.php:2223 +msgid "Add a target" +msgstr "Agregar un objetivo" + +#: inc/form.class.php:575 +msgid "Preview" +msgstr "Vista previa" + +#: inc/form.class.php:576 +msgid "Form answer properties" +msgstr "Propiedades del formulario de respuesta" + +#: inc/form.class.php:900 +msgid "What are you looking for?" +msgstr "¿Qué esta buscando?" + +#: inc/form.class.php:909 +#, php-format +msgid "My %1$d last forms (requester)" +msgstr "Mi último formulario %1$d (Solicitante)" + +#: inc/form.class.php:936 +msgid "No form posted yet" +msgstr "Aún no se ha publicado el formulario" + +#: inc/form.class.php:964 +msgid "All my forms (requester)" +msgstr "Todos mis formularios (Solicitante)" + +#: inc/form.class.php:977 +#, php-format +msgid "My %1$d last forms (validator)" +msgstr "Mi ultimo formulario %1$d (Validador)" + +#: inc/form.class.php:1007 +msgid "No form waiting for validation" +msgstr "No hay formularios esperando para validación" + +#: inc/form.class.php:1035 +msgid "All my forms (validator)" +msgstr "Todos mis formularios (Validador)" + +#: inc/form.class.php:1095 inc/form.class.php:1229 +#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1573 +msgid "The name cannot be empty!" +msgstr "¡El nombre no puede estar vacío!" + +#: inc/form.class.php:1240 +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:1342 +#, 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:1422 +msgid "Errored duplicate" +msgstr "Duplicado con errores" + +#: inc/form.class.php:1480 inc/form.class.php:1508 +msgctxt "button" +msgid "Post" +msgstr "Exponer" + +#: inc/form.class.php:1527 +#, php-format +msgid "Form duplicated: %s" +msgstr "Formulario duplicado:%s" + +#: inc/form.class.php:1538 +#, php-format +msgid "Form Transfered: %s" +msgstr "Formulario transferido: %s" + +#: inc/form.class.php:1557 +msgid "Back" +msgstr "Atrás" + +#: inc/form.class.php:1568 +#, php-format +msgid "Form updated: %s" +msgstr "Formulario actualizado:%s" + +#: inc/form.class.php:1668 +msgid "Upload of JSON files not allowed." +msgstr "Subir archivos JSON no está permitido." + +#: inc/form.class.php:1671 +msgid "You may allow JSON files right now." +msgstr "Puede permitir archivos JSON ahora." + +#: inc/form.class.php:1672 +msgctxt "button" +msgid "Create" +msgstr "Crear" + +#: inc/form.class.php:1675 inc/form.class.php:1686 +msgid "Please contact your GLPI administrator." +msgstr "Por favor contacta con el administrador del GLPI." + +#: inc/form.class.php:1676 inc/form.class.php:1687 +msgctxt "button" +msgid "Back" +msgstr "Atrás" + +#: inc/form.class.php:1679 +msgid "Upload of JSON files not enabled." +msgstr "Subir archivos JSON no esta habilitado." + +#: inc/form.class.php:1682 inc/form.class.php:1685 +msgid "You may enable JSON files right now." +msgstr "Puede habilitar archivos JSON ahora." + +#: inc/form.class.php:1683 +msgctxt "button" +msgid "Enable" +msgstr "Habilitar" + +#: inc/form.class.php:1730 +msgctxt "button" +msgid "Send" +msgstr "Enviar" + +#: inc/form.class.php:1749 +msgid "Forms import impossible, the file is empty" +msgstr "Imposible importar el formulario, el archivo esta vacío" + +#: inc/form.class.php:1753 inc/form.class.php:1757 +msgid "Forms import impossible, the file seems corrupt" +msgstr "Imposible importar el formulario, el archivo esta corrupto" + +#: inc/form.class.php:1763 +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:1770 +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:1796 +#, php-format +msgid "Failed to import %s" +msgstr "Fallo al importar %s" + +#: inc/form.class.php:1801 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "Formularios importados correctamente de %s" + +#: inc/form.class.php:1864 +#, 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:1872 +#, 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:1882 +#, 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:1969 +msgid "Failed to create JSON document type" +msgstr "Fallo al crear el tipo de documento JSON" + +#: inc/form.class.php:1976 +msgid "JSON document type not found" +msgstr "No se encontró el tipo de documento JSON" + +#: inc/form.class.php:1983 +msgid "Failed to update JSON document type" +msgstr "Fallo al actualizar el tipo de documento JSON" + +#: inc/form.class.php:2003 +msgid "Forms without category" +msgstr "Formularios sin categoría" + +#: inc/form.class.php:2024 +msgid "No form available" +msgstr "Formulario no disponible" + +#: inc/form.class.php:2254 inc/targetticket.class.php:393 +#: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 +msgid "Add" +msgstr "Agregar" + +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 +msgid "Unsupported target type." +msgstr "Tipo de objetivo no soportado." + +#: inc/form.class.php:2351 +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/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:318 +msgid "The title is required" +msgstr "El titulo es requerido" + +#: inc/section.class.php:570 inc/question.class.php:203 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:70 inc/abstractitiltarget.class.php:1111 entrée +#: standard:41 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Preguntas" +msgstr[1] "Preguntas" +msgstr[2] "Preguntas" + +#: inc/question.class.php:326 +msgid "The field type is required" +msgstr "El tipo de campo es requerido" + +#: inc/question.class.php:333 +msgid "The section is required" +msgstr "La sección es requerida" + +#: inc/question.class.php:345 +#, 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:358 +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:367 +msgid "This type of question requires parameters" +msgstr "Este tipo de pregunta requiere parámetros" + +#: inc/question.class.php:373 +msgid "A parameter is missing for this question type" +msgstr "Falta un parámetro para este tipo de pregunta" + +#: inc/question.class.php:1202 +msgid "Service levels" +msgstr "Niveles de servicio" + +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 +msgid "SLA" +msgstr "SLA" + +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 +msgid "OLA" +msgstr "OLA" + +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 +msgid "Assets" +msgstr "Activos" + +#: inc/question.class.php:1237 hook.php:712 hook.php:729 +msgid "Assistance" +msgstr "Asistencia" + +#: inc/question.class.php:1243 +msgid "Management" +msgstr "Gestión" + +#: inc/question.class.php:1254 +msgid "Tools" +msgstr "herramientas" + +#: inc/question.class.php:1255 +msgid "Notes" +msgstr "Notas" + +#: inc/question.class.php:1256 +msgid "RSS feed" +msgstr "Fuente RSS" + +#: inc/question.class.php:1258 +msgid "Administration" +msgstr "Administración" + +#: inc/question.class.php:1266 inc/question.class.php:1269 +msgid "Plugin" +msgid_plural "Plugins" +msgstr[0] "Plugins" +msgstr[1] "Plugins" +msgstr[2] "Plugins" + +#: inc/abstractquestionparameter.class.php:92 +msgid "Parameter" +msgstr "Parametro" + +#: inc/abstractquestionparameter.class.php:99 +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:505 +msgid "Destination entity" +msgstr "Entidad de destino" + +#: inc/abstracttarget.class.php:521 +msgid "User type question" +msgstr "Pregunta de tipo de usuario" + +#: inc/abstracttarget.class.php:522 +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: 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/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:198 inc/abstractitiltarget.class.php:206 +#: inc/abstractitiltarget.class.php:214 inc/abstractitiltarget.class.php:222 +#: inc/abstractitiltarget.class.php:231 +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:223 +#: inc/abstractitiltarget.class.php:232 +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:302 +msgid "Add validation message as first ticket followup" +msgstr "Agregar mensaje de validación como seguimiento del primer caso" + +#: inc/targetticket.class.php:336 +msgid "Add a field" +msgstr "Añadir un campo" + +#: inc/targetticket.class.php:364 +msgid "Managed fields" +msgstr "Campos administrados" + +#: inc/targetticket.class.php:371 +msgid "No managed field" +msgstr "Sin campo administrado" + +#: inc/targetticket.class.php:391 +msgid "Link to an other ticket" +msgstr "Enlace para otro caso" + +#: inc/targetticket.class.php:400 +msgid "An other destination of this form" +msgstr "A otro destino de este formulario" + +#: inc/targetticket.class.php:401 +msgid "An existing ticket" +msgstr "Un Caso existente" + +#: inc/targetticket.class.php:402 +msgid "A ticket from an answer to a question" +msgstr "Un ticket de una respuesta a una pregunta" + +#: inc/targetticket.class.php:483 +msgctxt "button" +msgid "Delete permanently" +msgstr "Eliminar permanentemente" + +#: inc/targetticket.class.php:724 +msgid "Invalid link type" +msgstr "Tipo de enlace inválido" + +#: inc/targetticket.class.php:744 +msgid "Invalid linked item type" +msgstr "Tipo de elemento vinculado no válido" + +#: inc/targetticket.class.php:757 +msgid "Linked item does not exists" +msgstr "El elemento vinculado no existe" + +#: inc/targetticket.class.php:770 +msgid "Failed to link the item" +msgstr "Error al vincular el elemento" + +#: inc/targetticket.class.php:938 install/install.php:432 +msgid "Your form has been accepted by the validator" +msgstr "Su formulario ha sido aceptado por el validador" + +#: inc/targetticket.class.php:1094 +msgid "Request source" +msgstr "Fuente de la solicitud" + +#: inc/targetticket.class.php:1119 +msgid "Type " +msgstr "Tipo " + +#: inc/targetticket.class.php:1147 +msgid "Associated elements" +msgstr "Elementos asociados" + +#: inc/targetticket.class.php:1158 +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:221 +msgid "Form not found." +msgstr "Formulario no encontrado." + +#: inc/translation.class.php:236 +msgid "Failed to add the translation." +msgstr "Fallo al agregar una traducción." + +#: inc/abstractitiltarget.class.php:179 +msgid "Tags from questions" +msgstr "Etiquetas de preguntas" + +#: inc/abstractitiltarget.class.php:180 +msgid "Specific tags" +msgstr "Especificar etiquetas" + +#: inc/abstractitiltarget.class.php:181 +msgid "Tags from questions and specific tags" +msgstr "Etiquetas de preguntas y etiquetas específicas" + +#: inc/abstractitiltarget.class.php:182 +msgid "Tags from questions or specific tags" +msgstr "Etiquetas de preguntas o etiquetas específicas" + +#: inc/abstractitiltarget.class.php:188 +msgid "equals to the answer to the question" +msgstr "igual a la respuesta a la pregunta" + +#: inc/abstractitiltarget.class.php:189 +msgid "calculated from the ticket creation date" +msgstr "calculado a partir de la fecha de creación del caso" + +#: inc/abstractitiltarget.class.php:190 +msgid "calculated from the answer to the question" +msgstr "calculado a partir de la respuesta a la pregunta" + +#: inc/abstractitiltarget.class.php:196 +msgid "SLA from template or none" +msgstr "Plantilla de SLA o nada" + +#: inc/abstractitiltarget.class.php:197 +msgid "Specific SLA" +msgstr "Especificar SLA" + +#: inc/abstractitiltarget.class.php:204 +msgid "OLA from template or none" +msgstr "Plantilla de OLA o nada" + +#: inc/abstractitiltarget.class.php:205 +msgid "Specific OLA" +msgstr "Especificar OLA" + +#: inc/abstractitiltarget.class.php:212 +msgid "Urgency from template or Medium" +msgstr "Urgencia de la plantilla o medio" + +#: inc/abstractitiltarget.class.php:213 +msgid "Specific urgency" +msgstr "Especificar urgencia" + +#: inc/abstractitiltarget.class.php:220 +msgid "Category from template or none" +msgstr "Categoría de la plantilla o nada" + +#: inc/abstractitiltarget.class.php:221 +msgid "Specific category" +msgstr "Especificar categoría" + +#: inc/abstractitiltarget.class.php:229 +msgid "Location from template or none" +msgstr "Ubicación de la plantilla o nada" + +#: inc/abstractitiltarget.class.php:230 +msgid "Specific location" +msgstr "Especificar ubicación" + +#: inc/abstractitiltarget.class.php:238 +msgid "No validation" +msgstr "Sin validación" + +#: inc/abstractitiltarget.class.php:239 +msgid "Specific user or group" +msgstr "Usuario o grupo específico" + +#: inc/abstractitiltarget.class.php:240 +msgid "User from question answer" +msgstr "Usuario de la pregunta respuesta" + +#: inc/abstractitiltarget.class.php:241 +msgid "Group from question answer" +msgstr "Grupo de respuesta a la pregunta" + +#: inc/abstractitiltarget.class.php:769 entrée standard:108 +msgid "Time to resolve" +msgstr "Tiempo para resolverlo" + +#: inc/abstractitiltarget.class.php:822 +msgid "Minute" +msgid_plural "Minutes" +msgstr[0] "Minutos" +msgstr[1] "Minutos" +msgstr[2] "Minutos" + +#: inc/abstractitiltarget.class.php:823 +msgid "Hour" +msgid_plural "Hours" +msgstr[0] "Horas" +msgstr[1] "Horas" +msgstr[2] "Horas" + +#: inc/abstractitiltarget.class.php:824 +msgid "Day" +msgid_plural "Days" +msgstr[0] "Días " +msgstr[1] "Días " +msgstr[2] "Días " + +#: inc/abstractitiltarget.class.php:825 +msgid "Month" +msgid_plural "Months" +msgstr[0] "Meses" +msgstr[1] "Meses" +msgstr[2] "Meses" + +#: inc/abstractitiltarget.class.php:857 +msgid "SLA (TTO/TTR)" +msgstr "SLA ( TTO / TTR )" + +#: inc/abstractitiltarget.class.php:858 inc/abstractitiltarget.class.php:931 +msgid "Question (TTO/TTR)" +msgstr "Pregunta ( TTO / TTR )" + +#: inc/abstractitiltarget.class.php:930 +msgid "OLA (TTO/TTR)" +msgstr "OLA ( TTO / TTR )" + +#: inc/abstractitiltarget.class.php:1034 +msgid "Urgency " +msgstr "Urgencia " + +#: inc/abstractitiltarget.class.php:1064 +msgid "Ticket tags" +msgstr "Etiquetas del caso" + +#: inc/abstractitiltarget.class.php:1112 +msgid "Tags" +msgstr "Etiquetas" + +#: inc/abstractitiltarget.class.php:1231 +msgid "Location" +msgstr "Ubicación" + +#: inc/abstractitiltarget.class.php:1243 +msgid "Location " +msgstr "Ubicación " + +#: inc/abstractitiltarget.class.php:1583 +msgid "The description cannot be empty!" +msgstr "¡La descripción no puede estar vacía!" + +#: inc/abstractitiltarget.class.php:1760 +msgid "Watcher" +msgid_plural "Watchers" +msgstr[0] "Observadores" +msgstr[1] "Observadores" +msgstr[2] "Observadores" + +#: inc/abstractitiltarget.class.php:1779 +msgid "Cancel" +msgstr "Cancelar" + +#: inc/abstractitiltarget.class.php:2067 inc/abstractitiltarget.class.php:2495 +#: inc/abstractitiltarget.class.php:2499 +msgid "Email followup" +msgstr "Seguimiento por correo electrónico" + +#: inc/abstractitiltarget.class.php:2098 inc/abstractitiltarget.class.php:2483 +msgid "User" +msgstr "Usuario" + +#: inc/abstractitiltarget.class.php:2109 inc/abstractitiltarget.class.php:2487 +msgid "Group" +msgstr "Grupo" + +#: inc/abstractitiltarget.class.php:2120 +msgid "Group from the object" +msgstr "Grupo desde un objeto" + +#: inc/abstractitiltarget.class.php:2126 +msgid "Tech group from the object" +msgstr "Grupo técnico desde un objeto" + +#: inc/abstractitiltarget.class.php:2138 inc/abstractitiltarget.class.php:2491 +msgid "Supplier" +msgstr "Proveedor" + +#: inc/abstractitiltarget.class.php:2495 +msgid "Yes" +msgstr "Si" + +#: install/install.php:135 +#, php-format +msgid "Upgrade tables to innoDB; run %s" +msgstr "Actualizar tablas a innoDB; ejecutar%s" + +#: install/install.php:172 +#, 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:181 +#, 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:198 +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:250 +#, 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:261 +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:413 +msgid "A form has been created" +msgstr "Se ha creado un formulario" + +#: install/install.php:414 +msgid "Your request has been saved" +msgstr "Su solicitud ha sido guardada" + +#: install/install.php:415 +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:420 +msgid "A form from GLPI need to be validate" +msgstr "Un formulario GLPI necesita ser validado" + +#: install/install.php:421 +msgid "" +"Hi,\\nA form from GLPI need to be validate 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. \\ NPuedes acceder a él haciendo clic en este " +"enlace: \\ n ## formcreator.validation_link ##" + +#: install/install.php:426 +msgid "Your form has been refused by the validator" +msgstr "Su formulario ha sido rechazado por el validador" + +#: install/install.php:427 +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:433 +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:438 +msgid "Your form has been deleted by an administrator" +msgstr "Tu formulario ha sido eliminado por un administrador" + +#: install/install.php:439 +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:665 +msgid "Formcreator - Sync service catalog issues" +msgstr "" +"Formcreator - Problemas en la sincronización del catálogo de servicios" + +#: install/install.php:853 +msgid "Failed to check the sanity of the tables!" +msgstr "¡Falló la comprobación de la sanidad de las tablas!" + +#: install/install.php:867 +#, php-format +msgid "Table schema differs for table \"%s\"." +msgstr "El esquema de la tabla difiere para la tabla \"%s\"." + +#: install/install.php:870 +#, php-format +msgid "Table \"%s\" is missing." +msgstr "Falta la tabla \"%s\"." + +#: install/install.php:873 +#, 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:378 +msgctxt "button" +msgid "Duplicate" +msgstr "Duplicar" + +#: hook.php:379 +msgid "Transfer" +msgstr "Transferencia" + +#: hook.php:380 +msgctxt "button" +msgid "Export" +msgstr "Exportar" + +#: hook.php:381 +msgctxt "button" +msgid "Access rights" +msgstr "Derechos de acceso" + +#: hook.php:688 +msgid "Cancel my ticket" +msgstr "Cancelar mi caso" + +#: hook.php:706 +msgid "Old" +msgstr "Antiguo" + +#: hook.php:713 +#, php-format +msgid "Number of %s" +msgstr "Número de%s" + +#: hook.php:730 +msgid "Issues summary" +msgstr "Resumen de Temas" + +#: hook.php:775 +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:296 +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:298 +msgid "No form found." +msgstr "No se ha encontrado ningún formulario." + +#: js/scripts.js:302 +msgid "No FAQ item found." +msgstr "No se ha encontrado ningún elemento de FAQ." + +#: js/scripts.js:688 +msgid "Are you sure you want to delete this question?" +msgstr "¿Esta seguro que quieres eliminar esta pregunta?" + +#: js/scripts.js:877 +msgid "Are you sure you want to delete this section?" +msgstr "¿Esta seguro que quiere eliminar esta sección?" + +#: js/scripts.js:1118 +msgid "Add translations" +msgstr "Añadir traducciones" + +#: js/scripts.js:1257 js/scripts.js:1281 +msgid "An error occured while querying forms" +msgstr "Ocurrió un error al consultar los formularios" + +#: js/scripts.js:1372 entrée standard:139 +msgid "Send" +msgstr "Enviar" + +#: js/scripts.js:1381 +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:1449 +msgid "Are you sure you want to duplicate this target?" +msgstr "¿Estás seguro de que quieres duplicar este objetivo?" + +#: js/scripts.js:1466 +msgid "Are you sure you want to delete this target?" +msgstr "¿Está seguro de que desea eliminar este objetivo?" + +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 +msgid "Required" +msgstr "Requerido" + +#: 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:68 +msgid "Filter" +msgstr "Filtro" + +#: 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:109 +msgid "Time to own" +msgstr "Tiempo para adueñarse" + +#: entrée standard:146 standard:118 +msgid "Selectable root" +msgstr "Raíz seleccionable" + +#: 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:127 +msgid "Condition to show the question" +msgstr "Condición para mostrar la pregunta" + +#: 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: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:42 +msgid "Min" +msgstr "Mínimo" + +#: entrée standard:53 +msgid "Max" +msgstr "Máximo" diff --git a/locales/es_ES.po b/locales/es_ES.po index cd0ea5624..e3e41439e 100644 --- a/locales/es_ES.po +++ b/locales/es_ES.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: # Jorge Saiz, 2021 # Óscar Beiro, 2022 @@ -11,13 +11,13 @@ # 5b63a00e0726b96d7ef35c99d5553cd0_b787b5f <8bb2d0f7e8927228f17fba8639d787be_31711>, 2022 # Alejandro Jorge Trujillo Roca, 2022 # Ricardo Herrero , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Ricardo Herrero , 2023\n" "Language-Team: Spanish (Spain) (https://app.transifex.com/teclib/teams/28042/es_ES/)\n" @@ -74,7 +74,7 @@ msgstr "Sin límite" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulario" @@ -118,7 +118,7 @@ msgstr "No se pudo actualizar la sección" #: 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/formanswer.php:46 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 @@ -141,9 +141,8 @@ 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Creador de Formulario" @@ -157,8 +156,8 @@ msgstr "" msgid "Form list" msgstr "Lista de formulario" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "¡El formulario ha sido guardado exitosamente!" @@ -188,11 +187,11 @@ msgstr "" msgid "Please, describe your need here" msgstr "Por favor, describe tu necesidad aquí" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Textarea" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -200,42 +199,42 @@ msgstr "Textarea" msgid "A required field is empty:" msgstr "Un campo requerido está vacío:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "La expresión regular es inválida" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Usuario y formulario" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Desplegable" msgstr[1] "Desplegables" msgstr[2] "Desplegables" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valor incorrecto para" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Tipo de desplegable inválido: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restricciones de Entidad" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -256,8 +255,7 @@ 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:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "El formato especificado no coincide: %s" @@ -276,52 +274,53 @@ msgstr "El texto es demasiado largo (máximo %d caracteres): %s" msgid "Text" msgstr "Texto" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expresión regular" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Rango" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validación adicional" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Radios" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "El campo valor es requerido:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Un campo obligatorio está vacío: %s" -#: inc/field/integerfield.class.php:59 -#, php-format -msgid "This is not an integer: %s" -msgstr "No es un entero: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "El siguiente número debe ser mayor que %d: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "El siguiente número debe ser menor que %d: %s" +msgid "This is not an integer: %s" +msgstr "No es un entero: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Integer" @@ -376,13 +375,17 @@ msgstr[0] "Etiqueta" msgstr[1] "Etiquetas" msgstr[2] "Etiquetas" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objeto GLPI" msgstr[1] "Objetos GLPI" msgstr[2] "Objetos GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "El campo valor es requerido:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -406,11 +409,11 @@ msgstr[0] "Correo" msgstr[1] "Correos" msgstr[2] "Correos" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Select" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Fecha & Hora" @@ -449,7 +452,7 @@ msgstr "Un campo obligatorio está vacío: %s" msgid "File" msgstr "Archivo" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Multiselect" @@ -483,32 +486,46 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Checkboxes" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Tipo de Petición" @@ -517,11 +534,21 @@ msgstr "Tipo de Petición" msgid "This is not a number: %s" msgstr "Esto no es un número: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, 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/floatfield.class.php:176 +#, 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/floatfield.class.php:186 msgid "Float" msgstr "Float" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Fecha" @@ -572,31 +599,31 @@ msgstr "Oculto a menos" msgid "Displayed unless" msgstr "Mostrar a meno que" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Fallo al añadir o actualizar el %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "No se puede exportar un objeto vacío: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Condiciones" @@ -624,13 +651,13 @@ msgstr "" msgid "Satisfaction survey expired" msgstr "Encuesta de satisfacción caducada" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nombre" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -638,7 +665,7 @@ msgstr "Nombre" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -646,29 +673,29 @@ msgstr[0] "Tipo" msgstr[1] "Tipos" msgstr[2] "Tipos" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Estado" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Fecha de apertura" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Última modificación" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entidade" msgstr[1] "Entidades" msgstr[2] "Entidades" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -676,80 +703,80 @@ msgstr[0] "Solicitante" msgstr[1] "Solicitantes" msgstr[2] "Solicitantes" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Aprobador del formulario" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Comentario" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Aprobador del ticket" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Técnico" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Grupo de técnicos" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grupo de aprobación del formulario" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Todos" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nuevo" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Asignado" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Esperando" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Para validar" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Resuelto" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Cerrado" @@ -772,19 +799,19 @@ msgstr "" msgid "The form as been saved" msgstr "El formulario ha sido guardado" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Un formulario necesita ser validado" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "El formulario está rechazado" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "El formulario es aceptado" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "El formulario es eliminado" @@ -797,14 +824,6 @@ msgstr "" msgid "Form name" msgstr "Formulario nombre" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -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:281 #: entrée standard:49 @@ -953,78 +972,83 @@ msgstr[0] "Respuesta del formulario" msgstr[1] "Respuestas al formulario" msgstr[2] "Respuestas al formulario" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Imprimir este formulario" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulario aceptado y validado" -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulario guardado exitosamente." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Guardar" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Se requiere si se negó" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Denegado" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Editar las respuestas" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Cancelar la edición" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Aceptado" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "¡Comentario denegado es requerido!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "No eres el validador de estas respuestas" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Datos del formulario" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "¡No se puede generar objetivos!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "No se ha configurado un test de Turing" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Falló el test de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Debe seleccionar un validador" @@ -1083,63 +1107,63 @@ msgstr[0] "Idioma del fomulario" msgstr[1] "Idiomas del formulario" msgstr[2] "Idiomas del formulario" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Traducción" msgstr[1] "Traducciones" msgstr[2] "Traducciones" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Añadir una traducción" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nueva traducción" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Lista de filtrado" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "No se ha encontrado una traducción" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "¿Quieres borrar los ítems seleccionados?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Eliminar" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Cadena original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Agregar un nuevo idioma" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Idioma" @@ -1149,6 +1173,13 @@ msgstr "Idioma" msgid "None" msgstr "Ninguno" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "¿Necesita validación?" @@ -1187,7 +1218,7 @@ msgid "Properties" msgstr "Propiedades" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1453,7 +1484,7 @@ msgstr "" msgid "Duplicate" msgstr "Duplicado" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Añadir un objetivo" @@ -1626,36 +1657,36 @@ msgstr "" 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:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Error al crear el tipo de documento JSON." -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Tipo de documento JSON no encontrado" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Error al actualizar el tipo de documento JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formularios sin categoría" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "No hay un formulario disponible" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Añadir" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Tipo de Objetivo no soportado" -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1694,11 +1725,11 @@ msgstr[1] "Secciones" msgstr[2] "Secciones" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "El título es requerido" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Cuenta de condiciones" @@ -1715,73 +1746,73 @@ msgstr[0] "Pregunta" msgstr[1] "Preguntas" msgstr[2] "Preguntas" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "El campo tipo es requerido" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "La sección es requerida" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, 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:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Este tipo de pregunta no es compatible con los formularios publicos" -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Este tipo de pregunta requiere parámetros" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Un parámetro no se ha completado para este tipo de pregunta" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Niveles de servicio" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "ANS" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "Acuerdo de Nivel de Operación" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Activos" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Asistencia" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Gestión" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Herramientas" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notas" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "Canal RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administración" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Plugin" @@ -1856,15 +1887,15 @@ msgstr "Un objetivo debe estar asociado a un formulario existente" msgid "Name is required." msgstr "Se requiere el Nombre" -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Entidad de destino" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Pregunta tipo usuario" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Pregunta tipo entidad" @@ -2032,23 +2063,23 @@ msgstr "El objeto enlazado no existe" msgid "Failed to link the item" msgstr "Fallo al enlazar el item" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Su formulario ha sido aceptado por el validador" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Tipo" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Elementos asociados" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Item u Objeto" @@ -2264,50 +2295,50 @@ msgstr "Proveedor" msgid "Yes" msgstr "Sí" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" -#: install/install.php:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "El formulario ha sido creado" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Tu solicitud ha sido guardada" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2318,11 +2349,11 @@ msgstr "" "puedes ver sus respuestas en el siguiente " "enlace:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Un formulario GLPI necesita ser validado" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2332,11 +2363,11 @@ msgstr "" "elegido como el validador.\\nUsted puede acceder a él haciendo clic en este " "enlace:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Su formulario ha sido rechazado por el validador" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2349,7 +2380,7 @@ msgstr "" "modificarlo y volver a enviarlo haciendo clic en este " "enlace:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2357,11 +2388,11 @@ msgstr "" "Hola,\\nNos complace informarle de que su formulario ha sido aceptado por el" " validador.\\n Su solicitud será considerada pronto." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Tu formulario ha sido eliminado por un administrador" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2369,26 +2400,26 @@ msgstr "" "Hola,\\nLamentamos informarle de que su solicitud no puede ser considerada, " "y ha sido eliminado por un administrador." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "" "Formcreator - Problemas en la sincronización del catálogo de servicios" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "" -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "" @@ -2412,24 +2443,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Cancelar mi ticket" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2479,7 +2510,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Requerido" diff --git a/locales/es_MX.po b/locales/es_MX.po index e57f11c6d..d3cfdedab 100644 --- a/locales/es_MX.po +++ b/locales/es_MX.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Carlos Moreno Rodríguez , 2023 # Jesus Fernandez , 2023 -# +# #, fuzzy msgid "" msgstr "" @@ -478,7 +478,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/es_VE.mo b/locales/es_VE.mo index c2212dd972a197e0052ef71abe6ce038ca42e8fc..7fb5953e8d85cbae16ba321668425adc0af811f9 100644 GIT binary patch delta 14197 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 E2Mq?aQvd(} delta 11722 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, YEAR. -# +# # Translators: # Francisco Bolivar, 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Francisco Bolivar, 2023\n" "Language-Team: Spanish (Venezuela) (https://app.transifex.com/teclib/teams/28042/es_VE/)\n" @@ -68,7 +68,7 @@ msgstr "Sin límite" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulario" @@ -112,7 +112,7 @@ msgstr "No se pudo actualizar la sección" #: 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/formanswer.php:46 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 @@ -135,9 +135,8 @@ 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Creador de Formulario" @@ -151,8 +150,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Lista de formulario" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "¡El formulario ha sido guardado exitosamente!" @@ -182,11 +181,11 @@ msgstr "Ver todo" msgid "Please, describe your need here" msgstr "Por favor, describe tu necesidad aquí" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "AreaDeTexto" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -194,42 +193,42 @@ msgstr "AreaDeTexto" msgid "A required field is empty:" msgstr "Un campo requerido está vacío:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: 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:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Usuario y formulario" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 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:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valor no válido para: " -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "El campo de tipo de elemento es obligatorio: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Tipo de menú desplegable no válido: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restricción de entidad" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -250,8 +249,7 @@ msgstr "Directorio LDAP no definido!" msgid "LDAP directory not found!" msgstr "Directorio LDAP no encontrado!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "El formato especificado no coincide: %s" @@ -270,52 +268,53 @@ msgstr "El texto es demasiado largo (máximo %d caracteres): %s" msgid "Text" msgstr "Texto" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expresión regular" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Rango" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validación adicional" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Radios" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "El campo valor es requerido:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "El valor del campo es obligatorio." + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "Sólo se permite un valor predeterminado." -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "El valor predeterminado no está en la lista de valores disponibles." + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Un campo obligatorio está vacío: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "Este no es un número entero: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "Este valor %1$s no está permitido: %2$s" -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/integerfield.class.php:60 #, 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:172 -#, php-format -msgid "The following number must be lower than %d: %s" -msgstr "El siguiente número debe ser menor que %d: %s" +msgid "This is not an integer: %s" +msgstr "Este no es un número entero: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Entero" @@ -370,13 +369,17 @@ msgstr[0] "Etiqueta" msgstr[1] "Etiquetas" msgstr[2] "Etiquetas" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objeto de GLPI" msgstr[1] "Objetos de GLPI" msgstr[2] "Objetos de GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "El campo valor es requerido:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -400,11 +403,11 @@ msgstr[0] "Correo" msgstr[1] "Correos" msgstr[2] "Correos" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Seleccionar" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Fecha y hora" @@ -443,7 +446,7 @@ msgstr "Falta un archivo obligatorio: %s" msgid "File" msgstr "Archivo" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Mutiselección" @@ -478,32 +481,47 @@ msgid "Some URL fields contains invalid links" msgstr "Algunos campos de URL contienen enlaces no válidos" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Campos Adicionales" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Casillas de verificación" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "No se permiten valores vacíos: %s" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "Este valor %1$s no está permitido: %2$s" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" -msgstr "" +msgstr "La siguiente pregunta necesita al menos %d respuestas: %s" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" +msgstr "La siguiente pregunta no acepta más de %d respuestas: %s" + +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." msgstr "" +"Los valores predeterminados no están en la lista de valores disponibles." -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Rango mínimo" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Rango máximo" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Tipo de solicitud" @@ -512,11 +530,21 @@ msgstr "Tipo de solicitud" msgid "This is not a number: %s" msgstr "Este no es un número: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, 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/floatfield.class.php:176 +#, 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/floatfield.class.php:186 msgid "Float" msgstr "Flotante" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Fecha" @@ -567,31 +595,31 @@ msgstr "Oculto a menos" msgid "Displayed unless" msgstr "Desplegado a menos" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "No se pudo agregar o actualizar %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "No se puede exportar un objeto vacío: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Condiciones" @@ -618,13 +646,13 @@ msgstr "Actualizar datos de asuntos de casos y respuestas de formularios" msgid "Satisfaction survey expired" msgstr "Encuesta de satisfacción caducada" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nombre" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -632,7 +660,7 @@ msgstr "Nombre" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -640,29 +668,29 @@ msgstr[0] "Tipo" msgstr[1] "Tipos" msgstr[2] "Tipos" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Estado" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Fecha de apertura" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Última modificación" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entidad" msgstr[1] "Entidades" msgstr[2] "Entidades" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -670,80 +698,80 @@ msgstr[0] "Solicitante" msgstr[1] "Solicitantes" msgstr[2] "Solicitantes" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Aprobador de formularios" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Comentario" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Aprobador del caso" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Técnico" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Grupo de técnicos" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grupo de aprobadores de formularios" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "Grupo de aprobadores de casos" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "Solicitante del caso" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "Observador del caso" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "Técnico del caso" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Todos" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nuevos" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Asignado" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Esperando" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Para validar" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Resuelto" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Cerrado" @@ -766,39 +794,31 @@ msgstr "Debajo de" msgid "The form as been saved" msgstr "El formulario ha sido guardado" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Un formulario necesita ser validado" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "El formulario está rechazado" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "El formulario es aceptado" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "El formulario es eliminado" #: inc/notificationtargetformanswer.class.php:74 msgid "Form ID" -msgstr "" +msgstr "ID de formulario" #: 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:76 -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:281 #: entrée standard:49 @@ -812,7 +832,7 @@ msgstr "Respuestas del formulario completas" #: inc/notificationtargetformanswer.class.php:80 msgid "Validation comment" -msgstr "" +msgstr "Comentario de validación" #: inc/notificationtargetformanswer.class.php:81 #: inc/notificationtargetformanswer.class.php:101 @@ -821,7 +841,7 @@ msgstr "Vinculo de validación" #: inc/notificationtargetformanswer.class.php:82 msgid "Request ID" -msgstr "" +msgstr "Solicitar ID" #: inc/notificationtargetformanswer.class.php:94 msgid "Form #" @@ -947,78 +967,85 @@ msgstr[0] "Respuesta de formulario" msgstr[1] "Respuestas de formulario" msgstr[2] "Respuestas de formulario" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Imprimir este formulario" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulario aceptado y validado." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulario guardado exitosamente." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Guardar" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Se requiere si se negó" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Denegado" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Editar respuestas" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Cancelar edición" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Aceptado" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "¡Comentario denegado es requerido!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" +"Ocurrió un error interno al verificar sus respuestas. Infórmele a su " +"administrador." -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "No eres el validador de estas respuestas" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, 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:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Datos del formulario" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "¡No se puede generar objetivos!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "La respuesta no es válida en %1$s" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Sin equipo de prueba de turing" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Fallaste en la prueba de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Debes seleccionar validador!" @@ -1040,7 +1067,7 @@ msgstr "Mis solucitudes de ayuda" #: inc/common.class.php:829 msgid "Consult reminders" -msgstr "" +msgstr "Consultar recordatorios" #: inc/common.class.php:849 msgid "Consult feeds" @@ -1076,63 +1103,63 @@ 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 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Traducción" msgstr[1] "Traducciones" msgstr[2] "Traducciones" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." -msgstr "" +msgstr "El nombre no puede estar vacío." -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." -msgstr "" +msgstr "El idioma debe estar asociado a un formulario." -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." -msgstr "" +msgstr "El idioma especificado no está disponible." -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Agregar una traducción" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Actualizar una traducción" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nueva traducción" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Lista de filtros" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Traducción no encontrada" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 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/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Eliminar" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Cadena original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Agregar un nuevo idioma" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Idioma" @@ -1142,6 +1169,13 @@ msgstr "Idioma" msgid "None" msgstr "Ninguno" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validador" +msgstr[1] "Validadores" +msgstr[2] "Validadores" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "¿Necesita validación?" @@ -1180,7 +1214,7 @@ msgid "Properties" msgstr "Propiedades" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1446,7 +1480,7 @@ msgstr "Acciones" msgid "Duplicate" msgstr "Duplicado" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Agregar un objetivo" @@ -1530,7 +1564,7 @@ msgstr "Volver" #: inc/form.class.php:1568 #, php-format msgid "Form updated: %s" -msgstr "" +msgstr "Formulario actualizado: %s" #: inc/form.class.php:1668 msgid "Upload of JSON files not allowed." @@ -1617,36 +1651,36 @@ msgstr "No tiene derecho a actualizar la entidad %1$s." 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:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Error al crear el tipo de documento JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Tipo de documento JSON no encontrado" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Error al actualizar el tipo de documento JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formularios sin categoría" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "No hay formulario disponible" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Agregar" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Tipo de objetivo no admitido." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1685,11 +1719,11 @@ msgstr[1] "Secciones" msgstr[2] "Secciones" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "El título es requerido" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Recuento de condiciones" @@ -1706,73 +1740,73 @@ msgstr[0] "Pregunta" msgstr[1] "Preguntas" msgstr[2] "Preguntas" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "El campo tipo es requerido" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "La sección es requerida" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, 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:361 +#: inc/question.class.php:358 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:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Este tipo de pregunta requiere parámetros" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Falta un parámetro para este tipo de pregunta" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Niveles de servicio" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "ANS" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "AOS" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Activos" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Asistencia" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Gestión" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Herramientas" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notas" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "Canal RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administración" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Complemento" @@ -1847,43 +1881,43 @@ msgstr "Un objetivo debe estar asociado a un formulario existente." msgid "Name is required." msgstr "Se requiere el nombre." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Entidad destino" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Pregunta tipo usuario" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Pregunta tipo entidad" #: inc/command/cleanticketscommand.class.php:53 msgid "Searching for invalid items..." -msgstr "" +msgstr "Buscando elementos no válidos..." #: inc/command/cleanticketscommand.class.php:61 msgid "Done." -msgstr "" +msgstr "Hecho." #: inc/command/cleanticketscommand.class.php:135 msgid "Step 1: double encoded < and > signs." -msgstr "" +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 "" +msgstr "No se encontraron elementos no válidos." #: inc/command/cleanticketscommand.class.php:187 msgid "Step 2: literal BR tag." -msgstr "" +msgstr "Paso 2: etiqueta literal BR." #: inc/command/cleanticketscommand.class.php:251 msgid "Step 3: litteral > sign." -msgstr "" +msgstr "Paso 3: literal signo >." #: inc/filter/itilcategoryfilter.class.php:52 #: inc/filter/itilcategoryfilter.class.php:54 @@ -2025,23 +2059,23 @@ msgstr "El elemento vinculado no existe" msgid "Failed to link the item" msgstr "Error al vincular el elemento" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Su formulario ha sido aceptado por el validador" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Origen de la solicitud" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Tipo " -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Elementos asociados" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Elemento " @@ -2051,7 +2085,7 @@ msgstr "No más cadenas para traducir" #: inc/translation.class.php:164 msgid "Internal error: translatable string not found." -msgstr "" +msgstr "Error interno: cadena traducible no encontrada." #: inc/translation.class.php:216 msgid "Language not found." @@ -2259,12 +2293,12 @@ msgstr "Proveedor" msgid "Yes" msgstr "Sí" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Actualizar tablas a innoDB; corra %s" -#: install/install.php:171 +#: install/install.php:172 #, php-format msgid "" "The database schema is not consistent with the previous version of " @@ -2273,13 +2307,13 @@ 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:180 +#: install/install.php:181 #, 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:197 +#: install/install.php:198 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" @@ -2289,7 +2323,7 @@ msgstr "" "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:249 +#: install/install.php:250 #, php-format msgid "" "The database schema is not consistent with the current version of " @@ -2299,21 +2333,21 @@ msgstr "" "Formcreator %s. Para ver los registros, habilite el complemento y ejecute el" " comando %s" -#: install/install.php:260 +#: install/install.php:261 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:412 +#: install/install.php:413 msgid "A form has been created" msgstr "El formulario ha sido creado" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Tu solicitud ha sido guardada" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2324,11 +2358,11 @@ msgstr "" "puedes ver sus respuestas en el siguiente " "enlace:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Un formulario GLPI necesita ser validado" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2338,11 +2372,11 @@ msgstr "" "elegido como el validador.\\nUsted puede acceder a él haciendo clic en este " "enlace:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Su formulario ha sido rechazado por el validador" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2355,7 +2389,7 @@ msgstr "" "modificarlo y volver a enviarlo haciendo clic en este " "enlace:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2363,11 +2397,11 @@ msgstr "" "Hola,\\nNos complace informarle de que su formulario ha sido aceptado por el" " validador.\\n Su solicitud será considerada pronto." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Tu formulario ha sido eliminado por un administrador" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2375,25 +2409,25 @@ msgstr "" "Hola,\\nLamentamos informarle de que su solicitud no puede ser considerada, " "y ha sido eliminado por un administrador." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator - Servicio de Sincronización del catálogo de asuntos" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "¡No se pudo verificar la integridad de las tablas!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "El esquema de tabla difiere para la tabla \"%s\"." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "Falta la tabla \"%s\"." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "Se ha encontrado la tabla desconocida \"%s\" en la base de datos." @@ -2415,26 +2449,26 @@ msgstr "Exportar" #: hook.php:381 msgctxt "button" msgid "Access rights" -msgstr "" +msgstr "Derechos de acceso" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Cancelar mi caso" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Antiguo" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Número de %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Resumen de asuntos" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2482,13 +2516,14 @@ msgstr "Ha ocurrido un error interno. Por favor reportarlo al administrador." #: js/scripts.js:1449 msgid "Are you sure you want to duplicate this target?" -msgstr "" +msgstr "¿Estás seguro de que quieres duplicar este destino?" #: js/scripts.js:1466 msgid "Are you sure you want to delete this target?" -msgstr "" +msgstr "¿Está seguro de que desea eliminar este destino?" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Requerido" diff --git a/locales/fi_FI.po b/locales/fi_FI.po index f890304ba..9cd1bb804 100644 --- a/locales/fi_FI.po +++ b/locales/fi_FI.po @@ -2,10 +2,10 @@ # 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 "" @@ -465,7 +465,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/fr_CA.po b/locales/fr_CA.po index a8b4b45ff..8a94646a0 100644 --- a/locales/fr_CA.po +++ b/locales/fr_CA.po @@ -2,18 +2,18 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Christian Bernard , 2021 # Thierry Bugier , 2022 # Tiago Graça, 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Tiago Graça, 2023\n" "Language-Team: French (Canada) (https://app.transifex.com/teclib/teams/28042/fr_CA/)\n" @@ -70,7 +70,7 @@ msgstr "Aucune limite" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulaire" @@ -114,7 +114,7 @@ msgstr "Impossible de mettre à jour la 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:44 front/reservation.php:46 front/reservation.php:48 +#: front/formanswer.php:46 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 @@ -137,9 +137,8 @@ msgid "Bad request while deleting an actor." msgstr "Mauvaise requête pendant la suppression d'un acteur" #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Formcreator" @@ -153,8 +152,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Liste des formulaires" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Le formulaire a été sauvegardé avec succès !" @@ -184,11 +183,11 @@ msgstr "Voir tous" msgid "Please, describe your need here" msgstr "Merci de décrire votre besoin ici" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Zone de texte" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -196,42 +195,42 @@ msgstr "Zone de texte" msgid "A required field is empty:" msgstr "Un champ obligatoire est vide :" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "L'expression régulière n'est pas valide" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Utilisateur et formulaire" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Intitulé" msgstr[1] "Intitulés" msgstr[2] "Intitulés" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valeur invalide pour" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Le champ itemtype est requis: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Type d'intitulé invalide : %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restriction par entité" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -251,8 +250,7 @@ msgstr "Annuaire LDAP non défini !" msgid "LDAP directory not found!" msgstr "Annuaire LDAP introuvable !" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Le format spécifique ne correspond pas : %s" @@ -271,52 +269,53 @@ msgstr "Le texte est trop long (maximum %d caractères) : %s" msgid "Text" msgstr "Texte" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expression régulière" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Étendue" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validation supplémentaire" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Boutons radio" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "La valeur du champ est obligatoire :" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Un champ obligatoire est vide: %s" -#: inc/field/integerfield.class.php:59 -#, php-format -msgid "This is not an integer: %s" -msgstr "Ce n'est pas un nombre entier : %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Le nombre suivant doit être supérieur à %d : %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Le nombre suivant doit être inférieur à %d : %s" +msgid "This is not an integer: %s" +msgstr "Ce n'est pas un nombre entier : %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Entier" @@ -371,13 +370,17 @@ msgstr[0] "Etiquette" msgstr[1] "Etiquettes" msgstr[2] "Etiquettes" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objet GLPI" msgstr[1] "Objets GLPI" msgstr[2] "Objets GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "La valeur du champ est obligatoire :" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -401,11 +404,11 @@ msgstr[0] "Courriel" msgstr[1] "Courriels" msgstr[2] "Courriels" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Sélection" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Date & heure" @@ -444,7 +447,7 @@ msgstr "Un champ requis est manquant : %s" msgid "File" msgstr "Fichier" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Sélection multiple" @@ -478,32 +481,46 @@ msgid "Some URL fields contains invalid links" msgstr "Des champs URL contiennent des URL invalides" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Champs supplémentaires" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Boites à cocher" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Intervalle minimum" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Intervalle maximum" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Type de requête" @@ -512,11 +529,21 @@ msgstr "Type de requête" msgid "This is not a number: %s" msgstr "Ce n'est pas un nombre: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Le nombre suivant doit être supérieur à %d : %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Le nombre suivant doit être inférieur à %d : %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Flottant" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Date" @@ -567,31 +594,31 @@ msgstr "Masqué par défaut, sauf si" msgid "Displayed unless" msgstr "Affiché par défaut, sauf si" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Échec de l'ajout ou de la modification de %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Impossible d'exporter un objet vide: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Conditions" @@ -620,13 +647,13 @@ msgstr "" msgid "Satisfaction survey expired" msgstr "Sondage de satisfaction expirée" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nom" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -634,7 +661,7 @@ msgstr "Nom" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -642,29 +669,29 @@ msgstr[0] "Type" msgstr[1] "Types" msgstr[2] "Types" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "État" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Date d'ouverture" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Dernière mise à jour" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entité" msgstr[1] "Entités" msgstr[2] "Entités" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -672,80 +699,80 @@ msgstr[0] "Demandeur" msgstr[1] "Demandeurs" msgstr[2] "Demandeurs" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Approbateur de formulaire" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Commentaire" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Approbateur du ticket" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Technicien" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Groupe de techniciens" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Groupe approbateur de formulaire" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Tous" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nouveau" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Assigné" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "En attente" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "À valider" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Résolu" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Fermé" @@ -768,19 +795,19 @@ msgstr "Comme enfant de" msgid "The form as been saved" msgstr "Le formulaire a été sauvegardé" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Un formulaire est en attente de validation" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Le formulaire a été refusé" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Le formulaire a été accepté" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Le formulaire a été supprimé" @@ -793,14 +820,6 @@ msgstr "" msgid "Form name" msgstr "Nom du formulaire" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Validateur" -msgstr[1] "Validateurs" -msgstr[2] "Validateurs" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -949,78 +968,83 @@ msgstr[0] "Réponse au formulaire" msgstr[1] "Réponses au formulaire" msgstr[2] "Réponses au formulaire" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Imprimer ce formulaire" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulaire accepté par le valideur." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulaire sauvegardé avec succès" -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Enregistrer" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Obligatoire en cas de refus" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Refuser" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Editer les réponses" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Annuler l'édition" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Accepter" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Le commentaire de refus est obligatoire !" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Vous n'êtes pas le valideur pour ces réponses" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Données du formulaire" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Impossible de générer les cibles !" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Pas de test de Turing défini" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Vous avez échoué au test de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Vous devez définir un valideur !" @@ -1081,63 +1105,63 @@ msgstr[0] "Langue de formulaire" msgstr[1] "Langues de formulaire" msgstr[2] "Langues de formulaire" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Traduction" msgstr[1] "Traductions" msgstr[2] "Traductions" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Ajouter une traduction" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Mettre à jour une traduction" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nouvelle traduction" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Filtrer la liste" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Aucune traduction trouvée" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Voulez-vous supprimer les éléments sélectionnés ?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Supprimer" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Chaîne original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Ajouter une nouvelle langue" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Langue" @@ -1147,6 +1171,13 @@ msgstr "Langue" msgid "None" msgstr "Aucun" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validateur" +msgstr[1] "Validateurs" +msgstr[2] "Validateurs" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Requiert une validation ?" @@ -1185,7 +1216,7 @@ msgid "Properties" msgstr "Propriétés" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1451,7 +1482,7 @@ msgstr "" msgid "Duplicate" msgstr "Dupliquer" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Ajouter une cible" @@ -1625,36 +1656,36 @@ msgstr "Vous n'avez pas le droit de modifier l'entité %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "L'entité %1$s est requise pour le formulaire %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Échec de création du type de fichiers JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Type de document JSON introuvable" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Échec lors de la mise à jour du type de document JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formulaires sans catégorie" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Aucun formulaire disponible" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Ajouter" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Type de cible non supporté." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1693,11 +1724,11 @@ msgstr[1] "Sections" msgstr[2] "Sections" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "L'intitulé est obligatoire" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Nombre de conditions" @@ -1714,73 +1745,73 @@ msgstr[0] "Question" msgstr[1] "Questions" msgstr[2] "Questions" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Le type de champ est obligatoire" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "La section est obligatoire" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Le type de champ %1$s n'est pas disponible pour la question %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Ce type de qustion n'est pas compatible avec les formulaires publics." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Ce type de question requiert des paramètres" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Il manque un paramètre pour ce type de question" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Niveaux de service" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "Entente de niveau de service " -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "Entente sur les niveaux opérationnels" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Parc" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Assistance" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Gestion" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Outils" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notes" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "Flux RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administration" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Plugin" @@ -1855,15 +1886,15 @@ msgstr "Une cible doit être associée à un formulaire existant." msgid "Name is required." msgstr "Le nom est requis." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Entité de destination" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Question de type \"utilisateur\"" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Question de type \"entité\"" @@ -2031,23 +2062,23 @@ msgstr "L'objet lié n'existe pas" msgid "Failed to link the item" msgstr "Échec de liaison de l'objet" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Votre formulaire a été accepté par le valideur" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Source de la demande" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Type" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Éléments associés" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Élément" @@ -2263,50 +2294,50 @@ msgstr "Fournisseur" msgid "Yes" msgstr "Oui" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" -#: install/install.php:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Un formulaire a été créé" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Votre demande a été sauvegardée avec succès !" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2317,11 +2348,11 @@ msgstr "" "support.\\\\nVous pouvez visualiser vos réponses à l'adresse suivante " ":\\\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Un formulaire GLPI est en attente de validation" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2331,11 +2362,11 @@ msgstr "" "choisi comme valideur.\\nVous pouvez accéder à celui-ci en cliquant sur le " "lien ci-dessous :\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Votre formulaire a été refusé par le valideur" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2347,7 +2378,7 @@ msgstr "" "toutefois modifier et renvoyer votre demande en cliquant sur le lien ci-" "dessous :\\\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2355,11 +2386,11 @@ msgstr "" "Bonjour,\\\\nVotre demande a été accepté par le valideur.\\\\nVotre demande " "sera traitée prochainement." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Votre formulaire a été supprimé par un administrateur" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2367,25 +2398,25 @@ msgstr "" "Bonjour,\\\\nVotre demande ne peut être traitée et a été supprimée par un " "administrateur." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formulaires - synchronisation des demandes du catalogue de service" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "" -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "" @@ -2409,24 +2440,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Annuler mon ticket" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Nombre de %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Résulé des demandes d'assistance" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2478,7 +2509,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Champ obligatoire" diff --git a/locales/fr_FR.mo b/locales/fr_FR.mo index ac7fc8641962360d85aa7c82b17fb0912926e01b..6d2ce69958c9d8e638d67e5309b650a07db3fcc3 100644 GIT binary patch delta 12867 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 delta 12019 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, YEAR. -# +# # Translators: # alexandre delaunay , 2021 # Tiago Graça, 2021 @@ -12,13 +12,13 @@ # tguichard25 , 2022 # 06c8e5f1ec78ded2ceb41498ec52b068, 2022 # Thierry Bugier , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Thierry Bugier , 2023\n" "Language-Team: French (France) (https://app.transifex.com/teclib/teams/28042/fr_FR/)\n" @@ -75,7 +75,7 @@ msgstr "Aucune limite" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulaire" @@ -119,7 +119,7 @@ msgstr "Impossible de mettre à jour la 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:44 front/reservation.php:46 front/reservation.php:48 +#: front/formanswer.php:46 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 @@ -142,9 +142,8 @@ msgid "Bad request while deleting an actor." msgstr "Mauvaise requête pendant la suppression d'un acteur" #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Formcreator" @@ -158,8 +157,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Liste des formulaires" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Le formulaire a été sauvegardé avec succès !" @@ -189,11 +188,11 @@ msgstr "Voir tous" msgid "Please, describe your need here" msgstr "Merci de décrire votre besoin ici" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Zone de texte" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -201,42 +200,42 @@ msgstr "Zone de texte" msgid "A required field is empty:" msgstr "Un champ obligatoire est vide :" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "L'expression régulière n'est pas valide" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Utilisateur et formulaire" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Intitulé" msgstr[1] "Intitulés" msgstr[2] "Intitulés" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valeur invalide pour" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Le champ itemtype est requis: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Type d'intitulé invalide : %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restriction par entité" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -256,8 +255,7 @@ msgstr "Annuaire LDAP non défini !" msgid "LDAP directory not found!" msgstr "Annuaire LDAP introuvable !" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Le format spécifique ne correspond pas : %s" @@ -276,52 +274,53 @@ msgstr "Le texte est trop long (maximum %d caractères) : %s" msgid "Text" msgstr "Texte" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expression régulière" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Taille" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validation supplémentaire" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Boutons radio" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "La valeur du champ est obligatoire :" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "Le champ Valeur est requis." + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "Une seule valeur par défaut est autorisée." -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "La valeur par défaut n'est pas dans la liste des valeurs disponibles." + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Un champ obligatoire est vide: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "Ce n'est pas un nombre entier : %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "La valeur %1$s n'est pas autorisée: %2$s" -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Le nombre suivant doit être supérieur à %d : %s" - -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 -#, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Le nombre suivant doit être inférieur à %d : %s" +msgid "This is not an integer: %s" +msgstr "Ce n'est pas un nombre entier : %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Entier" @@ -376,13 +375,17 @@ msgstr[0] "Etiquette" msgstr[1] "Etiquettes" msgstr[2] "Etiquettes" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objet GLPI" msgstr[1] "Objets GLPI" msgstr[2] "Objets GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "La valeur du champ est obligatoire :" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -406,11 +409,11 @@ msgstr[0] "Adresse email" msgstr[1] "Adresses email" msgstr[2] "Adresses email" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Sélection" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Date & heure" @@ -449,7 +452,7 @@ msgstr "Un champ requis est manquant : %s" msgid "File" msgstr "Fichier" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Sélection multiple" @@ -483,32 +486,47 @@ msgid "Some URL fields contains invalid links" msgstr "Des champs URL contiennent des URL invalides" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Champs supplémentaires" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Boites à cocher" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "Les valeurs vides ne sont pas autorisées : %s" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "La valeur %1$s n'est pas autorisée : %2$s " + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "La question suivante requiert au moins %d réponses : %s" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "La question suivante n'accepte pas plus de %d réponses : %s" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" +"Les valeurs par défaut ne sont pas dans la liste des valeurs autorisées." + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Intervalle minimum" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Intervalle maximum" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Type de demande" @@ -517,11 +535,21 @@ msgstr "Type de demande" msgid "This is not a number: %s" msgstr "Ce n'est pas un nombre: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Le nombre suivant doit être supérieur à %d : %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Le nombre suivant doit être inférieur à %d : %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Flottant" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Date" @@ -572,31 +600,31 @@ msgstr "Masqué par défaut, sauf si" msgid "Displayed unless" msgstr "Affiché par défaut, sauf si" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Échec à l'ajout ou la modification de %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Impossible d'exporter un objet vide: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Conditions" @@ -625,13 +653,13 @@ msgstr "" msgid "Satisfaction survey expired" msgstr "Enquête de satisfaction expirée" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nom" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -639,7 +667,7 @@ msgstr "Nom" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -647,29 +675,29 @@ msgstr[0] "Type" msgstr[1] "Types" msgstr[2] "Types" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Statut" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Date d'ouverture" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Dernière mise à jour" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entité" msgstr[1] "Entités" msgstr[2] "Entités" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -677,80 +705,80 @@ msgstr[0] "Demandeur" msgstr[1] "Demandeurs" msgstr[2] "Demandeurs" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Validateur de formulaire" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Commentaire" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Valideur du ticket" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Technicien" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Groupe de techniciens" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Groupe validateur de formulaire" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "Groupe approbateur du ticket" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "Demandeur du ticket" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "Observateur du ticket" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "Technicien du ticket" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Tous" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nouveau" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Assigné" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "En attente" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "À valider" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Résolu" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Fermé" @@ -773,19 +801,19 @@ msgstr "Comme enfant de" msgid "The form as been saved" msgstr "Le formulaire a été sauvegardé" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Un formulaire est en attente de validation" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Le formulaire a été refusé" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Le formulaire a été accepté" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Le formulaire a été supprimé" @@ -798,14 +826,6 @@ msgstr "ID de formulaire" msgid "Form name" msgstr "Nom du formulaire" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Validateur" -msgstr[1] "Validateurs" -msgstr[2] "Validateurs" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -954,47 +974,47 @@ msgstr[0] "Réponse au formulaire" msgstr[1] "Réponses au formulaire" msgstr[2] "Réponses au formulaire" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Imprimer ce formulaire" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulaire accepté par le valideur." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulaire sauvegardé avec succès" -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Enregistrer" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Obligatoire en cas de refus" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Refuser" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Editer les réponses" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Annuler l'édition" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Accepter" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Le commentaire de refus est obligatoire !" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." @@ -1002,32 +1022,37 @@ msgstr "" "Une erreur interne est survenue pendant la vérification de vos réponses. " "Veuillez le signaler à votre administrateur." -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Vous n'êtes pas validateur pour ces réponses" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "Élément ajouté avec succès : %1$s (%2$s : %3$s)" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Données du formulaire" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Impossible de générer les destinations !" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "La réponse est invalide dans %1$s" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Pas de test de Turing défini" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Vous avez échoué au test de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Vous devez définir un valideur !" @@ -1088,63 +1113,63 @@ msgstr[0] "Langue de formulaire" msgstr[1] "Langues de formulaire" msgstr[2] "Langues de formulaire" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Traduction" msgstr[1] "Traductions" msgstr[2] "Traductions" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "Le nom ne peut pas être vide." -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "La langue doit être associée à un formulaire." -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "La langue spécifiée n'est pas disponible." -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Ajouter une traduction" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Mettre à jour une traduction" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nouvelle traduction" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Filtrer la liste" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Aucune traduction trouvée" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Voulez-vous supprimer les éléments sélectionnés ?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Supprimer" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Chaîne original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Ajouter une nouvelle langue" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Langage" @@ -1154,6 +1179,13 @@ msgstr "Langage" msgid "None" msgstr "Aucun" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validateur" +msgstr[1] "Validateurs" +msgstr[2] "Validateurs" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Requiert une validation ?" @@ -1192,7 +1224,7 @@ msgid "Properties" msgstr "Propriétés" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1458,7 +1490,7 @@ msgstr "Actions" msgid "Duplicate" msgstr "Copie" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Ajouter une cible" @@ -1631,36 +1663,36 @@ msgstr "Vous n'avez pas le droit de modifier l'entité %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "L'entité %1$s est requise pour le formulaire %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Échec de création du type de fichiers JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Type de document JSON introuvable" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Echec lors de la mise à jour du type de document JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formulaires sans catégorie" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Aucun formulaire disponible" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Ajouter" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Type de cible non supporté." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1699,11 +1731,11 @@ msgstr[1] "Sections" msgstr[2] "Sections" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "L'intitulé est obligatoire" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Nombre de conditions" @@ -1720,73 +1752,74 @@ msgstr[0] "Question" msgstr[1] "Questions" msgstr[2] "Questions" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Le type de champ est obligatoire" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "La section est obligatoire" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Le type de champ %1$s n'est pas disponible pour la question %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." -msgstr "Ce type de qustion n'est pas compatible avec les formulaires publics." +msgstr "" +"Ce type de question n'est pas compatible avec les formulaires publics." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Ce type de question requiert des paramètres" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Il manque un paramètre pour ce type de question" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Niveaux de service" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Parc" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Assistance" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Gestion" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Outils" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notes" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "Flux RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administration" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Plugin" @@ -1861,15 +1894,15 @@ msgstr "Une cible doit être associée à un formulaire existant." msgid "Name is required." msgstr "Le nom est requis." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Entité de destination" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Question de type \"utilisateur\"" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Question de type \"entité\"" @@ -2037,23 +2070,23 @@ msgstr "L'objet lié n'existe pas" msgid "Failed to link the item" msgstr "Echec de liaison de l'objet" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Votre formulaire a été accepté par le valideur" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Source de la demande" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Type" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Eléments associés" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Objet" @@ -2269,12 +2302,12 @@ msgstr "Fournisseur" msgid "Yes" msgstr "Oui" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Mettez à jour les tables en InnoDB; exécutez %s" -#: install/install.php:171 +#: install/install.php:172 #, php-format msgid "" "The database schema is not consistent with the previous version of " @@ -2284,13 +2317,13 @@ msgstr "" "précédente %s de Formcreator. Pour voir les journaux d'erreur, exécutez la " "commande %s" -#: install/install.php:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" "Pour ignorer les incohérences et faire une mise à jour forcée exécutez %s" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2301,7 +2334,7 @@ msgstr "" "vers la version 2.12.5, puis mettre à jour à nouveau vers GLPI 10 ou plus " "récent et Formcreator 2.13 ou plus récent." -#: install/install.php:249 +#: install/install.php:250 #, php-format msgid "" "The database schema is not consistent with the current version of " @@ -2311,19 +2344,19 @@ msgstr "" "actuelle %s de Formcreator. Pour voir les journaux d'erreur, exécutez la " "commande %s" -#: install/install.php:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "Les tables du plugin ont passé le test d'intégrité du schéma." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Une demande a été faite à partir d'un formulaire" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Votre demande a été sauvegardée avec succès !" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2334,11 +2367,11 @@ msgstr "" "support.\\\\nVous pouvez visualiser vos réponses à l'adresse suivante " ":\\\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Un formulaire GLPI est en attente de validation" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2348,11 +2381,11 @@ msgstr "" "choisi comme valideur.\\nVous pouvez accéder à celui-ci en cliquant sur le " "lien ci-dessous :\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Votre formulaire a été refusé par le valideur" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2365,7 +2398,7 @@ msgstr "" "modifier et renvoyer votre demande en cliquant sur le lien ci-dessous " ":\\\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2373,11 +2406,11 @@ msgstr "" "Bonjour,\\\\nNous avons le plaisir de vous informer que votre demande a été " "accepté par le valideur.\\\\nVotre demande vas être traitées prochainement." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Votre formulaire a été supprimé par un administrateur" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2385,25 +2418,25 @@ msgstr "" "Bonjour,\\\\nNous sommes au regret de vous informer que votre demande ne " "peut être traitée et a été supprimée par un administrateur." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formulaires - synchronisation des demandes du catalogue de service" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "Échec pendant le test d'intégrité des tables !" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "Le schéma de la table diffère pour la table \"%s\"." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "La table \"%s\" est manquante." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "La table inconnue \"%s\" a été trouvée dans la base de données." @@ -2427,24 +2460,24 @@ msgctxt "button" msgid "Access rights" msgstr "Droits d'accès" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Annuler mon ticket" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Ancien" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Nombre de %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Résulé des demandes d'assistance" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2499,7 +2532,8 @@ msgstr "Êtes-vous sûrs de vouloir dupliquer cette cible ?" msgid "Are you sure you want to delete this target?" msgstr "Êtes-vous sûrs de vouloir supprimer cette cible ?" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Champ obligatoire" diff --git a/locales/glpi.pot b/locales/glpi.pot index b99931e15..e1e32f4f0 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-08-25 11:18+0200\n" +"POT-Creation-Date: 2023-10-24 08:32+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,7 +65,7 @@ msgstr "" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "" @@ -131,9 +131,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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "" @@ -147,8 +146,8 @@ msgstr "" msgid "Form list" msgstr "" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1248 inc/formanswer.class.php:1298 msgid "The form has been successfully saved!" msgstr "" @@ -177,11 +176,11 @@ msgstr "" msgid "Please, describe your need here" msgstr "" -#: inc/field/textareafield.class.php:175 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "" -#: inc/field/textareafield.class.php:238 inc/field/dropdownfield.class.php:435 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -189,41 +188,41 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/field/textareafield.class.php:256 inc/field/textfield.class.php:178 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 #: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "" -#: inc/field/dropdownfield.class.php:78 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "" -#: inc/field/dropdownfield.class.php:426 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "" msgstr[1] "" -#: inc/field/dropdownfield.class.php:457 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "" -#: inc/field/dropdownfield.class.php:469 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "" -#: inc/field/dropdownfield.class.php:485 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "" -#: inc/field/dropdownfield.class.php:812 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "" -#: inc/field/dropdownfield.class.php:821 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -359,13 +358,13 @@ msgid_plural "Tags" msgstr[0] "" msgstr[1] "" -#: inc/field/glpiselectfield.class.php:84 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "" msgstr[1] "" -#: inc/field/glpiselectfield.class.php:101 inc/field/fieldsfield.class.php:512 +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 msgid "The field value is required:" msgstr "" @@ -466,7 +465,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 @@ -580,7 +579,7 @@ msgstr "" #: inc/condition.class.php:173 inc/target_actor.class.php:233 #: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 #: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 #: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 @@ -628,7 +627,7 @@ msgid "Satisfaction survey expired" msgstr "" #: inc/issue.class.php:527 inc/form_language.class.php:232 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "" @@ -641,7 +640,7 @@ msgstr "" msgid "ID" msgstr "" -#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -668,7 +667,7 @@ msgstr[1] "" #: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 inc/target_actor.class.php:101 -#: inc/formanswer.class.php:260 inc/formanswer.class.php:712 +#: inc/formanswer.class.php:260 inc/formanswer.class.php:718 #: inc/abstractitiltarget.class.php:1753 entrée standard:48 msgid "Requester" msgid_plural "Requesters" @@ -679,8 +678,8 @@ msgstr[1] "" msgid "Form approver" msgstr "" -#: inc/issue.class.php:643 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 #: inc/form_language.class.php:246 msgid "Comment" msgstr "" @@ -723,32 +722,32 @@ msgid "%1$s %2$s" msgstr "" #: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: hook.php:698 msgid "All" msgstr "" -#: inc/issue.class.php:1363 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "" -#: inc/issue.class.php:1369 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "" #: inc/issue.class.php:1375 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "" -#: inc/issue.class.php:1381 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "" -#: inc/issue.class.php:1387 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "" -#: inc/issue.class.php:1393 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "" @@ -941,83 +940,83 @@ msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1233 inc/formanswer.class.php:1285 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1434 #, php-format msgid "Answer is invalid in %1$s" msgstr "" -#: inc/formanswer.class.php:1456 +#: inc/formanswer.class.php:1462 msgid "No turing test set" msgstr "" -#: inc/formanswer.class.php:1462 +#: inc/formanswer.class.php:1468 msgid "You failed the Turing test" msgstr "" -#: inc/formanswer.class.php:1486 +#: inc/formanswer.class.php:1492 msgid "You must select validator!" msgstr "" @@ -1442,7 +1441,7 @@ msgstr "" msgid "Duplicate" msgstr "" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "" @@ -1609,36 +1608,36 @@ msgstr "" msgid "The entity %1$s is required for the form %2$s." msgstr "" -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "" -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "" @@ -1737,7 +1736,7 @@ msgstr "" msgid "Assets" msgstr "" -#: inc/question.class.php:1237 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "" @@ -2364,24 +2363,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." diff --git a/locales/hr_HR.mo b/locales/hr_HR.mo index 177fcf4ac75cbf4b969160323a6b800497419a1a..7a5d2bf7632e6a9c7d16650c42edc24e05286227 100644 GIT binary patch delta 12459 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 K>xw14!u|ulla|8( delta 11573 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 efbo^Wa+fc>ntN, YEAR. -# +# # Translators: # Thierry Bugier , 2022 # Milo Ivir , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Milo Ivir , 2023\n" "Language-Team: Croatian (Croatia) (https://app.transifex.com/teclib/teams/28042/hr_HR/)\n" @@ -69,7 +69,7 @@ msgstr "Bez ograničenja" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Obrazac" @@ -113,7 +113,7 @@ msgstr "Nije bilo moguće aktualizirati odjeljak" #: 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/formanswer.php:46 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 @@ -136,9 +136,8 @@ msgid "Bad request while deleting an actor." msgstr "Neispravan zahtjev tijekom brisanja učesnika." #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Stvaratelj obrasca" @@ -152,8 +151,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Popis obrazaca" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Obrazac je uspješno spremljen!" @@ -183,11 +182,11 @@ msgstr "Pogledaj sve" msgid "Please, describe your need here" msgstr "Ovdje opiši tvoju potrebu" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Tekstualno područje" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -195,42 +194,42 @@ msgstr "Tekstualno područje" msgid "A required field is empty:" msgstr "Jedno obavezno polje je prazno:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Regularni izraz nije ispravan" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Korisnik i obrazac" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Padajući izbornik" msgstr[1] "Padajući izbornici" msgstr[2] "Padajući izbornici" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Neispravna vrijednost za " -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Polje vrste predmeta je obavezno polje: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Neispravna vrsta padajućeg popisa: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Ograničenje entiteta" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -250,8 +249,7 @@ msgstr "LDAP direktorij nije definiran!" msgid "LDAP directory not found!" msgstr "LDAP direktorij nije pronađen!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Određeni format se ne poklapa: %s" @@ -270,52 +268,53 @@ msgstr "Tekst je predug (najviše %d znakova): %s" msgid "Text" msgstr "Tekst" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Regularan izraz" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Raspon" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Dodatna potvrda" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Izborni gumbovi" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Vrijednost polja je obavezna:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Jedno obavezno polje je prazno: %s" -#: inc/field/integerfield.class.php:59 -#, php-format -msgid "This is not an integer: %s" -msgstr "Ovo nije cijeli broj: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Sljedeći broj mora biti veći od %d: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Sljedeći broj mora biti manji od %d: %s" +msgid "This is not an integer: %s" +msgstr "Ovo nije cijeli broj: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Cijeli broj" @@ -370,13 +369,17 @@ msgstr[0] "Oznaka" msgstr[1] "Oznake" msgstr[2] "Oznake" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "GLPI objekt" msgstr[1] "GLPI objekti" msgstr[2] "GLPI objekti" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Vrijednost polja je obavezna:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -400,11 +403,11 @@ msgstr[0] "E-mail" msgstr[1] "E-mailovi" msgstr[2] "E-mailovi" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Odaberi" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Datum i vrijeme" @@ -443,7 +446,7 @@ msgstr "Nedostaje jedna obavezna datoteka: %s" msgid "File" msgstr "Datoteka" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Višestruki odabir" @@ -477,32 +480,46 @@ msgid "Some URL fields contains invalid links" msgstr "Neka URL polja sadrže neispravne poveznice" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Dodatna polja" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Potvrdni okviri" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 #, php-format -msgid "The following question needs at least %d answers: %s" +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:236 +#, php-format +msgid "The following question needs at least %d answers: %s" +msgstr "Sljedeće pitanje treba barem %d odgovora: %s" + +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" +msgstr "Sljedeće pitanje ne prihvaća više od %d odgovora: %s" + +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Minimum raspona" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Maksimum raspona" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Vrsta zahtjeva" @@ -511,11 +528,21 @@ msgstr "Vrsta zahtjeva" msgid "This is not a number: %s" msgstr "Ovo nije broj: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Sljedeći broj mora biti veći od %d: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Sljedeći broj mora biti manji od %d: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Plutajući" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Datum" @@ -566,31 +593,31 @@ msgstr "Skriveno, ukoliko" msgid "Displayed unless" msgstr "Prikazano, ukoliko" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Neuspjelo dodavanje ili aktualiziranje: %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Nije moguće izvesti prazni objekt: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Uvjeti" @@ -617,13 +644,13 @@ msgstr "Aktualiziraj podatke problema iz naloga i odgovora na obrascu" msgid "Satisfaction survey expired" msgstr "Anketa o zadovoljstvu je istekla" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Ime" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -631,7 +658,7 @@ msgstr "Ime" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -639,29 +666,29 @@ msgstr[0] "Vrsta" msgstr[1] "Vrste" msgstr[2] "Vrste" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Stanje" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Datum otvaranja" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Zadnje aktualiziranje" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entitet" msgstr[1] "Entiteti" msgstr[2] "Entiteti" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -669,80 +696,80 @@ msgstr[0] "Podnositelj" msgstr[1] "Podnositelji" msgstr[2] "Podnositelji" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Odobravatelj obrazaca" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Komentar" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Odobravatelj naloga" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Tehničar" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Grupa tehničara" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grupa odobravatelja obrazaca" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "Grupa odobravatelja naloga" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "Podnositelj naloga" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "Nadglednik naloga" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "Tehničar naloga" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Sve" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Novi" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Dodijeljeni" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Na čekanju" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Za potvrdu" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Riješeni" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Zatvoreni" @@ -765,19 +792,19 @@ msgstr "Kao podređeni element od" msgid "The form as been saved" msgstr "Obrazac kao što je spremljen" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Potrebno je potvrditi jedan obrazac" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Obrazac je odbijen" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Obrazac je prihvaćen" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Obrazac je izbrisan" @@ -790,14 +817,6 @@ msgstr "" msgid "Form name" msgstr "Ime obrasca" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Potvrditelj" -msgstr[1] "Potvrditelji" -msgstr[2] "Potvrditelji" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -946,78 +965,85 @@ msgstr[0] "Odgovor u obrascu" msgstr[1] "Odgovori u obrascu" msgstr[2] "Odgovori u obrascu" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Ispiši ovaj obrazac" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Obrazac prihvaćen od potvrditelja." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Obrazac je uspješno spremljen." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Spremi" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Obavezno, ako je odbijeno" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Odbij" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Uredi odgovor" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Otkaži izdanje" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Prihvati" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Potreban je komentar za odbijanje!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" +"Došlo je do interne greške prilikom provjere tvojih odgovora. Prijavi " +"problem tvom administratoru." -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Nisi potvrditelj ovih odgovora" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "Predmet je uspješno dodan: %1$s (%2$s: %3$s)" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Podaci obrasca" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Nije moguće generirati ciljeve!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Nije postavljen nijedan Turingov test" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Turingov test nije položen" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Moraš odabrati potvrditelja!" @@ -1039,7 +1065,7 @@ msgstr "Moji zahtjevi za pomoć" #: inc/common.class.php:829 msgid "Consult reminders" -msgstr "" +msgstr "Konzultiraj podsjetnike" #: inc/common.class.php:849 msgid "Consult feeds" @@ -1075,63 +1101,63 @@ msgstr[0] "Jezik obrasca" msgstr[1] "Jezici obrasca" msgstr[2] "Jezici obrasca" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Prijevod" msgstr[1] "Prijevodi" msgstr[2] "Prijevodi" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." -msgstr "" +msgstr "Ime ne može biti prazno." -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." -msgstr "" +msgstr "Jezik mora biti povezan s jednim obrascem." -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." -msgstr "" +msgstr "Navedeni jezik nije dostupan." -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Dodaj prijevod" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Aktualiziraj prijevod" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Novi prijevod" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Filtriraj popis" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Nema prijevoda" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Želiš li izbrisati odabrane predmete?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Izbriši" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Izvorni izraz" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Dodaj novi jezik" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Jezik" @@ -1141,6 +1167,13 @@ msgstr "Jezik" msgid "None" msgstr "Ništa" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Potvrditelj" +msgstr[1] "Potvrditelji" +msgstr[2] "Potvrditelji" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Treba potvrdu?" @@ -1179,7 +1212,7 @@ msgid "Properties" msgstr "Svojstva" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1445,7 +1478,7 @@ msgstr "Radnje" msgid "Duplicate" msgstr "Dupliciraj" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Dodaj cilj" @@ -1529,7 +1562,7 @@ msgstr "Natrag" #: inc/form.class.php:1568 #, php-format msgid "Form updated: %s" -msgstr "" +msgstr "Obrazac je aktualiziran: %s" #: inc/form.class.php:1668 msgid "Upload of JSON files not allowed." @@ -1617,36 +1650,36 @@ msgstr "Nemaš pravo aktualiziranja entiteta %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "Obrazac %1$s je potreban za obrazac %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Neuspjelo stvaranje JSON vrste dokumenta" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "JSON vrsta dokumenta nije pronađena" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Neuspjelo aktualiziranje JSON vrste dokumenta" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Obrasci bez kategorije" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Nema obrasca" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Dodaj" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Nepodržana vrsta cilja." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1685,11 +1718,11 @@ msgstr[1] "Odjeljci" msgstr[2] "Odjeljci" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Naslov se mora zadati" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Broj uvjeta" @@ -1706,73 +1739,73 @@ msgstr[0] "Pitanje" msgstr[1] "Pitanja" msgstr[2] "Pitanja" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Vrsta polja se mora zadati" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Odjeljak se mora zadati" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Vrsta polja %1$s nije dostupna za pitanje %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Ova vrsta pitanja nije kompatibilna s javnim obrascima." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Ova vrsta pitanja treba parametre" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Jedan parametar nedostaje za ovu vrstu pitanja" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Razine usluge" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "Ugovor o razini usluge (SLA)" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "Ugovor o operativnoj raznini (OLA)" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Inventar" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Pomoć" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Upravljanje" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Alati" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Bilješke" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS vijest" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administracija" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Dodatak" @@ -1847,15 +1880,15 @@ msgstr "Cilj mora biti povezan s postojećim obrascem." msgid "Name is required." msgstr "Ime je obavezno." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Odredište entiteta" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Korisnička vrsta pitanja" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Entitetska vrsta pitanja" @@ -2023,23 +2056,23 @@ msgstr "Povezani predmet ne postoji" msgid "Failed to link the item" msgstr "Neuspjelo povezivanje predmeta" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Potvrditelj je prihvatio tvoj obrazac" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Izvor zahtjeva" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Vrsta " -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Pridruženi elementi" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Predmet " @@ -2049,7 +2082,7 @@ msgstr "Nema daljnjih izraza za prevođenje" #: inc/translation.class.php:164 msgid "Internal error: translatable string not found." -msgstr "" +msgstr "Interna greška: prevodiv izraz nije pronađen." #: inc/translation.class.php:216 msgid "Language not found." @@ -2256,12 +2289,12 @@ msgstr "Dobavljač" msgid "Yes" msgstr "Da" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Nadogradi tablice u innoDB; pokreni %s" -#: install/install.php:171 +#: install/install.php:172 #, php-format msgid "" "The database schema is not consistent with the previous version of " @@ -2270,12 +2303,12 @@ msgstr "" "Shema baze podataka nije u skladu s prethodnom verzijom Formcreatora %s. Za " "prikaz zapisa pokreni naredbu %s" -#: install/install.php:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "Za ignoriranje nedosljednosti i nadogradnju unatoč tomu, pokreni %s" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2285,7 +2318,7 @@ msgstr "" " 9.5.7, nadogradi Formcreator na verziju 2.12.5, zatim ponovo nadogradi na " "GLPI 10 i Formcreator 2.13 ili novije verzije." -#: install/install.php:249 +#: install/install.php:250 #, php-format msgid "" "The database schema is not consistent with the current version of " @@ -2294,19 +2327,19 @@ msgstr "" "Shema baze podataka nije u skladu s prethodnom verzijom Formcreatora %s. Za " "prikaz zapisa aktiviraj dodatak i pokreni naredbu %s" -#: install/install.php:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "Tablice dodatka su prošle provjeru integriteta sheme." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Stvoren je jedan obrazac" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Tvoj zahtjev je spremljen" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2316,11 +2349,11 @@ msgstr "" "##formcreator.request_id## i proslijeđen podršci.\\nTvoje odgovore možeš " "vidjeti na:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Potrebno je potvrditi GLPI obrazac" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2330,11 +2363,11 @@ msgstr "" "potvrditelja.\\nPristupi obrascu putem " "poveznice:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Potvrditelj je odbio tvoj obrazac" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2346,7 +2379,7 @@ msgstr "" "možeš izmijeniti i ponovo poslati na odobrenje putem " "poveznice:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2354,11 +2387,11 @@ msgstr "" "Pozdrav,\\nobavještavamo te, da je potvrditelj prihvatio tvoj " "obrazac.\\nZahtjev će uskoro biti razmotren." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Administrator je izbrisao obrazac" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2366,25 +2399,25 @@ msgstr "" "Pozdrav,\\nobavještavamo te, da tvoj zahtjev nažalost ne možemo uzeti u " "obzir i da ga je administrator izbrisao." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator – Problemi sa sinkronizacijom kataloga usluga" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "Neuspjela provjera ispravnosti tablica!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "Shema tablice se razlikuje za tablicu „%s”." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "Nedostaje tablica „%s”." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "U bazi podataka je pronađena nepoznata tablica „%s”." @@ -2408,24 +2441,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Otkaži moj nalog" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Staro" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Broj za %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Sažetak problema" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2477,7 +2510,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Obavezno" diff --git a/locales/hu_HU.po b/locales/hu_HU.po index d02e70e71..c55bc3a26 100644 --- a/locales/hu_HU.po +++ b/locales/hu_HU.po @@ -2,11 +2,11 @@ # 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 , 2021 # Laszlo Czirbesz , 2022 -# +# #, fuzzy msgid "" msgstr "" @@ -466,7 +466,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/it_IT.po b/locales/it_IT.po index 39ec74269..fbc10e360 100644 --- a/locales/it_IT.po +++ b/locales/it_IT.po @@ -2,14 +2,14 @@ # 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 , 2021 # Alessandro Carloni , 2021 # Roberto , 2021 # Pierfrancesco Passerini , 2022 # Davide , 2023 -# +# #, fuzzy msgid "" msgstr "" @@ -480,7 +480,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Campi addizionali" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/ja_JP.mo b/locales/ja_JP.mo new file mode 100644 index 0000000000000000000000000000000000000000..eb6ce96c71c3b8a19fce9847a3564ca45d31a631 GIT binary patch literal 44849 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, YEAR. +# +# Translators: +# INOUE Daisuke, 2023 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" +"PO-Revision-Date: 2021-08-30 07:22+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/homepage_link.php:36 inc/formlist.class.php:46 +#: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 +#: inc/form.class.php:2032 entrée standard:47 +msgid "Form" +msgid_plural "Forms" +msgstr[0] "フォーム" + +#: 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:46 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:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 +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:686 +msgid "Form list" +msgstr "フォーム一覧" + +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 +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/form.class.php:658 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "カテゴリー" + +#: inc/knowbase.class.php:62 inc/form.class.php:661 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:176 +msgid "Textarea" +msgstr "テキスト エリア" + +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 +#: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 +#: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 +#: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 +#: inc/field/requesttypefield.class.php:160 +msgid "A required field is empty:" +msgstr "必要なフィールドが空 : " + +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 +#: inc/conditionnabletrait.class.php:70 +msgid "The regular expression is invalid" +msgstr "正規表現が無効" + +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 +msgid "User and form" +msgstr "ユーザーとフォーム" + +#: inc/field/dropdownfield.class.php:434 entrée standard:38 +msgid "Dropdown" +msgid_plural "Dropdowns" +msgstr[0] "ドロップダウン" + +#: inc/field/dropdownfield.class.php:465 +msgid "Invalid value for " +msgstr "無効な値 : " + +#: inc/field/dropdownfield.class.php:477 +#, php-format +msgid "The itemtype field is required: %s" +msgstr "アイテムの型のフィールドが必要です : %s" + +#: inc/field/dropdownfield.class.php:493 +#, php-format +msgid "Invalid dropdown type: %s" +msgstr "不正なドロップダウンの型 : %s" + +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 +msgid "Entity restriction" +msgstr "エンティティ制限" + +#: inc/field/dropdownfield.class.php:840 +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:95 +msgid "LDAP Select" +msgstr "LDAP 選択" + +#: inc/field/ldapselectfield.class.php:139 +msgid "LDAP directory not defined!" +msgstr "LDAP ディレクトリーが未定義です!" + +#: inc/field/ldapselectfield.class.php:146 +msgid "LDAP directory not found!" +msgstr "LDAP ディレクトリーがありません!" + +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 +#, php-format +msgid "Specific format does not match: %s" +msgstr "特定の書式がマッチしません : %s" + +#: inc/field/textfield.class.php:155 +#, php-format +msgid "The text is too short (minimum %d characters): %s" +msgstr "テキストが短すぎます(最低 %d 文字): %s" + +#: inc/field/textfield.class.php:160 +#, php-format +msgid "The text is too long (maximum %d characters): %s" +msgstr "テキストが長すぎます(最大 %d 文字): %s" + +#: inc/field/textfield.class.php:168 +msgid "Text" +msgstr "テキスト" + +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 +#: inc/questionregex.class.php:62 entrée standard:42 +msgid "Regular expression" +msgstr "正規表現" + +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 +msgid "Range" +msgstr "範囲" + +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 +msgid "Additional validation" +msgstr "追加の検証" + +#: inc/field/radiosfield.class.php:108 +msgid "Radios" +msgstr "ラジオボタン" + +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "フィールドの値は必須です。" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "デフォルト値は 1 つだけしか設定できません。" + +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "デフォルト値は、利用可能な値の中から選んでください。" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 +#: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 +#, php-format +msgid "A required field is empty: %s" +msgstr "必要なフィールドが空 : %s" + +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 +#, php-format +msgid "This value %1$s is not allowed: %2$s" +msgstr "この値「%1$s」は利用できません : %2$s" + +#: inc/field/integerfield.class.php:60 +#, php-format +msgid "This is not an integer: %s" +msgstr "これは整数ではありません : %s" + +#: inc/field/integerfield.class.php:71 +msgid "Integer" +msgstr "整数" + +#: inc/field/undefinedfield.class.php:44 +msgid "Undefined" +msgstr "未定義" + +#: inc/field/ipfield.class.php:122 +msgid "IP address" +msgid_plural "IP addresses" +msgstr[0] "IP アドレス" + +#: inc/field/urgencyfield.class.php:85 inc/abstractitiltarget.class.php:1023 +msgid "Urgency" +msgstr "緊急度" + +#: inc/field/urgencyfield.class.php:119 +msgctxt "urgency" +msgid "Very high" +msgstr "最高" + +#: inc/field/urgencyfield.class.php:120 +msgctxt "urgency" +msgid "High" +msgstr "高" + +#: inc/field/urgencyfield.class.php:121 +msgctxt "urgency" +msgid "Medium" +msgstr "中" + +#: inc/field/urgencyfield.class.php:122 +msgctxt "urgency" +msgid "Low" +msgstr "低" + +#: inc/field/urgencyfield.class.php:123 +msgctxt "urgency" +msgid "Very low" +msgstr "最低" + +#: inc/field/tagfield.class.php:51 +msgid "Warning: Tag plugin is disabled or missing" +msgstr "警告 : タグ プラグインが無効かインストールされていません" + +#: inc/field/tagfield.class.php:197 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "タグ" + +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "GLPI オブジェクト" + +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "フィールドの値が必要です : " + +#: inc/field/hostnamefield.class.php:115 +msgid "Hostname" +msgid_plural "Hostnames" +msgstr[0] "ホスト名" + +#: inc/field/timefield.class.php:129 +msgid "Time" +msgstr "時間" + +#: inc/field/emailfield.class.php:88 +#, php-format +msgid "This is not a valid e-mail: %s" +msgstr "無効なメールアドレスです : %s" + +#: inc/field/emailfield.class.php:99 +msgid "Email" +msgid_plural "Emails" +msgstr[0] "メールアドレス" + +#: inc/field/selectfield.class.php:98 +msgid "Select" +msgstr "選択" + +#: inc/field/datetimefield.class.php:140 +msgid "Date & time" +msgstr "日時" + +#: inc/field/actorfield.class.php:83 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "アクター" + +#: inc/field/actorfield.class.php:267 +#, php-format +msgid "Invalid value: %s" +msgstr "無効な値 : %s" + +#: inc/field/actorfield.class.php:290 +#, php-format +msgid "User not found or invalid email address: %s" +msgstr "ユーザーが見つからないか、無効なメールアドレス : %s" + +#: inc/field/filefield.class.php:123 +msgid "No attached document" +msgstr "文書が添付されていません" + +#: inc/field/filefield.class.php:132 inc/field/filefield.class.php:268 +#: inc/field/filefield.class.php:275 +msgid "Attached document" +msgstr "添付文書" + +#: inc/field/filefield.class.php:174 +#, php-format +msgid "A required file is missing: %s" +msgstr "必要なファイルがありません : %s" + +#: inc/field/filefield.class.php:191 +msgid "File" +msgstr "ファイル" + +#: inc/field/multiselectfield.class.php:89 +msgid "Multiselect" +msgstr "複数選択" + +#: inc/field/fieldsfield.class.php:154 +msgid "Warning: Additional Fields plugin is disabled or missing" +msgstr "警告 : 追加のフィールドプラグインが無効か、インストールされていません" + +#: inc/field/fieldsfield.class.php:167 +msgid "Block" +msgstr "ブロック" + +#: inc/field/fieldsfield.class.php:171 inc/targetticket.class.php:341 +msgid "Field" +msgstr "フィールド" + +#: inc/field/fieldsfield.class.php:253 +msgid "show" +msgstr "表示" + +#: inc/field/fieldsfield.class.php:389 +#, php-format +msgid "Field '%1$s' type not implemented yet!" +msgstr "「%1$s」フィールドの型は未実装です!" + +#: inc/field/fieldsfield.class.php:466 +msgid "Some numeric fields contains non numeric values" +msgstr "数字でない値を含む数値フィールドがあります" + +#: inc/field/fieldsfield.class.php:471 +msgid "Some URL fields contains invalid links" +msgstr "無効なリンクを含む URL フィールドがあります" + +#: inc/field/fieldsfield.class.php:565 +msgid "Additional fields" +msgstr "追加のフィールド" + +#: inc/field/checkboxesfield.class.php:132 +msgid "Checkboxes" +msgstr "チェックボックス" + +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "空の値は利用できません : %s" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "この値「%1$s」は利用できません : %2$s" + +#: inc/field/checkboxesfield.class.php:236 +#, php-format +msgid "The following question needs at least %d answers: %s" +msgstr "以下の質問では、少なくとも %d 個の回答が必要です : %s" + +#: inc/field/checkboxesfield.class.php:242 +#, php-format +msgid "The following question does not accept more than %d answers: %s" +msgstr "以下の質問では、%d 個を超える回答は受け付けません : %s" + +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "デフォルト値は、利用可能な値の中から選んでください。" + +#: inc/field/checkboxesfield.class.php:325 +msgid "Range min" +msgstr "範囲の下限" + +#: inc/field/checkboxesfield.class.php:326 +msgid "Range max" +msgstr "範囲の上限" + +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 +msgid "Request type" +msgstr "要求の型" + +#: inc/field/floatfield.class.php:141 +#, php-format +msgid "This is not a number: %s" +msgstr "これは数値ではありません : %s" + +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "以下の数字は %d より大きくしてください : %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "以下の数字は %d より小さくしてください : %s" + +#: inc/field/floatfield.class.php:186 +msgid "Float" +msgstr "浮動小数点" + +#: inc/field/datefield.class.php:66 +msgid "Date" +msgstr "日付" + +#: inc/field/descriptionfield.class.php:105 inc/form.class.php:165 +#: inc/question.class.php:166 entrée standard:82 standard:52 standard:113 +msgid "Description" +msgstr "記述" + +#: inc/field/descriptionfield.class.php:112 +msgid "A description field should have a description:" +msgstr "記述フィールドには記述が必要です : " + +#: inc/field/hiddenfield.class.php:95 +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:104 +msgid "is visible" +msgstr "表示" + +#: inc/condition.class.php:105 +msgid "is not visible" +msgstr "非表示" + +#: inc/condition.class.php:106 +msgid "regular expression matches" +msgstr "正規表現で照合" + +#: inc/condition.class.php:117 +msgid "Always displayed" +msgstr "常時表示" + +#: inc/condition.class.php:118 +msgid "Hidden unless" +msgstr "表示条件 : " + +#: inc/condition.class.php:119 +msgid "Displayed unless" +msgstr "非表示条件 : " + +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 +#: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 +#: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 +#, php-format +msgid "Failed to add or update the %1$s %2$s" +msgstr "%1$s %2$s の追加・更新に失敗 " + +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 +#: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 +#: inc/form.class.php:1611 inc/targetchange.class.php:149 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 +#: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 +#, php-format +msgid "Cannot export an empty object: %s" +msgstr "空のオブジェクトはエクスポートできません : %s" + +#: inc/condition.class.php:263 +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:379 +msgid "Satisfaction survey expired" +msgstr "満足度調査の期限切れ" + +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 +#: standard:49 standard:57 standard:38 standard:39 standard:46 +msgid "Name" +msgstr "名前" + +#: inc/issue.class.php:539 inc/formanswer.class.php:241 +#: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 +#: inc/form.class.php:147 inc/targetchange.class.php:335 +#: inc/section.class.php:95 inc/question.class.php:156 +#: inc/targetticket.class.php:180 entrée standard:45 +msgid "ID" +msgstr "ID" + +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 +#: entrée standard:111 standard:65 +msgid "Type" +msgid_plural "Types" +msgstr[0] "型" + +#: inc/issue.class.php:561 inc/formanswer.class.php:301 +msgid "Status" +msgstr "状態" + +#: inc/issue.class.php:573 +msgid "Opening date" +msgstr "開始日" + +#: inc/issue.class.php:582 +msgid "Last update" +msgstr "最終更新日" + +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 +msgid "Entity" +msgid_plural "Entities" +msgstr[0] "エンティティ" + +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 +#: inc/notificationtargetformanswer.class.php:96 +#: inc/target_actor.class.php:101 inc/formanswer.class.php:260 +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée +#: standard:48 +msgid "Requester" +msgid_plural "Requesters" +msgstr[0] "要求者" + +#: inc/issue.class.php:619 inc/formanswer.class.php:270 +msgid "Form approver" +msgstr "フォーム承認者" + +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 +msgid "Comment" +msgstr "コメント" + +#: inc/issue.class.php:655 +msgid "Ticket approver" +msgstr "チケットの承認者" + +#: inc/issue.class.php:728 +msgid "Technician" +msgstr "技術者" + +#: inc/issue.class.php:759 +msgid "Technician group" +msgstr "技術者グループ" + +#: inc/issue.class.php:795 inc/formanswer.class.php:290 +msgid "Form approver group" +msgstr "フォーム承認グループ" + +#: inc/issue.class.php:817 +msgid "Ticket approver group" +msgstr "チケット承認者グループ" + +#: inc/issue.class.php:857 +msgid "Ticket requester" +msgstr "チケット要求者" + +#: inc/issue.class.php:904 +msgid "Ticket observer" +msgstr "チケット オブザーバー" + +#: inc/issue.class.php:952 +msgid "Ticket technician" +msgstr "チケット技術者" + +#: inc/issue.class.php:1099 +#, php-format +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 +msgid "All" +msgstr "すべて" + +#: inc/issue.class.php:1363 hook.php:699 +msgid "New" +msgstr "新規" + +#: inc/issue.class.php:1369 hook.php:700 +msgid "Assigned" +msgstr "割当済み" + +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 +msgid "Waiting" +msgstr "待ち" + +#: inc/issue.class.php:1381 hook.php:702 +msgid "To validate" +msgstr "検証待ち" + +#: inc/issue.class.php:1387 hook.php:703 +msgid "Solved" +msgstr "解決" + +#: inc/issue.class.php:1393 hook.php:704 +msgid "Closed" +msgstr "終了" + +#: inc/category.class.php:50 hook.php:72 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "フォームの分類" + +#: inc/category.class.php:72 +msgid "Knowbase category" +msgstr "ナレッジベースの分類" + +#: inc/category.class.php:78 +msgid "As child of" +msgstr "親 " + +#: inc/notificationtargetformanswer.class.php:43 +msgid "The form as been saved" +msgstr "フォームを保存しました" + +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 +msgid "A form need to be validate" +msgstr "フォームは検証が必要です" + +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 +msgid "The form is refused" +msgstr "フォームの再利用" + +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 +msgid "The form is accepted" +msgstr "フォームを受け付けました" + +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 +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:78 +#: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 +#: 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:1318 +msgid "Approver" +msgstr "承認者" + +#: inc/target_actor.class.php:70 inc/abstractitiltarget.class.php:2090 +msgid "Form author" +msgstr "フォーム作者" + +#: inc/target_actor.class.php:71 inc/abstractitiltarget.class.php:2093 +msgid "Form validator" +msgstr "フォーム検証者" + +#: inc/target_actor.class.php:72 +msgid "Specific person" +msgstr "特定の人" + +#: inc/target_actor.class.php:73 inc/abstractitiltarget.class.php:2103 +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:2114 +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:2143 +msgid "Supplier from the question" +msgstr "質問で特定するサプライヤ" + +#: inc/target_actor.class.php:80 inc/abstractitiltarget.class.php:2132 +msgid "Actors from the question" +msgstr "質問で特定する実行者" + +#: inc/target_actor.class.php:81 inc/abstractitiltarget.class.php:2147 +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:1767 +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:71 +msgid "Refused" +msgstr "拒否" + +#: inc/formanswer.class.php:80 inc/form_validator.class.php:70 +msgid "Accepted" +msgstr "承認" + +#: inc/formanswer.class.php:226 +msgid "Form answer" +msgid_plural "Form answers" +msgstr[0] "フォームの回答" + +#: inc/formanswer.class.php:629 +msgid "Print this form" +msgstr "このフォームを印刷" + +#: inc/formanswer.class.php:654 +msgid "Form accepted by validator." +msgstr "フォームが検証者に承認されました。" + +#: inc/formanswer.class.php:656 +msgid "Form successfully saved." +msgstr "フォームを保存しました。" + +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 +msgid "Save" +msgstr "保存" + +#: inc/formanswer.class.php:738 +msgid "Required if refused" +msgstr "拒否されたら必須" + +#: inc/formanswer.class.php:744 +msgid "Refuse" +msgstr "拒否" + +#: inc/formanswer.class.php:752 +msgid "Edit answers" +msgstr "回答を編集" + +#: inc/formanswer.class.php:758 +msgid "Cancel edition" +msgstr "編集をキャンセル" + +#: inc/formanswer.class.php:765 +msgid "Accept" +msgstr "承認" + +#: inc/formanswer.class.php:788 +msgid "Refused comment is required!" +msgstr "拒否する場合はコメント必須です!" + +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 +msgid "" +"An internal error occured when verifying your answers. Please report it to " +"your administrator." +msgstr "回答の検証で内部エラー発生。管理者に報告してください。" + +#: inc/formanswer.class.php:882 +msgid "You are not the validator of these answers" +msgstr "あなたはこの回答の検証者ではありません" + +#: inc/formanswer.class.php:1021 +#, php-format +msgid "Item sucessfully added: %1$s (%2$s: %3$s)" +msgstr "アイテムを追加 : %1$s (%2$s: %3$s)" + +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 +msgid "Form data" +msgstr "フォーム データ" + +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 +msgid "Cannot generate targets!" +msgstr "対象を生成できません!" + +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "回答は %1$s では無効です。" + +#: inc/formanswer.class.php:1466 +msgid "No turing test set" +msgstr "チューリングテストセットなし" + +#: inc/formanswer.class.php:1472 +msgid "You failed the Turing test" +msgstr "チューリングテストに失敗しました" + +#: inc/formanswer.class.php:1496 +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:783 +msgid "Seek assistance" +msgstr "ユーザーサポートを検索" + +#: inc/common.class.php:789 inc/common.class.php:793 +msgid "My requests for assistance" +msgstr "自分へのサポート要求" + +#: inc/common.class.php:829 +msgid "Consult reminders" +msgstr "リマインダーを参照する" + +#: inc/common.class.php:849 +msgid "Consult feeds" +msgstr "フィードを参照する" + +#: inc/formaccesstype.class.php:39 inc/formaccesstype.class.php:64 +msgid "Access type" +msgid_plural "Access types" +msgstr[0] "アクセスの型" + +#: inc/formaccesstype.class.php:79 +msgid "Link to the form" +msgstr "フォームへのリンク" + +#: inc/formaccesstype.class.php:92 +msgid "Please activate the form to view the link" +msgstr "リンクを表示するには、フォームを稼働させてください" + +#: inc/formaccesstype.class.php:100 inc/form.class.php:1505 +msgid "Enable captcha" +msgstr "CAPCHA を有効に" + +#: inc/formaccesstype.class.php:112 +msgid "Restricted to" +msgstr "制限 : " + +#: inc/form_language.class.php:51 +msgid "Form language" +msgid_plural "Form languages" +msgstr[0] "フォームの言語" + +#: inc/form_language.class.php:81 inc/form_language.class.php:367 +msgid "Translation" +msgid_plural "Translations" +msgstr[0] "翻訳" + +#: inc/form_language.class.php:122 +msgid "The name cannot be empty." +msgstr "名前を入力してください。" + +#: inc/form_language.class.php:130 +msgid "The language must be associated to a form." +msgstr "言語をフォームに関連付けてください。" + +#: inc/form_language.class.php:138 +msgid "The specified language is not available." +msgstr "指定の言語は無効です。" + +#: inc/form_language.class.php:268 +msgid "Add a translation" +msgstr "翻訳の追加" + +#: inc/form_language.class.php:302 js/scripts.js:1171 +msgid "Update a translation" +msgstr "翻訳の更新" + +#: inc/form_language.class.php:332 inc/form_language.class.php:334 +msgid "New translation" +msgstr "新しい翻訳" + +#: inc/form_language.class.php:337 +msgid "Filter list" +msgstr "フィルターリスト" + +#: inc/form_language.class.php:342 inc/form_language.class.php:441 +msgid "No translation found" +msgstr "翻訳がありません" + +#: inc/form_language.class.php:347 +msgid "Do you want to delete the selected items?" +msgstr "選択したアイテムを削除します。よろしいですか?" + +#: inc/form_language.class.php:356 inc/form_language.class.php:404 +#: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 +msgid "Delete" +msgstr "削除" + +#: inc/form_language.class.php:366 +msgid "Original string" +msgstr "元の文字列" + +#: inc/form_language.class.php:427 +msgid "Add a new language" +msgstr "新しい言語を追加" + +#: inc/form_language.class.php:460 inc/form_language.class.php:492 +#: inc/form.class.php:192 entrée standard:72 +msgid "Language" +msgstr "言語" + +#: inc/form_validator.class.php:68 inc/targetticket.class.php:99 +#: inc/abstractitiltarget.class.php:178 +msgid "None" +msgstr "なし" + +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "検証者" + +#: inc/form_validator.class.php:114 +msgid "Need validaton?" +msgstr "検証が必要ですか?" + +#: inc/form_validator.class.php:118 inc/abstractitiltarget.class.php:2499 +msgid "No" +msgstr "いいえ" + +#: inc/form_validator.class.php:295 inc/targetproblem.class.php:147 +#: inc/entityconfig.class.php:435 inc/targetchange.class.php:484 +#: inc/targetticket.class.php:318 inc/targetticket.class.php:353 +#: inc/abstractitiltarget.class.php:2073 +msgctxt "button" +msgid "Save" +msgstr "保存" + +#: inc/form_validator.class.php:709 inc/abstractitiltarget.class.php:1298 +msgid "Validation" +msgstr "検証" + +#: inc/form_validator.class.php:711 +msgid "Choose a validator" +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:579 +#: 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:523 inc/targetchange.class.php:286 +#: inc/targetticket.class.php:1399 +#, 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:580 inc/targetchange.class.php:106 +#: inc/targetticket.class.php:136 inc/abstractitiltarget.class.php:1200 +msgid "Actors" +msgstr "アクター" + +#: inc/targetproblem.class.php:633 entrée standard:48 +msgid "Problem title" +msgstr "問題のタイトル" + +#: inc/targetproblem.class.php:643 inc/targetchange.class.php:354 +#: inc/targetticket.class.php:199 +msgid "Content" +msgstr "内容" + +#: inc/targetproblem.class.php:653 inc/targetchange.class.php:364 +msgid "Impact" +msgstr "影響" + +#: inc/targetproblem.class.php:663 entrée standard:56 +msgid "Cause" +msgstr "原因" + +#: inc/targetproblem.class.php:673 entrée standard:58 +msgid "Symptom" +msgstr "症状" + +#: inc/entityconfig.class.php:92 inc/entityconfig.class.php:101 +#: inc/entityconfig.class.php:109 inc/entityconfig.class.php:117 +#: inc/entityconfig.class.php:125 inc/entityconfig.class.php:133 +#: inc/entityconfig.class.php:141 inc/entityconfig.class.php:149 +#: inc/entityconfig.class.php:157 +msgid "Inheritance of the parent entity" +msgstr "親エンティティーの検証" + +#: inc/entityconfig.class.php:93 +msgid "GLPi's helpdesk" +msgstr "GLPI ヘルプデスク" + +#: inc/entityconfig.class.php:94 +msgid "Service catalog simplified" +msgstr "シンプル サービスカタログ" + +#: inc/entityconfig.class.php:95 +msgid "Service catalog extended" +msgstr "拡張 サービスカタログ" + +#: inc/entityconfig.class.php:102 +msgid "All available forms" +msgstr "すべての有効なフォーム" + +#: inc/entityconfig.class.php:103 +msgid "Only default forms" +msgstr "標準フォームのみ" + +#: inc/entityconfig.class.php:110 +msgid "Popularity sort" +msgstr "活用順" + +#: inc/entityconfig.class.php:111 +msgid "Alphabetic sort" +msgstr "辞書順" + +#: inc/entityconfig.class.php:118 +msgid "Merged with Forms" +msgstr "フォームとマージ済み" + +#: inc/entityconfig.class.php:119 +msgid "Distinct menu entry" +msgstr "個別のメニューエントリー" + +#: inc/entityconfig.class.php:126 inc/entityconfig.class.php:134 +#: inc/entityconfig.class.php:142 inc/entityconfig.class.php:150 +#: inc/form.class.php:285 entrée standard:100 +msgid "Visible" +msgstr "表示" + +#: inc/entityconfig.class.php:127 inc/entityconfig.class.php:135 +#: inc/entityconfig.class.php:143 inc/entityconfig.class.php:151 +msgid "Hidden" +msgstr "非表示" + +#: inc/entityconfig.class.php:158 +msgid "Variable height" +msgstr "高さ可変" + +#: inc/entityconfig.class.php:159 +msgid "Uniform height" +msgstr "統一した高さ" + +#: inc/entityconfig.class.php:164 +msgid "Search for assistance" +msgstr "ユーザーサポートを検索" + +#: inc/entityconfig.class.php:165 +msgid "User's assistance requests" +msgstr "ユーザーのサポート要求" + +#: inc/entityconfig.class.php:261 +msgid "Helpdesk" +msgstr "ヘルプデスク" + +#: inc/entityconfig.class.php:269 inc/entityconfig.class.php:449 entrée +#: standard:44 +msgid "Helpdesk mode" +msgstr "ヘルプデスク モード" + +#: inc/entityconfig.class.php:280 inc/entityconfig.class.php:519 +msgid "Default Form list mode" +msgstr "標準フォーム一覧モード" + +#: inc/entityconfig.class.php:298 inc/entityconfig.class.php:459 +msgid "Sort order" +msgstr "並び順" + +#: inc/entityconfig.class.php:314 inc/entityconfig.class.php:469 +msgid "Knowledge base" +msgstr "ナレッジベース" + +#: inc/entityconfig.class.php:329 +msgid "Search" +msgstr "検索" + +#: inc/entityconfig.class.php:345 inc/entityconfig.class.php:529 +msgid "Counters dashboard" +msgstr "ダッシュボードのカウンター" + +#: inc/entityconfig.class.php:361 +msgid "Header message" +msgstr "ヘッダー メッセージ" + +#: inc/entityconfig.class.php:377 inc/entityconfig.class.php:539 +msgid "Search issue" +msgstr "問題の検索" + +#: inc/entityconfig.class.php:393 inc/entityconfig.class.php:509 +msgid "Service catalog home page" +msgstr "サービスカタログ ホームページ" + +#: inc/entityconfig.class.php:409 inc/entityconfig.class.php:549 +msgid "Tile design" +msgstr "タイル デザイン" + +#: inc/entityconfig.class.php:421 inc/entityconfig.class.php:499 +#: inc/form.class.php:239 entrée standard:84 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "ヘッダー" + +#: inc/entityconfig.class.php:479 +msgid "Display search field" +msgstr "検索フィールドを表示" + +#: inc/entityconfig.class.php:489 +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:432 +msgid "Public access" +msgstr "オープン アクセス" + +#: inc/form.class.php:67 inc/form.class.php:436 +msgid "Private access" +msgstr "自分のみアクセス" + +#: inc/form.class.php:68 inc/form.class.php:440 +msgid "Restricted access" +msgstr "制限アクセス" + +#: inc/form.class.php:122 +msgid "Answers waiting for validation" +msgstr "検証待ちの回答" + +#: inc/form.class.php:124 inc/form.class.php:1695 inc/form.class.php:1721 +msgid "Import forms" +msgstr "フォームのインポート" + +#: inc/form.class.php:140 +msgid "Characteristics" +msgstr "特徴" + +#: inc/form.class.php:183 +msgid "Recursive" +msgstr "再帰的" + +#: inc/form.class.php:204 +msgid "Homepage" +msgstr "ホームページ" + +#: inc/form.class.php:217 +msgid "Access" +msgstr "アクセス" + +#: inc/form.class.php:248 inc/form.class.php:330 inc/form.class.php:397 entrée +#: standard:54 +msgid "Active" +msgstr "稼働" + +#: inc/form.class.php:261 entrée standard:65 +msgid "Icon" +msgstr "アイコン" + +#: inc/form.class.php:269 entrée standard:67 +msgid "Icon color" +msgstr "アイコンの色" + +#: inc/form.class.php:277 entrée standard:80 +msgid "Background color" +msgstr "背景色" + +#: inc/form.class.php:300 inc/form.class.php:341 inc/form.class.php:416 +msgid "Default form" +msgstr "標準フォーム" + +#: inc/form.class.php:329 inc/form.class.php:394 +msgid "Inactive" +msgstr "停止" + +#: inc/form.class.php:340 inc/form.class.php:413 +msgid "Not default form" +msgstr "非標準フォーム" + +#: inc/form.class.php:364 inc/form.class.php:448 entrée standard:75 +msgid "All languages" +msgstr "すべての言語" + +#: inc/form.class.php:502 inc/form.class.php:572 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "対象" + +#: inc/form.class.php:504 +msgid "Actions" +msgstr "操作" + +#: inc/form.class.php:527 inc/form.class.php:1433 +msgid "Duplicate" +msgstr "複製" + +#: inc/form.class.php:554 inc/form.class.php:2223 +msgid "Add a target" +msgstr "対象を追加" + +#: inc/form.class.php:575 +msgid "Preview" +msgstr "プレビュー" + +#: inc/form.class.php:576 +msgid "Form answer properties" +msgstr "フォーム回答プロパティー" + +#: inc/form.class.php:900 +msgid "What are you looking for?" +msgstr "何をお探しですか?" + +#: inc/form.class.php:909 +#, php-format +msgid "My %1$d last forms (requester)" +msgstr "最近使った %1$d 件のフォーム(要求者)" + +#: inc/form.class.php:936 +msgid "No form posted yet" +msgstr "まだフォームを投稿していません" + +#: inc/form.class.php:964 +msgid "All my forms (requester)" +msgstr "自分のフォームのすべて(要求者)" + +#: inc/form.class.php:977 +#, php-format +msgid "My %1$d last forms (validator)" +msgstr "最近使った %1$d 件のフォーム(検証者)" + +#: inc/form.class.php:1007 +msgid "No form waiting for validation" +msgstr "検証待ちのフォームはありません" + +#: inc/form.class.php:1035 +msgid "All my forms (validator)" +msgstr "自分のフォームのすべて(検証者)" + +#: inc/form.class.php:1095 inc/form.class.php:1229 +#: inc/abstracttarget.class.php:162 inc/abstractitiltarget.class.php:1573 +msgid "The name cannot be empty!" +msgstr "名前を入力してください!" + +#: inc/form.class.php:1240 +msgid "Cannot use empty name for form answers. Keeping the previous value." +msgstr "フォームの回答では名前の入力が必要です。以前の値を使います。" + +#: inc/form.class.php:1342 +#, php-format +msgid "The question %s is not compatible with public forms" +msgstr "%s 質問は、オープン フォームとは互換性がありません" + +#: inc/form.class.php:1422 +msgid "Errored duplicate" +msgstr "複製でエラー" + +#: inc/form.class.php:1480 inc/form.class.php:1508 +msgctxt "button" +msgid "Post" +msgstr "投稿" + +#: inc/form.class.php:1527 +#, php-format +msgid "Form duplicated: %s" +msgstr "フォームを複製しました : %s" + +#: inc/form.class.php:1538 +#, php-format +msgid "Form Transfered: %s" +msgstr "転送済みフォーム : %s" + +#: inc/form.class.php:1557 +msgid "Back" +msgstr "戻る" + +#: inc/form.class.php:1568 +#, php-format +msgid "Form updated: %s" +msgstr "フォームを更新しました : %s" + +#: inc/form.class.php:1668 +msgid "Upload of JSON files not allowed." +msgstr "JSON ファイルのアップロードを許可されていません" + +#: inc/form.class.php:1671 +msgid "You may allow JSON files right now." +msgstr "すぐに JSON ファイルを許可してもらえるでしょう。" + +#: inc/form.class.php:1672 +msgctxt "button" +msgid "Create" +msgstr "作成" + +#: inc/form.class.php:1675 inc/form.class.php:1686 +msgid "Please contact your GLPI administrator." +msgstr "GLPI 管理者に連絡してください。" + +#: inc/form.class.php:1676 inc/form.class.php:1687 +msgctxt "button" +msgid "Back" +msgstr "戻る" + +#: inc/form.class.php:1679 +msgid "Upload of JSON files not enabled." +msgstr "JSON ファイルのアップロードは無効です。" + +#: inc/form.class.php:1682 inc/form.class.php:1685 +msgid "You may enable JSON files right now." +msgstr "すぐに JSON ファイルを有効にしてもらえるでしょう。" + +#: inc/form.class.php:1683 +msgctxt "button" +msgid "Enable" +msgstr "有効" + +#: inc/form.class.php:1730 +msgctxt "button" +msgid "Send" +msgstr "送信" + +#: inc/form.class.php:1749 +msgid "Forms import impossible, the file is empty" +msgstr "ファイルが空なので、フォームのインポートができません。" + +#: inc/form.class.php:1753 inc/form.class.php:1757 +msgid "Forms import impossible, the file seems corrupt" +msgstr "ファイルが壊れているようなので、フォームのインポートができません。" + +#: inc/form.class.php:1763 +msgid "Forms import impossible, the file was generated with another version" +msgstr "違うバージョンで作成されたファイルなので、フォームのインポートができません" + +#: inc/form.class.php:1770 +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:1796 +#, php-format +msgid "Failed to import %s" +msgstr "%s のインポートに失敗" + +#: inc/form.class.php:1801 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "%s からフォームをインポートしました" + +#: inc/form.class.php:1864 +#, php-format +msgid "The form %1$s already exists and is in an unmodifiable entity." +msgstr "%1$s フォームはすでに存在し、変更不可能なエンティティー内にあります。" + +#: inc/form.class.php:1872 +#, php-format +msgid "You don't have right to update the entity %1$s." +msgstr "%1$s エンティティーを更新する権限がありません。" + +#: inc/form.class.php:1882 +#, php-format +msgid "The entity %1$s is required for the form %2$s." +msgstr "%2$s フォームは %1$s エンティティーを必要としてます。" + +#: inc/form.class.php:1969 +msgid "Failed to create JSON document type" +msgstr "JSON ファイル形式の作成に失敗" + +#: inc/form.class.php:1976 +msgid "JSON document type not found" +msgstr "JSON 書式が見つかりません" + +#: inc/form.class.php:1983 +msgid "Failed to update JSON document type" +msgstr "JSON 書式の更新に失敗" + +#: inc/form.class.php:2003 +msgid "Forms without category" +msgstr "分類のないフォーム" + +#: inc/form.class.php:2024 +msgid "No form available" +msgstr "裕応なフォームがありません" + +#: inc/form.class.php:2254 inc/targetticket.class.php:393 +#: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 +msgid "Add" +msgstr "追加" + +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 +msgid "Unsupported target type." +msgstr "未対応の対象型です。" + +#: inc/form.class.php:2351 +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/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:318 +msgid "The title is required" +msgstr "タイトルを入力してください" + +#: inc/section.class.php:570 inc/question.class.php:203 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:70 inc/abstractitiltarget.class.php:1111 entrée +#: standard:41 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "質問" + +#: inc/question.class.php:326 +msgid "The field type is required" +msgstr "フィールドの型が必要です" + +#: inc/question.class.php:333 +msgid "The section is required" +msgstr "セクションが必要です" + +#: inc/question.class.php:345 +#, php-format +msgid "Field type %1$s is not available for question %2$s." +msgstr "質問 %2$s には、%1$s のフィールド型は使用できません。" + +#: inc/question.class.php:358 +msgid "This type of question is not compatible with public forms." +msgstr "この型の質問は、オープン フォームと互換性がありません。" + +#: inc/question.class.php:367 +msgid "This type of question requires parameters" +msgstr "この質問の型にはパラメーターが必要です" + +#: inc/question.class.php:373 +msgid "A parameter is missing for this question type" +msgstr "この質問の型のパラメーターが見つかりません" + +#: inc/question.class.php:1202 +msgid "Service levels" +msgstr "サービスレベル" + +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 +msgid "SLA" +msgstr "SLA" + +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 +msgid "OLA" +msgstr "OLA" + +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 +msgid "Assets" +msgstr "情報資産" + +#: inc/question.class.php:1237 hook.php:712 hook.php:729 +msgid "Assistance" +msgstr "ユーザーサポート" + +#: inc/question.class.php:1243 +msgid "Management" +msgstr "管理" + +#: inc/question.class.php:1254 +msgid "Tools" +msgstr "ツール" + +#: inc/question.class.php:1255 +msgid "Notes" +msgstr "メモ" + +#: inc/question.class.php:1256 +msgid "RSS feed" +msgstr "RSS フィード" + +#: inc/question.class.php:1258 +msgid "Administration" +msgstr "管理" + +#: inc/question.class.php:1266 inc/question.class.php:1269 +msgid "Plugin" +msgid_plural "Plugins" +msgstr[0] "プラグイン" + +#: inc/abstractquestionparameter.class.php:92 +msgid "Parameter" +msgstr "パラメーター" + +#: inc/abstractquestionparameter.class.php:99 +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:505 +msgid "Destination entity" +msgstr "宛先エンティティー" + +#: inc/abstracttarget.class.php:521 +msgid "User type question" +msgstr "ユーザー型の質問" + +#: inc/abstracttarget.class.php:522 +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/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:198 inc/abstractitiltarget.class.php:206 +#: inc/abstractitiltarget.class.php:214 inc/abstractitiltarget.class.php:222 +#: inc/abstractitiltarget.class.php:231 +msgid "Equals to the answer to the question" +msgstr "質問の回答と等しい" + +#: inc/targetticket.class.php:102 inc/abstractitiltarget.class.php:223 +#: inc/abstractitiltarget.class.php:232 +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:302 +msgid "Add validation message as first ticket followup" +msgstr "最初の回答として検証メッセージを追加" + +#: inc/targetticket.class.php:336 +msgid "Add a field" +msgstr "フィールドを追加" + +#: inc/targetticket.class.php:364 +msgid "Managed fields" +msgstr "管理フィールド" + +#: inc/targetticket.class.php:371 +msgid "No managed field" +msgstr "管理フィールドなし" + +#: inc/targetticket.class.php:391 +msgid "Link to an other ticket" +msgstr "別のチケットにリンク" + +#: inc/targetticket.class.php:400 +msgid "An other destination of this form" +msgstr "このフォームの別の宛先" + +#: inc/targetticket.class.php:401 +msgid "An existing ticket" +msgstr "既存のチケット" + +#: inc/targetticket.class.php:402 +msgid "A ticket from an answer to a question" +msgstr "質問に対する回答からのチケット" + +#: inc/targetticket.class.php:483 +msgctxt "button" +msgid "Delete permanently" +msgstr "完全に削除" + +#: inc/targetticket.class.php:724 +msgid "Invalid link type" +msgstr "無効なリンク型" + +#: inc/targetticket.class.php:744 +msgid "Invalid linked item type" +msgstr "リンク先のアイテム型が無効" + +#: inc/targetticket.class.php:757 +msgid "Linked item does not exists" +msgstr "リンク先のアイテムが存在しません" + +#: inc/targetticket.class.php:770 +msgid "Failed to link the item" +msgstr "アイテムへのリンクに失敗" + +#: inc/targetticket.class.php:938 install/install.php:432 +msgid "Your form has been accepted by the validator" +msgstr "あなたのフォームは検証者に承認されました" + +#: inc/targetticket.class.php:1094 +msgid "Request source" +msgstr "要求元" + +#: inc/targetticket.class.php:1119 +msgid "Type " +msgstr "型" + +#: inc/targetticket.class.php:1147 +msgid "Associated elements" +msgstr "関連する要素" + +#: inc/targetticket.class.php:1158 +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:221 +msgid "Form not found." +msgstr "フォームが見つかません。" + +#: inc/translation.class.php:236 +msgid "Failed to add the translation." +msgstr "翻訳の追加に失敗しました。" + +#: inc/abstractitiltarget.class.php:179 +msgid "Tags from questions" +msgstr "質問からのタグ" + +#: inc/abstractitiltarget.class.php:180 +msgid "Specific tags" +msgstr "特定のタグ" + +#: inc/abstractitiltarget.class.php:181 +msgid "Tags from questions and specific tags" +msgstr "質問からのタグと特定のタグ" + +#: inc/abstractitiltarget.class.php:182 +msgid "Tags from questions or specific tags" +msgstr "質問からのタグまたは特定のタグ" + +#: inc/abstractitiltarget.class.php:188 +msgid "equals to the answer to the question" +msgstr "質問の回答と等しい" + +#: inc/abstractitiltarget.class.php:189 +msgid "calculated from the ticket creation date" +msgstr "チケットの作成日から計算" + +#: inc/abstractitiltarget.class.php:190 +msgid "calculated from the answer to the question" +msgstr "質問の回答から計算" + +#: inc/abstractitiltarget.class.php:196 +msgid "SLA from template or none" +msgstr "テンプレートの SLA または、なし" + +#: inc/abstractitiltarget.class.php:197 +msgid "Specific SLA" +msgstr "特定の SLA" + +#: inc/abstractitiltarget.class.php:204 +msgid "OLA from template or none" +msgstr "テンプレートの OLA または、なし" + +#: inc/abstractitiltarget.class.php:205 +msgid "Specific OLA" +msgstr "特定の OLA" + +#: inc/abstractitiltarget.class.php:212 +msgid "Urgency from template or Medium" +msgstr "テンプレートの緊急度または中" + +#: inc/abstractitiltarget.class.php:213 +msgid "Specific urgency" +msgstr "特定の緊急度" + +#: inc/abstractitiltarget.class.php:220 +msgid "Category from template or none" +msgstr "テンプレートのカテゴリーまたは、なし" + +#: inc/abstractitiltarget.class.php:221 +msgid "Specific category" +msgstr "特定のカテゴリー" + +#: inc/abstractitiltarget.class.php:229 +msgid "Location from template or none" +msgstr "テンプレートの場所または、なし" + +#: inc/abstractitiltarget.class.php:230 +msgid "Specific location" +msgstr "特定の場所" + +#: inc/abstractitiltarget.class.php:238 +msgid "No validation" +msgstr "検証なし" + +#: inc/abstractitiltarget.class.php:239 +msgid "Specific user or group" +msgstr "特定のユーザーまたはグループ" + +#: inc/abstractitiltarget.class.php:240 +msgid "User from question answer" +msgstr "質問の回答からのユーザー" + +#: inc/abstractitiltarget.class.php:241 +msgid "Group from question answer" +msgstr "質問の回答からのグループ" + +#: inc/abstractitiltarget.class.php:769 entrée standard:108 +msgid "Time to resolve" +msgstr "解決までの時間" + +#: inc/abstractitiltarget.class.php:822 +msgid "Minute" +msgid_plural "Minutes" +msgstr[0] "分" + +#: inc/abstractitiltarget.class.php:823 +msgid "Hour" +msgid_plural "Hours" +msgstr[0] "時間" + +#: inc/abstractitiltarget.class.php:824 +msgid "Day" +msgid_plural "Days" +msgstr[0] "日" + +#: inc/abstractitiltarget.class.php:825 +msgid "Month" +msgid_plural "Months" +msgstr[0] "月" + +#: inc/abstractitiltarget.class.php:857 +msgid "SLA (TTO/TTR)" +msgstr "SLA (TTO・TTR)" + +#: inc/abstractitiltarget.class.php:858 inc/abstractitiltarget.class.php:931 +msgid "Question (TTO/TTR)" +msgstr "質問(TTO・TTR)" + +#: inc/abstractitiltarget.class.php:930 +msgid "OLA (TTO/TTR)" +msgstr "OLA (TTO・TTR)" + +#: inc/abstractitiltarget.class.php:1034 +msgid "Urgency " +msgstr "緊急度" + +#: inc/abstractitiltarget.class.php:1064 +msgid "Ticket tags" +msgstr "チケットのタグ" + +#: inc/abstractitiltarget.class.php:1112 +msgid "Tags" +msgstr "タグ" + +#: inc/abstractitiltarget.class.php:1231 +msgid "Location" +msgstr "場所" + +#: inc/abstractitiltarget.class.php:1243 +msgid "Location " +msgstr "場所" + +#: inc/abstractitiltarget.class.php:1583 +msgid "The description cannot be empty!" +msgstr "説明を空にはできません!" + +#: inc/abstractitiltarget.class.php:1760 +msgid "Watcher" +msgid_plural "Watchers" +msgstr[0] "助言者" + +#: inc/abstractitiltarget.class.php:1779 +msgid "Cancel" +msgstr "中止" + +#: inc/abstractitiltarget.class.php:2067 inc/abstractitiltarget.class.php:2495 +#: inc/abstractitiltarget.class.php:2499 +msgid "Email followup" +msgstr "メール フォロー" + +#: inc/abstractitiltarget.class.php:2098 inc/abstractitiltarget.class.php:2483 +msgid "User" +msgstr "ユーザー" + +#: inc/abstractitiltarget.class.php:2109 inc/abstractitiltarget.class.php:2487 +msgid "Group" +msgstr "グループ" + +#: inc/abstractitiltarget.class.php:2120 +msgid "Group from the object" +msgstr "オブジェクトのグループか" + +#: inc/abstractitiltarget.class.php:2126 +msgid "Tech group from the object" +msgstr "オブジェクトの技術者グループ" + +#: inc/abstractitiltarget.class.php:2138 inc/abstractitiltarget.class.php:2491 +msgid "Supplier" +msgstr "サプライヤ" + +#: inc/abstractitiltarget.class.php:2495 +msgid "Yes" +msgstr "はい" + +#: install/install.php:135 +#, php-format +msgid "Upgrade tables to innoDB; run %s" +msgstr "innoDB のテーブルをアップグレードするには、%s を実行" + +#: install/install.php:172 +#, 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:181 +#, php-format +msgid "To ignore the inconsistencies and upgrade anyway run %s" +msgstr "矛盾を無視してアップグレードする場合は、%s を実行" + +#: install/install.php:198 +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:250 +#, 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:261 +msgid "The tables of the plugin passed the schema integrity check." +msgstr "プラグインのテーブルは、スキーマ整合性チェックを通過しました。" + +#: install/install.php:413 +msgid "A form has been created" +msgstr "フォームを作成しました" + +#: install/install.php:414 +msgid "Your request has been saved" +msgstr "あなたからの要求を保存しました" + +#: install/install.php:415 +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:420 +msgid "A form from GLPI need to be validate" +msgstr "GLPI のフォームで検証が必要です" + +#: install/install.php:421 +msgid "" +"Hi,\\nA form from GLPI need to be validate 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:426 +msgid "Your form has been refused by the validator" +msgstr "あなたのフォームは検証者から拒否されました" + +#: install/install.php:427 +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:433 +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:438 +msgid "Your form has been deleted by an administrator" +msgstr "あなたのフォームは管理者が削除しました。" + +#: install/install.php:439 +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:665 +msgid "Formcreator - Sync service catalog issues" +msgstr "フォーム作成 - サービス カタログの問題を同期" + +#: install/install.php:853 +msgid "Failed to check the sanity of the tables!" +msgstr "テーブルの整合性検査に失敗しました!" + +#: install/install.php:867 +#, php-format +msgid "Table schema differs for table \"%s\"." +msgstr "「%s」テーブルのテーブルスキーマが異なります。" + +#: install/install.php:870 +#, php-format +msgid "Table \"%s\" is missing." +msgstr "「%s」テーブルが見つかりません。" + +#: install/install.php:873 +#, php-format +msgid "Unknown table \"%s\" has been found in database." +msgstr "不明な「%s」テーブルがデータベースに見つかりました。" + +#: hook.php:378 +msgctxt "button" +msgid "Duplicate" +msgstr "複製" + +#: hook.php:379 +msgid "Transfer" +msgstr "転送" + +#: hook.php:380 +msgctxt "button" +msgid "Export" +msgstr "エクスポート" + +#: hook.php:381 +msgctxt "button" +msgid "Access rights" +msgstr "アクセス権" + +#: hook.php:688 +msgid "Cancel my ticket" +msgstr "自分のチケットを中止" + +#: hook.php:706 +msgid "Old" +msgstr "古い" + +#: hook.php:713 +#, php-format +msgid "Number of %s" +msgstr "%s の数" + +#: hook.php:730 +msgid "Issues summary" +msgstr "問題概要" + +#: hook.php:775 +msgid "" +"Formcreator's mini dashboard not usable as default. This Setting has been " +"ignored." +msgstr "フォーム作成のミニダッシュボードは、標準では使用できません。この設定は無視されます。" + +#: js/scripts.js:296 +msgid "No form found. Please choose a form below instead." +msgstr "フォームが見つかりません。代わりに以下のフォームから選択してください。" + +#: js/scripts.js:298 +msgid "No form found." +msgstr "フォームが見つかりません。" + +#: js/scripts.js:302 +msgid "No FAQ item found." +msgstr "FAQ アイテムが見つかりません。" + +#: js/scripts.js:688 +msgid "Are you sure you want to delete this question?" +msgstr "この質問を削除します。よろしいですか?" + +#: js/scripts.js:877 +msgid "Are you sure you want to delete this section?" +msgstr "このセクションを削除します。よろしいですか?" + +#: js/scripts.js:1118 +msgid "Add translations" +msgstr "翻訳を追加" + +#: js/scripts.js:1257 js/scripts.js:1281 +msgid "An error occured while querying forms" +msgstr "フォームのクエリーでエラーが発生" + +#: js/scripts.js:1372 entrée standard:139 +msgid "Send" +msgstr "送信" + +#: js/scripts.js:1381 +msgid "An internal error occurred. Please report it to administrator." +msgstr "内部エラー発生。管理者に報告してください。" + +#: js/scripts.js:1449 +msgid "Are you sure you want to duplicate this target?" +msgstr "この対象を複製します。よろしいですか?" + +#: js/scripts.js:1466 +msgid "Are you sure you want to delete this target?" +msgstr "この対象を削除します。よろしいですか?" + +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 +msgid "Required" +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:68 +msgid "Filter" +msgstr "フィルター" + +#: 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:109 +msgid "Time to own" +msgstr "割当までの内部時間" + +#: entrée standard:146 standard:118 +msgid "Selectable root" +msgstr "選択可能なルート" + +#: 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:127 +msgid "Condition to show the question" +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: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:42 +msgid "Min" +msgstr "最小" + +#: entrée standard:53 +msgid "Max" +msgstr "最大" diff --git a/locales/ko_KR.po b/locales/ko_KR.po index 1cb74e1a9..5eb6d28e7 100644 --- a/locales/ko_KR.po +++ b/locales/ko_KR.po @@ -2,17 +2,17 @@ # 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 # 조성현 (jaymz9634) , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: 조성현 (jaymz9634) , 2023\n" "Language-Team: Korean (Korea) (https://app.transifex.com/teclib/teams/28042/ko_KR/)\n" @@ -69,7 +69,7 @@ msgstr "제한 없음" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "양식" @@ -111,7 +111,7 @@ msgstr "섹션을 갱신할 수 없습니다" #: 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/formanswer.php:46 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 @@ -134,9 +134,8 @@ 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "양식 생성기" @@ -150,8 +149,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "양식 목록" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "양식이 저장되었습니다!" @@ -179,11 +178,11 @@ msgstr "전체 보기" msgid "Please, describe your need here" msgstr "여기에 요구사항을 적어주세요" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "텍스트에어리어" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -191,40 +190,40 @@ msgstr "텍스트에어리어" msgid "A required field is empty:" msgstr "필수 항목이 비었습니다:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "정규식이 잘못되었습니다" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "사용자와 양식" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "드롭다운" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "다음에 대한 잘못된 값" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "itemtype 항목은 필수입니다: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "잘못된 드롭다운 유형: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "개체 제한" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -242,8 +241,7 @@ msgstr "LDAP 디렉토리가 정의되지 않았습니다!" msgid "LDAP directory not found!" msgstr "LDAP 디렉토리를 찾을 수 없습니다!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "지정한 형식이 일치하지 않음: %s" @@ -262,52 +260,53 @@ msgstr "문구가 너무 김 (최대 %d 자): %s" msgid "Text" msgstr "문구" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "정규식" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "범위" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "추가 확인" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "라디오" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "항목 값은 필수입니다:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "필수 항목이 비었습니다: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "이것은 정수가 아닙니다: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 -#, php-format -msgid "The following number must be greater than %d: %s" -msgstr "다음 숫자는 %d보다 커야 합니다 : %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "다음 숫자는 %d보다 작아야 합니다 : %s" +msgid "This is not an integer: %s" +msgstr "이것은 정수가 아닙니다: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "정수" @@ -358,11 +357,15 @@ msgid "Tag" msgid_plural "Tags" msgstr[0] "태그" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "GLPI 객체" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "항목 값은 필수입니다:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -382,11 +385,11 @@ msgid "Email" msgid_plural "Emails" msgstr[0] "이메일" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "선택" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "날짜 & 시간" @@ -423,7 +426,7 @@ msgstr "필수 파일이 누락되었습니다: %s" msgid "File" msgstr "파일" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "다중선택" @@ -457,32 +460,46 @@ msgid "Some URL fields contains invalid links" msgstr "일부 URL 항목에 잘못된 링크가 포함되었습니다" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "부가 항목" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "체크박스" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "범위 최소값" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "범위 최대값" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "요청 유형" @@ -491,11 +508,21 @@ msgstr "요청 유형" msgid "This is not a number: %s" msgstr "이것은 숫자가 아님: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "다음 숫자는 %d보다 커야 합니다 : %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "다음 숫자는 %d보다 작아야 합니다 : %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "부동 소숫점" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "날짜" @@ -542,31 +569,31 @@ msgstr "그 외에 숨김" msgid "Displayed unless" msgstr "그 외에 표시됨" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "%1$s %2$s의 추가 또는 갱신에 실패함" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "빈 객체를 불러올 수 없음: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "조건" @@ -591,13 +618,13 @@ msgstr "티켓과 양식 답변에서 문제사항 데이터를 갱신" msgid "Satisfaction survey expired" msgstr "만족도 설문조사 만료됨" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "이름" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -605,112 +632,112 @@ msgstr "이름" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" msgstr[0] "유형" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "상태" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "개시 일자" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "최근 수정" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "개체" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" msgstr[0] "요청자" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "양식 승인자" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "의견" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "티켓 승인자" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "기술자" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "기술자 그룹" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "양식 승인자 그룹" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "티켓 승인자 그룹" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "전체" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "신규" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "할당됨" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "대기 중" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "확인 예정" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "해결됨" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "마감됨" @@ -731,19 +758,19 @@ msgstr "다음의 하위" msgid "The form as been saved" msgstr "저장된 양식" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "확인이 필요한 양식" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "양식 거부됨" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "양식 승인됨" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "양식 삭제됨" @@ -756,12 +783,6 @@ msgstr "" msgid "Form name" msgstr "양식 이름" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "검수자" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -906,78 +927,83 @@ msgid "Form answer" msgid_plural "Form answers" msgstr[0] "양식 답변" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "이 양식 인쇄" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "확인자에 의해 양식이 승인되었습니다." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "양식이 저장되었습니다." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "저장" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "거부된 경우 필수" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "거부" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "답변 수정" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "수정 취소" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "승인" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "거부 의견은 필수입니다!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "당신은 이 질문들의 확인자가 아닙니다" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "항목이 추가되었음: %1$s (%2$s:%3$s) " -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "양식 데이터" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "대상을 생성할 수 없습니다!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "튜링 테스트 셋 없음" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "튜링 테스트에 실패함" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "확인자를 선택해야 합니다!" @@ -1031,61 +1057,61 @@ msgid "Form language" msgid_plural "Form languages" msgstr[0] "양식 언어" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "번역" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "번역 추가" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "번역 수정" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "새 번역" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "필터 목록" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "검색된 번역 없음" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "선택된 항목들을 삭제하시겠습니까?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "삭제" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "원본 문자열" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "새 언어 추가" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "언어" @@ -1095,6 +1121,11 @@ msgstr "언어" msgid "None" msgstr "없음" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "검수자" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "검증이 필요한가요?" @@ -1131,7 +1162,7 @@ msgid "Properties" msgstr "속성" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1389,7 +1420,7 @@ msgstr "작업" msgid "Duplicate" msgstr "복제" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "대상 추가" @@ -1556,36 +1587,36 @@ msgstr "요소 %1$s 를 수정할 권한이 없습니다." msgid "The entity %1$s is required for the form %2$s." msgstr "개체 %1$s는 양식 %2$s가 필요합니다." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "JSON 문서 유형 생성 실패함" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "JSON 문서 유형을 찾을 수 없음" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "JSON 문서 유형 갱신 실패함" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "분류 없는 양식" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "사용가능한 양식 없음" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "추가" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "지원되지 않는 대상 유형" -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1620,11 +1651,11 @@ msgid_plural "Sections" msgstr[0] "섹션" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "제목은 필수입니다" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "조건 수" @@ -1639,73 +1670,73 @@ msgid "Question" msgid_plural "Questions" msgstr[0] "질문" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "항목 유형은 필수입니다" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "섹션은 필수입니다" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "항목 유형 %1$s은 질문 %2$s에 대해 사용 가능하지 않습니다." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "이 질문의 유형은 공개 양식과 호환되지 않습니다." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "이 질문의 유형은 매개변수가 필요합니다" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "매개변수가 이 질문 유형에 누락되었습니다" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "서비스 수준" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "자산" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "보조" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "운영관리" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "도구" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "알림" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS 피드" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "관리" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "플러그잉ㄴ" @@ -1778,15 +1809,15 @@ msgstr "대상은 기존 양식과 연결되야 합니다." msgid "Name is required." msgstr "이름은 필수입니다." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "대상 개체" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "사용자 유형 지문" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "개체 유형 질문" @@ -1944,23 +1975,23 @@ msgstr "연결된 품목이 존재하지 않습니다" msgid "Failed to link the item" msgstr "품목에 연결 실패함" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "당신의 양식이 확인자에 의해 승인되었습니다." -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "요청 소스" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "유형" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "관련 요소" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "품목" @@ -2166,24 +2197,24 @@ msgstr "공급자" msgid "Yes" msgstr "예" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "테이블을 innoDB로 업그레이드하세요; %s실행" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "불일치를 무시하고 업그레이드하려면 %s을(를) 실행하세요" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2192,26 +2223,26 @@ msgstr "" "2.5.0 이전 버전에서의 업그레이드는 더 이상 지원되지 않습니다. GLPI 9.5.7로 업그레이드하고, Formcreator를 버전 " "2.12.5로 업그레이드 한 다음, GLPI 10 이상 및 Formcreator 2.13 이상으로 다시 업그레이드 하세요." -#: install/install.php:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "플러그인의 테이블이 스키마 무결성 검사를 통과했습니다." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "양식이 생성되었습니다" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "요청이 저장되었습니다" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2220,11 +2251,11 @@ msgstr "" "안녕하세요,\\nGLPI에서의 요청이 ##formcreator.request_id##로 잘 저장되었고 업무 지원 센터 팀에 전달 " "되었습니다.\\n다음 링크에서 당신의 질문을 확인할 수 있습니다:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "GLPI에서의 양식은 확인이 필요합니다" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2233,11 +2264,11 @@ msgstr "" "안녕하세요,\\nGLPI에서의 양식은 확인이 필요하고 당신은 확인자로 선택 되었습니다.\\n이 링크를 클릭하여 접속할 수 " "있습니다:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "확인자에 의해 당신의 양식이 거부되었습니다." -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2248,41 +2279,41 @@ msgstr "" "유감입니다:\\n##formcreator.validation_comment##\\n\\n아직은 이 링크를 클릭하여 수정하여 다시 제출할" " 수 있습니다:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 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:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "당신의 양식이 관리자에 의해 삭제되었습니다" -#: install/install.php:438 +#: install/install.php:439 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:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "양식생성기 - 서비스 목록 문제 동기화" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "테이블의 온전성 확인에 실패했습니다!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "테이블 스키마가 테이블 \"%s\"와 다릅니다." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "테이블 \"%s\" 이 없습니다." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "데이터베이스에서 알 수 없ㄴ느 테이블 \"%s\"이 발견되었습니다." @@ -2306,24 +2337,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "내 티켓 취소" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "오래됨" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "%s의 횟수 " -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "이슈 요약" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2373,7 +2404,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "필수" diff --git a/locales/lv_LV.po b/locales/lv_LV.po index e2e605c6d..b3fe1c57e 100644 --- a/locales/lv_LV.po +++ b/locales/lv_LV.po @@ -2,10 +2,10 @@ # 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 "" @@ -474,7 +474,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/nb_NO.po b/locales/nb_NO.po index a8cb8e417..01d0719b4 100644 --- a/locales/nb_NO.po +++ b/locales/nb_NO.po @@ -2,10 +2,10 @@ # 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 "" @@ -475,7 +475,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:533 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:116 diff --git a/locales/nl_BE.po b/locales/nl_BE.po index 77a72c116..8ed9055f6 100644 --- a/locales/nl_BE.po +++ b/locales/nl_BE.po @@ -2,10 +2,10 @@ # 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 "" @@ -475,7 +475,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:533 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:116 diff --git a/locales/nl_NL.po b/locales/nl_NL.po index 2e0f0fccc..200af493e 100644 --- a/locales/nl_NL.po +++ b/locales/nl_NL.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Chris Gralike, 2022 # Glenn Franssen , 2022 -# +# #, fuzzy msgid "" msgstr "" @@ -469,7 +469,7 @@ msgid "Some URL fields contains invalid links" msgstr "Enkele URL velden bevatten ongeldige waarden" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Aanvullende velden" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/pl_PL.mo b/locales/pl_PL.mo index 98570633aa1a78c2eceace86cb895333ceb65303..ed2da009df52e06ec83f7a065fa2dbaa6c3cf2f5 100644 GIT binary patch delta 3429 zcmXZddrX&A9LMoPih$e{6cpv6fQlj_2HrJwW{6S=DvF{)h!EZo%vSNF3)fYrSd{cd?Cm4efnCuj*Y<~_5=+JbJl~9^F&-DAE=w(HLIZ~5anugZqt2`a zhoR3*WBOn^Cg5xrzl?fKci;p(ib|;CEW43t)FqsRp3c6Uh90;THL(se@HA>ioo3s! z3`A8Z0@a_1+Ico+VlH;a9XJphQFrDthG8q}J7Mxj8lv;4KYb>L4xMQo_QeyZ615=J zGY?P|$ev>tD8Q-2FQLYraGpc0a~*XzI?T045R1A~88{jzVhUEzrT(L6?4e@{UPqNC zHQ$zO4l2_M)XqLZ?V!oU7oB%dmGGNq6AebacF`DtnW#h;VkEA_FYpbIMh%V8^NqQN z-=N~!0%MM0@&fzb-a%cu`>09`SZGT-0(%obiG0aT5h{_zs2!K1-upGEBlb{h&!{jjur6p*K@JTsMqv$REf7^N8Ib;2JAq59DCyT z*bA>>49_=hG;|wditX7>N0o9uYG4)WHQnUmCe%0l0(Qg}^u<3>XL=WvcpECAsKxfb zBpG#g(oq|ljGoS76%G9xeTFLGFQ`j(7xgF9wZxV<3KNM3qY}tLJ)jUZuM&0Jx1i?L zp%QAuPIv@$1Se2O^m7U4uK}0cz#FJPi+iXFv|)dYTw*Wfc+~H?s1Hg3YDX(^IIcy1 zJcLT8_Npi2C<{q&m6D~(~L72;Iq_Dob9YYz4z~+j;P-Go%0&% z5}RfA(>)yZ0b7W}u*&(V>%W9bOmb=*pl|Zoy4)I@kg*Toc~%_rv=W@n2c9ZuTjz}d!~y}U#=B6 z6f05VYEg;Z!hRT1Y41ilD$c`1^iW5$3pKtOKupa&vNFV zCgi)g5V<_24Ey6o7au^Cz8QnD)x{4{2?VXS>!hG6lfIhST6i)Yy1mm-6`6rrpa6rg zykTTi=ai(}C8fm`6)(n3tSX@qH>R?%z41h4aZ!0`VM@{RrQ?$0(o)lgHLQ6mIOTuA C-oC^D delta 3441 zcmXxlc~I6x9LMn`Q51OO5)V8;PC-LO$qO}52XE6N5sO1K1W^)&F-LuL(y1_=bUJlB zs&RC5I)nucVI940{h@4S8vAw)WfD3GaS>< zAD5#C*PtI(O*7sHh3&4x4h-doeb^D}T>CK$q5dUmf{V@@*oFFC)Ht8%)^0e5dIE;y zYV3-ypvLb(jeBpp*O-13YH82{-=ZRK!GRbu!2Z3ffT->XMbACftl#=nd2*+mAi*bJRo^Q2kqR zFotm8I)ZeJ!aNMd^{9Eaq2_rTeeqN5%KE0BLMRPqFa>|cI1GQ>rhW{nJ_{8<1!}>q z?)PJ;qi9A={2i*_W$cb^7=oTBYdabk z7<#gd>5u6ci-oTKBI=nQ#B^*z1r+?G-AE$p63#-e&VCgIEw~RguofS|i>Mui&b4RR z1C^m@RC^X`=Q%h9^D!I`B4=yrQFrDhhGIMFI}w=8i@?Ne@=u$|qd{j{i_zGON>MA4 zJ=1BP%|H%nf)bpHFQEE0JFlSTxr4eJK{@sa2BPj%29Cj*n2c39Vwf%ZZ@yF~1cS*Souu?Mcj!}yw)!X^rtPaE?K zeub)6=Ni+1BlGOLy^p$dzWH{6;i%M3#6CC&`I4J5R3PQ39j`*Y`;Dk0-i!)l7wUO> z-*<&0s2w(7H@tv~^fu~9{0i*zNY2WZO7Q{o#iOo%96L}yhrRF{ z?2WgvAM2ZdMfNr(q2BpCR4R*69XFt!=`L4qM18}rp)a;#NBkRgrsf$NcmOJ(c+`K% zNYwo4s140Vug=0tLH|adpi=lF>Qb2^JFqY6{l;S)jzR^Hhgx76YTSC%-Pns-uoe|i zJ$Ay=s3T}b9nlX(oWDBUbRFAJe-=KAZ3Y4`fqD$;Qcgqto{tKs1hu2JI0Cm|XFQ1t zs0np6w@^p+P_f-u7%HG4#pGXw5i}^(<4_%QP!ladMZ6OIa06=RFQM+no6Z{7-h}FZ z8I{3bQ9Jc3u^*l=Ort&vm8qA#6k;j7i_v%r70^xWf`2;ip(gCK#GZ8wYT`s!Pelbh z26ZPUq5_?QnkO5hZ~0MBE8Y(r(FXQ^E% z3N>yps(&gfLlZCsb5T3q=GqS+8~2(MwqRN?iw>Tpc3`1%9qQe`g*u`-=hx0ZP?tDx znf-K6K;4y69EKa5AG`J&s6hU~0jzJr%j}NE;b?xy$7I}zTCfpyC$6C~bQhHw|7Yz& zL8z3*;vO7`!FU?|@e(SK>!|U)m)q|_G6u1}Nudyh8K@6XA!gzlRH_?L0bN6#Wq7$Y z5(B6wqP`cYI38!9QojX*@PPZh4mJKP>c}skR});JFbQv?o>A%wd!|cKU#>Mc6xXBr zRigs?3*#|jrM(;JsQN;T!_BCpIgIMxf-&e{VKbIoLH>1#QfUapvCgTe_PNeHREmpS zeHn6jOeH4ZPFFvHN_`7@u-(=DDs2EgQS*#OWhT9n(Q24YgKlp&DkHh52})3bt*RLn z;h&s3=eZTD3(6NpO, YEAR. -# +# # Translators: -# Thierry Bugier , 2021 # Jacek Maciol , 2021 # netruner , 2021 # Agnieszka Pacyga , 2022 # Norbert Błaszczyk, 2022 # Daniel Wróblewski , 2022 # Ryszard Jeziorski , 2022 -# +# Thierry Bugier , 2023 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" -"Last-Translator: Ryszard Jeziorski , 2022\n" +"Last-Translator: Thierry Bugier , 2023\n" "Language-Team: Polish (Poland) (https://app.transifex.com/teclib/teams/28042/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +74,7 @@ msgstr "Bez ograniczeń" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formularz" @@ -119,7 +119,7 @@ msgstr "Nie można zaktualizować sekcji" #: 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/formanswer.php:46 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 @@ -142,9 +142,8 @@ msgid "Bad request while deleting an actor." msgstr "Złe żądanie podczas usuwania uczestnika." #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Kreator formularzy" @@ -158,8 +157,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Lista formularzy" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Formularz został zapisany" @@ -190,11 +189,11 @@ msgstr "Zobacz wszystkie" msgid "Please, describe your need here" msgstr "Wpisz frazę do wyszukania w formularzach" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Obszar tekstu" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -202,17 +201,17 @@ msgstr "Obszar tekstu" msgid "A required field is empty:" msgstr "Wymagane pole jest puste:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Wyrażenie regularne jest nieprawidłowe" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Użytkownik i formularz" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Lista rozwijana" @@ -220,25 +219,25 @@ msgstr[1] "Listy rozwijane" msgstr[2] "Listy rozwijane" msgstr[3] "Listy rozwijane" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Nieprawidłowa wartość dla " -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -259,8 +258,7 @@ msgstr "Katalog LDAP nie został zdefiniowany" msgid "LDAP directory not found!" msgstr "Katalog LDAP nie znaleziony" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Podany format nie pasuje: %s" @@ -279,52 +277,53 @@ msgstr "Tekst jest zbyt długi (maksymalnie %d znaków): %s" msgid "Text" msgstr "Tekst" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Wyrażenie regularne" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Zakres" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Dodatkowa weryfikacja" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Pola opcji" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Wymagana wartość w polu:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Wymagane pole jest puste: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "To nie jest liczba całkowita: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 -#, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Liczba musi być większa niż %d:%s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Liczba musi być mniejsza niż %d:%s" +msgid "This is not an integer: %s" +msgstr "To nie jest liczba całkowita: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Wartość całkowita" @@ -381,7 +380,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "" @@ -389,6 +388,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Wymagana wartość w polu:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -414,11 +417,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Lista wyboru" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Data i godzina" @@ -458,7 +461,7 @@ msgstr "Brak wymaganego pliku: %s" msgid "File" msgstr "Plik" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Lista wielokrotnego wyboru" @@ -492,32 +495,46 @@ msgid "Some URL fields contains invalid links" msgstr "Niektóre pola adresu URL zawierają nieprawidłowe łącza" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Dodatkowe pola" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Pola wyboru" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Zakres min." -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Zakres maks." -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Typ zgłoszenia" @@ -526,11 +543,21 @@ msgstr "Typ zgłoszenia" msgid "This is not a number: %s" msgstr "To nie jest liczba: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Liczba musi być większa niż %d:%s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Liczba musi być mniejsza niż %d:%s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Wartość rzeczywista" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Data" @@ -583,31 +610,31 @@ msgstr "Niewidoczny aż" msgid "Displayed unless" msgstr "Widoczny jeżeli" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Nie udało się dodać lub zaktualizować %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Warunki" @@ -635,13 +662,13 @@ msgstr "Zaktualizuj informacje o żądaniach zgłoszeń i formularzy odpowiedzi" msgid "Satisfaction survey expired" msgstr "Badanie satysfakcji wygasło" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nazwa" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -649,7 +676,7 @@ msgstr "Nazwa" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -658,19 +685,19 @@ msgstr[1] "Typy" msgstr[2] "Typy" msgstr[3] "Typy" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Status" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Data rozpoczęcia" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Ostatnia aktualizacja" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "" @@ -678,10 +705,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -690,80 +717,80 @@ msgstr[1] "Zgłaszający" msgstr[2] "Zgłaszający" msgstr[3] "Zgłaszający" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Zatwierdzający formularze" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Komentarz" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Zatwierdzający zgłoszenie" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Technik" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Grupa technika" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grupa zatwierdzających formularze" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s%2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Wszystkie" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nowy" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Przypisany" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Oczekiwanie" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Do zatwierdzenia" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Rozwiązany" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Zamknięte" @@ -787,19 +814,19 @@ msgstr "" msgid "The form as been saved" msgstr "Formularz został zapisany" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Formularz musi zostać zatwierdzony" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Formularz został odrzucony" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Formularz został zaakceptowny" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Formularz został skasowany" @@ -812,15 +839,6 @@ msgstr "" msgid "Form name" msgstr "Nazwa formularza" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -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:281 #: entrée standard:49 @@ -971,78 +989,83 @@ msgstr[1] "Odpowiedzi formularza" msgstr[2] "Odpowiedzi formularza" msgstr[3] "Odpowiedzi formularza" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Wydrukuj formularz" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formularz zaakceptowane przez osobę zatwierdzającą" -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formularz został zapisany." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Zapisz" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Wymagane w przypadku odrzucenia" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Odrzucenie" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Edytuj odpowiedzi" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Anuluj edycję" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Akceptacja" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Wymagane jest skomentowanie odrzucenia " -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Nie jesteś osobą zatwierdzającą te odpowiedzi" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Dane formularza" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Nie można wygenerowć obiektów docelowych!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Musisz wybrać osobę zatwierdzającą" @@ -1102,7 +1125,7 @@ msgstr[1] "Języki formularza" msgstr[2] "Języki formularza" msgstr[3] "Języki formularza" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Tłumaczenie" @@ -1110,56 +1133,56 @@ msgstr[1] "Tłumaczenia" msgstr[2] "Tłumaczenia" msgstr[3] "Tłumaczenia" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Dodaj tłumaczenie" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Zaktualizuj tłumaczenie" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nowe tłumaczenie" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Nie znaleziono tłumaczenia" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Czy chcesz usunąć zaznaczone elementy?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Usuń" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Dodaj nowy język" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Język" @@ -1169,6 +1192,14 @@ msgstr "Język" msgid "None" msgstr "Brak" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Wymaga walidacji?" @@ -1208,7 +1239,7 @@ msgid "Properties" msgstr "Właściwości" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1475,7 +1506,7 @@ msgstr "" msgid "Duplicate" msgstr "Powtórzenie" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Dodaj cel" @@ -1646,36 +1677,36 @@ msgstr "" msgid "The entity %1$s is required for the form %2$s." msgstr "Jednostka %1$s jest wymagana przy formularzu %2$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Nie utworzono dokumentu typu JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Nie znaleziono dokumentu typu JSON " -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Nie powiodło się zaktualizowanie dokumentu typu JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formularze bez kategorii" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Brak dostępnego formularza" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Dodaj" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Niewspierany typ udostępnienia." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "" @@ -1716,11 +1747,11 @@ msgstr[2] "Sekcje" msgstr[3] "Sekcje" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Tytuł jest wymagany" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Liczba warunków" @@ -1738,73 +1769,73 @@ msgstr[1] "Pytania" msgstr[2] "Pytania" msgstr[3] "Pytania" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Typ pola jest wymagany" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Sekcja jest wymagana" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Typ pola %1$s nie jest dostępny dla pytania %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Typ pytania %s niedostępny w wersji publicznej formularza" -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Ten typ pytania wymaga określenia parametrów" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Wymagany parametr dla tego typu pytania" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Poziomy usług" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Zasoby" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Wsparcie" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Zarządzanie" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Narzędzia" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Uwagi" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS feed" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administracja" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Wtyczka" @@ -1882,15 +1913,15 @@ msgstr "Cel musi być powiązany z istniejącym formularzem." msgid "Name is required." msgstr "Nazwa jest wymagana" -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Pytanie o typ użytkownika" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Pytanie o typ jednostki" @@ -2064,23 +2095,23 @@ msgstr "Powiązany element nie istnieje" msgid "Failed to link the item" msgstr "Nie udało się powiązać elementu" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Twój formularz został zaakceptowany" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Typ" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Elementy powiązane" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Element" @@ -2301,50 +2332,50 @@ msgstr "Dostawca" msgid "Yes" msgstr "Tak" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" -#: install/install.php:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Formularz został utworzony" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Twoje zgłoszenie zostało zapisane" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2354,11 +2385,11 @@ msgstr "" "Możesz zobaczyć swoje odpowiedzi pod podanym adresem:\n" "##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Formularz z GLPI musi zostać zatwierdzony" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2368,11 +2399,11 @@ msgstr "" "Aby uzyskać dostęp kliknij na poniższy odnośnik:\n" "##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Twój formularz został odrzucony" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2385,7 +2416,7 @@ msgstr "" "Możesz go zmodyfikować i wysłać klikając na poniższy odnośnik:\n" "##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2393,11 +2424,11 @@ msgstr "" "Informujemy, że twój formularz został zaakceptowany przez osobę zatwierdzającą.\n" "Twój wniosek został przekazany do realizacji." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Twój formularz został usunięty przez administratora" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2405,25 +2436,25 @@ msgstr "" "Witaj,\\nZ przykrością informujemy, że twój zgłoszenie nie może zostać " "zrealizowane i zostało usunięte przez administratora. " -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Kreator formularzy - zsynchronizuj problemy katalogu usług" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "" -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "" @@ -2447,24 +2478,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Anuluj moje zgłoszenie" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Posumowanie problemów" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2514,7 +2545,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Wymagane" diff --git a/locales/pt_BR.mo b/locales/pt_BR.mo index 33dd9b39e79af86c43c29ddd2a7325d0971fb038..c12ccde7b418eb89456ca8884e993c073e56aabf 100644 GIT binary patch delta 13126 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 YtzR, YEAR. -# +# # Translators: # ralporto , 2021 # Andrei Bernardo Simoni , 2021 @@ -14,7 +14,6 @@ # Manoel Ramon, 2022 # Thierry Bugier , 2022 # Paulo Gobbato , 2022 -# Diego Nobre , 2022 # Rafael Santos , 2022 # Arthur Schaefer , 2022 # Jean Vergaças , 2022 @@ -22,15 +21,17 @@ # Eduardo Spinola , 2022 # Pablo Pierre Ferreira , 2023 # Matheus Rafael, 2023 -# +# Eduardo Scott , 2023 +# Diego Nobre , 2023 +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" -"Last-Translator: Matheus Rafael, 2023\n" +"Last-Translator: Diego Nobre , 2023\n" "Language-Team: Portuguese (Brazil) (https://app.transifex.com/teclib/teams/28042/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,7 +86,7 @@ msgstr "Nenhum limite" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulário" @@ -129,7 +130,7 @@ msgstr "Não foi possível atualizar a seção" #: 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/formanswer.php:46 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 @@ -152,9 +153,8 @@ msgid "Bad request while deleting an actor." msgstr "Erro ao excluir 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Form Creator" @@ -168,8 +168,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Lista de formulários" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Formulário salvo com sucesso!" @@ -199,11 +199,11 @@ msgstr "Ver todos" msgid "Please, describe your need here" msgstr "Por favor, descreva o que precisa aqui" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Área de Texto" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -211,42 +211,42 @@ msgstr "Área de Texto" msgid "A required field is empty:" msgstr "Um campo obrigatório está vazio:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "A expressão regular é inválida" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Usuário e formulário" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Suspenso" msgstr[1] "Listas suspensas" msgstr[2] "Listas suspensas" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Valor inválido para " -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "O campo tipo de item é obrigatório\\: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Tipo de lista suspensa inválida: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Restrição de entidade" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -266,8 +266,7 @@ msgstr "Diretório LDAP não definido!" msgid "LDAP directory not found!" msgstr "Diretório LDAP não encontrado!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Formato específico não corresponde: %s" @@ -286,52 +285,53 @@ msgstr "O texto é muito longo (máximo %d caracteres): %s" msgid "Text" msgstr "Texto" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Expressão regular" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Range" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Validação adicional" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Seleção única" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "O valor do campo é obrigatório:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" + +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, 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:85 inc/field/floatfield.class.php:166 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "O número deve ser maior que %d: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "O número deve ser menor que %d: %s" +msgid "This is not an integer: %s" +msgstr "Isto não é um número inteiro: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Inteiro" @@ -386,13 +386,17 @@ msgstr[0] "Etiqueta" msgstr[1] "Etiquetas" msgstr[2] "Etiquetas" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Objeto do GLPI" msgstr[1] "Objetos do GLPI" msgstr[2] "Objetos do GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "O valor do campo é obrigatório:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -416,11 +420,11 @@ msgstr[0] "Email" msgstr[1] "Emails" msgstr[2] "Emails" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Selecionar" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Data & hora" @@ -459,7 +463,7 @@ msgstr "Faltando arquivo obrigatório: %s" msgid "File" msgstr "Arquivo" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Seleção Múltipla" @@ -493,32 +497,46 @@ msgid "Some URL fields contains invalid links" msgstr "Alguns campos da URL contêm links inválidos" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Campos adicionais" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Caixas de Seleção" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 #, php-format -msgid "The following question needs at least %d answers: %s" +msgid "Empty values are not allowed: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 +#, php-format +msgid "The following question needs at least %d answers: %s" +msgstr "A questão a seguir precisa de pelo menos %dresposta: %s" + +#: inc/field/checkboxesfield.class.php:242 #, 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:270 +msgid "The default values are not in the list of available values." msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Intervalo mín" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Intervalo máx" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Tipo de Solicitação" @@ -527,11 +545,21 @@ msgstr "Tipo de Solicitação" msgid "This is not a number: %s" msgstr "Isto não é um número: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "O número deve ser maior que %d: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "O número deve ser menor que %d: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Float" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Data" @@ -582,31 +610,31 @@ msgstr "Escondido a menos que" msgid "Displayed unless" msgstr "Exibido a menos que" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, 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:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Não é possível exportar um objeto vazio: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Condições" @@ -633,13 +661,13 @@ msgstr "Atualizar dados de emissão de chamados e respostas de formulário" msgid "Satisfaction survey expired" msgstr "Pesquisa de satisfação expirada" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Nome" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -647,7 +675,7 @@ msgstr "Nome" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -655,29 +683,29 @@ msgstr[0] "Tipo" msgstr[1] "Tipos" msgstr[2] "Tipos" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Status" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Data de abertura" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Ultima atualização" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entidade" msgstr[1] "Entidades" msgstr[2] "Entidades" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -685,80 +713,80 @@ msgstr[0] "Solicitante" msgstr[1] "Solicitantes" msgstr[2] "Solicitantes" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Aprovador do requisição" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Comentário" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Aprovador do Chamado" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Técnico" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Grupo do técnico" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Grupo aprovador da requisição" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "Grupo aprovador de chamados" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "Solicitante do chamado" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "Observador do chamado" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "Técnico do chamado" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Todos" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Novo" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Atribuído" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Aguardando Aprovação" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Validar" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Solucionado" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Fechado" @@ -781,39 +809,31 @@ msgstr "Como filho de" msgid "The form as been saved" msgstr "Formulário salvo" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Um formulário precisa de validação" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Formulário rejeitado" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Formulário aceito" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Formulário deletado" #: inc/notificationtargetformanswer.class.php:74 msgid "Form ID" -msgstr "" +msgstr "ID do Formulário" #: 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:76 -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:281 #: entrée standard:49 @@ -827,7 +847,7 @@ msgstr "Respostas de formulário completo" #: inc/notificationtargetformanswer.class.php:80 msgid "Validation comment" -msgstr "" +msgstr "Validação do comentário" #: inc/notificationtargetformanswer.class.php:81 #: inc/notificationtargetformanswer.class.php:101 @@ -836,7 +856,7 @@ msgstr "Link de validação" #: inc/notificationtargetformanswer.class.php:82 msgid "Request ID" -msgstr "" +msgstr "ID da requisição" #: inc/notificationtargetformanswer.class.php:94 msgid "Form #" @@ -962,78 +982,85 @@ msgstr[0] "Resposta do formulário" msgstr[1] "Respostas do formulário" msgstr[2] "Respostas do formulário" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Imprimir este formulário" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulário aceito pelo validador." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulário salvo com sucesso." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Salvar" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Necessário se rejeitado" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Rejeitar" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Editar respostas" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Cancelar edição" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Aceitar" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "É necessário o comentário de rejeição !" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" +"Ocorreu um erro interno ao verificar as suas respostas. Por favor, informe " +"ao seu administrador." -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Você não é o validador destas respostas" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "Item adicionado com sucesso: %1$s (%2$s: %3$s)" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Dados do formulário" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Impossível gerar alvos!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Nenhum conjunto de teste encontrado" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Falha no teste de Turing" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Você precisa selecionar um validador!" @@ -1055,7 +1082,7 @@ msgstr "Meus chamados" #: inc/common.class.php:829 msgid "Consult reminders" -msgstr "" +msgstr "Lembretes de consulta" #: inc/common.class.php:849 msgid "Consult feeds" @@ -1091,63 +1118,63 @@ msgstr[0] "Idioma do formulário" msgstr[1] "Idiomas do formulário" msgstr[2] "Idiomas do formulário" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Tradução" msgstr[1] "Traduções" msgstr[2] "Traduções" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." -msgstr "" +msgstr "O nome não pode estar vazio." -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." -msgstr "" +msgstr "O idioma deve estar associado a um formulário." -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." -msgstr "" +msgstr "O idioma especificado não está disponível." -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Adicionar tradução" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Atualizar uma tradução" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nova tradução" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Lista de filtros" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Nenhuma tradução encontrada" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Você gostaria de deletar os itens selecionados?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Deletar" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "String original" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Adicionar uma nova linguagem" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Linguagem" @@ -1157,6 +1184,13 @@ msgstr "Linguagem" msgid "None" msgstr "Nenhum" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Validador" +msgstr[1] "Validadores" +msgstr[2] "Validadores" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Precisa de validação?" @@ -1195,7 +1229,7 @@ msgid "Properties" msgstr "Propriedades" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1461,7 +1495,7 @@ msgstr "Ações" msgid "Duplicate" msgstr "Duplicar" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Adicionar em alvo" @@ -1545,7 +1579,7 @@ msgstr "Voltar" #: inc/form.class.php:1568 #, php-format msgid "Form updated: %s" -msgstr "" +msgstr "Formulário atualizado: %s" #: inc/form.class.php:1668 msgid "Upload of JSON files not allowed." @@ -1632,36 +1666,36 @@ msgstr "Você não tem o direito de atualizar a entidade%1$s." 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:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Falha ao criar o tipo de documento JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Tipo de documento JSON não encontrado" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Falha ao atualizar o tipo de documento JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formulários sem categoria" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Nenhum formulário disponível" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Adicionar" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Tipo de alvo não suportado." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1700,11 +1734,11 @@ msgstr[1] "Seções" msgstr[2] "Seções" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "O título é obrigatório" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Contagem de condições" @@ -1721,73 +1755,73 @@ msgstr[0] "Questão" msgstr[1] "Questões" msgstr[2] "Questões" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "O campo \"tipo\" é obrigatório" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "A seção é obrigatória" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, 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:361 +#: inc/question.class.php:358 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:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Este tipo de questão requer parâmetros" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Um parâmetro está faltando para este tipo de questão" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Níveis de serviço" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Bens" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Assistência" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Gerenciamento" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Ferramentas" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notas" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "Feed RSS" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administração" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Plugin" @@ -1862,25 +1896,25 @@ msgstr "Um alvo deve ser associado a um formulário existente." msgid "Name is required." msgstr "Um nome é necessário." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Entidade de destino" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Pergunta de tipo usuário" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Pergunta de tipo entidade" #: inc/command/cleanticketscommand.class.php:53 msgid "Searching for invalid items..." -msgstr "" +msgstr "Procurando por itens inválidos..." #: inc/command/cleanticketscommand.class.php:61 msgid "Done." -msgstr "" +msgstr "Feito." #: inc/command/cleanticketscommand.class.php:135 msgid "Step 1: double encoded < and > signs." @@ -1890,7 +1924,7 @@ msgstr "" #: inc/command/cleanticketscommand.class.php:196 #: inc/command/cleanticketscommand.class.php:260 msgid "No invalid items found." -msgstr "" +msgstr "Nenhum item inválido encontrado." #: inc/command/cleanticketscommand.class.php:187 msgid "Step 2: literal BR tag." @@ -2039,23 +2073,23 @@ msgstr "Item vinculado não existe" msgid "Failed to link the item" msgstr "Falha ao vincular o item" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Seu formulário foi aceito pelo validador" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Origem da solicitação" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Tipo " -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Elementos associados" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Item " @@ -2065,7 +2099,7 @@ msgstr "Nenhuma string para traduzir" #: inc/translation.class.php:164 msgid "Internal error: translatable string not found." -msgstr "" +msgstr "Erro interno: string traduzível não encontrada." #: inc/translation.class.php:216 msgid "Language not found." @@ -2271,12 +2305,12 @@ msgstr "Fornecedor" msgid "Yes" msgstr "Sim" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Atualizar tabelas para o innoDB; executar %s" -#: install/install.php:171 +#: install/install.php:172 #, php-format msgid "" "The database schema is not consistent with the previous version of " @@ -2285,13 +2319,13 @@ msgstr "" "O esquema do banco de dados não é consistente com a versão anterior do " "Formcreator %s. Para ver os logs execute o comando %s" -#: install/install.php:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" "Para ignorar as inconsistências e atualizar de qualquer maneira, execute %s" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2302,7 +2336,7 @@ msgstr "" "atualize novamente para o GLPI 10 ou posterior e o Formcreator 2.13 ou " "posterior." -#: install/install.php:249 +#: install/install.php:250 #, php-format msgid "" "The database schema is not consistent with the current version of " @@ -2311,20 +2345,20 @@ msgstr "" "O esquema do banco de dados não é consistente com a versão atual do " "Formcreator %s. Para ver os logs habilite o plugin e execute o comando%s" -#: install/install.php:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" "As tabelas do plug-in passaram na verificação de integridade do esquema." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Formulário criado" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Sua requisição foi salva" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2334,11 +2368,11 @@ msgstr "" "##formcreator.request_id## e transmitido para a equipe de helpdesk.\\nVocê " "pode ver suas respostas no seguinte link:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Um formulário vindo do GLPI necessita ser validado" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2348,11 +2382,11 @@ msgstr "" "validador.\\nVocê pode acessá-lo clicando neste " "link:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Seu formulário foi recusado pelo validador" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2364,7 +2398,7 @@ msgstr "" "modificá-lo e re-submetê-lo clicando neste " "link:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2372,11 +2406,11 @@ msgstr "" "Olá,\\nTemos a satisfação de informá-lo que o seu formulário foi aceito pelo" " validador.\\nSua solicitação será considerada em breve." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Seu formulário foi deletado por um administrador" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2384,25 +2418,25 @@ msgstr "" "Olá,\\nNós lamentamos informar que a sua solicitação não pode ser " "considerada e foi deletada por um administrador." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator - Sincronizar problemas do catálogo de serviços" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "Falha ao checar a sanidade das tabelas!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "O esquema da tabela diferente para a tabela \"%s\"." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "Tabela \"%s\" está faltando." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "A tabela desconhecida \"%s\" foi encontrada no banco de dados." @@ -2424,26 +2458,26 @@ msgstr "Exportar" #: hook.php:381 msgctxt "button" msgid "Access rights" -msgstr "" +msgstr "Permissões de acesso" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Cancelar meu chamado" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "antigo" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Número de %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Resumo dos problemas" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2490,13 +2524,14 @@ msgstr "Ocorreu um erro interno. Por favor, informe ao administrador." #: js/scripts.js:1449 msgid "Are you sure you want to duplicate this target?" -msgstr "" +msgstr "Você tem certeza que deseja duplicar este alvo?" #: js/scripts.js:1466 msgid "Are you sure you want to delete this target?" -msgstr "" +msgstr "Você tem certeza que deseja deletar este alvo?" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Obrigatório" diff --git a/locales/pt_PT.po b/locales/pt_PT.po index 6a881b270..3c485c1a9 100644 --- a/locales/pt_PT.po +++ b/locales/pt_PT.po @@ -2,12 +2,12 @@ # 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 , 2021 # Rui Melo , 2022 # Pedro B., 2022 -# +# #, fuzzy msgid "" msgstr "" @@ -476,7 +476,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/ro_RO.po b/locales/ro_RO.po index aaf7208ca..1c3b901de 100644 --- a/locales/ro_RO.po +++ b/locales/ro_RO.po @@ -2,11 +2,11 @@ # 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 , 2021 # Doru DEACONU , 2022 -# +# #, fuzzy msgid "" msgstr "" @@ -485,7 +485,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:533 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:116 diff --git a/locales/ru_RU.po b/locales/ru_RU.po index 625bf42d1..19172ac79 100644 --- a/locales/ru_RU.po +++ b/locales/ru_RU.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: # Kirill Smyshkov , 2021 # Ilya Pavlov , 2022 @@ -10,13 +10,13 @@ # Thierry Bugier , 2022 # Nikolai Petrov , 2022 # Alexey Petukhov , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Alexey Petukhov , 2023\n" "Language-Team: Russian (Russia) (https://app.transifex.com/teclib/teams/28042/ru_RU/)\n" @@ -73,7 +73,7 @@ msgstr "Без ограничений" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Форма" @@ -118,7 +118,7 @@ msgstr "Не удалось обновить раздел" #: 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/formanswer.php:46 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 @@ -141,9 +141,8 @@ 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Создатель форм" @@ -157,8 +156,8 @@ msgstr "%1$s=%2$s" msgid "Form list" msgstr "Список форм" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Форма успешно сохранена!" @@ -189,11 +188,11 @@ msgstr "Показать все" msgid "Please, describe your need here" msgstr "Введите запрос для поиска" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Текстовое поле" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -201,17 +200,17 @@ msgstr "Текстовое поле" msgid "A required field is empty:" msgstr "Обязательное поле пустое:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Недействительное регулярное выражение" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Пользователь и форма" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Выпадающий список" @@ -219,25 +218,25 @@ msgstr[1] "Выпадающие списки" msgstr[2] "Выпадающие списки" msgstr[3] "Выпадающие списки" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Недействительное значение для" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Требуется указать значение поля: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Недействительный тип выпадающего списка: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Ограничение организации" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -257,8 +256,7 @@ msgstr "LDAP каталог не определен!" msgid "LDAP directory not found!" msgstr "LDAP каталог не найден!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Указанный формат не соответствует: %s" @@ -277,52 +275,53 @@ msgstr "Текст слишком длинный (максимум %d симво msgid "Text" msgstr "Текст" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Регулярное выражение" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Диапазон" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Дополнительная проверка" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Переключатели" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Требуется указать значение поля:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Обязательное поле пустое: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "Это не целое число: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 -#, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Число должно быть больше, чем %d: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Число должно быть меньше, чем %d: %s" +msgid "This is not an integer: %s" +msgstr "Это не целое число: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Целое число" @@ -379,7 +378,7 @@ msgstr[1] "Метки" msgstr[2] "Метки" msgstr[3] "Метки" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "Объект GLPI" @@ -387,6 +386,10 @@ msgstr[1] "Объекты GLPI" msgstr[2] "Объекты GLPI" msgstr[3] "Объекты GLPI" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Требуется указать значение поля:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -412,11 +415,11 @@ msgstr[1] "Электронные почты" msgstr[2] "Электронные почты" msgstr[3] "Электронные почты" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Выбор" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Дата и время" @@ -457,7 +460,7 @@ msgstr "Отсутствует требуемый файл: %s" msgid "File" msgstr "Файл" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Множественный выбор" @@ -491,32 +494,46 @@ msgid "Some URL fields contains invalid links" msgstr "Некоторые URL-поля содержат неверные ссылки" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Дополнительные поля" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Галочки" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Диапазон мин." -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Диапазон макс." -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Тип запроса" @@ -525,11 +542,21 @@ msgstr "Тип запроса" msgid "This is not a number: %s" msgstr "Это не число: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Число должно быть больше, чем %d: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Число должно быть меньше, чем %d: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Число с плавающей запятой" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Дата" @@ -582,31 +609,31 @@ msgstr "Скрыт до тех пор, пока" msgid "Displayed unless" msgstr "Отображается до тех пор, пока" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Не удалось добавить или обновить %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Невозможно экспортировать пустой объект: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Условия" @@ -634,13 +661,13 @@ msgstr "Обновление данных о проблемах из заяво msgid "Satisfaction survey expired" msgstr "Срок опроса удовлетворенности истек" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Имя" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -648,7 +675,7 @@ msgstr "Имя" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -657,19 +684,19 @@ msgstr[1] "Типы" msgstr[2] "Типы" msgstr[3] "Типы" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Статус" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Дата открытия" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Последнее обновление" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Сущность" @@ -677,10 +704,10 @@ msgstr[1] "Сущности" msgstr[2] "Сущности" msgstr[3] "Сущности" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -689,80 +716,80 @@ msgstr[1] "Заказчики" msgstr[2] "Заказчики" msgstr[3] "Заказчики" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Согласующий форму" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Комментарий" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Согласующий заявку" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Техник" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Группа техников" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Группа, согласующая форму" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s%2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Все" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Новый" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Назначенный" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Ожидание" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "На согласовании" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Решено" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Закрыто" @@ -786,19 +813,19 @@ msgstr "Родитель" msgid "The form as been saved" msgstr "Форма сохранена" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Форма требует согласования" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Форма отклонена" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Форма принята" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Форма удалена" @@ -811,15 +838,6 @@ msgstr "" msgid "Form name" msgstr "Название формы" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -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:281 #: entrée standard:49 @@ -970,78 +988,83 @@ msgstr[1] "Ответы формы" msgstr[2] "Ответы формы" msgstr[3] "Ответы формы" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Печать этой формы" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Форма принята согласующим." -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Форма успешно сохранена." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Сохранить" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Требуется если отклонено" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Отклонить" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Редактировать ответы" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Отменить редактирование" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Принять" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Требуется комментарий для отклонения!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Вы не согласующий этих ответов" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Данные формы" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Не удалось создать цели!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Нет набора тестов Тьюринга" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Вы провалили тест Тьюринга" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Вы должны выбрать согласующего!" @@ -1101,7 +1124,7 @@ msgstr[1] "Языки формы" msgstr[2] "Языки формы" msgstr[3] "Языки формы" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Перевод" @@ -1109,56 +1132,56 @@ msgstr[1] "Переводы" msgstr[2] "Переводы" msgstr[3] "Переводы" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Добавить перевод" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Обновить перевод" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Новый перевод" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Фильтр для списка" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Перевод не найден" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Вы хотите удалить выбранные элементы?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Удалить" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Исходная строка" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Добавить новый язык" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Язык" @@ -1168,6 +1191,14 @@ msgstr "Язык" msgid "None" msgstr "Ничего" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Согласующий" +msgstr[1] "Согласующие" +msgstr[2] "Согласующие" +msgstr[3] "Согласующие" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Нужна проверка?" @@ -1207,7 +1238,7 @@ msgid "Properties" msgstr "Свойства" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1476,7 +1507,7 @@ msgstr "Действия" msgid "Duplicate" msgstr "Дублировать" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Добавить цель" @@ -1649,36 +1680,36 @@ msgstr "У вас нет прав редактирования организа msgid "The entity %1$s is required for the form %2$s." msgstr "Для формы %2$s требуется организация %1$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Не удалось создать тип документа JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Тип документа JSON не найден" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Не удалось обновить тип документа JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Формы без категории" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Нет доступных форм" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Добавить" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Неподдерживаемый тип цели." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1719,11 +1750,11 @@ msgstr[2] "Разделы" msgstr[3] "Разделы" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Требуется указать заголовок" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Количество условий" @@ -1741,73 +1772,73 @@ msgstr[1] "Вопросы" msgstr[2] "Вопросы" msgstr[3] "Вопросы" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Требуется указать тип" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Требуется указать раздел" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Тип поля %1$s не доступен для вопроса %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Этот тип вопроса несовместим с публичными формами." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Этот тип вопроса требует указания параметров" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Для этого типа вопроса не указаны параметры" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Уровень поддержки" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Активы" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Помощь" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Управление" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Инструменты" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Заметки" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS-лента" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Администрация" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Плагин" @@ -1883,15 +1914,15 @@ msgstr "Цель должна быть связана с существующе msgid "Name is required." msgstr "Имя обязательно." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Объект назначения" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Пользователь из вопроса" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Организация из вопроса" @@ -2065,23 +2096,23 @@ msgstr "Связанный элемент не существует" msgid "Failed to link the item" msgstr "Не удалось связать элемент" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Ваша форма была принята согласующим" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Источник запроса" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Тип " -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Связанные элементы" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Элемент " @@ -2302,50 +2333,50 @@ msgstr "Поставщик" msgid "Yes" msgstr "Да" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" -#: install/install.php:197 +#: install/install.php:198 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:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "" -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Форма создана" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Ваш запрос сохранен" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2355,11 +2386,11 @@ msgstr "" "##formcreator.request_id## и передан в службу поддержки.\\nВы можете " "посмотреть его по ссылке:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Требуется согласовать форму" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2369,11 +2400,11 @@ msgstr "" "согласующего.\\nПерейдите по ссылке для " "согласования:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Ваш запрос отклонен согласующим" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2385,17 +2416,17 @@ msgstr "" "исправления и отправить его заново по " "ссылке:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 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:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Ваш запрос удален администратором" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2403,25 +2434,25 @@ msgstr "" "Здравствуйте,\\nВаш запрос не может быть рассмотрен и был удален " "администратором." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator - Проблемы каталога службы синхронизации" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "" -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "" -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "" @@ -2445,24 +2476,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Отменить мою заявку" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Старый" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Номер из %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Список проблем" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2514,7 +2545,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Обязательный" diff --git a/locales/sk_SK.po b/locales/sk_SK.po index bfde14f3d..eacc40cb0 100644 --- a/locales/sk_SK.po +++ b/locales/sk_SK.po @@ -2,17 +2,17 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Miroslav Hlohovsky, 2022 # Radoslav Koren, 2022 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Radoslav Koren, 2022\n" "Language-Team: Slovak (Slovakia) (https://app.transifex.com/teclib/teams/28042/sk_SK/)\n" @@ -69,7 +69,7 @@ msgstr "Bez obmedzenia" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulár" @@ -114,7 +114,7 @@ msgstr "Sekciu sa nepodarilo aktualizovať" #: 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/formanswer.php:46 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 @@ -137,9 +137,8 @@ msgid "Bad request while deleting an actor." msgstr "Zlá požiadavka pri odstraňovaní účastníka" #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Tvorba formulárov" @@ -153,8 +152,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Zoznam formulárov" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Formulár bol úspešne uložený!" @@ -185,11 +184,11 @@ msgstr "Zobraziť všetko" msgid "Please, describe your need here" msgstr "Prosím, popíšte svoju požiadavku" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Textové pole" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -197,17 +196,17 @@ msgstr "Textové pole" msgid "A required field is empty:" msgstr "Povinné pole je prázdne:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Bežný výraz je neplatný" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Používateľ a formulár" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Rozbaľovacia ponuka" @@ -215,25 +214,25 @@ msgstr[1] "Rozbaľovacie ponuky" msgstr[2] "Rozbaľovacích ponúk" msgstr[3] "Rozbaľovacia ponuka" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Neplatná hodnota pre" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Pole Typ položky je povinné: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Neplatný typ rozbaľovacej ponuky: %s " -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Obmedzenie entity" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -253,8 +252,7 @@ msgstr "LDAP adresár nie je definovaný!" msgid "LDAP directory not found!" msgstr "LDAP adresár nebol nájdený!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Špecifický formát sa nezhoduje: %s" @@ -273,52 +271,53 @@ msgstr "Text je príliš dlhý (maximum %d znakov): %s" msgid "Text" msgstr "Text" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Všeobecný výraz" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Rozsah" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Dodatočné overenie" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Tlačidlá predvoľby" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Hodnota poľa je povinná:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "" + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "" -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "" + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Povinné pole je prázdne: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "Toto nie je číslo: %s" - -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 -#, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Nasledujúce číslo musi byť väčšie ako %d: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "" -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Nasledujúce číslo musí byť menšie ako %d: %s" +msgid "This is not an integer: %s" +msgstr "Toto nie je číslo: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Číslo" @@ -375,7 +374,7 @@ msgstr[1] "Štítky" msgstr[2] "Štítky" msgstr[3] "Štitky" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "GLPI objekt" @@ -383,6 +382,10 @@ msgstr[1] "GLPI objekty" msgstr[2] "GLPI objekty" msgstr[3] "GLPI objekty" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Hodnota poľa je povinná:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -408,11 +411,11 @@ msgstr[1] "Emaily" msgstr[2] "Emailov" msgstr[3] "Emaily" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Vyber" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Dátum a čas" @@ -452,7 +455,7 @@ msgstr "Chýba požadovaný súbor: %s" msgid "File" msgstr "Súbor" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Viacnásobný výber" @@ -488,32 +491,46 @@ msgid "Some URL fields contains invalid links" msgstr "Niektoré polia adries URL obsahujú neplatné odkazy" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Doplnkové polia" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "Zaškrtávacie políčka" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" msgstr "" -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "" + +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Rozsah min" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Rozsah max" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "Typ požiadavky" @@ -522,11 +539,21 @@ msgstr "Typ požiadavky" msgid "This is not a number: %s" msgstr "Toto nie je číslo: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Nasledujúce číslo musi byť väčšie ako %d: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Nasledujúce číslo musí byť menšie ako %d: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Pohyblivý" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Dátum" @@ -579,31 +606,31 @@ msgstr "Skryté, pokiaľ" msgid "Displayed unless" msgstr "Zobrazené pokiaľ" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "Nepodarilo sa pridať alebo aktualizovať %1$s %2$s" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Nie je možné exportovať prázdny objekt: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Podmienky" @@ -631,13 +658,13 @@ msgstr "Aktualizujte issue z tiketov a reakcií formulárov" msgid "Satisfaction survey expired" msgstr "Platnosť prieskumu spokojnosti vypršala" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Meno" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 @@ -645,7 +672,7 @@ msgstr "Meno" msgid "ID" msgstr "ID" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" @@ -654,19 +681,19 @@ msgstr[1] "Typov" msgstr[2] "Typov" msgstr[3] "Typy" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Stav" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Dátum otvorenia" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Posledná aktualizácia" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Entita" @@ -674,10 +701,10 @@ msgstr[1] "Entít" msgstr[2] "Entít" msgstr[3] "Entity" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" @@ -686,80 +713,80 @@ msgstr[1] "Žiadateľov" msgstr[2] "Žiadateľov" msgstr[3] "Žiadatelia" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" msgstr "Schvaľovateľ požiadavky" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Poznámka" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Schvaľovateľ tiketov" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "IT technik" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Skupina IT technikov" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Skupina schvaľovateľov požiadavky" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" msgstr "" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Všetci" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Nový" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Pridelený" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Čakanie" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Na overenie" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Vyriešené" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Uzavretý" @@ -783,19 +810,19 @@ msgstr "As child of" msgid "The form as been saved" msgstr "Formulár bol uložený." -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Formulár je potrebné overiť" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Formulár je odmietnutý" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Formulár je akceptovaný" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Formulár je vymazaný" @@ -808,15 +835,6 @@ msgstr "" msgid "Form name" msgstr "Názov formulára" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Overovateľ" -msgstr[1] "Overovateľov" -msgstr[2] "Overovateľov" -msgstr[3] "Overovatelia" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -967,78 +985,83 @@ msgstr[1] "Formuláre" msgstr[2] "Formuláre" msgstr[3] "Formulár" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Tlačiť tento formulár" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." msgstr "Formulár akceptovaný overovateľom" -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Formulár úspešne uložený." -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Uložiť" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Vyžaduje sa v prípade odmietnutia" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Odmietnuť" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Upraviť odpovede" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Zrušiť editáciu" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Akceptovať" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Vyžaduje sa odmietnutý komentár!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Nie ste overovateľom týchto reakcií" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "Položka úspešne pridaná: %1$s (%2$s: %3$s)" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Údaje formulára" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Nie je možné generovať ciele!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "No turing test set" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "You failed the Turing test" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Musíte vybrať overenie!" @@ -1098,7 +1121,7 @@ msgstr[1] "Jazyky formulárov" msgstr[2] "Jazyky formulárov" msgstr[3] "Jazyky formulára" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Preklad" @@ -1106,56 +1129,56 @@ msgstr[1] "Prekladov" msgstr[2] "Predkladov" msgstr[3] "Preklady" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." msgstr "" -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." msgstr "" -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." msgstr "" -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Pridať preklad" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Aktualizovať preklad" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Nový preklad" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Zoznam filtrov" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Nenašiel sa žiadny preklad" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Chcete vymazať vybrané položky?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Vymazať" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Original string" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Pridať nový jazyk" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Jazyk" @@ -1165,6 +1188,14 @@ msgstr "Jazyk" msgid "None" msgstr "Žiadny" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Overovateľ" +msgstr[1] "Overovateľov" +msgstr[2] "Overovateľov" +msgstr[3] "Overovatelia" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Je potrebné overenie?" @@ -1204,7 +1235,7 @@ msgid "Properties" msgstr "Vlastnosti" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1473,7 +1504,7 @@ msgstr "Akcie" msgid "Duplicate" msgstr "Duplicitné" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Pridaj cieľ" @@ -1644,36 +1675,36 @@ msgstr "Nemáte právo aktualizovať entitu %1$s." msgid "The entity %1$s is required for the form %2$s." msgstr "Pre formulár %2$s sa vyžaduje entita %1$s." -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "Nepodarilo sa vytvoriť typ dokumentu JSON" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "Typ dokumentu JSON sa nenašiel" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "Nepodarilo sa aktualizovať typ dokumentu JSON" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Formuláre bez kategórie" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "____________________________________" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Pridať" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Nepodporovaný typ cieľa." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1714,11 +1745,11 @@ msgstr[2] "Sekcií" msgstr[3] "Sekcie" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Vyžaduje sa názov" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Počet podmienok" @@ -1736,73 +1767,73 @@ msgstr[1] "Otázok" msgstr[2] "Otázok" msgstr[3] "Otázky" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Vyžaduje sa typ poľa" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Sekcia je povinná" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "Typ poľa %1$s nie je k dispozícii pre otázku %2$s." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Tento typ otázok nie je kompatibilný s verejnými formulármi." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Tento typ otázky vyžaduje parametre" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Pre tento typ otázky chýba parameter" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Úrovne služieb" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "SLA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "OLA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Aktíva" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Pomoc" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Manažment" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Nástroje" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Poznámky" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS zdroj" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "Administrácia" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Plugin" @@ -1878,15 +1909,15 @@ msgstr "Cieľ musí byť priradený k existujúcemu formuláru." msgid "Name is required." msgstr "Meno je povinné." -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Cieľová entita" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Typ používateľa" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Typ entity" @@ -2061,23 +2092,23 @@ msgstr "Prepojená položka neexistuje" msgid "Failed to link the item" msgstr "Chyba prepojenia položky" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Váš formulár bol akceptovaný overovateľom" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "Zdroj požiadavky" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Typ" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "Pridružené prvky" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Položka" @@ -2298,24 +2329,24 @@ msgstr "Dodávateľ" msgid "Yes" msgstr "Áno" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Aktualizujte tabuľky na innoDB; beží %s" -#: install/install.php:171 +#: install/install.php:172 #, 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:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "Ak chcete ignorovať nezrovnalosti a upgradovať aj tak, spustite %s" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2325,26 +2356,26 @@ msgstr "" "na GLPI 9.5.7, upgradujte Tvorbu formulárov na verziu 2.12.5 a potom znova " "aktualizujte na GLPI 10 alebo novší a Tvorbu formulárov 2.13 alebo novší." -#: install/install.php:249 +#: install/install.php:250 #, 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:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "Plugin prešiel kontrolou integrity." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Formulár bol vytvorený" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "Vaša požiadavka bola uložená." -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2354,11 +2385,11 @@ msgstr "" "##formcreator.request_id## a postúpená service desku. \\nReakcie na žiadosť " "si môžete pozrieť na nasledujúcom odkaze:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Formulár z GLPI je potrebné overiť" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2368,11 +2399,11 @@ msgstr "" "overovateľ.\\nMôžete sa k nemu dostať kliknutím na tento " "odkaz:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "Váš formulár bol odmietnutý overovateľom" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2384,7 +2415,7 @@ msgstr "" "môžete upraviť a znova odoslať kliknutím na tento odkaz:\\n " "##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2392,11 +2423,11 @@ msgstr "" "Dobrý deň,\\nOznamujeme Vám, že overovateľ Váš formulár prijal.\\nVaša " "žiadosť bude čoskoro posúdená." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Váš formulár bol odstránený administrátorom" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." @@ -2404,25 +2435,25 @@ msgstr "" "Dobrý deň,\\nOznamujeme Vám, že Vašu žiadosť nemôžeme posúdiť a " "administrátor ju vymazal." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Tvorba formulárov - Problémy so synchronizáciou katalógu služieb" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "Nepodarilo sa skontrolovať logickosť tabuliek!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "Schéma tabuľky je odlišná pre tabuľku \"%s\"." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "Tabuľka „%s“ chýba." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." msgstr "V databáze bola nájdená neznáma tabuľka \"%s\"." @@ -2446,24 +2477,24 @@ msgctxt "button" msgid "Access rights" msgstr "" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Zrušiť tiket" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Starý" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "Počet %s" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Súhrn issues" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2515,7 +2546,8 @@ msgstr "" msgid "Are you sure you want to delete this target?" msgstr "" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Povinný" diff --git a/locales/sr_RS.po b/locales/sr_RS.po index b32ecff13..785fc3939 100644 --- a/locales/sr_RS.po +++ b/locales/sr_RS.po @@ -2,10 +2,10 @@ # 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 "" @@ -474,7 +474,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo index 81471a639e08534023a9cd46e0022313e93a008c..e9b1e459fdde3623824e015bc57fd6c3bb7266f6 100644 GIT binary patch delta 14132 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, YEAR. -# +# # Translators: # Ali AY , 2022 # Thierry Bugier , 2022 # Kaya Zeren , 2023 -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 09:32+0200\n" +"POT-Creation-Date: 2023-10-20 09:50+0200\n" "PO-Revision-Date: 2021-08-30 07:22+0000\n" "Last-Translator: Kaya Zeren , 2023\n" "Language-Team: Turkish (Turkey) (https://app.transifex.com/teclib/teams/28042/tr_TR/)\n" @@ -70,7 +70,7 @@ msgstr "Sınır yok" #: ajax/homepage_link.php:36 inc/formlist.class.php:46 #: inc/entityconfig.class.php:84 inc/form.class.php:111 inc/form.class.php:580 -#: inc/form.class.php:2027 entrée standard:47 +#: inc/form.class.php:2032 entrée standard:47 msgid "Form" msgid_plural "Forms" msgstr[0] "Form" @@ -113,7 +113,7 @@ msgstr "Bölüm güncellenemedi" #: 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/formanswer.php:46 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 @@ -136,9 +136,8 @@ msgid "Bad request while deleting an actor." msgstr "Bir ilgili silinirken hatalı bir istek yapıldı." #: 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:44 inc/common.class.php:692 -#: inc/common.class.php:699 +#: front/formanswer.php:49 front/targetproblem.form.php:81 front/form.php:44 +#: inc/common.class.php:692 inc/common.class.php:699 msgid "Form Creator" msgstr "Form Oluşturucu" @@ -152,8 +151,8 @@ msgstr "%1$s = %2$s" msgid "Form list" msgstr "Form listesi" -#: front/formdisplay.php:90 inc/formanswer.class.php:1009 -#: inc/formanswer.class.php:1242 inc/formanswer.class.php:1292 +#: front/formdisplay.php:90 inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1252 inc/formanswer.class.php:1302 msgid "The form has been successfully saved!" msgstr "Form kaydedildi!" @@ -182,11 +181,11 @@ msgstr "Tümünü görüntüle" msgid "Please, describe your need here" msgstr "Lütfen neye gerek duyduğunuzu yazın" -#: inc/field/textareafield.class.php:185 +#: inc/field/textareafield.class.php:176 msgid "Textarea" msgstr "Metin alanı" -#: inc/field/textareafield.class.php:248 inc/field/dropdownfield.class.php:441 +#: inc/field/textareafield.class.php:239 inc/field/dropdownfield.class.php:443 #: inc/field/ldapselectfield.class.php:114 inc/field/textfield.class.php:125 #: inc/field/urgencyfield.class.php:165 inc/field/tagfield.class.php:163 #: inc/field/timefield.class.php:113 inc/field/fieldsfield.class.php:488 @@ -194,41 +193,41 @@ msgstr "Metin alanı" msgid "A required field is empty:" msgstr "Zorunlu bir alan boş bırakılmış:" -#: inc/field/textareafield.class.php:266 inc/field/textfield.class.php:178 -#: inc/field/integerfield.class.php:112 inc/field/floatfield.class.php:193 +#: inc/field/textareafield.class.php:257 inc/field/textfield.class.php:178 +#: inc/field/integerfield.class.php:82 inc/field/floatfield.class.php:197 #: inc/conditionnabletrait.class.php:70 msgid "The regular expression is invalid" msgstr "Kurallı ifade geçersiz" -#: inc/field/dropdownfield.class.php:76 inc/filter/entityfilter.class.php:48 +#: inc/field/dropdownfield.class.php:80 inc/filter/entityfilter.class.php:48 msgid "User and form" msgstr "Kullanıcı ve form" -#: inc/field/dropdownfield.class.php:432 entrée standard:38 +#: inc/field/dropdownfield.class.php:434 entrée standard:38 msgid "Dropdown" msgid_plural "Dropdowns" msgstr[0] "Açılan kutu" msgstr[1] "Açılan kutular" -#: inc/field/dropdownfield.class.php:463 +#: inc/field/dropdownfield.class.php:465 msgid "Invalid value for " msgstr "Şunun değeri geçersiz" -#: inc/field/dropdownfield.class.php:475 +#: inc/field/dropdownfield.class.php:477 #, php-format msgid "The itemtype field is required: %s" msgstr "Öge türü alanı gerekli: %s" -#: inc/field/dropdownfield.class.php:491 +#: inc/field/dropdownfield.class.php:493 #, php-format msgid "Invalid dropdown type: %s" msgstr "Açılan kutu türü geçersiz: %s" -#: inc/field/dropdownfield.class.php:822 entrée standard:162 standard:134 +#: inc/field/dropdownfield.class.php:831 entrée standard:162 standard:134 msgid "Entity restriction" msgstr "Birim kısıtlaması" -#: inc/field/dropdownfield.class.php:831 +#: inc/field/dropdownfield.class.php:840 msgid "" "To respect the GLPI entity system, \"Form\" should be selected. Others " "settings will break the entity restrictions" @@ -248,8 +247,7 @@ msgstr "LDAP dizini belirtilmemiş!" msgid "LDAP directory not found!" msgstr "LDAP dizini bulunamadı!" -#: inc/field/textfield.class.php:146 inc/field/integerfield.class.php:71 -#: inc/field/floatfield.class.php:155 +#: inc/field/textfield.class.php:146 inc/field/floatfield.class.php:156 #, php-format msgid "Specific format does not match: %s" msgstr "Özel biçim eşleşmiyor: %s" @@ -268,52 +266,53 @@ msgstr "Metin çok uzun (en fazla %d karakter olmalı): %s" msgid "Text" msgstr "Metin" -#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:234 +#: inc/field/textfield.class.php:217 inc/field/floatfield.class.php:238 #: inc/questionregex.class.php:62 entrée standard:42 msgid "Regular expression" msgstr "Kurallı ifade" -#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:239 +#: inc/field/textfield.class.php:222 inc/field/floatfield.class.php:243 msgid "Range" msgstr "Aralık" -#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:245 +#: inc/field/textfield.class.php:228 inc/field/floatfield.class.php:249 msgid "Additional validation" msgstr "Ek değerlendirme" -#: inc/field/radiosfield.class.php:107 +#: inc/field/radiosfield.class.php:108 msgid "Radios" msgstr "Radyo düğmeleri" -#: inc/field/radiosfield.class.php:113 inc/field/glpiselectfield.class.php:97 -#: inc/field/fieldsfield.class.php:512 inc/field/checkboxesfield.class.php:244 -msgid "The field value is required:" -msgstr "Alan değeri zorunludur:" +#: inc/field/radiosfield.class.php:116 inc/field/checkboxesfield.class.php:256 +msgid "The field value is required." +msgstr "Alan değerinin yazılması zorunludur." + +#: inc/field/radiosfield.class.php:127 +msgid "Only one default value is allowed." +msgstr "Yalnızca bir varsayılan değer olabilir." -#: inc/field/radiosfield.class.php:191 inc/field/selectfield.class.php:103 -#: inc/field/datetimefield.class.php:118 inc/field/actorfield.class.php:257 +#: inc/field/radiosfield.class.php:138 +msgid "The default value is not in the list of available values." +msgstr "Varsayılan değer kullanılabilecek değerler listesinde yok." + +#: inc/field/radiosfield.class.php:215 inc/field/selectfield.class.php:105 +#: inc/field/datetimefield.class.php:119 inc/field/actorfield.class.php:257 #: inc/field/checkboxesfield.class.php:190 inc/field/floatfield.class.php:124 -#: inc/field/datefield.class.php:115 #, php-format msgid "A required field is empty: %s" msgstr "Zorunlu bir alan boş bırakılmış: %s" -#: inc/field/integerfield.class.php:59 +#: inc/field/radiosfield.class.php:234 inc/field/selectfield.class.php:123 #, php-format -msgid "This is not an integer: %s" -msgstr "Bu bir tamsayı değil: %s" +msgid "This value %1$s is not allowed: %2$s" +msgstr "Bu %1$s değerine izin verilmiyor: %2$s" -#: inc/field/integerfield.class.php:85 inc/field/floatfield.class.php:166 +#: inc/field/integerfield.class.php:60 #, php-format -msgid "The following number must be greater than %d: %s" -msgstr "Şu sayı %d değerinden büyük olmalıdır: %s" - -#: inc/field/integerfield.class.php:91 inc/field/floatfield.class.php:172 -#, php-format -msgid "The following number must be lower than %d: %s" -msgstr "Şu sayı %d değerinden küçük olmalıdır: %s" +msgid "This is not an integer: %s" +msgstr "Bu bir tamsayı değil: %s" -#: inc/field/integerfield.class.php:101 +#: inc/field/integerfield.class.php:71 msgid "Integer" msgstr "Tamsayı" @@ -366,12 +365,16 @@ msgid_plural "Tags" msgstr[0] "Etiket" msgstr[1] "Etiketler" -#: inc/field/glpiselectfield.class.php:82 entrée standard:38 +#: inc/field/glpiselectfield.class.php:83 entrée standard:38 msgid "GLPI object" msgid_plural "GLPI objects" msgstr[0] "GLPI nesnesi" msgstr[1] "GLPI nesneleri" +#: inc/field/glpiselectfield.class.php:100 inc/field/fieldsfield.class.php:512 +msgid "The field value is required:" +msgstr "Alan değeri zorunludur:" + #: inc/field/hostnamefield.class.php:115 msgid "Hostname" msgid_plural "Hostnames" @@ -393,11 +396,11 @@ msgid_plural "Emails" msgstr[0] "E-posta" msgstr[1] "E-postalar" -#: inc/field/selectfield.class.php:96 +#: inc/field/selectfield.class.php:98 msgid "Select" msgstr "Seçin" -#: inc/field/datetimefield.class.php:139 +#: inc/field/datetimefield.class.php:140 msgid "Date & time" msgstr "Tarih ve saat" @@ -435,7 +438,7 @@ msgstr "Gerekli bir dosya eksik: %s" msgid "File" msgstr "Dosya" -#: inc/field/multiselectfield.class.php:86 +#: inc/field/multiselectfield.class.php:89 msgid "Multiselect" msgstr "Çoklu seçim" @@ -469,32 +472,46 @@ msgid "Some URL fields contains invalid links" msgstr "Bazı adres alanlarında geçersiz bağlantılar var" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "Ek alanlar" #: inc/field/checkboxesfield.class.php:132 msgid "Checkboxes" msgstr "İşaret kutuları" -#: inc/field/checkboxesfield.class.php:226 +#: inc/field/checkboxesfield.class.php:208 +#, php-format +msgid "Empty values are not allowed: %s" +msgstr "Boş değerlere izin verilmiyor: %s" + +#: inc/field/checkboxesfield.class.php:216 +#, php-format +msgid "This value %1$s is not alowed: %2$s" +msgstr "Bu %1$s değerine izin verilmiyor: %2$s" + +#: inc/field/checkboxesfield.class.php:236 #, php-format msgid "The following question needs at least %d answers: %s" -msgstr "" +msgstr "Şu sorunun en az %d yanıtı olmalıdır: %s" -#: inc/field/checkboxesfield.class.php:232 +#: inc/field/checkboxesfield.class.php:242 #, php-format msgid "The following question does not accept more than %d answers: %s" -msgstr "" +msgstr "Şu soruya %d yanıttan fazlası verilemez: %s" + +#: inc/field/checkboxesfield.class.php:270 +msgid "The default values are not in the list of available values." +msgstr "Varsayılan değerler kullanılabilecek değerler listesinde yok." -#: inc/field/checkboxesfield.class.php:304 +#: inc/field/checkboxesfield.class.php:325 msgid "Range min" msgstr "Aralık başlangıcı" -#: inc/field/checkboxesfield.class.php:305 +#: inc/field/checkboxesfield.class.php:326 msgid "Range max" msgstr "Aralık bitişi" -#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1089 +#: inc/field/requesttypefield.class.php:86 inc/targetticket.class.php:1107 msgid "Request type" msgstr "İstek türü" @@ -503,11 +520,21 @@ msgstr "İstek türü" msgid "This is not a number: %s" msgstr "Bu bir sayı değil: %s" -#: inc/field/floatfield.class.php:182 +#: inc/field/floatfield.class.php:170 +#, php-format +msgid "The following number must be greater than %d: %s" +msgstr "Şu sayı %d değerinden büyük olmalıdır: %s" + +#: inc/field/floatfield.class.php:176 +#, php-format +msgid "The following number must be lower than %d: %s" +msgstr "Şu sayı %d değerinden küçük olmalıdır: %s" + +#: inc/field/floatfield.class.php:186 msgid "Float" msgstr "Ondalık" -#: inc/field/datefield.class.php:136 +#: inc/field/datefield.class.php:66 msgid "Date" msgstr "Tarih" @@ -556,31 +583,31 @@ msgstr "Şu olmadan gizlensin" msgid "Displayed unless" msgstr "Şu olmadan görüntülensin" -#: inc/condition.class.php:179 inc/target_actor.class.php:233 -#: inc/form_language.class.php:565 inc/form_validator.class.php:379 +#: inc/condition.class.php:173 inc/target_actor.class.php:233 +#: inc/form_language.class.php:568 inc/form_validator.class.php:379 #: inc/targetproblem.class.php:541 inc/questionrange.class.php:196 -#: inc/form.class.php:1920 inc/targetchange.class.php:304 -#: inc/section.class.php:381 inc/restrictedformcriteria.class.php:200 -#: inc/question.class.php:836 inc/questionparameter/range.class.php:202 +#: inc/form.class.php:1925 inc/targetchange.class.php:304 +#: inc/section.class.php:395 inc/restrictedformcriteria.class.php:200 +#: inc/question.class.php:848 inc/questionparameter/range.class.php:202 #: inc/questionregex.class.php:185 inc/questiondependency.class.php:196 -#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1399 +#: inc/item_targetticket.class.php:154 inc/targetticket.class.php:1417 #, php-format msgid "Failed to add or update the %1$s %2$s" msgstr "%1$s%2$s eklenemedi ya da güncellenemedi" -#: inc/condition.class.php:201 inc/target_actor.class.php:254 -#: inc/form_language.class.php:581 inc/form_validator.class.php:403 +#: inc/condition.class.php:195 inc/target_actor.class.php:254 +#: inc/form_language.class.php:584 inc/form_validator.class.php:403 #: inc/targetproblem.class.php:376 inc/questionrange.class.php:131 #: inc/form.class.php:1611 inc/targetchange.class.php:149 -#: inc/section.class.php:406 inc/restrictedformcriteria.class.php:226 -#: inc/question.class.php:885 inc/questionparameter/range.class.php:137 +#: inc/section.class.php:420 inc/restrictedformcriteria.class.php:226 +#: inc/question.class.php:897 inc/questionparameter/range.class.php:137 #: inc/questionregex.class.php:120 inc/questiondependency.class.php:211 -#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1438 +#: inc/item_targetticket.class.php:64 inc/targetticket.class.php:1456 #, php-format msgid "Cannot export an empty object: %s" msgstr "Boş bir nesne dışa aktarılamaz: %s" -#: inc/condition.class.php:269 +#: inc/condition.class.php:263 msgid "Conditions" msgstr "Koşullar" @@ -606,129 +633,129 @@ msgstr "Sorun verileri destek kaydı ve form yanıtlarından güncellensin" msgid "Satisfaction survey expired" msgstr "Memnuniyet anketinin süresi geçmiş" -#: inc/issue.class.php:515 inc/form_language.class.php:229 -#: inc/form.class.php:156 inc/form.class.php:2221 entrée standard:52 +#: inc/issue.class.php:527 inc/form_language.class.php:232 +#: inc/form.class.php:156 inc/form.class.php:2226 entrée standard:52 #: standard:49 standard:57 standard:38 standard:39 standard:46 msgid "Name" msgstr "Ad" -#: inc/issue.class.php:527 inc/formanswer.class.php:241 +#: inc/issue.class.php:539 inc/formanswer.class.php:241 #: inc/formanswer.class.php:314 inc/targetproblem.class.php:624 #: inc/form.class.php:147 inc/targetchange.class.php:335 #: inc/section.class.php:95 inc/question.class.php:156 #: inc/targetticket.class.php:180 entrée standard:45 msgid "ID" -msgstr "Kod" +msgstr "Kimlik" -#: inc/issue.class.php:536 inc/form.class.php:503 inc/form.class.php:2230 +#: inc/issue.class.php:548 inc/form.class.php:503 inc/form.class.php:2235 #: entrée standard:111 standard:65 msgid "Type" msgid_plural "Types" msgstr[0] "Tür" msgstr[1] "Türler" -#: inc/issue.class.php:549 inc/formanswer.class.php:301 +#: inc/issue.class.php:561 inc/formanswer.class.php:301 msgid "Status" msgstr "Durum" -#: inc/issue.class.php:561 +#: inc/issue.class.php:573 msgid "Opening date" msgstr "Açılma tarihi" -#: inc/issue.class.php:570 +#: inc/issue.class.php:582 msgid "Last update" msgstr "Son güncelleme" -#: inc/issue.class.php:579 inc/abstracttarget.class.php:518 +#: inc/issue.class.php:591 inc/abstracttarget.class.php:520 msgid "Entity" msgid_plural "Entities" msgstr[0] "Birim" msgstr[1] "Birimler" -#: inc/issue.class.php:589 inc/notificationtargetformanswer.class.php:76 +#: inc/issue.class.php:601 inc/notificationtargetformanswer.class.php:76 #: inc/notificationtargetformanswer.class.php:96 #: inc/target_actor.class.php:101 inc/formanswer.class.php:260 -#: inc/formanswer.class.php:712 inc/abstractitiltarget.class.php:1753 entrée +#: inc/formanswer.class.php:718 inc/abstractitiltarget.class.php:1753 entrée #: standard:48 msgid "Requester" msgid_plural "Requesters" msgstr[0] "İstekte bulunan" msgstr[1] "İstekte bulunanlar" -#: inc/issue.class.php:607 inc/formanswer.class.php:270 +#: inc/issue.class.php:619 inc/formanswer.class.php:270 msgid "Form approver" -msgstr "Form onaylayıcı" +msgstr "Formu onaylayan" -#: inc/issue.class.php:631 inc/formanswer.class.php:638 -#: inc/formanswer.class.php:645 inc/formanswer.class.php:727 -#: inc/form_language.class.php:243 +#: inc/issue.class.php:643 inc/formanswer.class.php:644 +#: inc/formanswer.class.php:651 inc/formanswer.class.php:733 +#: inc/form_language.class.php:246 msgid "Comment" msgstr "Açıklama" -#: inc/issue.class.php:643 +#: inc/issue.class.php:655 msgid "Ticket approver" msgstr "Destek kaydını onaylayan" -#: inc/issue.class.php:716 +#: inc/issue.class.php:728 msgid "Technician" msgstr "Teknisyen" -#: inc/issue.class.php:747 +#: inc/issue.class.php:759 msgid "Technician group" msgstr "Teknisyen grubu" -#: inc/issue.class.php:783 inc/formanswer.class.php:290 +#: inc/issue.class.php:795 inc/formanswer.class.php:290 msgid "Form approver group" msgstr "Form onaylayıcı grubu" -#: inc/issue.class.php:805 +#: inc/issue.class.php:817 msgid "Ticket approver group" -msgstr "Destek kaydını onaylayan grubu" +msgstr "Destek kaydı onaylayıcı grubu" -#: inc/issue.class.php:845 +#: inc/issue.class.php:857 msgid "Ticket requester" msgstr "Destek kaydı isteğinde bulunan" -#: inc/issue.class.php:892 +#: inc/issue.class.php:904 msgid "Ticket observer" msgstr "Destek kaydını izleyen" -#: inc/issue.class.php:940 +#: inc/issue.class.php:952 msgid "Ticket technician" msgstr "Destek kaydı teknisyeni" -#: inc/issue.class.php:1083 +#: inc/issue.class.php:1099 #, php-format msgid "%1$s %2$s" msgstr "%1$s %2$s" -#: inc/issue.class.php:1341 inc/filter/itilcategoryfilter.class.php:56 -#: hook.php:691 +#: inc/issue.class.php:1357 inc/filter/itilcategoryfilter.class.php:56 +#: hook.php:698 msgid "All" msgstr "Tümü" -#: inc/issue.class.php:1347 hook.php:692 +#: inc/issue.class.php:1363 hook.php:699 msgid "New" msgstr "Ekle" -#: inc/issue.class.php:1353 hook.php:693 +#: inc/issue.class.php:1369 hook.php:700 msgid "Assigned" msgstr "Atanmış" -#: inc/issue.class.php:1359 inc/formanswer.class.php:78 -#: inc/form_validator.class.php:69 hook.php:694 +#: inc/issue.class.php:1375 inc/formanswer.class.php:78 +#: inc/form_validator.class.php:69 hook.php:701 msgid "Waiting" msgstr "Bekliyor" -#: inc/issue.class.php:1365 hook.php:695 +#: inc/issue.class.php:1381 hook.php:702 msgid "To validate" msgstr "Değerlendirilecek" -#: inc/issue.class.php:1371 hook.php:696 +#: inc/issue.class.php:1387 hook.php:703 msgid "Solved" msgstr "Çözümlenmiş" -#: inc/issue.class.php:1377 hook.php:697 +#: inc/issue.class.php:1393 hook.php:704 msgid "Closed" msgstr "Kapalı" @@ -750,38 +777,31 @@ msgstr "Şunun alt ögesi olarak" msgid "The form as been saved" msgstr "Form kaydedildi" -#: inc/notificationtargetformanswer.class.php:44 install/install.php:418 +#: inc/notificationtargetformanswer.class.php:44 install/install.php:419 msgid "A form need to be validate" msgstr "Değerlendirilmesi gereken bir form var" -#: inc/notificationtargetformanswer.class.php:45 install/install.php:424 +#: inc/notificationtargetformanswer.class.php:45 install/install.php:425 msgid "The form is refused" msgstr "Form reddedildi" -#: inc/notificationtargetformanswer.class.php:46 install/install.php:430 +#: inc/notificationtargetformanswer.class.php:46 install/install.php:431 msgid "The form is accepted" msgstr "Form onaylandı" -#: inc/notificationtargetformanswer.class.php:47 install/install.php:436 +#: inc/notificationtargetformanswer.class.php:47 install/install.php:437 msgid "The form is deleted" msgstr "Form silindi" #: inc/notificationtargetformanswer.class.php:74 msgid "Form ID" -msgstr "" +msgstr "Form kimliği" #: inc/notificationtargetformanswer.class.php:75 #: inc/notificationtargetformanswer.class.php:95 msgid "Form name" msgstr "Form adı" -#: inc/notificationtargetformanswer.class.php:77 -#: inc/form_validator.class.php:76 -msgid "Validator" -msgid_plural "Validators" -msgstr[0] "Değerlendiren" -msgstr[1] "Değerlendirenler" - #: inc/notificationtargetformanswer.class.php:78 #: inc/notificationtargetformanswer.class.php:98 inc/formanswer.class.php:281 #: entrée standard:49 @@ -795,7 +815,7 @@ msgstr "Tam form yanıtları" #: inc/notificationtargetformanswer.class.php:80 msgid "Validation comment" -msgstr "" +msgstr "Değerlendirme yorumu" #: inc/notificationtargetformanswer.class.php:81 #: inc/notificationtargetformanswer.class.php:101 @@ -804,7 +824,7 @@ msgstr "Değerlendirme bağlantısı" #: inc/notificationtargetformanswer.class.php:82 msgid "Request ID" -msgstr "" +msgstr "İstek kimliği" #: inc/notificationtargetformanswer.class.php:94 msgid "Form #" @@ -928,78 +948,85 @@ msgid_plural "Form answers" msgstr[0] "Form yanıtı" msgstr[1] "Form yanıtları" -#: inc/formanswer.class.php:623 +#: inc/formanswer.class.php:629 msgid "Print this form" msgstr "Bu formu yazdır" -#: inc/formanswer.class.php:648 +#: inc/formanswer.class.php:654 msgid "Form accepted by validator." -msgstr "Form değerlendirici tarafından onaylandı" +msgstr "Form değerlendiren tarafından onaylandı" -#: inc/formanswer.class.php:650 +#: inc/formanswer.class.php:656 msgid "Form successfully saved." msgstr "Form kaydedildi" -#: inc/formanswer.class.php:720 inc/formaccesstype.class.php:126 +#: inc/formanswer.class.php:726 inc/formaccesstype.class.php:126 msgid "Save" msgstr "Kaydet" -#: inc/formanswer.class.php:732 +#: inc/formanswer.class.php:738 msgid "Required if refused" msgstr "Reddedildi ise zorunlu" -#: inc/formanswer.class.php:738 +#: inc/formanswer.class.php:744 msgid "Refuse" msgstr "Reddet" -#: inc/formanswer.class.php:746 +#: inc/formanswer.class.php:752 msgid "Edit answers" msgstr "Yanıtları düzenle" -#: inc/formanswer.class.php:752 +#: inc/formanswer.class.php:758 msgid "Cancel edition" msgstr "Düzenlemeyi iptal et" -#: inc/formanswer.class.php:759 +#: inc/formanswer.class.php:765 msgid "Accept" msgstr "Onayla" -#: inc/formanswer.class.php:782 +#: inc/formanswer.class.php:788 msgid "Refused comment is required!" msgstr "Red açıklaması zorunludur!" -#: inc/formanswer.class.php:827 inc/formanswer.class.php:844 +#: inc/formanswer.class.php:833 inc/formanswer.class.php:850 msgid "" "An internal error occured when verifying your answers. Please report it to " "your administrator." msgstr "" +"Yanıtlarınız doğrulanırken bir sorun çıktı. Lütfen bu durumu BT yöneticinize" +" bildirin." -#: inc/formanswer.class.php:876 +#: inc/formanswer.class.php:882 msgid "You are not the validator of these answers" msgstr "Bu yanıtların değerlendireni değilsiniz" -#: inc/formanswer.class.php:1015 +#: inc/formanswer.class.php:1021 #, php-format msgid "Item sucessfully added: %1$s (%2$s: %3$s)" msgstr "Öge eklendi: %1$s (%2$s: %3$s)" -#: inc/formanswer.class.php:1098 inc/formanswer.class.php:1100 +#: inc/formanswer.class.php:1104 inc/formanswer.class.php:1106 msgid "Form data" msgstr "Form verileri" -#: inc/formanswer.class.php:1227 inc/formanswer.class.php:1279 +#: inc/formanswer.class.php:1237 inc/formanswer.class.php:1289 msgid "Cannot generate targets!" msgstr "Hedefler oluşturulamadı!" -#: inc/formanswer.class.php:1428 +#: inc/formanswer.class.php:1438 +#, php-format +msgid "Answer is invalid in %1$s" +msgstr "%1$s içindeki yanıt geçersiz" + +#: inc/formanswer.class.php:1466 msgid "No turing test set" msgstr "Herhangi bir Turing sınaması ayarlanmamış" -#: inc/formanswer.class.php:1434 +#: inc/formanswer.class.php:1472 msgid "You failed the Turing test" msgstr "Turing sınamasını geçemediniz" -#: inc/formanswer.class.php:1458 +#: inc/formanswer.class.php:1496 msgid "You must select validator!" msgstr "Bir değerlendiren seçmelisiniz!" @@ -1021,7 +1048,7 @@ msgstr "Destek isteklerim" #: inc/common.class.php:829 msgid "Consult reminders" -msgstr "" +msgstr "Anımsatıcılara bakın" #: inc/common.class.php:849 msgid "Consult feeds" @@ -1055,62 +1082,62 @@ msgid_plural "Form languages" msgstr[0] "Form dili" msgstr[1] "Form dilleri" -#: inc/form_language.class.php:78 inc/form_language.class.php:364 +#: inc/form_language.class.php:81 inc/form_language.class.php:367 msgid "Translation" msgid_plural "Translations" msgstr[0] "Çeviri" msgstr[1] "Çeviriler" -#: inc/form_language.class.php:119 +#: inc/form_language.class.php:122 msgid "The name cannot be empty." -msgstr "" +msgstr "Ad boş olamaz." -#: inc/form_language.class.php:127 +#: inc/form_language.class.php:130 msgid "The language must be associated to a form." -msgstr "" +msgstr "Dil bir form ile ilişkilendirilmiş olmalıdır." -#: inc/form_language.class.php:135 +#: inc/form_language.class.php:138 msgid "The specified language is not available." -msgstr "" +msgstr "Belirtilen dil kullanılamıyor." -#: inc/form_language.class.php:265 +#: inc/form_language.class.php:268 msgid "Add a translation" msgstr "Bir çeviri ekle" -#: inc/form_language.class.php:299 js/scripts.js:1171 +#: inc/form_language.class.php:302 js/scripts.js:1171 msgid "Update a translation" msgstr "Bir çeviriyi güncelle" -#: inc/form_language.class.php:329 inc/form_language.class.php:331 +#: inc/form_language.class.php:332 inc/form_language.class.php:334 msgid "New translation" msgstr "Yeni çeviri" -#: inc/form_language.class.php:334 +#: inc/form_language.class.php:337 msgid "Filter list" msgstr "Listeyi süz" -#: inc/form_language.class.php:339 inc/form_language.class.php:438 +#: inc/form_language.class.php:342 inc/form_language.class.php:441 msgid "No translation found" msgstr "Herhangi bir çeviri bulunamadı" -#: inc/form_language.class.php:344 +#: inc/form_language.class.php:347 msgid "Do you want to delete the selected items?" msgstr "Seçilmiş ögeleri silmek ister misiniz?" -#: inc/form_language.class.php:353 inc/form_language.class.php:401 +#: inc/form_language.class.php:356 inc/form_language.class.php:404 #: inc/form.class.php:537 inc/abstractitiltarget.class.php:1658 msgid "Delete" msgstr "Sil" -#: inc/form_language.class.php:363 +#: inc/form_language.class.php:366 msgid "Original string" msgstr "Özgün dizge" -#: inc/form_language.class.php:424 +#: inc/form_language.class.php:427 msgid "Add a new language" msgstr "Dil ekle" -#: inc/form_language.class.php:457 inc/form_language.class.php:489 +#: inc/form_language.class.php:460 inc/form_language.class.php:492 #: inc/form.class.php:192 entrée standard:72 msgid "Language" msgstr "Dil" @@ -1120,6 +1147,12 @@ msgstr "Dil" msgid "None" msgstr "Yok" +#: inc/form_validator.class.php:76 +msgid "Validator" +msgid_plural "Validators" +msgstr[0] "Değerlendiren" +msgstr[1] "Değerlendirenler" + #: inc/form_validator.class.php:114 msgid "Need validaton?" msgstr "Değerlendirme gerekli" @@ -1157,7 +1190,7 @@ msgid "Properties" msgstr "Özellikler" #: inc/targetproblem.class.php:523 inc/targetchange.class.php:286 -#: inc/targetticket.class.php:1381 +#: inc/targetticket.class.php:1399 #, php-format msgid "" "Failed to add or update the %1$s %2$s: a question is missing and is used in " @@ -1420,7 +1453,7 @@ msgstr "İşlemler" msgid "Duplicate" msgstr "Kopyala" -#: inc/form.class.php:554 inc/form.class.php:2218 +#: inc/form.class.php:554 inc/form.class.php:2223 msgid "Add a target" msgstr "Bir hedef ekle" @@ -1502,7 +1535,7 @@ msgstr "Geri" #: inc/form.class.php:1568 #, php-format msgid "Form updated: %s" -msgstr "" +msgstr "Form güncellendi: %s" #: inc/form.class.php:1668 msgid "Upload of JSON files not allowed." @@ -1589,36 +1622,36 @@ msgstr "%1$s birimini güncelleme yetkiniz yok." msgid "The entity %1$s is required for the form %2$s." msgstr "%2$s formu için %1$s birimi gereklidir" -#: inc/form.class.php:1964 +#: inc/form.class.php:1969 msgid "Failed to create JSON document type" msgstr "JSON belge türü oluşturulamadı" -#: inc/form.class.php:1971 +#: inc/form.class.php:1976 msgid "JSON document type not found" msgstr "JSON belge türü bulunamadı" -#: inc/form.class.php:1978 +#: inc/form.class.php:1983 msgid "Failed to update JSON document type" msgstr "JSON belge türü güncellenemedi" -#: inc/form.class.php:1998 +#: inc/form.class.php:2003 msgid "Forms without category" msgstr "Kategorisi bulunmayan formlar" -#: inc/form.class.php:2019 +#: inc/form.class.php:2024 msgid "No form available" msgstr "Kullanılabilecek bir form yok" -#: inc/form.class.php:2249 inc/targetticket.class.php:393 +#: inc/form.class.php:2254 inc/targetticket.class.php:393 #: inc/abstractitiltarget.class.php:1777 inc/abstractitiltarget.class.php:2073 msgid "Add" msgstr "Ekle" -#: inc/form.class.php:2267 inc/form.class.php:2290 inc/form.class.php:2312 +#: inc/form.class.php:2272 inc/form.class.php:2295 inc/form.class.php:2317 msgid "Unsupported target type." msgstr "Hedef türü desteklenmiyor." -#: inc/form.class.php:2346 +#: inc/form.class.php:2351 msgid "plugin_formcreator_load_check" msgstr "plugin_formcreator_load_check" @@ -1655,11 +1688,11 @@ msgstr[0] "Bölüm" msgstr[1] "Bölümler" #: inc/section.class.php:123 inc/section.class.php:166 -#: inc/question.class.php:320 +#: inc/question.class.php:318 msgid "The title is required" msgstr "Başlık zorunludur" -#: inc/section.class.php:556 inc/question.class.php:203 entrée standard:37 +#: inc/section.class.php:570 inc/question.class.php:203 entrée standard:37 msgid "Count of conditions" msgstr "Koşul sayısı" @@ -1675,73 +1708,73 @@ msgid_plural "Questions" msgstr[0] "Soru" msgstr[1] "Sorular" -#: inc/question.class.php:328 +#: inc/question.class.php:326 msgid "The field type is required" msgstr "Alan türü zorunludur" -#: inc/question.class.php:335 +#: inc/question.class.php:333 msgid "The section is required" msgstr "Bölüm zorunludur" -#: inc/question.class.php:347 +#: inc/question.class.php:345 #, php-format msgid "Field type %1$s is not available for question %2$s." msgstr "%1$s alan türü %2$s sorusu için kullanılamaz." -#: inc/question.class.php:361 +#: inc/question.class.php:358 msgid "This type of question is not compatible with public forms." msgstr "Bu soru türü herkese açık formlar ile uyumlu değil." -#: inc/question.class.php:370 +#: inc/question.class.php:367 msgid "This type of question requires parameters" msgstr "Bu soru türü için parametrelerin belirtilmesi gerekli" -#: inc/question.class.php:376 +#: inc/question.class.php:373 msgid "A parameter is missing for this question type" msgstr "Bu soru türü için bir parametre eksik" -#: inc/question.class.php:1190 +#: inc/question.class.php:1202 msgid "Service levels" msgstr "Hizmet düzeyleri" -#: inc/question.class.php:1191 inc/abstractitiltarget.class.php:834 +#: inc/question.class.php:1203 inc/abstractitiltarget.class.php:834 msgid "SLA" msgstr "HDA" -#: inc/question.class.php:1192 inc/abstractitiltarget.class.php:907 +#: inc/question.class.php:1204 inc/abstractitiltarget.class.php:907 msgid "OLA" msgstr "ODA" -#: inc/question.class.php:1211 inc/question.class.php:1254 -#: inc/question.class.php:1257 +#: inc/question.class.php:1223 inc/question.class.php:1266 +#: inc/question.class.php:1269 msgid "Assets" msgstr "Varlıklar" -#: inc/question.class.php:1225 hook.php:705 hook.php:722 +#: inc/question.class.php:1237 hook.php:712 hook.php:729 msgid "Assistance" msgstr "Destek" -#: inc/question.class.php:1231 +#: inc/question.class.php:1243 msgid "Management" msgstr "Yönetim" -#: inc/question.class.php:1242 +#: inc/question.class.php:1254 msgid "Tools" msgstr "Araçlar" -#: inc/question.class.php:1243 +#: inc/question.class.php:1255 msgid "Notes" msgstr "Notlar" -#: inc/question.class.php:1244 +#: inc/question.class.php:1256 msgid "RSS feed" msgstr "RSS akışı" -#: inc/question.class.php:1246 +#: inc/question.class.php:1258 msgid "Administration" msgstr "İdari" -#: inc/question.class.php:1254 inc/question.class.php:1257 +#: inc/question.class.php:1266 inc/question.class.php:1269 msgid "Plugin" msgid_plural "Plugins" msgstr[0] "Uygulama eki" @@ -1815,43 +1848,43 @@ msgstr "Var olan bir forma bir hedef atanmalıdır." msgid "Name is required." msgstr "Ad zorunludur" -#: inc/abstracttarget.class.php:503 +#: inc/abstracttarget.class.php:505 msgid "Destination entity" msgstr "Hedef birim" -#: inc/abstracttarget.class.php:519 +#: inc/abstracttarget.class.php:521 msgid "User type question" msgstr "Kullanıcı türü sorusu" -#: inc/abstracttarget.class.php:520 +#: inc/abstracttarget.class.php:522 msgid "Entity type question" msgstr "Birim türü sorusu" #: inc/command/cleanticketscommand.class.php:53 msgid "Searching for invalid items..." -msgstr "" +msgstr "Geçersiz ögeler aranıyor..." #: inc/command/cleanticketscommand.class.php:61 msgid "Done." -msgstr "" +msgstr "Tamam." #: inc/command/cleanticketscommand.class.php:135 msgid "Step 1: double encoded < and > signs." -msgstr "" +msgstr "1. adım: Çift kodlanmış < ve > işaretleri." #: inc/command/cleanticketscommand.class.php:146 #: inc/command/cleanticketscommand.class.php:196 #: inc/command/cleanticketscommand.class.php:260 msgid "No invalid items found." -msgstr "" +msgstr "Geçersiz bir öge bulunamadı." #: inc/command/cleanticketscommand.class.php:187 msgid "Step 2: literal BR tag." -msgstr "" +msgstr "2. adım: Var olan BR kod imi." #: inc/command/cleanticketscommand.class.php:251 msgid "Step 3: litteral > sign." -msgstr "" +msgstr "3. adım: Var olan > işareti." #: inc/filter/itilcategoryfilter.class.php:52 #: inc/filter/itilcategoryfilter.class.php:54 @@ -1987,23 +2020,23 @@ msgstr "Bağlantılı öge bulunamadı" msgid "Failed to link the item" msgstr "Öge bağlantısı kurulamadı" -#: inc/targetticket.class.php:920 install/install.php:431 +#: inc/targetticket.class.php:938 install/install.php:432 msgid "Your form has been accepted by the validator" msgstr "Formunuz değerlendiren tarafından onaylandı" -#: inc/targetticket.class.php:1076 +#: inc/targetticket.class.php:1094 msgid "Request source" msgstr "İstek kaynağı" -#: inc/targetticket.class.php:1101 +#: inc/targetticket.class.php:1119 msgid "Type " msgstr "Tür" -#: inc/targetticket.class.php:1129 +#: inc/targetticket.class.php:1147 msgid "Associated elements" msgstr "İlgili bileşenler" -#: inc/targetticket.class.php:1140 +#: inc/targetticket.class.php:1158 msgid "Item " msgstr "Öge" @@ -2013,7 +2046,7 @@ msgstr "Çevrilecek bir dizge yok" #: inc/translation.class.php:164 msgid "Internal error: translatable string not found." -msgstr "" +msgstr "İç sorun: Çevrilebilecek bir dizge bulunamadı." #: inc/translation.class.php:216 msgid "Language not found." @@ -2214,27 +2247,27 @@ msgstr "Sağlayıcı" msgid "Yes" msgstr "Evet" -#: install/install.php:134 +#: install/install.php:135 #, php-format msgid "Upgrade tables to innoDB; run %s" msgstr "Tabloları innoDB biçimine dönüştürün. Şunu çalıştırın %s" -#: install/install.php:171 +#: install/install.php:172 #, 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 "" -"Veritabanı şeması önceki Formcreator %s uygulama eki ile uyumlu değil. " +"Veri tabanı şeması önceki Formcreator %s uygulama eki ile uyumlu değil. " "Günlük kayıtlarını görüntülemek için şu komutu yürütün %s" -#: install/install.php:180 +#: install/install.php:181 #, php-format msgid "To ignore the inconsistencies and upgrade anyway run %s" msgstr "" "Uyumsuzluğu yok saymak ve her durumda güncellemek için şunu çalıştırın %s" -#: install/install.php:197 +#: install/install.php:198 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" @@ -2246,29 +2279,29 @@ msgstr "" "sürüme ve Formcreator uygulama ekini 2.13 ya da üzerindeki bir sürüme " "yükseltin." -#: install/install.php:249 +#: install/install.php:250 #, 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 "" -"Veritabanı şeması güncel Formcreator %s sürümü ile uyumlu değil. Günlük " +"Veri tabanı şeması güncel Formcreator %s sürümü ile uyumlu değil. Günlük " "kayıtlarını görüntülemek için uygulama ekini etkinleştirin ve şu komutu " "yürütün %s" -#: install/install.php:260 +#: install/install.php:261 msgid "The tables of the plugin passed the schema integrity check." msgstr "Uygulama ekinin tabloları şema bütünlüğü denetimini geçti." -#: install/install.php:412 +#: install/install.php:413 msgid "A form has been created" msgstr "Bir form eklendi" -#: install/install.php:413 +#: install/install.php:414 msgid "Your request has been saved" msgstr "İsteğiniz kaydedildi" -#: install/install.php:414 +#: install/install.php:415 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " @@ -2278,11 +2311,11 @@ msgstr "" "kaydedilerek destek ekibimize iletildi.\\nİsteğinize verilen yanıtları şu " "bağlantıdan görebilirsiniz:\\n##formcreator.validation_link##" -#: install/install.php:419 +#: install/install.php:420 msgid "A form from GLPI need to be validate" msgstr "Değerlendirilmesi gereken bir GLPI formu var" -#: install/install.php:420 +#: install/install.php:421 msgid "" "Hi,\\nA form from GLPI need to be validate and you have been choosen as the " "validator.\\nYou can access it by clicking onto this " @@ -2292,12 +2325,12 @@ msgstr "" "üzere seçildiniz.\\nAşağıdaki bağlantıya tıklayarak forma " "erişebilirsiniz:\\n##formcreator.validation_link##" -#: install/install.php:425 +#: install/install.php:426 msgid "Your form has been refused by the validator" msgstr "" "Formunuzdaki bilgiler hatalı olduğundan değerlendiren tarafından reddedildi" -#: install/install.php:426 +#: install/install.php:427 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -2309,7 +2342,7 @@ msgstr "" "düzenleyip yeniden göndermek için şu bağlantıyı " "kullanabilirsiniz:\\n##formcreator.validation_link##" -#: install/install.php:432 +#: install/install.php:433 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." @@ -2317,39 +2350,39 @@ msgstr "" "Merhaba,\\nFormunuz değerlendiren tarafından kabul edildi.\\nİsteğiniz kısa " "süre içinde değerlendirilecek." -#: install/install.php:437 +#: install/install.php:438 msgid "Your form has been deleted by an administrator" msgstr "Formunuz bir yönetici tarafından silindi" -#: install/install.php:438 +#: install/install.php:439 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." msgstr "" "Merhaba,\\nİsteğiniz dikkate alınmadı ve bir yönetici tarafından silindi." -#: install/install.php:664 +#: install/install.php:665 msgid "Formcreator - Sync service catalog issues" msgstr "Formcreator - Eşitleme hizmeti katalog sorunları" -#: install/install.php:852 +#: install/install.php:853 msgid "Failed to check the sanity of the tables!" msgstr "Tabloların sağlıklı olup olmadığı denetlenemedi!" -#: install/install.php:866 +#: install/install.php:867 #, php-format msgid "Table schema differs for table \"%s\"." msgstr "\"%s\" tablosunun tablo şeması farklı." -#: install/install.php:869 +#: install/install.php:870 #, php-format msgid "Table \"%s\" is missing." msgstr "\"%s\" tablosu eksik." -#: install/install.php:872 +#: install/install.php:873 #, php-format msgid "Unknown table \"%s\" has been found in database." -msgstr "Veritabanında ne olduğu bilinmeyen \"%s\" tablosu bulundu." +msgstr "Veri tabanında ne olduğu bilinmeyen \"%s\" tablosu bulundu." #: hook.php:378 msgctxt "button" @@ -2368,26 +2401,26 @@ msgstr "Dışa aktar" #: hook.php:381 msgctxt "button" msgid "Access rights" -msgstr "" +msgstr "Erişim izinleri" -#: hook.php:681 +#: hook.php:688 msgid "Cancel my ticket" msgstr "Destek kaydımı iptal et" -#: hook.php:699 +#: hook.php:706 msgid "Old" msgstr "Eski" -#: hook.php:706 +#: hook.php:713 #, php-format msgid "Number of %s" msgstr "%s sayısı" -#: hook.php:723 +#: hook.php:730 msgid "Issues summary" msgstr "Sorun özeti" -#: hook.php:768 +#: hook.php:775 msgid "" "Formcreator's mini dashboard not usable as default. This Setting has been " "ignored." @@ -2433,13 +2466,14 @@ msgstr "Bir sorun çıktı. Lütfen bu durumu BT yöneticinize bildirin." #: js/scripts.js:1449 msgid "Are you sure you want to duplicate this target?" -msgstr "" +msgstr "Bu hedefi kopyalamak istediğinize emin misiniz?" #: js/scripts.js:1466 msgid "Are you sure you want to delete this target?" -msgstr "" +msgstr "Bu hedefi silmek istediğinize emin misiniz?" -#: entrée standard:43 standard:50 standard:44 standard:49 standard:78 +#: entrée standard:43 standard:50 standard:44 standard:82 standard:49 +#: standard:78 msgid "Required" msgstr "Zorunlu" diff --git a/locales/uk_UA.po b/locales/uk_UA.po index 3c2d9f657..6ec23f49a 100644 --- a/locales/uk_UA.po +++ b/locales/uk_UA.po @@ -2,11 +2,11 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# # Translators: # Andriy Smilyanets , 2022 # Thierry Bugier , 2023 -# +# #, fuzzy msgid "" msgstr "" @@ -484,7 +484,7 @@ msgid "Some URL fields contains invalid links" msgstr "" #: inc/field/fieldsfield.class.php:565 -msgid "Additionnal fields" +msgid "Additional fields" msgstr "" #: inc/field/checkboxesfield.class.php:132 From acbbcc24924587ba934212dc8676b873222747f2 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Oct 2023 09:57:23 +0200 Subject: [PATCH 4/8] Revert "feat(formanswer): log any failure when saving a answer" This reverts commit 5d84054afea52e7ad6c4cd5db1090c114c2b63d6. --- inc/formanswer.class.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/inc/formanswer.class.php b/inc/formanswer.class.php index a83b7a8a3..1c9873d91 100644 --- a/inc/formanswer.class.php +++ b/inc/formanswer.class.php @@ -1214,10 +1214,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([ From 7a23254f90a49a3fc061f7e7a5c5c4da790b1b5f Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Oct 2023 09:57:47 +0200 Subject: [PATCH 5/8] docs(changelog): update --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) 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) From 64ec21aa9dbae625eed0daa7f6d888ba4b6895ea Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Oct 2023 10:15:51 +0200 Subject: [PATCH 6/8] chore(robo): no longer need quotes on cli argument --- RoboFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); From 4ee76a766e8ee83c19c9d437ab8cc3473ae4305a Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Mon, 23 Oct 2023 09:26:46 +0200 Subject: [PATCH 7/8] fix(install): ineffective data fix un upgrade to 2.13.7 --- install/upgrade_to_2.13.7.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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], From 9a91c5d48f9f5c96f86f7b0cf295e37c4ad12e11 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Tue, 24 Oct 2023 08:36:36 +0200 Subject: [PATCH 8/8] refactor(form): factorize type name calls --- inc/entityconfig.class.php | 2 +- inc/form.class.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/entityconfig.class.php b/inc/entityconfig.class.php index 7ccbb19c2..d4563308a 100644 --- a/inc/entityconfig.class.php +++ b/inc/entityconfig.class.php @@ -81,7 +81,7 @@ public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { $tabNames = []; if (!$withtemplate) { if ($item->getType() == 'Entity') { - $tabNames[1] = _n('Form', 'Forms', 2, 'formcreator'); + $tabNames[1] = PluginFormcreatorForm::getTypeName(Session::getPluralNumber()); } } return $tabNames; diff --git a/inc/form.class.php b/inc/form.class.php index 4b2ceebb3..6ac380221 100644 --- a/inc/form.class.php +++ b/inc/form.class.php @@ -577,7 +577,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 ''; } @@ -2029,7 +2029,7 @@ public function showForCentral() { echo ''; echo ''; - echo ''; + echo ''; echo ''; $currentCategoryId = -1;
' . _n('Form', 'Forms', 2, 'formcreator') . '' . PluginFormcreatorForm::getTypeName(Session::getPluralNumber()) . '