diff --git a/RoboFile.php b/RoboFile.php new file mode 100644 index 000000000..ba0dcf47e --- /dev/null +++ b/RoboFile.php @@ -0,0 +1,11 @@ +minifyCSS() + ->minifyJS(); + } + + /** + * Minify CSS stylesheets + * + * @return void + */ + public function minifyCSS() { + $css_dir = __DIR__ . '/css'; + if (is_dir($css_dir)) { + foreach (glob("$css_dir/*.css") as $css_file) { + if (!$this->endsWith($css_file, 'min.css')) { + $this->taskMinify($css_file) + ->to(str_replace('.css', '.min.css', $css_file)) + ->type('css') + ->run(); + } + } + } + return $this; + } + + /** + * Minify JavaScript files stylesheets + * + * @return void + */ + public function minifyJS() { + $js_dir = __DIR__ . '/js'; + if (is_dir($js_dir)) { + foreach (glob("$js_dir/*.js") as $js_file) { + if (!$this->endsWith($js_file, 'min.js')) { + $this->taskMinify($js_file) + ->to(str_replace('.js', '.min.js', $js_file)) + ->type('js') + ->run(); + } + } + } + return $this; + } + + /** + * Extract translatable strings + * + * @return void + */ + public function localesExtract() { + $this->_exec('tools/extract_template.sh'); + return $this; + } + + /** + * Push locales to transifex + * + * @return void + */ + public function localesPush() { + $this->_exec('tx push -s'); + return $this; + } + + /** + * Pull locales from transifex. + * + * @param integer $percent Completeness percentage + * + * @return void + */ + public function localesPull($percent = 70) { + $this->_exec('tx pull -a --minimum-perc=' .$percent); + return $this; + } + + /** + * Build MO files + * + * @return void + */ + public function localesMo() { + $this->_exec('./tools/release --compile-mo'); + return $this; + } + + /** + * Extract and send locales + * + * @return void + */ + public function localesSend() { + $this->localesExtract() + ->localesPush(); + return $this; + } + + /** + * Retrieve locales and generate mo files + * + * @param integer $percent Completeness percentage + * + * @return void + */ + public function localesGenerate($percent = 70) { + $this->localesPull($percent) + ->localesMo(); + return $this; + } + + /** + * Checks if a string ends with another string + * + * @param string $haystack Full string + * @param string $needle Ends string + * + * @return boolean + * @see http://stackoverflow.com/a/834355 + */ + private function endsWith($haystack, $needle) { + $length = strlen($needle); + if ($length == 0) { + return true; + } + + return (substr($haystack, -$length) === $needle); + } +} \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 000000000..cd119c088 --- /dev/null +++ b/composer.json @@ -0,0 +1,8 @@ +{ + "require-dev": { + "consolidation/robo": "dev-master@dev", + "patchwork/jsqueeze": "~1.0", + "natxet/CssMin": "~3.0", + "glpi-project/coding-standard": "0.5" + } +} \ No newline at end of file diff --git a/locales/ca_ES.mo b/locales/ca_ES.mo index 7709d95b3..19b31cacb 100644 Binary files a/locales/ca_ES.mo and b/locales/ca_ES.mo differ diff --git a/locales/ca_ES.po b/locales/ca_ES.po index 6ec87b22e..24d613d59 100644 --- a/locales/ca_ES.po +++ b/locales/ca_ES.po @@ -1,6 +1,6 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Nuria Costa , 2016 @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:51+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Catalan (Spain) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/ca_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,167 +18,71 @@ msgstr "" "Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Capçalera" -msgstr[1] "Capçaleres" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Categoria del formulari" -msgstr[1] "Categories dels formularis" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Sol·licitud" msgstr[1] "Sol·licituds" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Sol·licituds pendents de validació" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Formularis sense categoria" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Afegir una pregunta" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Editar una pregunta" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Secció" -msgstr[1] "Seccions" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "Objecte GLPI" -msgstr[1] "Objectes GLPI" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Obligatori" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Mostrar buit" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Una per línia de llistes" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Valors" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "Un per línia" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filtre" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Atribut" - -#: ajax/question.php:269 -msgid "Range" -msgstr "Interval" - -#: ajax/question.php:273 -msgid "Min" -msgstr "Mín" - -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Validació addicional" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Expressió regular" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Especifica les condicions de validació addicionals a la descripció de la pregunta per ajudar als usuaris." +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Mostrar camp" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Mostrar sempre" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Ocult llevat que" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Segur que vols eliminar aquesta pregunta?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Mostra llevat que" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Segur que vols eliminar aquesta secció?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Afegir una secció" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Segur que vols eliminar aquest destí?" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Editar una secció" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Mostrar tots els ítems" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Afegir un destí" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "no s'ha trobat cap ítem" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "Ja existeix una categoria amb aquest nom! No s'ha pogut crear." +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Un camp obligatori està buit:" -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Creador de formularis" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Llista de formularis" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "Ja existeix una capçalera per a aquesta entitat! Només es pot incloure una capçalera per entitat." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Creador de formularis" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -188,332 +92,283 @@ msgstr "La pregunta s'ha guardat amb èxit!" msgid "The question has been successfully updated!" msgstr "La pregunta s'ha actualitzat amb èxit!" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Resposta" -msgstr[1] "Respostes" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Ja existeix una capçalera per a aquesta entitat! Només es pot incloure una capçalera per entitat." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "Ja existeix una categoria amb aquest nom! No s'ha pogut crear." -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Sol·licituds pendents de validació" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Capçalera" +msgstr[1] "Capçaleres" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Categoria del formulari" +msgstr[1] "Categories dels formularis" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Objectiu" +msgstr[1] "Objectius" + +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Tipus d'accés" + +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Accés públic" + +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Accés privat" + +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Accés restringit" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" msgstr "" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" msgstr "" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Un camp obligatori està buit:" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Afegir capçalera" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Ja hi ha una capçalera per a una entitat matriu! Una altra capçalera sobreescriurà l'anterior." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Resposta del formulari" msgstr[1] "Sol·licituds" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Sol·licitant" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Validador" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "esperant" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "acceptat" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "denegat" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Sol·licitud acceptada pel validador." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Sol·licitud guardada correctament." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Comentari" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Es requereix si es va denegar" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Denegar" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Acceptat" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Cal un comentari de denegació!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "No es poden generar objectius!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "S'ha guardat el formulari correctament!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Dades de la sol·licitud" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Descripció" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Pàgina d'inici" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Accés" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Totes les llengües" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Accés públic" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Accés privat" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Accés restringit" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Accés directe a la pàgina d'inici" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Necessita validació?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" msgstr "" -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" - -#: inc/form.class.php:528 -msgid "see all" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" msgstr "" -#: inc/form.class.php:545 -msgid "Popularity sort" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" msgstr "" -#: inc/form.class.php:549 -msgid "Alphabetic sort" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" msgstr "" -#: inc/form.class.php:710 -msgid "Please, describe your need here" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" msgstr "" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Les meves darreres sol·licituds (sol·licitant)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Destí" +msgstr[1] "Destins" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Formulari no publicat" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Destí" +msgstr[1] "Destins" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Totes les meves sol·licituds (sol·licitant)" - -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Les meves darreres sol·licituds (validador)" - -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "No hi ha sol·licituds pendents de validació" - -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Totes les meves sol·licituds (validador)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Eliminar" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Escull un validador" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Afegir un destí" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "No es pot deixar el nom en blanc!" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Has de seleccionar un validador!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Duplicada" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Sol·licitud duplicada: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Sol·licitud transferida: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Objectiu" -msgstr[1] "Objectius" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Tipus d'accés" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Afegir capçalera" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "El Tipus no pot ser buit." -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Ja hi ha una capçalera per a una entitat matriu! Una altra capçalera sobreescriurà l'anterior." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Secció" +msgstr[1] "Seccions" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "El títol és obligatori" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "S'ha guardat la sol·licitud" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "La sol·licitud ha de ser validada" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Sol·licitud denegada" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Sol·licitud acceptada" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Sol·licitud eliminada" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Formulari #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Nom del formulari" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Totes les sol·licituds completes" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Comentari denegat" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Enllaç de validació" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Sol·licitud #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "S'ha creat el formulari" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "La teva sol·licitud s'ha guardat" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "Benvolgut/da,\\n La teva sol·licitud s'ha guardat correctament amb el número ##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##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Hi ha una sol·licitud pendent de validació" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Benvolgut/da, \\n Hi ha una sol·licitud per validar i has estat seleccionat com a validador. \\ nPots accedir-hi fent clic en aquest enllaç :.\\n ##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "La teva sol·licitud ha estat denegada pel validador" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -521,288 +376,561 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Hola, \\nLa teva sol·licitud ha estat denegada pel validador a causa de: \\n ##formcreator.validation_comment##.\\n\\nEncara la pot modificar i tornar a enviar fent clic en aquest enllaç: \\n ##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "La teva sol·licitud ha estat acceptada pel validador" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 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, \\nEns complau informar-te que la seva sol·licitud ha estat acceptada pel validador. \\nLa sol·licitud serà tramitada en breu." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "La teva sol·licitud ha estat eliminada per un administrador" -#: inc/notificationtargetformanswer.class.php:122 +#: inc/notificationtargetform_answer.class.php:122 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." msgstr "Hola, \\n Malauradament la teva sol·licitud no pot ser considerada i s'ha suprimit per un administrador." -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Pregunta" -msgstr[1] "Preguntes" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Eliminar" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "El títol és obligatori" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "El camp Tipus és obligatori" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "Cal una secció" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "El camp Valor és obligatori" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "El camp Descripció hauria de contenir una descripció:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "No es pot recuperar la informació de LDAP!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Destí" -msgstr[1] "Destins" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Destí" -msgstr[1] "Destins" - -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "El Tipus no pot ser buit." +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Resposta" +msgstr[1] "Respostes" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Entitat activa actual" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Entitat per defecte del sol·licitant" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "Primera entitat dinàmica del sol·licitant (alfabètic)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Darrera entitat dinàmica del sol·licitant (alfabètic)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Entitat del formulari" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Entitat per defecte del validador" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Entitat específica" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Entitat per defecte de la resposta de la pregunta tipus Usuari" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "Object GLPI > Resporta d'una pregunta de tipus Entitat" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Etiquetes de les preguntes" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Etiquetes específiques" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Etiquetes de preguntes i etiquetes específiques" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Etiquetes de preguntes o etiquetes específiques" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "és igual la resposta a la pregunta" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "calculada a partir de la data de creació del tiquet" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "calculada a partir de la data de resposta" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Objectiu del tiquet" msgstr[1] "Objectius dels tiquets" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Edita el destí" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Títol del tiquet" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Pregunta" +msgstr[1] "Preguntes" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Pregunta de tipus Usuari" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Pregunta de tipus Entitat" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Etiquetes del tiquet" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Etiquetes" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Afegir un missatge de validació al primer seguiment" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Cancel·lar" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Autors del tiquet" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Sol·licitant de la sol·licitud" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Validador de la sol·licitud" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Persona específica" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Persona d'una pregunta" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Grup específic" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Grup de la pregunta" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Proveïdor específic" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Proveïdor d'una pregunta" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Sol·licitud completa" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "Cal que posis un títol!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "Cal que posis una descripció!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Objecte GLPI" +msgstr[1] "Objectes GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Mostrar tots els ítems" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "no s'ha trobat cap ítem" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Persona específica" + +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Grup específic" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/category.class.php:39 +msgid "Knowbase category" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Obligatori" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Afegir una pregunta" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Afegir una secció" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "El camp Tipus és obligatori" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Cal una secció" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "El camp Valor és obligatori" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "El camp Descripció hauria de contenir una descripció:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "No es pot recuperar la informació de LDAP!" + +#: inc/form.class.php:60 +msgid "Import forms" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/form.class.php:94 +msgid "Description" +msgstr "Descripció" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Pàgina d'inici" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Accés" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Totes les llengües" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Accés directe a la pàgina d'inici" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Necessita validació?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "" +msgstr[1] "" + +#: inc/form.class.php:536 +msgid "see all" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Segur que vols eliminar aquesta pregunta?" +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Segur que vols eliminar aquesta secció?" +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Segur que vols eliminar aquest destí?" +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Les meves darreres sol·licituds (sol·licitant)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Formulari no publicat" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Totes les meves sol·licituds (sol·licitant)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Les meves darreres sol·licituds (validador)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "No hi ha sol·licituds pendents de validació" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Totes les meves sol·licituds (validador)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Escull un validador" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Has de seleccionar un validador!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Duplicada" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Sol·licitud duplicada: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Sol·licitud transferida: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "" +msgstr[1] "" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Editar una pregunta" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Mostrar buit" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Una per línia de llistes" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Valors" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Un per línia" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filtre" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Atribut" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Interval" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Mín" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Validació addicional" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Expressió regular" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Especifica les condicions de validació addicionals a la descripció de la pregunta per ajudar als usuaris." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Mostrar camp" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Mostrar sempre" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Ocult llevat que" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Mostra llevat que" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Editar una secció" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formularis sense categoria" diff --git a/locales/cs_CZ.mo b/locales/cs_CZ.mo index 823761509..f0b1fa833 100644 Binary files a/locales/cs_CZ.mo and b/locales/cs_CZ.mo differ diff --git a/locales/cs_CZ.po b/locales/cs_CZ.po index 393cf4ad6..5aec77847 100644 --- a/locales/cs_CZ.po +++ b/locales/cs_CZ.po @@ -1,6 +1,6 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # David Stepan , 2015-2016 @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:52+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,512 +18,365 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Hlavička" -msgstr[1] "Hlavičky" -msgstr[2] "Hlavičky" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Kategorie formuláře" -msgstr[1] "Kategorie formuláře" -msgstr[2] "Kategorie formuláře" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulář" msgstr[1] "Formuláře" msgstr[2] "Formuláře" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Formuláře čekající na validaci" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Formuláře bez kategorie" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Přidat otázku" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Upravit otázku" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Sekce" -msgstr[1] "Sekce" -msgstr[2] "Sekce" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Žádná formulář nebyl nalezen. Prosím vyberte formulář níže" -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "Objekt GLPI" -msgstr[1] "Objekty GLPI" -msgstr[2] "Objekty GLPI" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Došlo k chybě při dotazování formuláře" -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Povinné" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "Žádný formulář v této kategorii" -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Zobrazit prázdné" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Skutečně chcete smazat tuto otázku?" -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Jeden řádek na listy" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Skutečně chcete smazat tuto sekci?" -#: ajax/question.php:223 -msgid "Values" -msgstr "Hodnoty" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Skutečně chcete smazat tento cíl?" -#: ajax/question.php:224 -msgid "One per line" -msgstr "Jeden na řádek" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Zobrazit všechny položky" -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filtr" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "neodpovídá žádné položce" -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Atribut" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Povinné pole je prázdné:" -#: ajax/question.php:269 -msgid "Range" -msgstr "Rozmezí" +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 +msgid "Service catalog" +msgstr "Katalog služeb" -#: ajax/question.php:273 -msgid "Min" -msgstr "Min" +#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 +msgid "Form list" +msgstr "Seznam formulářů" -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Tvúrce formulářů" -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Dodatečné ověření" +#: front/question.form.php:15 +msgid "The question has been successfully saved!" +msgstr "Otázka byla úspěšně uložena!" -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Regulární výraz" +#: front/question.form.php:25 +msgid "The question has been successfully updated!" +msgstr "Otázka byla úspěšně aktualizována!" -#: ajax/question.php:313 +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Specifikujte další validační podmínky v popisu otázky, které pomohou uživatelům." - -#: ajax/question.php:320 -msgid "Show field" -msgstr "Zobrazit pole" - -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Vždy zobrazeno" - -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Skrýt ledaže" - -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Zobrazit ledaže" - -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Přidat sekci" - -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Upravit sekci" - -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Přidat cíl" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Hlavička pro tuto entitu již existuje! Můžete mít pouze jednu hlavičku pro danou entitu." #: front/category.form.php:13 msgid "" "A category already exists with the same name! Category creation failed." msgstr "Kategorie se stejným jménem již existuje! Vytvoření kategorie selhalo." -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 -msgid "Service catalog" -msgstr "" - -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Tvúrce formulářů" - -#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 -msgid "Form list" -msgstr "Seznam formulářů" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Formuláře čekající na validaci" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "Hlavička pro tuto entitu již existuje! Můžete mít pouze jednu hlavičku pro danou entitu." +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Hlavička" +msgstr[1] "Hlavičky" +msgstr[2] "Hlavičky" -#: front/question.form.php:15 -msgid "The question has been successfully saved!" -msgstr "Otázka byla úspěšně uložena!" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Kategorie formuláře" +msgstr[1] "Kategorie formuláře" +msgstr[2] "Kategorie formuláře" -#: front/question.form.php:25 -msgid "The question has been successfully updated!" -msgstr "Otázka byla úspěšně aktualizována!" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Cíl - přístup" +msgstr[1] "Cíle - přístup" +msgstr[2] "Cíle - přístup" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Odpověď" -msgstr[1] "Odpovědi" -msgstr[2] "Odpovědi" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Typ přístupu" -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Veřejný přístup" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Soukromý přístup" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Omezený přístup" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Odkaz na formulář" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Prosím aktivujte si formulář pro zobrazení odkazu" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Přidat hlavičku" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Povinné pole je prázdné:" +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Hlavička existuje pro nadřízenou entitu! Jiná hlavička přepíše předchozí." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Odpověď formuláře" msgstr[1] "Odpovědi formuláře" msgstr[2] "Odpovědi formuláře" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Žadatel" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Ověřovatel" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "čekající" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "schválen" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "zamítnut" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Formulář byl schválen ověřovatelem." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Formulář byl úspěšně uložen." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Komentář" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Požadováno pokud je zamítnuto" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Zamítnuto" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Schváleno" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Komentář zamítnutí je povinný!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Nelze generovat cíle!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Formulář byl úspěšně uložen!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Data formuláře" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Popis" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Helpdesk" -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Domovská stránka" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "Helpdesk GLPI" -#: inc/form.class.php:128 -msgid "Access" -msgstr "Přístup" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Katalog služeb zjednodušený" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Všechny jazyky" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Katalog služeb rozšířený" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Veřejný přístup" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Mód helpdesku" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Soukromý přístup" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Cíl" +msgstr[1] "Cíle" +msgstr[2] "Cíle" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Omezený přístup" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Cíl" +msgstr[1] "Cíle" +msgstr[2] "Cíle" -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Přímý přístup na domovskou stránku" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Smazat" -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Nutno ověřit?" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Přidat cíl" -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "" +#: inc/target.class.php:119 inc/form.class.php:939 +msgid "The name cannot be empty!" +msgstr "Jméno nemůže být prázdné!" -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Typ nemůže být prázdný!" -#: inc/form.class.php:528 -msgid "see all" -msgstr "" - -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "" - -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "" - -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "" - -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Mé poslední formuláře (žadatel)" - -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Nebyl odeslán žádný formulář" - -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Všechny mé formuláře (žadatel)" - -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Mé poslední formuláře (ověřovatel)" - -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "Žádný formulář nečeká na ověření" - -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Všechny mé formuláře (ověřovatel)" - -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Vyberte ověřovatele" - -#: inc/form.class.php:910 inc/target.class.php:118 -msgid "The name cannot be empty!" -msgstr "Jméno nemůže být prázdné!" - -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Musíte vybrat ověřovatele !" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Kopírovat" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Formulář byl zkopírován: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Formulář byl přesunut: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Cíl - přístup" -msgstr[1] "Cíle - přístup" -msgstr[2] "Cíle - přístup" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Typ přístupu" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Přidat hlavičku" - -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Hlavička existuje pro nadřízenou entitu! Jiná hlavička přepíše předchozí." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Sekce" +msgstr[1] "Sekce" +msgstr[2] "Sekce" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "Název je povinný" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "Formulář byl uložen" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "Formulář musí být ověřen" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Formuláž byl zamítnut" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Formulář byl přijat" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Formulář byl smazán" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Formulář #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Název formuláře" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Úplné odpovědi formuláře" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Zamítnutý komentář" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Odkaz ověření" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Žádost #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Byl vytvořen formulář" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "Vaše žádost byla uložena" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "Dobrý den,\\n Váš požadavek z GLPI byl úspěšně uložen pod číslem ##formcreator.request_id## a předán týmu podpory. Své odpovědi můžete vidět na následujícím odkazu:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Formulář GLPI musí být ověřen" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Dobrý den,\\n formulář z GLPI musí být ověřen a vy jste byl vybrán jako ověřovatel.\\n K formuláři můžete přistoupit kliknutím na tento odkaz:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "Váš formulář byl zamítnut ověřovatelem" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -531,292 +384,569 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Dobrý den,\\n váš formulář byl bohužel zamítnut ověřovatelem z tohoto důvodu: \\n##formcreator.validation_comment##\\n\\nFormulář můžete nadále upravovit kliknutím na tento odkaz:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Váš formulář byl ověřen ověřovatelem" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." msgstr "Dobrý den,\\n Váš formulář byl schválen ověřovatelem.\\n Váš požadavek bude brzy řešen." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "Váš formulář byl smazán administrátorem" -#: inc/notificationtargetformanswer.class.php:122 +#: inc/notificationtargetform_answer.class.php:122 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 administrátorem." -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Otázka" -msgstr[1] "Otázky" -msgstr[2] "Otázky" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Smazat" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "Název je povinný" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "Typ pole je povinný" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "Sekce je povinná" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "Hodnota pole musí být vyplněna:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "Popis pole by měl obsahovat popis:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "Nemohu získat informace z LDAPu!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Cíl" -msgstr[1] "Cíle" -msgstr[2] "Cíle" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Cíl" -msgstr[1] "Cíle" -msgstr[2] "Cíle" - -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "Typ nemůže být prázdný!" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Odpověď" +msgstr[1] "Odpovědi" +msgstr[2] "Odpovědi" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Aktuální aktivní entita" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Výchozí entita žadatele" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "První dynamická entita žadatele (podle abecedy)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Poslední dynamická entita žadatele (podle abecedy)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Entita formuláře" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Výchozí entita kontrolora" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Specifická entita" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Výchozí entita dle typu odpovědi uživatele" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "Z objektu GLPI > Typ entity otázka odpověď" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Tagy z otázek" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Specifické tagy" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Tagy z otázek a specifické tagy" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Tagy z otázek nebo specifické tagy" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "rovná se odpovědi na otázku" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "počítáno od data vytvoření požadavku" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "počítáno od odpovědi na otázku" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Cílový požadavek" msgstr[1] "Cílové požadavky" msgstr[2] "Cílové požadavky" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Upravit cíl" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Název požadavku" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Otázka" +msgstr[1] "Otázky" +msgstr[2] "Otázky" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Typ uživatele dle otázky" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Typ entity dle otázky" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Tagy požadavků" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Tagy" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Přidat kontrolní zprávu při první změně požadavku" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Zpět" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Účastníci požadavku" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Zadavatel formuláře" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Schvalovatel formuláře" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Specifická osoba" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Osoba z otázky" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Specifická skupina" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Skupina z otázky" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Specifický dodavatel" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Dodavatel z otázky" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Celý formulář" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "Název nemůže být prázdný!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "Popis nemůže být prázdný" -#: inc/wizard.class.php:83 -msgid "Seek assistance" +#: inc/fields/radios-field.class.php:48 +msgid "Radios" msgstr "" -#: inc/wizard.class.php:87 -msgid "My requests for assistance" +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Objekt GLPI" +msgstr[1] "Objekty GLPI" +msgstr[2] "Objekty GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "Toto není číslo:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" msgstr "" -#: inc/wizard.class.php:98 -msgid "Book an asset" +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" msgstr "" -#: inc/wizard.class.php:105 -msgid "Consult feeds" +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Zobrazit všechny položky" +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "neodpovídá žádné položce" +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/fields/integer-field.class.php:38 +msgid "Integer" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Skutečně chcete smazat tuto otázku?" +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Text" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Skutečně chcete smazat tuto sekci?" +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "Toto není validní e-mailová adresa:" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Skutečně chcete smazat tento cíl?" +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Datum a čas" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "Chybí požadovaný soubor:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Vybrat" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "Zaškrtávací pole" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 +msgid "Seek assistance" +msgstr "Požádat o pomoc" + +#: inc/wizard.class.php:73 inc/wizard.class.php:74 +msgid "My requests for assistance" +msgstr "Moje žádosti o pomoc" + +#: inc/wizard.class.php:85 inc/wizard.class.php:86 +msgid "Book an asset" +msgstr "Rezervovat aktivum" + +#: inc/wizard.class.php:94 inc/wizard.class.php:95 +msgid "Consult feeds" +msgstr "Konzultovat zdroje" + +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Specifická osoba" + +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Specifická skupina" + +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Kategorie znalostní báze" + +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Povinné" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Přidat otázku" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Přidat sekci" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Typ pole je povinný" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Sekce je povinná" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "Hodnota pole musí být vyplněna:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Popis pole by měl obsahovat popis:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Nemohu získat informace z LDAPu!" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Popis" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Domovská stránka" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Přístup" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Všechny jazyky" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Přímý přístup na domovskou stránku" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Nutno ověřit?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Výchozí forma katalogu služeb" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Kategorie" +msgstr[1] "Kategorie" +msgstr[2] "Kategorie" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "zobrazit vše" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "Řazení popularity" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "Abecední řazení" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Prosím, popište své potřeby zde" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Mé poslední formuláře (žadatel)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Nebyl odeslán žádný formulář" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Všechny mé formuláře (žadatel)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Mé poslední formuláře (ověřovatel)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Žádný formulář nečeká na ověření" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Všechny mé formuláře (ověřovatel)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Vyberte ověřovatele" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Musíte vybrat ověřovatele !" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Kopírovat" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Formulář byl zkopírován: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Formulář byl přesunut: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Problém" +msgstr[1] "Problémy" +msgstr[2] "Problémy" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Upravit otázku" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Zobrazit prázdné" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Jeden řádek na listy" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Hodnoty" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Jeden na řádek" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filtr" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Atribut" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Rozmezí" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Dodatečné ověření" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Regulární výraz" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Specifikujte další validační podmínky v popisu otázky, které pomohou uživatelům." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Zobrazit pole" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Vždy zobrazeno" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Skrýt ledaže" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Zobrazit ledaže" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Upravit sekci" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formuláře bez kategorie" diff --git a/locales/de_AT.mo b/locales/de_AT.mo index 1c3572e40..e2d2ae522 100644 Binary files a/locales/de_AT.mo and b/locales/de_AT.mo differ diff --git a/locales/de_AT.po b/locales/de_AT.po index 0b866bcae..6a0d2da57 100644 --- a/locales/de_AT.po +++ b/locales/de_AT.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: German (Austria) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/de_AT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,19 +17,19 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "" msgstr[1] "" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -37,8 +37,8 @@ msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "" @@ -55,7 +55,7 @@ msgid "Edit a question" msgstr "" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "" @@ -137,11 +137,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "" @@ -154,7 +154,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -162,8 +162,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -187,7 +187,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "" @@ -221,200 +221,213 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +441,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +534,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +554,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +566,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +603,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +671,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +803,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/de_DE.mo b/locales/de_DE.mo index 6d635dbc3..57773ed7b 100644 Binary files a/locales/de_DE.mo and b/locales/de_DE.mo differ diff --git a/locales/de_DE.po b/locales/de_DE.po index 35e9301d0..dcb961ebd 100644 --- a/locales/de_DE.po +++ b/locales/de_DE.po @@ -1,17 +1,19 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Florian Ried , 2016 # Janosch, 2015 +# armin0103 , 2016 +# Robert Langenkamp , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:51+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: German (Germany) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,502 +21,357 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "" -msgstr[1] "" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Formularkategorie" -msgstr[1] "Fomularkategorien" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Formular" msgstr[1] "Formulare" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Formulare (warten auf Genehmigung)" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Formulare ohne Kategorie" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Fragestellung erstellen" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Fragestellung bearbeiten" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Sektion" -msgstr[1] "Sektionen" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Keine Treffer. Bitte nutzen SIe eins der folgenden Formulare" -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "GLPI Objekt" -msgstr[1] "GLPI Objekte" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Es trat bei der Abfrage der Formulare ein Fehler auf" -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "erforderlich" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "In dieser Kategorie befindet sich kein Formular" -#: ajax/question.php:178 -msgid "Show empty" -msgstr "" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Sind Sie sich sicher, dass Sie diese Anfrage löschen möchten?" -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Sind Sie sich sicher, dass Sie diesen Abschnitt löschen möchten?" -#: ajax/question.php:223 -msgid "Values" -msgstr "Werte" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Sind Sie sich sicher, dass Sie dieses Ziel löschen möchten?" -#: ajax/question.php:224 -msgid "One per line" -msgstr "" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Alle Elemente anzeigen" -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filter" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "keine Treffer" -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Merkmale" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Ein notwendiges Feld ist nicht ausgefüllt:" -#: ajax/question.php:269 -msgid "Range" -msgstr "Reichweite" +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 +msgid "Service catalog" +msgstr "Servicekatalog" -#: ajax/question.php:273 -msgid "Min" -msgstr "Min" +#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 +msgid "Form list" +msgstr "Formularliste" -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Formular erstellen" -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "nachträgliche Genehmigung" +#: front/question.form.php:15 +msgid "The question has been successfully saved!" +msgstr "Die Fragestellung wurde erfolgreich gespeichert!" -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "reguläre Bezeichnung" +#: front/question.form.php:25 +msgid "The question has been successfully updated!" +msgstr "Die Fragestellung wurde erfolgreich aktualisiert!" -#: ajax/question.php:313 +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "" - -#: ajax/question.php:320 -msgid "Show field" -msgstr "Feld anzeigen" - -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "immer angezeigt" - -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "versteckt, es sei denn" - -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "angezeigt, es sei denn" - -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Sektion hinzufügen" - -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Sektion editieren" - -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Ziel hinzufügen" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Es existiert bereits eine überschrift für diese Einheit. Es kann nur eine Überschrift ro Gruppe definiert werden" #: front/category.form.php:13 msgid "" "A category already exists with the same name! Category creation failed." msgstr "Eine Kategorie mit dem gleichen Namen besteht bereits! Anlegen der Kategorie fehlgeschlagen." -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 -msgid "Service catalog" -msgstr "" - -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "" - -#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 -msgid "Form list" -msgstr "Formularliste" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Formulare (warten auf Genehmigung)" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Überschrift" +msgstr[1] "Überschriften" -#: front/question.form.php:15 -msgid "The question has been successfully saved!" -msgstr "Die Fragestellung wurde erfolgreich gespeichert!" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Fomularkategorien" +msgstr[1] "Fomularkategorien" -#: front/question.form.php:25 -msgid "The question has been successfully updated!" -msgstr "Die Fragestellung wurde erfolgreich aktualisiert!" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Zugriff" +msgstr[1] "Zugriffe" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Rückantwort" -msgstr[1] "Rückantworten" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Zugriffsmodus/typ" -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "öffentlicher Zugriff" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "privater Zugriff" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "eingeschränkter Zugriff" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Zum Formular verknüpfen" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Bitte Formular wählen um den Link zu aktivieren" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Überschrift hinzufügen" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Ein notwendiges Feld ist nicht ausgefüllt:" +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Eine Überschrift existiert bereits für ein Übergeordnetes Element! Eine weitere Überschrift würde die bestehende überschreiben." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Formularanforderung" msgstr[1] "Formularanforderungen" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Anforderer" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Genehmiger" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "wartend" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "akzeptiert" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "abgelehnt" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Formular genehmigt" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Formular erfolgreich gespeichert" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "notwendig bei Ablehnung" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Erforderlich, falls abgelehnt" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "ablehnen" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "akzeptieren" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Kommentar zur Ablehnung erforderlich" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Zugriff generieren nicht möglich!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Das Formular wurde erfolgreich gespeichert" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Formulardaten " -#: inc/form.class.php:92 -msgid "Description" -msgstr "Beschreibung" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Homepage" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Helpdesk" -#: inc/form.class.php:128 -msgid "Access" -msgstr "Zugriff" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "Helpdesk von GLPI" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Alle Sprachen" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "vereinfachter Servicekatalog" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "öffentlicher Zugriff" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "erweiterter Servicekatalog" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "privater Zugriff" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Helpdesk modus" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "eingeschränkter Zugriff" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Ziel" +msgstr[1] "Ziele" -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "direkter Zugriff auf die Homepage" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Ziel" +msgstr[1] "Ziele" -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Löschen" -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Ziel hinzufügen" -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" +#: inc/target.class.php:119 inc/form.class.php:939 +msgid "The name cannot be empty!" +msgstr "Das Feld Name kann nicht leer sein" -#: inc/form.class.php:528 -msgid "see all" -msgstr "" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Der Typ darf nicht leer sein" -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "" +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Sektion" +msgstr[1] "Sektionen" -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "Der Titel wird benötigt" -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "" +#: inc/notificationtargetform_answer.class.php:12 +msgid "The form as been saved" +msgstr "Das Formular wurde gespeichert" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Meine letzten Formulare (Anforderer)" +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 +msgid "A form need to be validate" +msgstr "Ein Formular wartet auf Genehmigung" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "bisher kein Formular angelegt" +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 +msgid "The form is refused" +msgstr "Das Formular wurde abgelehnt" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Alle Formulare (Anforderer)" - -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Meine letzten Formulare (Genehmiger)" - -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "bisher wartet kein Formular auf eine Genehmigung" - -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Alle Formulare (Genehmiger)" - -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Genehmiger auswählen" - -#: inc/form.class.php:910 inc/target.class.php:118 -msgid "The name cannot be empty!" -msgstr "Das Feld Name kann nicht leer sein" - -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Du musst einen Genehmiger auswählen!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "duplizieren" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Zugriff" -msgstr[1] "Zugriffe" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "" - -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "" - -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" - -#: inc/notificationtargetformanswer.class.php:12 -msgid "The form as been saved" -msgstr "Das Formular wurde gespeichert" - -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 -msgid "A form need to be validate" -msgstr "Ein Formular wartet auf Genehmigung" - -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 -msgid "The form is refused" -msgstr "Das Formular wurde abgelehnt" - -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Das Formular wurde akzeptiert" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Das Formular wurde gelöscht" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Formular #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Formularname" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Formular Rückantworten" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Kommentar abgelehnt" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Bestätigungslink" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Anfrage #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Ein Formular wurde erstellt" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "Ihre Anfrage wurde erfolgreich gespeichert" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "Guten Tag, \\nIhr Formular in GLPI wurde erfolgreich mit Nummer ##formcreator.request_id## gespeichert und an das Help-Desk übertragen. \\n Sie können Ihre Anforderung unter folgendem Link einsehen: \\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Ein Formular von GLPI wartet auf Genehmigung" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Guten Tag, \\nEin Formular von GLPI wartet auf Genehmigung. Sie wurden als Genehmiger ausgewählt. \\n Das Formular kann unter folgendem Link aufgerufen werden, um genehmigt bzw. abgelehnt zu werden:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "Ihr Formular wurde abgelehnt" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -522,288 +379,561 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Guten Tag, \\n Leider müssen wir Ihnen mitteilen, dass Ihre Anforderung aus folgendem Grund abgelehnt wurde: \\n##formcreator.validation_comment## \\n\\n Sie können Ihre Anforderung unter folgendem Link bearbeiten und erneut einreichen:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Ihr Formular wurde genehmigt." -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." msgstr "Guten Tag, \\nWir freuen uns, Ihnen mitteilen zu können, dass das Formular von der genehmigenden Person akzeptiert worden ist. \\nIhre Anfrage wird somit schnellstmöglich von der IT-Abteilung berücksichtigt." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "Ihr Formular wurde von einem Administrator gelöscht" -#: inc/notificationtargetformanswer.class.php:122 +#: inc/notificationtargetform_answer.class.php:122 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." msgstr "Guten Tag, \\nLeider müssen wir Ihnen mitteilen, dass Ihre Anfrage nicht berücksichtigt werden kann und von einem Administrator gelöscht wurde." -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Fragestellung" -msgstr[1] "Fragestellungen" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "Die Sektion ist notwendig" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "Dieses Feld muss ausgefüllt werden:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "Ein Beschreibungsfeld sollte eine Beschreibung beinhalten" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Ziel" -msgstr[1] "Ziele" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Ziel" -msgstr[1] "Ziele" - -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Rückantwort" +msgstr[1] "Rückantworten" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" -msgstr "" +msgstr "Aktuell aktiver " -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" -msgstr "" +msgstr "Standardanforderer Benutzereintrag" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" -msgstr "" +msgstr "Zuerst dynamischer Usereintag (alphabetisch)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" -msgstr "" +msgstr "Letzter dynamischer Anforderer (alphabetisch)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" -msgstr "" +msgstr "Formulareinheit" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Standardeinheit des Genehmigers" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" -msgstr "" +msgstr "spezielle-Einheit" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" -msgstr "" +msgstr "Standatd Einheit einer Antwort einer Benutzeranfrage" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" -msgstr "" +msgstr "Aus einem GLPI-Objekt > Antwort auf eine Gruppen-Frage" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" -msgstr "" +msgstr "Markierungen aus Fragen" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" -msgstr "" +msgstr "ausgesuchte Tags" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" -msgstr "" +msgstr "Markierung einer Frage und spezieller Markierungen" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" -msgstr "" +msgstr "Markierung einer Frage oder spezieller Markierungen" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" -msgstr "" +msgstr "Entspricht der Anwort au die Frage" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" -msgstr "" +msgstr "aus dem Ticket-Erstelldatum berechnet" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" +msgstr "von der Antwirt wurdeauf die Frage geschlossen" + +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ziel Ticket" +msgstr[1] "Zeil Tickets" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Ziel bearbeiten" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Ticket-Titel" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Fragestellung" +msgstr[1] "Fragestellungen" + +#: inc/targetticket.class.php:324 msgid "User type question" -msgstr "" +msgstr "Benutzerfragestellung" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" -msgstr "" +msgstr "Gruppen-Antwort" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" -msgstr "" +msgstr "Ticket-Markierung" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" -msgstr "" +msgstr "Markierung" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" -msgstr "" +msgstr "Eine Validierungsnachricht als Erstticket-identifizierer hinzufügen" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Abbrechen" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" -msgstr "" +msgstr "Ticket-bearbeiter" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Formular Anforderer" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Formular Genehmiger" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 +msgid "Person from the question" +msgstr "Fragesteller" + +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 +msgid "Group from the question" +msgstr "Gruppe der Frage" + +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 -msgid "Person from the question" +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 +msgid "Supplier from the question" +msgstr "Fragesteller" + +#: inc/targetticket.class.php:988 +msgid "Full form" +msgstr "Komplettes Formular" + +#: inc/targetticket.class.php:1035 +msgid "The title cannot be empty!" +msgstr "Der Titel darf nicht ler sein." + +#: inc/targetticket.class.php:1041 +msgid "The description cannot be empty!" +msgstr "Die Beschreibung darf nicht leer sein." + +#: inc/fields/radios-field.class.php:48 +msgid "Radios" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "GLPI Objekt" +msgstr[1] "GLPI Objekte" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 -msgid "Group from the question" +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" msgstr "" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 -msgid "Supplier from the question" +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" msgstr "" -#: inc/targetticket.class.php:883 -msgid "Full form" +#: inc/fields/float-field.class.php:38 +msgid "Float" msgstr "" -#: inc/targetticket.class.php:927 -msgid "The title cannot be empty!" +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" msgstr "" -#: inc/targetticket.class.php:933 -msgid "The description cannot be empty!" +#: inc/fields/integer-field.class.php:38 +msgid "Integer" msgstr "" -#: inc/wizard.class.php:83 -msgid "Seek assistance" +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" msgstr "" -#: inc/wizard.class.php:87 -msgid "My requests for assistance" +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" msgstr "" -#: inc/wizard.class.php:98 -msgid "Book an asset" +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" msgstr "" -#: inc/wizard.class.php:105 -msgid "Consult feeds" +#: inc/fields/text-field.class.php:32 +msgid "Text" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Sind Sie sich sicher, dass Sie diese Anfrage löschen möchten?" +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Sind Sie sich sicher, dass Sie diesen Abschnitt löschen möchten?" +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Sind Sie sich sicher, dass Sie dieses Ziel löschen möchten?" +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 +msgid "Seek assistance" +msgstr "Hilfe holen" + +#: inc/wizard.class.php:73 inc/wizard.class.php:74 +msgid "My requests for assistance" +msgstr "Meine Hilfsanfragen" + +#: inc/wizard.class.php:85 inc/wizard.class.php:86 +msgid "Book an asset" +msgstr "Asset buchen" + +#: inc/wizard.class.php:94 inc/wizard.class.php:95 +msgid "Consult feeds" +msgstr "Feeds zu Rate ziehen" + +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "einzelne Person" + +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "einzelne Gruppe" + +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Knowlagebase-Kategorie" + +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "erforderlich" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Fragestellung erstellen" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Sektion hinzufügen" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Feldtyp bitte eingeben" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Die Sektion ist notwendig" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "Dieses Feld muss ausgefüllt werden:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Ein Beschreibungsfeld sollte eine Beschreibung beinhalten" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "LDAP-Information konnte nich wiederhergestellt werden!" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Beschreibung" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Homepage" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Zugriff" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Alle Sprachen" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "direkter Zugriff auf die Homepage" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Muss validiert werden?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Standardformular im Servicesatalog" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Kategorie" +msgstr[1] "Kategorien" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "- Alle anzeigen -" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "sortieren nach: Beliebtheit" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "sortieren nach: Alphabet" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Bitte beschreiben Sie hier Ihre Anforderung" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Meine letzten Formulare (Anforderer)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "bisher kein Formular angelegt" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Alle Formulare (Anforderer)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Meine letzten Formulare (Genehmiger)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "bisher wartet kein Formular auf eine Genehmigung" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Alle Formulare (Genehmiger)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Genehmiger auswählen" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Du musst einen Genehmiger auswählen!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "duplizieren" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Furmular wurde dupliziert: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Formular wurde übertragen: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Problem" +msgstr[1] "Probleme" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Fragestellung bearbeiten" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "leere anzeigen" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Je eine Zeile pro Eintrag" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Werte" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "eine pro Zeile" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filter" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Merkmale" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Reichweite" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "nachträgliche Genehmigung" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "reguläre Bezeichnung" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Geben Sie weitere Überprüfungsparameter in der Beschreibung an um den Benutzern bei der Beantwortung der Frage zu helfen." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Feld anzeigen" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "immer angezeigt" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "versteckt, es sei denn" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "angezeigt, es sei denn" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Sektion editieren" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formulare ohne Kategorie" diff --git a/locales/en_GB.mo b/locales/en_GB.mo index 7e5577b48..2bd91d161 100644 Binary files a/locales/en_GB.mo and b/locales/en_GB.mo differ diff --git a/locales/en_GB.po b/locales/en_GB.po index ad6b6c50f..f67556213 100644 --- a/locales/en_GB.po +++ b/locales/en_GB.po @@ -1,6 +1,6 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Jérémy MOREAU , 2014-2016 @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:52+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,167 +19,71 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Header" -msgstr[1] "Headers" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Form category" -msgstr[1] "Form categories" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Form" msgstr[1] "Forms" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Forms waiting for validation" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Forms without category" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Add a question" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Edit a question" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Section" -msgstr[1] "Sections" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "GLPI object" -msgstr[1] "GLPI objects" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Required" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Show empty" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "One per line for lists" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Values" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "One per line" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filter" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Attribute" - -#: ajax/question.php:269 -msgid "Range" -msgstr "Range" - -#: ajax/question.php:273 -msgid "Min" -msgstr "Min" - -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Additional validation" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Regular expression" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Specify the additional validation conditions in the description of the question to help users." +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Show field" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Always displayed" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Hidden unless" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Are you sure you want to delete this question?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Displayed unless" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Are you sure you want to delete this section?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Add a section" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Are you sure you want to delete this destination:" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Edit a sectio" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Show All Items" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Add a destination" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "didn't match any item" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "A category already exists with the same name! Category creation failed." +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "A required field is empty:" -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Form Creator" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Form list" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "An header already exists for this entity! You can have only one header per entity." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Form Creator" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -189,332 +93,283 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Answer" -msgstr[1] "Answers" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "An header already exists for this entity! You can have only one header per entity." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "A category already exists with the same name! Category creation failed." -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Forms waiting for validation" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Header" +msgstr[1] "Headers" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Form category" +msgstr[1] "Form categories" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Target" +msgstr[1] "Targets" + +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Access type" + +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Public access" + +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Private access" + +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Restricted access" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" msgstr "" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" msgstr "" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "A required field is empty:" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Add an header" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "An header exists for a parent entity! Another header will overwrite the previous one." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Form answer" msgstr[1] "Form answers" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Requester" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Validator" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "waiting" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "accepted" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "refused" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Form accepted by validator." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Form successfully saved." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Comment" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Required if refused" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Refuse" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Accept" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Refused comment is required!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Cannot generate targets!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Form data" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Description" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Homepage" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Access" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "All langages" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Public access" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Private access" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Restricted access" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Direct access on homepage" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Need to be validate?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" msgstr "" -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" - -#: inc/form.class.php:528 -msgid "see all" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" msgstr "" -#: inc/form.class.php:545 -msgid "Popularity sort" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" msgstr "" -#: inc/form.class.php:549 -msgid "Alphabetic sort" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" msgstr "" -#: inc/form.class.php:710 -msgid "Please, describe your need here" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" msgstr "" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "My last forms (requester)" - -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "No form posted yet" - -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "All my forms (requester)" - -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "My last forms (validator)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Destination" +msgstr[1] "Destinations" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "No form waiting for validation" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Destination" +msgstr[1] "Destinations" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "All my forms (validator)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Delete" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Choose a validator" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Add a destination" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "The name cannot be empty!" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "You must select a validator!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Duplicate" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Form duplicated: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Form Transfered: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Target" -msgstr[1] "Targets" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Access type" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Add an header" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "The type cannot be empty!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "An header exists for a parent entity! Another header will overwrite the previous one." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Section" +msgstr[1] "Sections" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "The title is required" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "The form as been saved" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "A form need to be validate" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "The form is refused" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "The form is accepted" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "The form is deleted" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Form #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Form name" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Full form answers" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Refused comment" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Validation link" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Request #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "A form has been created" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "A form from GLPI need to be validate" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 " 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##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -522,288 +377,561 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." msgstr "" -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "" -#: inc/notificationtargetformanswer.class.php:122 +#: inc/notificationtargetform_answer.class.php:122 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." -msgstr "" - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Question" -msgstr[1] "Questions" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Delete" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "The title is required" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "The field type is required" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "The section is required" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "The field value is required:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "A description field should have a description:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "Cannot recover LDAP informations!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Destination" -msgstr[1] "Destinations" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Destination" -msgstr[1] "Destinations" +msgstr "" -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "The type cannot be empty!" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Answer" +msgstr[1] "Answers" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "The form entity" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Default entity of the validator" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Specific entity" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Default entity of a user type question answer" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "From a GLPI object > Entity type question answer" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Tags from questions" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Specific tags" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Tags from questions and specific tags" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Tags from questions or specific tags" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "equals to the answer to the question" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "calculated from the ticket creation date" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "calculated from the answer to the question" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Target ticket" msgstr[1] "Target tickets" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Edit a destination" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Ticket title" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Question" +msgstr[1] "Questions" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "User type question" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Entity type question" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Ticket tags" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Tags" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Add validation message as first ticket followup" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Cancel" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Ticket actors" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Form requester" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Form validator" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Specific person" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Person from the question" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Specific group" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Group from the question" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Specific supplier" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Supplier from the question" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Full form" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "The title cannot be empty!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "The description cannot be empty!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "Radios" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "GLPI object" +msgstr[1] "GLPI objects" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "This is not a number:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "The following number must be greater than %d:" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "The following number must be lower than %d:" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "Specific format does not match:" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "Float" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "This is not an integer:" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "Integer" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "The text is too short (minimum %d characters):" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "The text is too long (maximum %d characters):" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "Textarea" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Text" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "This is not a valid e-mail:" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Date & time" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "The following question needs of at least %d answers:" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "The following question does not accept more than %d answers:" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "Multiselect" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "A required file is missing:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "LDAP Select" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Select" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "Checkboxes" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Show All Items" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "didn't match any item" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Specific person" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Specific group" + +#: inc/category.class.php:39 +msgid "Knowbase category" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Required" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Add a question" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Add a section" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "The field type is required" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "The section is required" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "The field value is required:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "A description field should have a description:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Cannot recover LDAP informations!" + +#: inc/form.class.php:60 +msgid "Import forms" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/form.class.php:94 +msgid "Description" +msgstr "Description" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Homepage" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Access" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "All langages" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Direct access on homepage" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Need to be validate?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "" +msgstr[1] "" + +#: inc/form.class.php:536 +msgid "see all" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Are you sure you want to delete this question?" +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Are you sure you want to delete this section?" +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Are you sure you want to delete this destination:" +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "My last forms (requester)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "No form posted yet" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "All my forms (requester)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "My last forms (validator)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "No form waiting for validation" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "All my forms (validator)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Choose a validator" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "You must select a validator!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Duplicate" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Form duplicated: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Form Transfered: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "" +msgstr[1] "" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Edit a question" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Show empty" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "One per line for lists" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Values" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "One per line" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filter" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Attribute" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Range" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Additional validation" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Regular expression" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Specify the additional validation conditions in the description of the question to help users." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Show field" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Always displayed" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Hidden unless" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Displayed unless" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Edit a sectio" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Forms without category" diff --git a/locales/en_US.mo b/locales/en_US.mo index 9317e0a0a..4ef6cdf8e 100644 Binary files a/locales/en_US.mo and b/locales/en_US.mo differ diff --git a/locales/en_US.po b/locales/en_US.po index a7fd423e0..c16744055 100644 --- a/locales/en_US.po +++ b/locales/en_US.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: English (United States) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/en_US/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,19 +17,19 @@ msgstr "" "Language: en_US\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "" msgstr[1] "" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -37,8 +37,8 @@ msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "" @@ -55,7 +55,7 @@ msgid "Edit a question" msgstr "" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "" @@ -137,11 +137,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "" @@ -154,7 +154,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -162,8 +162,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -187,7 +187,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "" @@ -221,200 +221,213 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +441,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +534,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +554,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +566,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +603,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +671,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +803,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/es_419.mo b/locales/es_419.mo index 9900b6339..54cb3a2a4 100644 Binary files a/locales/es_419.mo and b/locales/es_419.mo differ diff --git a/locales/es_419.po b/locales/es_419.po index 31406c64d..d23025916 100644 --- a/locales/es_419.po +++ b/locales/es_419.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/es_419/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,19 +17,19 @@ msgstr "" "Language: es_419\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "" msgstr[1] "" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -37,8 +37,8 @@ msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "" @@ -55,7 +55,7 @@ msgid "Edit a question" msgstr "" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "" @@ -137,11 +137,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "" @@ -154,7 +154,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -162,8 +162,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -187,7 +187,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "" @@ -221,200 +221,213 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +441,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +534,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +554,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +566,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +603,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +671,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +803,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/es_AR.mo b/locales/es_AR.mo index 30556bfc3..5e0d83ae6 100644 Binary files a/locales/es_AR.mo and b/locales/es_AR.mo differ diff --git a/locales/es_AR.po b/locales/es_AR.po index 60ae82083..454b6360a 100644 --- a/locales/es_AR.po +++ b/locales/es_AR.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,19 +19,19 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "Encabezado" msgstr[1] "Encabezados" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "Categoría de formulario" msgstr[1] "Categorías de formularios" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -39,8 +39,8 @@ msgid_plural "Forms" msgstr[0] "Formulario" msgstr[1] "Formularios" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "Formulario en espera para la validación" @@ -57,7 +57,7 @@ msgid "Edit a question" msgstr "Editar pregunta" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "Sección" @@ -139,11 +139,11 @@ msgstr "Oculto amenos que" msgid "Displayed unless" msgstr "Mostrar al menos que" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "Agregar sección" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "Editar sección" @@ -156,7 +156,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "Una categoría ya existe con el mismo nombre! Falló la creación" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -164,8 +164,8 @@ msgstr "Una categoría ya existe con el mismo nombre! Falló la creación" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -189,7 +189,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "Respuesta" @@ -223,200 +223,213 @@ msgstr "" msgid "A required field is empty:" msgstr "Campo obligatorio vacío:" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "Solicitante" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "Autorizante" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "esperando" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "aceptado" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "rechazado" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Rechazo" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "Datos del formulario" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "Pagina de inicio" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "Acceso" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "Acceso público" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "Acceso privado" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "Acceso restringido" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "¿Necesita autorización?" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "Mis últimos formularios (solicitante)" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "Todos mis formularios (solicitante)" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "Todos mis formularios (autorizante)" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "Todos mis formularios (autorizante)" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "Elegir autorizante" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "Duplicado" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "Destino" msgstr[1] "Destinos" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "Tipo de acceso" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -430,7 +443,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -523,7 +536,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -543,8 +556,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "Pregunta" @@ -555,28 +568,28 @@ msgstr[1] "Preguntas" msgid "Delete" msgstr "Borrar" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "Se requiere el título" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "Se requiere campo tipo" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "Se requiere la sección" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "Valor de campo obligatorio:" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "No se puede recuperar información LDAP" @@ -592,7 +605,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "El tipo no puede esta vacío" @@ -660,118 +673,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Requerimiento destino" msgstr[1] "Requerimientos destinos" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "Editar destino" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "Título del requerimiento" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "Cancelar" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "Involucrados en el requerimiento" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "Solicitante del formulario" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "Autoriza el formulario" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "Persona específica" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "Grupo específico" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "Proveedor específico" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "Formulario completo" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -780,30 +805,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/es_CL.mo b/locales/es_CL.mo index 0a9f5ed6c..063f38a74 100644 Binary files a/locales/es_CL.mo and b/locales/es_CL.mo differ diff --git a/locales/es_CL.po b/locales/es_CL.po index dfcef14e8..1fb20072d 100644 --- a/locales/es_CL.po +++ b/locales/es_CL.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Spanish (Chile) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,19 +17,19 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "" msgstr[1] "" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -37,8 +37,8 @@ msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "" @@ -55,7 +55,7 @@ msgid "Edit a question" msgstr "" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "" @@ -137,11 +137,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "" @@ -154,7 +154,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -162,8 +162,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -187,7 +187,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "" @@ -221,200 +221,213 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +441,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +534,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +554,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +566,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +603,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +671,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +803,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/es_ES.mo b/locales/es_ES.mo index 34d47ef55..7ae455dde 100644 Binary files a/locales/es_ES.mo and b/locales/es_ES.mo differ diff --git a/locales/es_ES.po b/locales/es_ES.po index c1524d2d5..69bb93562 100644 --- a/locales/es_ES.po +++ b/locales/es_ES.po @@ -1,17 +1,17 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alexander J. Salas B. , 2016 +# Alexander J. Salas B. , 2016 # Nuria Costa , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:51+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,167 +19,71 @@ msgstr "" "Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Encabezado" -msgstr[1] "Encabezados" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Formulario de categoría" -msgstr[1] "Formulario de categorias" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulario" msgstr[1] "Formularios" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Formularios esperando validación" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Formularios sin categoría" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Agregar una pregunta" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Editar una pregunta" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Sección" -msgstr[1] "Secciones " - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "Objeto GLPI" -msgstr[1] "Objetos GLPI" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Requerido" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Mostrar vacío" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Uno por línea de listas" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Valores" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "Uno por línea" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filtro" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Atributo" - -#: ajax/question.php:269 -msgid "Range" -msgstr "Rango" - -#: ajax/question.php:273 -msgid "Min" -msgstr "Min" - -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Validación adicional" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Expresión regular" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Especificar las condiciones de validación adicionales en la descripción de la pregunta para ayudar a los usuarios." +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Mostrar campo " +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Siempre desplegado" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Oculto a menos" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "¿Está seguro de que quiere eliminar esta pregunta?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Desplegado a menos" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "¿Está seguro de que quiere eliminar esta sección?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Agregar sección" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "¿Está seguro de que quiere eliminar este destino?" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Editar sección" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Mostrar todos los Items" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Agregar destino" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "No se encontró ningún elemento" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "¡Una categoría ya existe con el mismo nombre! Error en la creación categoría." +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Un campo requerido está vacío:" -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Creador de Formulario" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Lista de formulario" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "¡Una cabecera ya existe para esta entidad! Sólo puede incluir un encabezado por entidad." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Creador de Formulario" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -189,332 +93,283 @@ msgstr "¡La pregunta ha sido guardada con éxito!" msgid "The question has been successfully updated!" msgstr "¡La pregunta ha sido actualizada con éxito!" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Respuesta" -msgstr[1] "Respuestas" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "¡Una cabecera ya existe para esta entidad! Sólo puede incluir un encabezado por entidad." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "¡Una categoría ya existe con el mismo nombre! Error en la creación categoría." -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Formularios esperando validación" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Encabezado" +msgstr[1] "Encabezados" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Formulario de categoría" +msgstr[1] "Formulario de categorias" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Objetivo" +msgstr[1] "Objetivos" + +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Tipo de accesos" + +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Acceso público" + +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Acceso privado" + +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Acceso restringido" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" msgstr "" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" msgstr "" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Un campo requerido está vacío:" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Agregar un encabezado" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "¡Existe una cabecera para una entidad matriz! Otra cabecera sobrescribirá la anterior." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Formulario de respuesta" msgstr[1] "Formulario de respuestas" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Solicitante" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Validador" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "esperando" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "aceptado" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "negado" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Formulario aceptado y validado" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Formulario guardado exitosamente." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Comentario" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Se requiere si se negó" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Denegado" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Aceptado" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "¡Comentario denegado es requerido!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "¡No se puede generar objetivos!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "¡El formulario ha sido guardado exitosamente!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Datos del formulario" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Descripción" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Página principal" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Acceso" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Todos los lenguajes" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Acceso público" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Acceso privado" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Acceso restringido" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Acceso directo a la página principal" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "¿Necesita ser validado?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" msgstr "" -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" - -#: inc/form.class.php:528 -msgid "see all" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" msgstr "" -#: inc/form.class.php:545 -msgid "Popularity sort" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" msgstr "" -#: inc/form.class.php:549 -msgid "Alphabetic sort" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" msgstr "" -#: inc/form.class.php:710 -msgid "Please, describe your need here" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" msgstr "" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Mis últimos formularios (solicitante)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Destino" +msgstr[1] "Destinos" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Formulario no publicado aún" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Destino" +msgstr[1] "Destinos" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Todos mis formularios (solicitante)" - -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Mis últimos formularios (validador)" - -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "No formulario esperando por validación" - -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Todos mis formularios (validador)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Eliminar" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Elija un validador" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Agregar destino" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "¡El nombre no puede estar vacío!" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "¡Debes seleccionar validador!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Duplicado" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Formulario duplicado: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Formulario Transferido: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Objetivo" -msgstr[1] "Objetivos" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Tipo de accesos" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Agregar un encabezado" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "¡El tipo no puede estar vacío!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "¡Existe una cabecera para una entidad matriz! Otra cabecera sobrescribirá la anterior." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Sección" +msgstr[1] "Secciones " -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "El título es requerido" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "El formulario ha sido guardado" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "Un formulario necesita ser validado" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "El formulario está rechazado" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "El formulario es aceptado" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "El formulario es eliminado" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Formulario #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Formulario nombre" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Respuestas del formulario completas" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Comentario negado" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Vinculo de validación" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Solicitud #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "El formulario ha sido creado" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "Tu solicitud ha sido guardada" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " "see your answers onto the following link:\\n##formcreator.validation_link##" msgstr "Hola,\\nTu solicitud desde GLPI haber sido guardada con éxito con el número ##formcreator.request_id## y transmitida al equipo de asistencia.\\nTu puedes ver sus respuestas en el siguiente enlace:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Un formulario GLPI necesita ser validado" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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,\\n Un formulario desde GLPI necesita ser validado y usted ha sido elegido como el validador.\\nUsted puede acceder a él haciendo clic en este enlace:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "Su formulario ha sido rechazado por el validador" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -522,288 +377,561 @@ msgid "" "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 el motivo a continuación:\\n##formcreator.validation_comment##\\n\\nUsted puede todavía modificarlo y volver a enviarlo haciendo clic en este enlace:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Su formulario ha sido aceptado por el validador" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 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 de que su formulario ha sido aceptado por el validador.\\n Su solicitud será considerada pronto." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "Tu formulario ha sido eliminado por un administrador" -#: inc/notificationtargetformanswer.class.php:122 +#: inc/notificationtargetform_answer.class.php:122 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." -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Pregunta" -msgstr[1] "Preguntas" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Eliminar" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "El título es requerido" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "El campo tipo es requerido" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "La sección es requerida" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "El campo valor es requerido:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "El campo descripción debe tener una descripción:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "¡No se puede recuperar la información de LDAP!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Destino" -msgstr[1] "Destinos" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Destino" -msgstr[1] "Destinos" - -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "¡El tipo no puede estar vacío!" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Respuesta" +msgstr[1] "Respuestas" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Entidad activa actual" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Entidad por defecto del solicitante" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "Primera entidad dinámica del solicitante (orden alfabético)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Última entidad dinámica del solicitante (orden alfabético)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Entidad del formulario" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Entidad por defecto del validador" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Entidad específica " -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Entidad por defecto de una pregunta de respuesta del tipo de usuario" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "Desde un objeto GLPI > Tipo de entidad pregunta respuesta" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Etiquetas desde preguntas" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Etiquetas específicas" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Etiquetas desde preguntas y etiquetas específicas" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Etiquetas desde preguntas o etiquetas específicas" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "es igual la respuesta a la pregunta" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "calculada a partir de la fecha de creación del ticket" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "calculada a partir de la respuesta del ticket" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Ticket objetivo" msgstr[1] "Tickets objetivos" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Editar un destino" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Título del ticket" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Pregunta" +msgstr[1] "Preguntas" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Pregunta tipo usuario" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Pregunta tipo entidad" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Etiquetas de ticket" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Etiquetas" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Agregar validación de mensaje como primer ticker de seguimiento" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Cancelar" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Actores del ticket" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Desde el solicitante" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Desde el validador" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Persona específica" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Persona desde la pregunta" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Grupo específico" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Grupo desde la pregunta" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Proveedor específico" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Proveedor desde la pregunta" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Formulario lleno" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "¡El título no puede estar vacío!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "¡La descripción no puede estar vacía!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Objeto GLPI" +msgstr[1] "Objetos GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Mostrar todos los Items" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "No se encontró ningún elemento" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Persona específica" + +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Grupo específico" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/category.class.php:39 +msgid "Knowbase category" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Requerido" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Agregar una pregunta" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Agregar sección" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "El campo tipo es requerido" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "La sección es requerida" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "El campo valor es requerido:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "El campo descripción debe tener una descripción:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "¡No se puede recuperar la información de LDAP!" + +#: inc/form.class.php:60 +msgid "Import forms" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/form.class.php:94 +msgid "Description" +msgstr "Descripción" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Página principal" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Acceso" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Todos los lenguajes" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Acceso directo a la página principal" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "¿Necesita ser validado?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "" +msgstr[1] "" + +#: inc/form.class.php:536 +msgid "see all" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "¿Está seguro de que quiere eliminar esta pregunta?" +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "¿Está seguro de que quiere eliminar esta sección?" +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "¿Está seguro de que quiere eliminar este destino?" +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Mis últimos formularios (solicitante)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Formulario no publicado aún" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Todos mis formularios (solicitante)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Mis últimos formularios (validador)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "No formulario esperando por validación" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Todos mis formularios (validador)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Elija un validador" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "¡Debes seleccionar validador!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Duplicado" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Formulario duplicado: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Formulario Transferido: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "" +msgstr[1] "" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Editar una pregunta" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Mostrar vacío" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Uno por línea de listas" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Valores" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Uno por línea" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filtro" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Atributo" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Rango" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Validación adicional" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Expresión regular" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Especificar las condiciones de validación adicionales en la descripción de la pregunta para ayudar a los usuarios." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Mostrar campo " + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Siempre desplegado" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Oculto a menos" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Desplegado a menos" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Editar sección" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formularios sin categoría" diff --git a/locales/es_MX.mo b/locales/es_MX.mo index 17fac5645..e9c51ee3c 100644 Binary files a/locales/es_MX.mo and b/locales/es_MX.mo differ diff --git a/locales/es_MX.po b/locales/es_MX.po index 1c56473dc..3f6bfbb83 100644 --- a/locales/es_MX.po +++ b/locales/es_MX.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,19 +17,19 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "" msgstr[1] "" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -37,8 +37,8 @@ msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "" @@ -55,7 +55,7 @@ msgid "Edit a question" msgstr "" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "" @@ -137,11 +137,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "" @@ -154,7 +154,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -162,8 +162,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -187,7 +187,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "" @@ -221,200 +221,213 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +441,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +534,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +554,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +566,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +603,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +671,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +803,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/fr_FR.mo b/locales/fr_FR.mo index 405de8d7d..a3b64885f 100644 Binary files a/locales/fr_FR.mo and b/locales/fr_FR.mo differ diff --git a/locales/fr_FR.po b/locales/fr_FR.po index dc16f6a80..7c2c994b8 100644 --- a/locales/fr_FR.po +++ b/locales/fr_FR.po @@ -1,19 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # alexandre delaunay , 2016 # alexandre delaunay , 2016 # Jérémy MOREAU , 2014-2016 # Jérémy MOREAU , 2014 +# Johan Cwiklinski , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 08:00+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 16:13+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: French (France) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,167 +22,71 @@ msgstr "" "Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Entête" -msgstr[1] "Entêtes" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Catégorie de formulaire" -msgstr[1] "Catégories de formulaire" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulaire" msgstr[1] "Formulaires" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Formulaire en attente de validation" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Formulaire(s) sans catégorie" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Ajouter une question" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Modifier une question" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Section" -msgstr[1] "Sections" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "Objet GLPI" -msgstr[1] "Objets GLPI" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Champ obligatoire" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Afficher une valeur vide" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Une par ligne pour les listes" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Valeurs" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "Une par ligne" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filtre" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Attribut" - -#: ajax/question.php:269 -msgid "Range" -msgstr "Taille" - -#: ajax/question.php:273 -msgid "Min" -msgstr "Min" - -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Validation supplémentaire" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Expression rationnelle" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Indiquez les conditions de validation supplémentaire dans la description de la question pour aider les utilisateurs." +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Aucun formulaire trouvé. Merci de choisir à la place un formulaire ci dessous" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Affichage du champ" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Une erreur est survenue pendant la recherche de formulaires" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Toujours visible" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "Pas encore de formulaire dans cette catégorie" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Masqué par défaut, sauf si" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Êtes-vous sûr de vouloir supprimer cette question ?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Affiché par défaut, sauf si" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Êtes-vous sûr de vouloir supprimer cette section ?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Ajouter une section" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Êtes-vous sûr de vouloir supprimer la destination suivante :" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Modifier une section" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Afficher tous les éléments" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Ajouter une destination" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "ne correspond à aucun élément" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "Une catégorie existe déjà avec ce nom ! Création impossible." +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Un champ obligatoire est vide :" -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "Catalogue de service" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Formcreator" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Liste des formulaires" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "Une entête existe déjà pour cette entité ! Vous ne pouvez avoir qu'une seule entête par entité." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Formcreator" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -191,332 +96,283 @@ msgstr "La question a été sauvegardée avec succès !" msgid "The question has been successfully updated!" msgstr "La question a été mise à jour avec succès !" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Réponse" -msgstr[1] "Réponses" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Une entête existe déjà pour cette entité ! Vous ne pouvez avoir qu'une seule entête par entité." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "Catégorie de la base de connaissance" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "Une catégorie existe déjà avec ce nom ! Création impossible." -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "Assistance" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Formulaire en attente de validation" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "Assistance de glpi" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Entête" +msgstr[1] "Entêtes" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "Catalogue de service simplifié" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Catégorie de formulaire" +msgstr[1] "Catégories de formulaire" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "Catalogue de service étendu" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Cible" +msgstr[1] "Cibles" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "Mode d'assistance" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Accès" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Un champ obligatoire est vide :" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Accès public / anonyme" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Utilisateur GLPI authentifié" + +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Droits restreints (profils)" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Lien vers le formulaire" + +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Merci d'activer le formulaire pour voir le lien" + +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Ajouter une entête" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Une entête existe pour une entité parente ! Ajouter une entête remplacera la précédente pour cette entité." + +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Formulaire saisi" msgstr[1] "Formulaires saisis" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Demandeur" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Valideur" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "en attente" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "accepté" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "refusé" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Formulaire accepté par le valideur." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Formulaire sauvegardé avec succès" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Commentaire" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Obligatoire en cas de refus" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Refuser" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Accepter" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Le commentaire de refus est obligatoire !" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Impossible de générer les destinations !" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Le formulaire a été sauvegardé avec succès !" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "Vous n'êtes pas validateur pour ces réponses" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Données du formulaire" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Description" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Page d'accueil" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Accès" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Toutes les langues" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Accès public / anonyme" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Utilisateur GLPI authentifié" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Droits restreints (profils)" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Accès direct depuis la page d'accueil" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Validation requise ?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "Formulaire par défaut dans le catalogue de service" - -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "Catégorie" -msgstr[1] "Catégories" - -#: inc/form.class.php:528 -msgid "see all" -msgstr "Voir tous" - -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "Tri par popularité" - -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "Tri alphabétique" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Assistance" -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "Merci de décrire votre besoin ici" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "Assistance de glpi" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Mes derniers formulaires (Demandeur)" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Catalogue de service simplifié" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Aucun formulaire saisi pour le moment" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Catalogue de service étendu" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Tous mes formulaires (Demandeur)" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Mode d'assistance" -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Mes derniers formulaires (Valideur)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Destination" +msgstr[1] "Destinations" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "Aucun formulaire en attente de validation" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Destination" +msgstr[1] "Destinations" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Tous mes formulaires (Valideur)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Supprimer" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Choisissez un valideur" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Ajouter une destination" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "Le nom ne doit pas être vide !" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Vous devez choisir un valideur !" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "COPIE" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Formulaire duppliqué : %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Formulaire transféré : %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Cible" -msgstr[1] "Cibles" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Accès" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "Lien vers le formulaire" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "Merci d'activer le formulaire pour voir le lien" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Ajouter une entête" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Le type ne doit pas être vide !" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Une entête existe pour une entité parente ! Ajouter une entête remplacera la précédente pour cette entité." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Section" +msgstr[1] "Sections" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "Requête" -msgstr[1] "Requêtes" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "L'intitulé est obligatoire" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "Le formulaire a été sauvegardé" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "Un formulaire est en attente de validation" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Le formulaire a été refusé" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Le formulaire a été accepté" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Le formulaire a été supprimé" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Formulaire N°" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Nom du formulaire" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Formulaire complet" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Commentaire de refus" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Lien de validation" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Demande N°" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Une demande a été faite à partir d'un formulaire" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" -msgstr "\"Votre demande a été sauvegardée avec succès !" +msgstr "Votre demande a été sauvegardée avec succès !" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "Bonjour,\\\\nVotre formulaire de demande a été sauvegardé avec succès sous le numéro ##formcreator.request_id## et transmis à l’équipe support.\\\\nVous pouvez visualiser vos réponses à l'adresse suivante :\\\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Un formulaire GLPI est en attente de validation" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Bonjour,\\nUn formulaire GLPI est en attente de validation et vous avez été choisi comme valideur.\\nVous pouvez accéder à celui-ci en cliquant sur le lien ci-dessous :\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "otre formulaire a été refusé par le valideur" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -524,288 +380,561 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Bonjour,\\\\nNous somme désolé de vous informer que votre demande a été refusé par le valideur pour les raisons suivantes :\\\\n##formcreator.validation_comment##\\\\n\\\\nVous pouvez toutefois modifier et renvoyer votre demande en cliquant sur le lien ci-dessous :\\\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Votre formulaire a été accepté par le valideur" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." 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." -#: inc/notificationtargetformanswer.class.php:121 -msgid "Your form has been deleted by an administrator" -msgstr "Votre formulaire a été supprimé par un administrateur" - -#: inc/notificationtargetformanswer.class.php:122 -msgid "" -"Hi,\\nWe are sorry to inform you that your request cannot be considered and " -"has been deleted by an administrator." -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." - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Question" -msgstr[1] "Questions" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Supprimer" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "L'intitulé est obligatoire" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "Le type de champ est obligatoire" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "La section est obligatoire" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "La valeur du champ est obligatoire :" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "Un champ de type description doit avoir une description :" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "Récupération des données de l'annuaire LDAP impossible !" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Destination" -msgstr[1] "Destinations" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Destination" -msgstr[1] "Destinations" +#: inc/notificationtargetform_answer.class.php:121 +msgid "Your form has been deleted by an administrator" +msgstr "Votre formulaire a été supprimé par un administrateur" -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "Le type ne doit pas être vide !" +#: inc/notificationtargetform_answer.class.php:122 +msgid "" +"Hi,\\nWe are sorry to inform you that your request cannot be considered and " +"has been deleted by an administrator." +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." + +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Réponse" +msgstr[1] "Réponses" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Entité active" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Entité par défaut du demandeur" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "Première entité dynamique du demandeur (alphabétiquement)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Dernière entité dynamique du demandeur (alphabétiquement)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Entité du formulaire" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Entité par défaut du valideur" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Entité spécifique" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Entité par défaut d'un utilisateur issue d'une question" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "Entité issue d'une question" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Étiquettes depuis les questions" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Étiquettes spécifiques" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Étiquettes depuis les questions et spécifiques" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Étiquettes depuis les questions ou spécifiques" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "égale à la réponse à la question" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "calculée à partir de la date de création du ticket" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "calculée à partir de la réponse à la question" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "Urgence à partir du gabarit ou Moyen" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "Égale à la réponse à la question" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Ticket cible" msgstr[1] "Tickets cible" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Modifier une destination" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Titre du ticket" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Question" +msgstr[1] "Questions" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Question de type \"utilisateur\"" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Question de type \"entité\"" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Étiquettes du ticket" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Étiquettes" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Ajouter le message de validation en premier suivi du ticket" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Annuler" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Acteurs du ticket" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Demandeur du formulaire" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Valideur du formulaire" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Personne spécifique" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Personne depuis la question" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Groupe spécifique" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Groupe depuis la question" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Fournisseur spécifique" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "Acteurs depuis la question" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Fournisseur depuis la question" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Formulaire complet" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "Le titre ne doit pas être vide !" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "La desciption ne doit pas être vide !" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "Boutons radio" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Objet GLPI" +msgstr[1] "Objets GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "Ce n'est pas un nombre:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "Le nombre suivant doit être supérieur à %d" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "Le nombre suivant doit être inférieur à %d" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "Le format spécifique ne correspond pas:" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "Flottant" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "Ce n'est pas un entier:" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "Entier" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "Le texte est trop court (minimum de %d caractères):" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "Le teste est trop long (maximum de %d caractères):" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "Zone de texte" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Texte" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "Ce n'est pas une adresse email valide:" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "Acteur" +msgstr[1] "Acteurs" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Date et heure" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "Etiquette" +msgstr[1] "Etiquettes" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "LA question suivante requiert au moins %d réponses" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "La question suivante n'accepte pas plus de %d réponses" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "Sélection multiple" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "Un fichier requis est manquant:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "Sélection LDAP" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Sélection" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "Boites à cocher" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "Demander une assistance" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "Mes demandes d'assistance" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "Réserver un matériel" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "Consulter les flux RSS" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Afficher tous les éléments" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "À valider" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "ne correspond à aucun élément" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "Fermé" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "Retour" +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Personne spécifique" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" -msgstr "Aucun formulaire trouvé. Merci de choisir à la place un formulaire ci dessous" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Groupe spécifique" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" -msgstr "Une erreur est survenue pendant la recherche de formulaires" +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Catégorie de la base de connaissance" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" -msgstr "Pas encore de formulaire dans cette catégorie" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Champ obligatoire" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Êtes-vous sûr de vouloir supprimer cette question ?" +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Ajouter une question" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Êtes-vous sûr de vouloir supprimer cette section ?" +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Ajouter une section" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Êtes-vous sûr de vouloir supprimer la destination suivante :" +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Le type de champ est obligatoire" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "La section est obligatoire" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "La valeur du champ est obligatoire :" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Un champ de type description doit avoir une description :" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Récupération des données de l'annuaire LDAP impossible !" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "Import de formulaires" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Description" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Page d'accueil" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Accès" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Toutes les langues" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Accès direct depuis la page d'accueil" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Validation requise ?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Formulaire par défaut dans le catalogue de service" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Catégorie" +msgstr[1] "Catégories" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "Voir tous" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "Tri par popularité" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "Tri alphabétique" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Merci de décrire votre besoin ici" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Mes derniers formulaires (Demandeur)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Aucun formulaire saisi pour le moment" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Tous mes formulaires (Demandeur)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Mes derniers formulaires (Valideur)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Aucun formulaire en attente de validation" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Tous mes formulaires (Valideur)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Choisissez un valideur" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Vous devez choisir un valideur !" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "COPIE" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Formulaire duppliqué : %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Formulaire transféré : %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "Formulaire importé avec succès depuis %s" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Requête" +msgstr[1] "Requêtes" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Modifier une question" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Afficher une valeur vide" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Une par ligne pour les listes" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Valeurs" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Une par ligne" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filtre" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Attribut" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Taille" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Validation supplémentaire" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Expression rationnelle" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Indiquez les conditions de validation supplémentaire dans la description de la question pour aider les utilisateurs." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Affichage du champ" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Toujours visible" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Masqué par défaut, sauf si" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Affiché par défaut, sauf si" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Modifier une section" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formulaire(s) sans catégorie" diff --git a/locales/glpi.pot b/locales/glpi.pot index 00ab5e520..2b7878ae0 100644 --- a/locales/glpi.pot +++ b/locales/glpi.pot @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: GLPI - Resources plugin 1.5.0\n" +"Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,219 +18,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "" -msgstr[1] "" - -#: hook.php:58 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "" -msgstr[1] "" - -#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 inc/form.class.php:50 -#: inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 -#: inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" msgstr "" -#: ajax/question.php:28 -msgid "Edit a question" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" msgstr "" -#: ajax/question.php:64 inc/section.class.php:35 inc/targetticket.class.php:941 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "" -msgstr[1] "" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "" -msgstr[1] "" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" msgstr "" -#: ajax/question.php:178 -msgid "Show empty" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" msgstr "" -#: ajax/question.php:196 -msgid "One per line for lists" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" msgstr "" -#: ajax/question.php:223 -msgid "Values" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" msgstr "" -#: ajax/question.php:224 -msgid "One per line" +#: scripts/combobox.js.php:54 +msgid "Show All Items" msgstr "" -#: ajax/question.php:236 -msgid "Filter" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" msgstr "" -#: ajax/question.php:245 -msgid "Attribute" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 inc/fields/date-field.class.php:50 +#: inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" msgstr "" -#: ajax/question.php:269 -msgid "Range" +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 +msgid "Service catalog" msgstr "" -#: ajax/question.php:273 -msgid "Min" +#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 +msgid "Form list" msgstr "" -#: ajax/question.php:279 -msgid "Max" +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" msgstr "" -#: ajax/question.php:303 -msgid "Additional validation" +#: front/question.form.php:15 +msgid "The question has been successfully saved!" msgstr "" -#: ajax/question.php:306 -msgid "Regular expression" +#: front/question.form.php:25 +msgid "The question has been successfully updated!" msgstr "" -#: ajax/question.php:313 +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "" - -#: ajax/question.php:320 -msgid "Show field" -msgstr "" - -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "" - -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "" - -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "" - -#: ajax/section.php:23 inc/question.class.php:222 -msgid "Add a section" -msgstr "" - -#: ajax/section.php:25 -msgid "Edit a section" -msgstr "" - -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" +"An header already exists for this entity! You can have only one header per " +"entity." msgstr "" #: front/category.form.php:13 msgid "A category already exists with the same name! Category creation failed." msgstr "" -#: front/form_answer.form.php:37 front/form_answer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 -msgid "Service catalog" -msgstr "" - -#: front/form_answer.form.php:41 front/form_answer.form.php:46 -#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "" - -#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 -msgid "Form list" -msgstr "" - -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" msgstr "" -#: front/question.form.php:15 -msgid "The question has been successfully saved!" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "" +msgstr[1] "" -#: front/question.form.php:25 -msgid "The question has been successfully updated!" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "" +msgstr[1] "" -#: inc/answer.class.php:35 inc/targetticket.class.php:940 -msgid "Answer" -msgid_plural "Answers" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/category.class.php:39 -msgid "Knowbase category" +#: inc/form_profile.class.php:29 +msgid "Access type" msgstr "" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" msgstr "" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" msgstr "" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" msgstr "" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" +#: inc/form_profile.class.php:44 +msgid "Link to the form" msgstr "" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" msgstr "" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." msgstr "" -#: inc/form_answer.class.php:39 inc/issue.class.php:301 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "" -#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "" @@ -274,554 +213,722 @@ msgstr "" msgid "Refused comment is required!" msgstr "" -#: inc/form_answer.class.php:612 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "" -#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "" -#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 msgid "You are not the validator of these answers" msgstr "" -#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "" -#: inc/form.class.php:60 -msgid "Import forms" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" msgstr "" -#: inc/form.class.php:94 -msgid "Description" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" msgstr "" -#: inc/form.class.php:122 -msgid "Homepage" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" msgstr "" -#: inc/form.class.php:130 -msgid "Access" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 -#: inc/form.class.php:311 -msgid "All langages" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 -msgid "Public access" -msgstr "" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "" +msgstr[1] "" -#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 -msgid "Private access" -msgstr "" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "" +msgstr[1] "" -#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 -msgid "Restricted access" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" msgstr "" -#: inc/form.class.php:296 -msgid "Direct access on homepage" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" msgstr "" -#: inc/form.class.php:323 -msgid "Need to be validate?" +#: inc/target.class.php:119 inc/form.class.php:939 +msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:427 -msgid "Default form in service catalog" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" msgstr "" -#: inc/form.class.php:535 -msgid "Category" -msgid_plural "Categories" +#: inc/section.class.php:35 inc/targetticket.class.php:984 ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:536 -msgid "see all" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" msgstr "" -#: inc/form.class.php:554 -msgid "Popularity sort" +#: inc/notificationtargetform_answer.class.php:12 +msgid "The form as been saved" msgstr "" -#: inc/form.class.php:558 -msgid "Alphabetic sort" +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 +msgid "A form need to be validate" msgstr "" -#: inc/form.class.php:732 -msgid "Please, describe your need here" +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 +msgid "The form is refused" msgstr "" -#: inc/form.class.php:741 -msgid "My last forms (requester)" +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 +msgid "The form is accepted" msgstr "" -#: inc/form.class.php:751 -msgid "No form posted yet" +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 +msgid "The form is deleted" msgstr "" -#: inc/form.class.php:763 -msgid "All my forms (requester)" +#: inc/notificationtargetform_answer.class.php:49 +msgid "Form #" msgstr "" -#: inc/form.class.php:773 -msgid "My last forms (validator)" +#: inc/notificationtargetform_answer.class.php:50 +msgid "Form name" msgstr "" -#: inc/form.class.php:793 -msgid "No form waiting for validation" +#: inc/notificationtargetform_answer.class.php:54 +msgid "Full form answers" msgstr "" -#: inc/form.class.php:805 -msgid "All my forms (validator)" +#: inc/notificationtargetform_answer.class.php:55 +msgid "Refused comment" msgstr "" -#: inc/form.class.php:897 -msgid "Choose a validator" +#: inc/notificationtargetform_answer.class.php:56 +msgid "Validation link" msgstr "" -#: inc/form.class.php:941 inc/target.class.php:119 -msgid "The name cannot be empty!" +#: inc/notificationtargetform_answer.class.php:57 +msgid "Request #" msgstr "" -#: inc/form.class.php:1093 -msgid "You must select validator !" +#: inc/notificationtargetform_answer.class.php:96 +msgid "A form has been created" msgstr "" -#: inc/form.class.php:1318 -msgid "Duplicate" +#: inc/notificationtargetform_answer.class.php:97 +msgid "Your request has been saved" msgstr "" -#: inc/form.class.php:1490 -#, php-format -msgid "Form duplicated: %s" +#: inc/notificationtargetform_answer.class.php:98 +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 "" -#: inc/form.class.php:1501 -#, php-format -msgid "Form Transfered: %s" +#: inc/notificationtargetform_answer.class.php:103 +msgid "A form from GLPI need to be validate" msgstr "" -#: inc/form.class.php:1686 -#, php-format -msgid "Forms successfully imported from %s" +#: inc/notificationtargetform_answer.class.php:104 +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 "" -#: inc/form_profile.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "" -msgstr[1] "" +#: inc/notificationtargetform_answer.class.php:109 +msgid "Your form has been refused by the validator" +msgstr "" -#: inc/form_profile.class.php:29 -msgid "Access type" +#: inc/notificationtargetform_answer.class.php:110 +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 "" -#: inc/form_profile.class.php:44 -msgid "Link to the form" +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 +msgid "Your form has been accepted by the validator" msgstr "" -#: inc/form_profile.class.php:52 -msgid "Please active the form to view the link" +#: inc/notificationtargetform_answer.class.php:116 +msgid "" +"Hi,\\nWe are pleased to inform you that your form has been accepted by the " +"validator.\\nYour request will be considered soon." msgstr "" -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" +#: inc/notificationtargetform_answer.class.php:121 +msgid "Your form has been deleted by an administrator" msgstr "" -#: inc/header.class.php:51 +#: inc/notificationtargetform_answer.class.php:122 msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." +"Hi,\\nWe are sorry to inform you that your request cannot be considered and " +"has been deleted by an administrator." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:187 -msgid "Issue" -msgid_plural "Issues" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" msgstr[0] "" msgstr[1] "" -#: inc/notificationtargetformanswer.class.php:12 -msgid "The form as been saved" +#: inc/targetticket.class.php:21 +msgid "Current active entity" msgstr "" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 -msgid "A form need to be validate" +#: inc/targetticket.class.php:22 +msgid "Default requester user's entity" msgstr "" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 -msgid "The form is refused" +#: inc/targetticket.class.php:23 +msgid "First dynamic requester user's entity (alphabetical)" msgstr "" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 -msgid "The form is accepted" +#: inc/targetticket.class.php:24 +msgid "Last dynamic requester user's entity (alphabetical)" msgstr "" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 -msgid "The form is deleted" +#: inc/targetticket.class.php:25 +msgid "The form entity" msgstr "" -#: inc/notificationtargetformanswer.class.php:49 -msgid "Form #" +#: inc/targetticket.class.php:26 +msgid "Default entity of the validator" msgstr "" -#: inc/notificationtargetformanswer.class.php:50 -msgid "Form name" +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 +msgid "Specific entity" msgstr "" -#: inc/notificationtargetformanswer.class.php:54 -msgid "Full form answers" +#: inc/targetticket.class.php:28 +msgid "Default entity of a user type question answer" msgstr "" -#: inc/notificationtargetformanswer.class.php:55 -msgid "Refused comment" +#: inc/targetticket.class.php:29 +msgid "From a GLPI object > Entity type question answer" msgstr "" -#: inc/notificationtargetformanswer.class.php:56 -msgid "Validation link" +#: inc/targetticket.class.php:36 +msgid "Tags from questions" msgstr "" -#: inc/notificationtargetformanswer.class.php:57 -msgid "Request #" +#: inc/targetticket.class.php:37 +msgid "Specific tags" msgstr "" -#: inc/notificationtargetformanswer.class.php:96 -msgid "A form has been created" +#: inc/targetticket.class.php:38 +msgid "Tags from questions and specific tags" msgstr "" -#: inc/notificationtargetformanswer.class.php:97 -msgid "Your request has been saved" +#: inc/targetticket.class.php:39 +msgid "Tags from questions or specific tags" msgstr "" -#: inc/notificationtargetformanswer.class.php:98 -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##" +#: inc/targetticket.class.php:45 +msgid "equals to the answer to the question" msgstr "" -#: inc/notificationtargetformanswer.class.php:103 -msgid "A form from GLPI need to be validate" +#: inc/targetticket.class.php:46 +msgid "calculated from the ticket creation date" msgstr "" -#: inc/notificationtargetformanswer.class.php:104 -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##" +#: inc/targetticket.class.php:47 +msgid "calculated from the answer to the question" msgstr "" -#: inc/notificationtargetformanswer.class.php:109 -msgid "Your form has been refused by the validator" +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" msgstr "" -#: inc/notificationtargetformanswer.class.php:110 -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##" +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" msgstr "" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1421 -msgid "Your form has been accepted by the validator" +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 +msgid "Target ticket" +msgid_plural "Target tickets" +msgstr[0] "" +msgstr[1] "" + +#: inc/targetticket.class.php:110 +msgid "Edit a destination" msgstr "" -#: inc/notificationtargetformanswer.class.php:116 -msgid "" -"Hi,\\nWe are pleased to inform you that your form has been accepted by the " -"validator.\\nYour request will be considered soon." +#: inc/targetticket.class.php:125 +msgid "Ticket title" msgstr "" -#: inc/notificationtargetformanswer.class.php:121 -msgid "Your form has been deleted by an administrator" +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "" +msgstr[1] "" + +#: inc/targetticket.class.php:324 +msgid "User type question" msgstr "" -#: inc/notificationtargetformanswer.class.php:122 -msgid "" -"Hi,\\nWe are sorry to inform you that your request cannot be considered and " -"has been deleted by an administrator." +#: inc/targetticket.class.php:325 +msgid "Entity type question" msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:236 -#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 -msgid "Question" -msgid_plural "Questions" +#: inc/targetticket.class.php:389 +msgid "Ticket tags" +msgstr "" + +#: inc/targetticket.class.php:432 +msgid "Tags" +msgstr "" + +#: inc/targetticket.class.php:498 +msgid "Add validation message as first ticket followup" +msgstr "" + +#: inc/targetticket.class.php:512 +msgid "Cancel" +msgstr "" + +#: inc/targetticket.class.php:594 +msgid "Ticket actors" +msgstr "" + +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 +msgid "Form requester" +msgstr "" + +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 +msgid "Form validator" +msgstr "" + +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 +msgid "Person from the question" +msgstr "" + +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 +msgid "Group from the question" +msgstr "" + +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" + +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 +msgid "Supplier from the question" +msgstr "" + +#: inc/targetticket.class.php:988 +msgid "Full form" +msgstr "" + +#: inc/targetticket.class.php:1035 +msgid "The title cannot be empty!" +msgstr "" + +#: inc/targetticket.class.php:1041 +msgid "The description cannot be empty!" +msgstr "" + +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" msgstr[0] "" msgstr[1] "" -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" msgstr "" -#: inc/question.class.php:257 inc/section.class.php:178 -msgid "The title is required" +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" msgstr "" -#: inc/question.class.php:264 -msgid "The field type is required" +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" msgstr "" -#: inc/question.class.php:271 -msgid "The section is required" +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" msgstr "" -#: inc/question.class.php:280 inc/question.class.php:292 -#: inc/question.class.php:306 -msgid "The field value is required:" +#: inc/fields/float-field.class.php:38 +msgid "Float" msgstr "" -#: inc/question.class.php:320 -msgid "A description field should have a description:" +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" msgstr "" -#: inc/question.class.php:375 -msgid "Cannot recover LDAP informations!" +#: inc/fields/integer-field.class.php:38 +msgid "Integer" msgstr "" -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:125 -msgid "The type cannot be empty!" +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" msgstr "" -#: inc/targetticket.class.php:7 -msgid "Current active entity" +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" msgstr "" -#: inc/targetticket.class.php:8 -msgid "Default requester user's entity" +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" msgstr "" -#: inc/targetticket.class.php:9 -msgid "First dynamic requester user's entity (alphabetical)" +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" msgstr "" -#: inc/targetticket.class.php:10 -msgid "Last dynamic requester user's entity (alphabetical)" +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" msgstr "" -#: inc/targetticket.class.php:11 -msgid "The form entity" +#: inc/fields/select-field.class.php:51 +msgid "Select" msgstr "" -#: inc/targetticket.class.php:12 -msgid "Default entity of the validator" +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" msgstr "" -#: inc/targetticket.class.php:13 -msgid "Specific entity" +#: inc/wizard.class.php:67 inc/wizard.class.php:68 +msgid "Seek assistance" msgstr "" -#: inc/targetticket.class.php:14 -msgid "Default entity of a user type question answer" +#: inc/wizard.class.php:73 inc/wizard.class.php:74 +msgid "My requests for assistance" msgstr "" -#: inc/targetticket.class.php:15 -msgid "From a GLPI object > Entity type question answer" +#: inc/wizard.class.php:85 inc/wizard.class.php:86 +msgid "Book an asset" msgstr "" -#: inc/targetticket.class.php:22 -msgid "Tags from questions" +#: inc/wizard.class.php:94 inc/wizard.class.php:95 +msgid "Consult feeds" msgstr "" -#: inc/targetticket.class.php:23 -msgid "Specific tags" +#: inc/wizard.class.php:227 +msgid "To validate" msgstr "" -#: inc/targetticket.class.php:24 -msgid "Tags from questions and specific tags" +#: inc/wizard.class.php:239 +msgid "Closed" msgstr "" -#: inc/targetticket.class.php:25 -msgid "Tags from questions or specific tags" +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:31 -msgid "equals to the answer to the question" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:32 -msgid "calculated from the ticket creation date" +#: inc/category.class.php:39 +msgid "Knowbase category" msgstr "" -#: inc/targetticket.class.php:33 -msgid "calculated from the answer to the question" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" msgstr "" -#: inc/targetticket.class.php:40 -msgid "Equals to the answer to the question" +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" msgstr "" -#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 -msgid "Target ticket" -msgid_plural "Target tickets" +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:96 -msgid "Edit a destination" +#: inc/form.class.php:536 +msgid "see all" msgstr "" -#: inc/targetticket.class.php:111 -msgid "Ticket title" +#: inc/form.class.php:554 +msgid "Popularity sort" msgstr "" -#: inc/targetticket.class.php:310 -msgid "User type question" +#: inc/form.class.php:558 +msgid "Alphabetic sort" msgstr "" -#: inc/targetticket.class.php:311 -msgid "Entity type question" +#: inc/form.class.php:730 +msgid "Please, describe your need here" msgstr "" -#: inc/targetticket.class.php:375 -msgid "Ticket tags" +#: inc/form.class.php:739 +msgid "My last forms (requester)" msgstr "" -#: inc/targetticket.class.php:418 -msgid "Tags" +#: inc/form.class.php:749 +msgid "No form posted yet" msgstr "" -#: inc/targetticket.class.php:484 -msgid "Add validation message as first ticket followup" +#: inc/form.class.php:761 +msgid "All my forms (requester)" msgstr "" -#: inc/targetticket.class.php:498 -msgid "Cancel" +#: inc/form.class.php:771 +msgid "My last forms (validator)" msgstr "" -#: inc/targetticket.class.php:572 -msgid "Ticket actors" +#: inc/form.class.php:791 +msgid "No form waiting for validation" msgstr "" -#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 -#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 -#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 -msgid "Form requester" +#: inc/form.class.php:803 +msgid "All my forms (validator)" msgstr "" -#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 -#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 -#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 -msgid "Form validator" +#: inc/form.class.php:895 +msgid "Choose a validator" msgstr "" -#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 -#: inc/targetticket.class.php:815 -msgid "Specific person" +#: inc/form.class.php:1102 +msgid "You must select validator !" msgstr "" -#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 -#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 -#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 -msgid "Person from the question" +#: inc/form.class.php:1336 +msgid "Duplicate" msgstr "" -#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 -#: inc/targetticket.class.php:817 -msgid "Specific group" +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" msgstr "" -#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 -#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 -#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 -msgid "Group from the question" +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" msgstr "" -#: inc/targetticket.class.php:819 -msgid "Specific supplier" +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" msgstr "" -#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 -msgid "Supplier from the question" +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "" +msgstr[1] "" + +#: ajax/question.php:27 +msgid "Edit a question" msgstr "" -#: inc/targetticket.class.php:945 -msgid "Full form" +#: ajax/question.php:177 +msgid "Show empty" msgstr "" -#: inc/targetticket.class.php:992 -msgid "The title cannot be empty!" +#: ajax/question.php:195 +msgid "One per line for lists" msgstr "" -#: inc/targetticket.class.php:998 -msgid "The description cannot be empty!" +#: ajax/question.php:222 +msgid "Values" msgstr "" -#: inc/wizard.class.php:67 inc/wizard.class.php:68 -msgid "Seek assistance" +#: ajax/question.php:223 +msgid "One per line" msgstr "" -#: inc/wizard.class.php:73 inc/wizard.class.php:74 -msgid "My requests for assistance" +#: ajax/question.php:235 +msgid "Filter" msgstr "" -#: inc/wizard.class.php:85 inc/wizard.class.php:86 -msgid "Book an asset" +#: ajax/question.php:244 +msgid "Attribute" msgstr "" -#: inc/wizard.class.php:94 inc/wizard.class.php:95 -msgid "Consult feeds" +#: ajax/question.php:268 +msgid "Range" msgstr "" -#: inc/wizard.class.php:253 -msgid "To validate" +#: ajax/question.php:272 +msgid "Min" msgstr "" -#: inc/wizard.class.php:266 -msgid "Closed" +#: ajax/question.php:278 +msgid "Max" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" +#: ajax/question.php:302 +msgid "Additional validation" msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" +#: ajax/question.php:305 +msgid "Regular expression" msgstr "" -#: scripts/scripts.js.php:250 -msgid "No form found. Please choose a form below instead" +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." msgstr "" -#: scripts/scripts.js.php:268 -msgid "An error occured while querying forms" +#: ajax/question.php:319 +msgid "Show field" msgstr "" -#: scripts/scripts.js.php:304 -msgid "No form yet in this category" +#: ajax/question.php:328 +msgid "Always displayed" msgstr "" -#: scripts/scripts.js.php:402 -msgid "Are you sure you want to delete this question?" +#: ajax/question.php:329 +msgid "Hidden unless" msgstr "" -#: scripts/scripts.js.php:437 -msgid "Are you sure you want to delete this section?" +#: ajax/question.php:330 +msgid "Displayed unless" msgstr "" -#: scripts/scripts.js.php:474 -msgid "Are you sure you want to delete this destination:" +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" msgstr "" diff --git a/locales/hu_HU.mo b/locales/hu_HU.mo index 49834e6c5..c3369acd1 100644 Binary files a/locales/hu_HU.mo and b/locales/hu_HU.mo differ diff --git a/locales/hu_HU.po b/locales/hu_HU.po index 1c1ba9089..f3915baca 100644 --- a/locales/hu_HU.po +++ b/locales/hu_HU.po @@ -1,6 +1,6 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Jérémy MOREAU , 2014 @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:52+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,167 +20,71 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Fejléc" -msgstr[1] "Fejlécek" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Űrlap kategória" -msgstr[1] "Űrlap kategóriák" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Űrlap" msgstr[1] "Űrlapok" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Jóváhagyásra váró űrlapok" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Kategória nélküli űrlapok" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Kérdés hozzáadása" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Kérdés szerkesztése" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Szekció" -msgstr[1] "Szekciók" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "GLPI Objektum" -msgstr[1] "GLPI Objektumok" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Kötelező" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Üres megjelenítése" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Soronként egy érték a listákból" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Értékek" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "Soronként egy" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Szűrő" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Attribútum" - -#: ajax/question.php:269 -msgid "Range" -msgstr "tartomány" - -#: ajax/question.php:273 -msgid "Min" -msgstr "Min" - -#: ajax/question.php:279 -msgid "Max" -msgstr "Max" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "További validálás" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Reguláris kifejezés" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "További jóváhagyási feltételek megadása a kérdés leírásában, melyek segíthetik a felhasználókt" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Mező megjelenítése" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Mindig megjelenik" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Rejtett amíg" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Biztosan törli ezt a kérdést?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Megjelenik amíg" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Biztosan törli ezt a szekciót?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Szekció hozzáadása" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Biztosan törli ezt a célt:" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Szekció szerkesztése" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Minden elem megjelenítése" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Cél hozzáadása" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "nincs egyező elem" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "Ezen a néven már létezik kategória! A kategória létrehozása sikertelen." +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Egy kötelező mező üres:" -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Űrlap Készítő" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Űrlap lista" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "A fejléc már létezik ebben a szervezetben, szervezetenként egy fejléc adható meg." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Űrlap Készítő" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -190,332 +94,283 @@ msgstr "A kérdés sikeresen mentve!" msgid "The question has been successfully updated!" msgstr "A kérdés sikeresen frissítve!" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Válasz" -msgstr[1] "Válaszok" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "A fejléc már létezik ebben a szervezetben, szervezetenként egy fejléc adható meg." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "Ezen a néven már létezik kategória! A kategória létrehozása sikertelen." -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Jóváhagyásra váró űrlapok" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Fejléc" +msgstr[1] "Fejlécek" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Űrlap kategória" +msgstr[1] "Űrlap kategóriák" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Célpont" +msgstr[1] "Célpontok" + +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Elérés típus" + +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Publikus elérés" + +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Privát elérés" + +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Korlátozott elérés" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" msgstr "" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" msgstr "" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Egy kötelező mező üres:" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Fejléc hozzáadása" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Egy fejléc már létezik a szülő szervezetben, mely felül fogja írni a megadottat." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Űrlap válasz" msgstr[1] "Űrlap válaszok" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Kérelmező" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Jóváhagyó" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "várakozó" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "elfogadott" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "elutasított" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Az űrlapját elfogadta a jóváhagyó" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Az űrlap sikeresen mentve!" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Megjegyzés" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Elutasítás estén kötelező" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Elutasít" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Elfogad" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Az elutasítás megjegyzése kötelező!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Nem generálhatóak a célpontok!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Az űrlap sikeresen mentve!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Űrlap adatok" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Leírás" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Kezdőképernyő" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Elérés" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Minden nyelv" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Publikus elérés" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Privát elérés" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Korlátozott elérés" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Közvetlen elérés a kezdőképernyőről" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Szükséges jóváhagyás?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" msgstr "" -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" - -#: inc/form.class.php:528 -msgid "see all" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" msgstr "" -#: inc/form.class.php:545 -msgid "Popularity sort" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" msgstr "" -#: inc/form.class.php:549 -msgid "Alphabetic sort" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" msgstr "" -#: inc/form.class.php:710 -msgid "Please, describe your need here" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" msgstr "" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Utolsó űrlapjaim (kérelmező)" - -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Még nincs beküldött űrlap" - -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Minden űrlapom (kérelmező)" - -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Utolsó űrlapjaim (jóváhagyó)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Cél" +msgstr[1] "Célok" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "Nincs jóváhagyásra váró űrlap" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Célok" +msgstr[1] "Célok" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Minden űrlapom (jóváhagyó)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Törlés" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Válasszon jóváhagyót" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Cél hozzáadása" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "A név nem lehet üres" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Ki kell választania a jóváhagyót !" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Duplikált" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Duplikált űrlap: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Áthelyezett űrlap: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Célpont" -msgstr[1] "Célpontok" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Elérés típus" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Fejléc hozzáadása" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "A típus nem lehet üres!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Egy fejléc már létezik a szülő szervezetben, mely felül fogja írni a megadottat." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Szekció" +msgstr[1] "Szekciók" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "A cím kötelező" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "Az űrlap mentve" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "Egy űrlapot jóvá kell hagynia" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Az űrlap elutasítva" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Az űrlap elfogadva" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Az űrlap törölve" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Űrlap #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Űrlap neve" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "A teljes űrlap válaszai" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Elutasító megjegyzés" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Jóváhagyó link" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Kérelem #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Az űrlap létrehozva" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "A kérelme mentve" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " "see your answers onto the following link:\\n##formcreator.validation_link##" msgstr "Üdvözlöm,\\nA kérelme a GLPI-ben mentésre került, a száma:##formcreator.request_id##. Kérelmét továbbítottuk a helpdesk csapatnak.\\nA válaszokat az alábbi linken nézheti meg:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Egy űrlapot jóvá kell hagynia a GLPI-ben" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Üdvözlöm,\\nEgy űrlapot jóvá kell hagynia a GLPI-ben, melyen önt választották jóváhagyónak.\\nElérheti az alábbi linkre kattintva:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "Az űrlapját visszautasította a jóváhagyó" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -523,288 +378,561 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Üdvözlöm,\\nSajnálattal közöljük, hogy az Ön űrlapját elutasította a jóváhagyó. Az elutasítás oka:\\n##formcreator.validation_comment##\\nMódosíthatja, és újra elküldheti az alábbi linkre kattintva:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Az űrlapját elfogadta a jóváhagyó" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." msgstr "Üdvözlöm,\\nÖrömmel értesítjük, hogy az űrlapját elfogadta a jóváhagyó.\\nKérelme hamarosan mérlegelésre kerül." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "Az űrlapját törölte egy Adminisztrátor" -#: inc/notificationtargetformanswer.class.php:122 +#: inc/notificationtargetform_answer.class.php:122 msgid "" "Hi,\\nWe are sorry to inform you that your request cannot be considered and " "has been deleted by an administrator." -msgstr "Üdvözlöm,\\nSajnálattal közöljük, hogy az Ön kérelme nem mérlegelhető és egy Adminisztrátor törölte." - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Kérdés" -msgstr[1] "Kérdések" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Törlés" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "A cím kötelező" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "A mező típus kötelező" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "A szekció kötelező" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "A mező értéke kötelező:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "A leírás mezőnek tartalmaznia kell a leírást:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "Az LDAP adatok nem kérhetők le!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Cél" -msgstr[1] "Célok" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Célok" -msgstr[1] "Célok" +msgstr "Üdvözlöm,\\nSajnálattal közöljük, hogy az Ön kérelme nem mérlegelhető és egy Adminisztrátor törölte." -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "A típus nem lehet üres!" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Válasz" +msgstr[1] "Válaszok" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Jelenlegi aktív szervezet" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Alapértelmezett kérelmező felhasználó szervezete" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "Első dinamikus kérelmező felhasználó szervezete (ABC)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Utolsó dinamikus kérelmező felhasználó szervezete (ABC)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Az űrlap szervezete" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Jóváhagyó alapértelmezett szervezete" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Különleges szervezet" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "A felhasználó típus kérdés válaszából az alapértelmezett szervezet" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "A GLPI objektum > szervezet típus kérdés válaszából " -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Címkék a kérdésből" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Különleges címkék" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Címkék a kérdésekből és különleges címkék" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Címkék a kérdésekből vagy különleges címkék" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "Megegyezik a kérdésre adott válasszal" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "A bejelentés létrehozási dátumából számítva" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "A kérdés válaszából számítva" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Cél bejelentés" msgstr[1] "Cél bejelentések" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Cél szerkesztése" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Bejelentés tárgya" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Kérdés" +msgstr[1] "Kérdések" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Felhasználó típus kérdés" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Szervezet típus kérdés" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Bejelentés címkék" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Címkék" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Az érvényesítő üzenet kerüljön a bejelentés első utótevekenységébe" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Mégse" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Bejelentés szerzők" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Űrlap kérelmező" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Űrlap jóváhagyó" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Különleges személy" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Személy a kérdésből" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Különleges csoport" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Csoport a kérdésből" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Különleges cég" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Cég a kérdésből" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Teljes űrlap" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "A cím nem lehet üres!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "A Leírás nem lehet üres!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "Rádiógombok" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "GLPI Objektum" +msgstr[1] "GLPI Objektumok" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "Ez nem szám:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "A következő számnak nagyobbnak kell lennie mint %d: " + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "A következő számnak kisebbnek kell lennie mint %d: " + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "A megadott formátum nem illeszkedik:" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "Float" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "Ez nem egész szám:" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "Egész szám" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "A szöveg túl rövid (minimum %d karakter):" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "A szöveg túl hosszú (maximum %d karakter):" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "Szöveg terület" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Szöveg" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "Nem érvényes e-mail cím:" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Időpont" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "A következő kérdésre legalább %d választ kell adni" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "A következő kérdésre nem adható több válasz, mint %d" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "Többszörös kiválasztás" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "Egy kötelező fájl hiányzik:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "LDAP Érték" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Saját legördülő lista" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "Jelölőnégyzetek" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Minden elem megjelenítése" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "nincs egyező elem" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Különleges személy" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Különleges csoport" + +#: inc/category.class.php:39 +msgid "Knowbase category" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Kötelező" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Kérdés hozzáadása" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Szekció hozzáadása" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "A mező típus kötelező" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "A szekció kötelező" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "A mező értéke kötelező:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "A leírás mezőnek tartalmaznia kell a leírást:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Az LDAP adatok nem kérhetők le!" + +#: inc/form.class.php:60 +msgid "Import forms" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/form.class.php:94 +msgid "Description" +msgstr "Leírás" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Kezdőképernyő" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Elérés" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Minden nyelv" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Közvetlen elérés a kezdőképernyőről" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Szükséges jóváhagyás?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "" +msgstr[1] "" + +#: inc/form.class.php:536 +msgid "see all" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Biztosan törli ezt a kérdést?" +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Biztosan törli ezt a szekciót?" +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Biztosan törli ezt a célt:" +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Utolsó űrlapjaim (kérelmező)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Még nincs beküldött űrlap" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Minden űrlapom (kérelmező)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Utolsó űrlapjaim (jóváhagyó)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Nincs jóváhagyásra váró űrlap" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Minden űrlapom (jóváhagyó)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Válasszon jóváhagyót" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Ki kell választania a jóváhagyót !" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Duplikált" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Duplikált űrlap: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Áthelyezett űrlap: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "" +msgstr[1] "" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Kérdés szerkesztése" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Üres megjelenítése" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Soronként egy érték a listákból" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Értékek" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Soronként egy" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Szűrő" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Attribútum" + +#: ajax/question.php:268 +msgid "Range" +msgstr "tartomány" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Max" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "További validálás" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Reguláris kifejezés" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "További jóváhagyási feltételek megadása a kérdés leírásában, melyek segíthetik a felhasználókt" + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Mező megjelenítése" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Mindig megjelenik" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Rejtett amíg" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Megjelenik amíg" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Szekció szerkesztése" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Kategória nélküli űrlapok" diff --git a/locales/it_IT.mo b/locales/it_IT.mo index 383960f0e..86a194c98 100644 Binary files a/locales/it_IT.mo and b/locales/it_IT.mo differ diff --git a/locales/it_IT.po b/locales/it_IT.po index 820dd42fc..9eb76d112 100644 --- a/locales/it_IT.po +++ b/locales/it_IT.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the GLPI - Resources plugin package. # # Translators: +# Giudy , 2016-2017 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2017-01-27 16:22+0000\n" +"Last-Translator: Giudy \n" "Language-Team: Italian (Italy) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,95 +18,95 @@ msgstr "" "Language: it_IT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Intestazione" +msgstr[1] "Intestazioni" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Categoria del modulo" +msgstr[1] "Categorie dei moduli" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" msgid_plural "Forms" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Modulo" +msgstr[1] "Moduli" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" -msgstr "" +msgstr "Moduli in attesa di validazione" #: ajax/homepage_forms.php:52 msgid "Forms without category" -msgstr "" +msgstr "Moduli senza categoria" #: ajax/question.php:27 inc/question.class.php:212 msgid "Add a question" -msgstr "" +msgstr "Aggiungi una domanda" #: ajax/question.php:28 msgid "Edit a question" -msgstr "" +msgstr "Modifica una domanda" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Sezione" +msgstr[1] "Sezioni" #: ajax/question.php:91 msgid "GLPI object" msgid_plural "GLPI objects" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Oggetto di GLPI" +msgstr[1] "Oggetti di GLPI" #: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 msgid "Required" -msgstr "" +msgstr "Obbligatorio" #: ajax/question.php:178 msgid "Show empty" -msgstr "" +msgstr "Mostra i vuoti" #: ajax/question.php:196 msgid "One per line for lists" -msgstr "" +msgstr "Uno per linea per le liste" #: ajax/question.php:223 msgid "Values" -msgstr "" +msgstr "Valori" #: ajax/question.php:224 msgid "One per line" -msgstr "" +msgstr "Uno per linea" #: ajax/question.php:236 msgid "Filter" -msgstr "" +msgstr "Filtro" #: ajax/question.php:245 msgid "Attribute" -msgstr "" +msgstr "Attributo" #: ajax/question.php:269 msgid "Range" -msgstr "" +msgstr "Intervallo" #: ajax/question.php:273 msgid "Min" -msgstr "" +msgstr "Min" #: ajax/question.php:279 msgid "Max" -msgstr "" +msgstr "Max" #: ajax/question.php:303 msgid "Additional validation" @@ -113,7 +114,7 @@ msgstr "" #: ajax/question.php:306 msgid "Regular expression" -msgstr "" +msgstr "Espressione regolare" #: ajax/question.php:313 msgid "" @@ -123,55 +124,55 @@ msgstr "" #: ajax/question.php:320 msgid "Show field" -msgstr "" +msgstr "Mostra il campo" #: ajax/question.php:329 msgid "Always displayed" -msgstr "" +msgstr "Mostra sempre" #: ajax/question.php:330 msgid "Hidden unless" -msgstr "" +msgstr "Nascondi se" #: ajax/question.php:331 msgid "Displayed unless" -msgstr "" +msgstr "Mostra se" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" -msgstr "" +msgstr "Aggiungi una sezione" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" -msgstr "" +msgstr "Modifica una sezione" #: ajax/target.php:8 inc/target.class.php:85 msgid "Add a destination" -msgstr "" +msgstr "Aggiungi una destinazione" #: front/category.form.php:13 msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 #: front/wizardfeeds.php:11 front/wizard.php:13 msgid "Service catalog" -msgstr "" +msgstr "Catalogo dei servizi" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" -msgstr "" +msgstr "Creatore di moduli" #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" -msgstr "" +msgstr "Lista dei moduli" #: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" @@ -187,11 +188,11 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Risposta" +msgstr[1] "Risposte" #: inc/category.class.php:39 msgid "Knowbase category" @@ -199,11 +200,11 @@ msgstr "" #: inc/entityconfig.class.php:65 msgid "Helpdesk" -msgstr "" +msgstr "Assistenza" #: inc/entityconfig.class.php:74 msgid "GLPi's helpdesk" -msgstr "" +msgstr "Assistenza GLPI" #: inc/entityconfig.class.php:75 msgid "Service catalog simplified" @@ -215,206 +216,219 @@ msgstr "" #: inc/entityconfig.class.php:79 msgid "Helpdesk mode" -msgstr "" +msgstr "Modalità Assistenza" #: inc/field.class.php:98 scripts/forms-validation.js.php:11 msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Modulo risposta" +msgstr[1] "Modulo risposte" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" -msgstr "" +msgstr "Richiedente" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" -msgstr "" +msgstr "Validatore" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" -msgstr "" +msgstr "in attesa" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" -msgstr "" +msgstr "accettato" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" -msgstr "" +msgstr "rifiutato" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" -msgstr "" +msgstr "Commento" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" -msgstr "" +msgstr "Rifiuta" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" -msgstr "" +msgstr "Accetta" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 -msgid "Description" +#: inc/form.class.php:60 +msgid "Import forms" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:94 +msgid "Description" +msgstr "Descrizione" + +#: inc/form.class.php:122 msgid "Homepage" -msgstr "" +msgstr "Homepage" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" -msgstr "" +msgstr "Accesso" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" -msgstr "" +msgstr "Tutte le lingue" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Categoria" +msgstr[1] "Categorie" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" -msgstr "" +msgstr "vedi tutti" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" -msgstr "" +msgstr "Ordinamento per popolarità" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" -msgstr "" +msgstr "Ordinamento alfabetico" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" -msgstr "" +msgstr "Descrivete la vostra necessità" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" -msgstr "" +msgstr "Ultimi moduli (richiedente)" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" -msgstr "" +msgstr "Ultimi moduli (validatore)" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +442,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +535,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +555,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +567,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +604,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +672,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +804,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/lv_LV.mo b/locales/lv_LV.mo index 9366bb4d6..a30c16352 100644 Binary files a/locales/lv_LV.mo and b/locales/lv_LV.mo differ diff --git a/locales/lv_LV.po b/locales/lv_LV.po index e5d9c94aa..950699e2b 100644 --- a/locales/lv_LV.po +++ b/locales/lv_LV.po @@ -1,15 +1,16 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: +# Andrejs , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:51+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/lv_LV/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,805 +18,935 @@ msgstr "" "Language: lv_LV\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "" +msgstr[0] "Formas" +msgstr[1] "Forma" +msgstr[2] "Formas" -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" msgstr "" -#: ajax/question.php:28 -msgid "Edit a question" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" msgstr "" -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "Šajā kategorija nav pievienotas formas" -#: ajax/question.php:178 -msgid "Show empty" -msgstr "" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Vai jūs tiešām gribat izdzēst šo jautājumu?" -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Vai jūs tiešām gribat izdzēst šo sadaļu?" -#: ajax/question.php:223 -msgid "Values" -msgstr "" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Vai jūs tiešām gribat izdzēst šo mērķi:" -#: ajax/question.php:224 -msgid "One per line" -msgstr "" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Parādīt visas vienības" -#: ajax/question.php:236 -msgid "Filter" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" msgstr "" -#: ajax/question.php:245 -msgid "Attribute" -msgstr "" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Nepieciešamais lauks tukšs:" -#: ajax/question.php:269 -msgid "Range" -msgstr "" +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 +msgid "Service catalog" +msgstr "Servisu katalogs" -#: ajax/question.php:273 -msgid "Min" -msgstr "" +#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 +msgid "Form list" +msgstr "Formas saraksts" -#: ajax/question.php:279 -msgid "Max" -msgstr "" +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Formas Veidotājs" -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "" +#: front/question.form.php:15 +msgid "The question has been successfully saved!" +msgstr "Jautājums veiksmīgi saglabāts!" -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "" +#: front/question.form.php:25 +msgid "The question has been successfully updated!" +msgstr "Jautājums sekmīgi atjaunots!" -#: ajax/question.php:313 +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "" - -#: ajax/question.php:320 -msgid "Show field" -msgstr "" - -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "" - -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "" - -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "" - -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "" - -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "" - -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Galvene šai nodaļai jau eksistē! Jūs varat pievienot tikai vienu galveni katrai nodaļai." #: front/category.form.php:13 msgid "" "A category already exists with the same name! Category creation failed." -msgstr "" - -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 -msgid "Service catalog" -msgstr "" - -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "" +msgstr "Kategorija ar ievadīto virsrakstu jau eksistē! Kategorijas izveide noraidīta." -#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 -msgid "Form list" -msgstr "" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Formas gaida apstiprinājumu" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Galvenes" +msgstr[1] "Galvene" +msgstr[2] "Galvenes" -#: front/question.form.php:15 -msgid "The question has been successfully saved!" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Formas kategoriju" +msgstr[1] "Formas kategorija" +msgstr[2] "Formas kategorijas" -#: front/question.form.php:25 -msgid "The question has been successfully updated!" -msgstr "" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Mērķi" +msgstr[1] "Mērķis" +msgstr[2] "Mērķi" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Piekļuves tips" -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Publiska pieeja" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Privāta pieeja" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Ierobežota pieeja" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Saite uz formu" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Lūdzu aktivizējiet formu lai parādīt saiti" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Pievienot galveni" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Formas atbildes" +msgstr[1] "Formas atbilde" +msgstr[2] "Formas atbildes" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" -msgstr "" +msgstr "Pieteicējs" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" -msgstr "" +msgstr "Apstiprinātājs" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" -msgstr "" +msgstr "gaidīts" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" -msgstr "" +msgstr "akceptēts" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" -msgstr "" +msgstr "noraidīts" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." -msgstr "" +msgstr "Formu akceptēja apstiprinātājs." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." -msgstr "" +msgstr "Forma saglabāta veiksmīgi." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" -msgstr "" +msgstr "Komentārs" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" -msgstr "" +msgstr "Nepieciešams ja noraidīts" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" -msgstr "" +msgstr "Noraidīt" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" -msgstr "" +msgstr "Akceptēt" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" -msgstr "" +msgstr "Nepieciešams noraidīšanas komentārs!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" -msgstr "" +msgstr "Nevar ģenerēt mērķi" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" -msgstr "" - -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 -msgid "Form data" -msgstr "" - -#: inc/form.class.php:92 -msgid "Description" -msgstr "" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "" +msgstr "Forma veiksmīgi saglabāta!" -#: inc/form.class.php:128 -msgid "Access" -msgstr "" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "" - -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: inc/form.class.php:528 -msgid "see all" -msgstr "" - -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "" +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 +msgid "Form data" +msgstr "Formas dati" -#: inc/form.class.php:549 -msgid "Alphabetic sort" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" msgstr "" -#: inc/form.class.php:710 -msgid "Please, describe your need here" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" msgstr "" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Vienkāršots servisu katalogs" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Izvērst servisu katalogs" -#: inc/form.class.php:741 -msgid "All my forms (requester)" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" msgstr "" -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Mērķis" +msgstr[1] "Mērķis" +msgstr[2] "Mērķi" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Mērķis" +msgstr[1] "Mērķis" +msgstr[2] "Mērķi" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Izdzēst" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Pievienot mērķi" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" -msgstr "" - -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" +msgstr "Virsraksts nevar būt tukšs!" -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Tips nevar būt tukšs!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "" +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Sadaļas" +msgstr[1] "Sadaļa" +msgstr[2] "Sadaļas" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "Virsraksts ir nepieciešams" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" -msgstr "" +msgstr "Forma saglabāta" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" -msgstr "" +msgstr "Formai jābūt apstiprinātai" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" -msgstr "" +msgstr "Forma noraidīta" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" -msgstr "" +msgstr "Forma akceptēta" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" -msgstr "" +msgstr "Forma izdzēsta" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" -msgstr "" +msgstr "Forma #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" -msgstr "" +msgstr "Formas virsraksts" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" -msgstr "" +msgstr "Pilnas formas atbildes" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" -msgstr "" +msgstr "Noraidīts komentārs" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" -msgstr "" +msgstr "Apstiprināšanas links" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" -msgstr "" +msgstr "Pieprasījums #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" -msgstr "" +msgstr "Forma izveidota" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" -msgstr "" +msgstr "Jūsu pieprasījums saglabāts" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "" +msgstr "Sveicināti,\\nJūsu pieprasījums no GLPI veiksmīgi saglabāts ar numuru ##formcreator.request_id## un nodots helpdesk komandai.\\nJūs varat sekot līdzi sekojošā vietnē:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" -msgstr "" +msgstr "Formai no GLPI jābūt apstiprinātai" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "" +msgstr "Sveicināti,\\nFormai no GLPI jābūt apstiprinātai un jūs tika izvēlēti kā apstiprinātājs.\\nJūs varat piekļūt tam sekojošā vietnē:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" -msgstr "" +msgstr "Jūsu formu noraidījis apstiprinātājs" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 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 "" - -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 -msgid "Your form has been accepted by the validator" -msgstr "" - -#: inc/notificationtargetformanswer.class.php:116 -msgid "" -"Hi,\\nWe are pleased to inform you that your form has been accepted by the " -"validator.\\nYour request will be considered soon." -msgstr "" - -#: inc/notificationtargetformanswer.class.php:121 -msgid "Your form has been deleted by an administrator" -msgstr "" - -#: inc/notificationtargetformanswer.class.php:122 -msgid "" -"Hi,\\nWe are sorry to inform you that your request cannot be considered and " -"has been deleted by an administrator." -msgstr "" - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "" +"Hi,\\nWe are sorry to inform you that your form has been refused by the " +"validator for the reason " +"below:\\n##formcreator.validation_comment##\\n\\nYou can still modify and " +"resubmit it by clicking onto this link:\\n##formcreator.validation_link##" +msgstr "Sveicināti,\\nJūsu formu noraidīta apstiprinātājs ar sekojošo iemeslu:\\n##formcreator.validation_comment##\\n\\nJūs varat veikt izmaiņas un atkartoti iesniegt formu sekojošā vietnē:\\n##formcreator.validation_link##" -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "" +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 +msgid "Your form has been accepted by the validator" +msgstr "Jūsu formu akceptēja apstiprinātājs" -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "" +#: inc/notificationtargetform_answer.class.php:116 +msgid "" +"Hi,\\nWe are pleased to inform you that your form has been accepted by the " +"validator.\\nYour request will be considered soon." +msgstr "Sveicināti,\\nInformējam, jūsu formu akceptēja apstiprinātājs.\\nJūsu pieteikums drīz tiks izskatīts." -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/notificationtargetform_answer.class.php:121 +msgid "Your form has been deleted by an administrator" +msgstr "Jūsu formu izdzēsa administrators" -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/notificationtargetform_answer.class.php:122 +msgid "" +"Hi,\\nWe are sorry to inform you that your request cannot be considered and " +"has been deleted by an administrator." +msgstr "Sveicināti,\\nInformējam, jūsu pieprasījums netiks izskatīts un tika izdzēsts." -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Atbildes" +msgstr[1] "Atbilde" +msgstr[2] "Atbildes" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" -msgstr "" +msgstr "Tekoša aktīva nodaļa" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" -msgstr "" +msgstr "Formas nodaļa" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" -msgstr "" +msgstr "Noklusēta apstiprinātāju nodaļa" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" -msgstr "" +msgstr "Noteikta nodaļa" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" -msgstr "" +msgstr "Tagi no jautājumiem" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" -msgstr "" +msgstr "Noteiktie tagi" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" -msgstr "" +msgstr "Tagi no jautājumiem un noteiktiem tagiem" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" -msgstr "" +msgstr "Tagi no jautājumiem vai noteiktiem tagiem" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" -msgstr "" +msgstr "saskaitīts no pieteikuma izveidošanas datuma" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" +msgstr "saskaitīts no atbildes uz jautājumu" + +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Mērķa pieteikumi" +msgstr[1] "Mērķa pieteikums" +msgstr[2] "Mērķa pieteikumi" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" -msgstr "" +msgstr "Rediģēt mērķi" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" -msgstr "" +msgstr "Pieteikumu virsraksts" + +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Jautājums" +msgstr[1] "Jautājums" +msgstr[2] "Jautājumi" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" -msgstr "" +msgstr "Pieteikumu tagi" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" -msgstr "" +msgstr "Tagi" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" -msgstr "" +msgstr "Atcelt" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" -msgstr "" +msgstr "Pieteikuma dalībnieki" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" -msgstr "" +msgstr "Formas pieteicējs" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" +msgstr "Formas apstiprinātājs" + +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 +msgid "Person from the question" +msgstr "Persona no jautājuma" + +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 +msgid "Group from the question" +msgstr "Grupa no jautājuma" + +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 +msgid "Supplier from the question" +msgstr "Piegādātājs no jautājuma" + +#: inc/targetticket.class.php:988 +msgid "Full form" +msgstr "Pilna forma" + +#: inc/targetticket.class.php:1035 +msgid "The title cannot be empty!" +msgstr "Nosaukums nevar būt tukšs!" + +#: inc/targetticket.class.php:1041 +msgid "The description cannot be empty!" +msgstr "Apraksts nevar būt tukšs!" + +#: inc/fields/radios-field.class.php:48 +msgid "Radios" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 -msgid "Person from the question" +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "GLPI objekti" +msgstr[1] "GLPI objekts" +msgstr[2] "GLPI objekti" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 -msgid "Group from the question" +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" msgstr "" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 -msgid "Supplier from the question" +#: inc/fields/float-field.class.php:38 +msgid "Float" msgstr "" -#: inc/targetticket.class.php:883 -msgid "Full form" +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" msgstr "" -#: inc/targetticket.class.php:927 -msgid "The title cannot be empty!" +#: inc/fields/integer-field.class.php:38 +msgid "Integer" msgstr "" -#: inc/targetticket.class.php:933 -msgid "The description cannot be empty!" +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" msgstr "" -#: inc/wizard.class.php:83 -msgid "Seek assistance" +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" msgstr "" -#: inc/wizard.class.php:87 -msgid "My requests for assistance" +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" msgstr "" -#: inc/wizard.class.php:98 -msgid "Book an asset" +#: inc/fields/text-field.class.php:32 +msgid "Text" msgstr "" -#: inc/wizard.class.php:105 -msgid "Consult feeds" +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" +#: inc/fields/select-field.class.php:51 +msgid "Select" msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" +#: inc/wizard.class.php:67 inc/wizard.class.php:68 +msgid "Seek assistance" +msgstr "" + +#: inc/wizard.class.php:73 inc/wizard.class.php:74 +msgid "My requests for assistance" +msgstr "" + +#: inc/wizard.class.php:85 inc/wizard.class.php:86 +msgid "Book an asset" +msgstr "" + +#: inc/wizard.class.php:94 inc/wizard.class.php:95 +msgid "Consult feeds" +msgstr "" + +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Noteikta persona" + +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Noteikta grupa" + +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Zināšanas bāzes kategorija" + +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Nepieciešams" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Pievienot jautājumu" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Pievienot sadaļu" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Obligāti aizpildāms lauks" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Sadaļa ir nepieciešama" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "Nepieciešams ievadīt lauka vērtību:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Apraksta laukam jābūt aizpildītam:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Nevar piekļūt LDAP informācijai!" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Apraksts" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Sākumlapa" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Piekļuve" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Visas valodas" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Tiešsaiste no sākumlapas" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Nepieciešama apstiprināšana?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Noklusēta forma servisu katalogā" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Kategorijas" +msgstr[1] "Kategorija" +msgstr[2] "Kategorijas" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "skatīt visu" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "Sakārtot pēc popularitātes" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "Sakārtot alfabēta secībā" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Lūdzu definējiet jūsu prasību" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Manas pēdējās formas (pieteicējs)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Nav nosūtītas formas" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Visas manas formas (pieteicējs)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Manas pēdējās formas (apstiprinātājs)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Nav formas kuram nepieciešama apstiprināšana" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Visas manas formas (Apstiprinātājs)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Izvēlēties apstiprinātāju" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Jums nepieciešams izvēlēties apstiprinātāju !" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Dublikāts" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Formas dublikāts: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Forma pārnesta: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" msgstr "" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Problēmjautājumi" +msgstr[1] "Problēmjautājums" +msgstr[2] "Problēmjautājumi" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Rediģēt jautājumu" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Parādīt tukšo" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Viens rindā sarakstiem" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Vērtības" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Viens rindā" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filtrs" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Atribūts" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Diapazons" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Min" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Maks" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Papildus apstiprināšana" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Regulārā izteiksme" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Norādiet papildus kritērijus jautājuma aprakstā lai palīdzētu lietotājiem." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Parādīt lauku" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Vienmēr rādīt" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Paslēpts kamēr" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Rādīt kamēr" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Rediģēt sadaļu" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formas bez kategorijas" diff --git a/locales/nl_NL.mo b/locales/nl_NL.mo index a1625b37e..74e70f97f 100644 Binary files a/locales/nl_NL.mo and b/locales/nl_NL.mo differ diff --git a/locales/nl_NL.po b/locales/nl_NL.po index add58c8de..b6ef832af 100644 --- a/locales/nl_NL.po +++ b/locales/nl_NL.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,19 +17,19 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "" msgstr[1] "" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -37,8 +37,8 @@ msgid_plural "Forms" msgstr[0] "" msgstr[1] "" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "" @@ -55,7 +55,7 @@ msgid "Edit a question" msgstr "" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "" @@ -137,11 +137,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "" @@ -154,7 +154,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -162,8 +162,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -187,7 +187,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "" @@ -221,200 +221,213 @@ msgstr "" msgid "A required field is empty:" msgstr "" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "" msgstr[1] "" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "" msgstr[1] "" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -428,7 +441,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -521,7 +534,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -541,8 +554,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "" @@ -553,28 +566,28 @@ msgstr[1] "" msgid "Delete" msgstr "" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -590,7 +603,7 @@ msgid_plural "Destinations" msgstr[0] "" msgstr[1] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -658,118 +671,130 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "" msgstr[1] "" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "" @@ -778,30 +803,26 @@ msgstr "" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/pl_PL.mo b/locales/pl_PL.mo index 0667f269c..865f55af8 100644 Binary files a/locales/pl_PL.mo and b/locales/pl_PL.mo differ diff --git a/locales/pl_PL.po b/locales/pl_PL.po index 9727a0700..544daaaaa 100644 --- a/locales/pl_PL.po +++ b/locales/pl_PL.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Polish (Poland) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/pl_PL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,21 +18,21 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "Nagłówek" msgstr[1] "Nagłówki" msgstr[2] "Nagłówki" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "Katogoria formularza" msgstr[1] "Kategorie formularzy" msgstr[2] "Kategorie formularzy" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -41,8 +41,8 @@ msgstr[0] "Formularz" msgstr[1] "Formularze" msgstr[2] "Formularze" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "Forlularze czekające na weryfikację" @@ -59,7 +59,7 @@ msgid "Edit a question" msgstr "Edytuj pytanie" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "Sekcja" @@ -143,11 +143,11 @@ msgstr "Niewidoczny aż" msgid "Displayed unless" msgstr "Widoczny jeżeli" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "dodaj sekcję" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "Edytuj sekcję" @@ -160,7 +160,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "Kategoria o tej nazwiej już istnieje! Tworzenie kategorii zakończone niepowodzeniem. " -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -168,8 +168,8 @@ msgstr "Kategoria o tej nazwiej już istnieje! Tworzenie kategorii zakończone n msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -193,7 +193,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "Odpowiedź" @@ -228,203 +228,216 @@ msgstr "" msgid "A required field is empty:" msgstr "Wymagane pole jest puste:" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Odpowiedź formularza" msgstr[1] "Odpowiedzi formularza" msgstr[2] "Odpowiedzi formularza" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "Wnioskodawca" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "Zatwierdzający" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "oczekujące" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "zaakceptowane" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "odrzucone" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Formularz zaakceptowane przez osobę zatwierdzającą" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Formularz został zapisany." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Komentarz" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Wymagane w przypadku odrzucenia" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Odrzucenie" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Akceptacja" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Wymagane jest skomentowanie odrzucenia " -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "Nie można wygenerowć obiektów docelowych!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "Dane formularza" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "Strona domowa" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "Dostęp" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "Wszystkie języki" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "Dostęp publiczny" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "Dostęp dla zalogowanego użytkownika" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "Dostęp ograniczony" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "Dostęp ze stony domowej" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "Podlega zatwierdzeniu?" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "Moje ostatnie formularze (wnioskodawca)" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "Brak zapamiętanych formularzy" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "Moje wszystkie formularze (wnioskodawca)" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "Moje ostatnie formularze (zatwierdzający)" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "Brak formularzy oczekujących na zatwierdzenie" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "Moje wszystkie formilarze (zatwierdzający)" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "Wybierz osobę zatwierdzającą" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "Nazwa nie może być pusta!" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "Musisz wybrać osobę zatwierdzającą!" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "Powtórzenie" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "Powtórzonych formularzy: %s" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "Udostępnienie" msgstr[1] "Udostępnienia" msgstr[2] "Udostępnienia" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "Typ dostępu" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -438,7 +451,7 @@ msgid "" "previous one." msgstr "Nagłówek istnieje dla nadrzędnej jednostki! Zostanie nadpisany przez poprzedni." -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -532,7 +545,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -552,8 +565,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "Pytanie" @@ -565,28 +578,28 @@ msgstr[2] "Pytania" msgid "Delete" msgstr "Usuń" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "Tytuł jest wymagany" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "Typ pola jest wymagany" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "Sekcja jest wymagana" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "Wymagana wartość w polu:" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "Pole opisu powinno być wypełnione" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "Nie można pobrać informacji z LDAP!" @@ -604,7 +617,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "Typ nie może być pusty!" @@ -672,119 +685,131 @@ msgstr "wyliczone z daty utworzenia zgłoszenia" msgid "calculated from the answer to the question" msgstr "equals to the answer to the question" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Docelowe zgłoszenie " msgstr[1] "Docelowe zgłoszenia" msgstr[2] "Docelowe zgłoszenia" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "Edytuj obiekt docelowy" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "Tytuł zgłoszenia" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "Dodaj wiadomość o zatwierdzeniu jako pierwszą pozycję śledzenia w zgłoszeniu" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "Anuluj" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "Uczestnicy zgłoszenia" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "Wnioskodawca" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "Weryfikator formularza" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "Osoba" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "Osoba z pytania" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "Grupa" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "Grupa z pytania" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "Dostawca" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "Dostawca z pytania" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "Wypełniony formularz" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "Tytuł nie może być pusty!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "Opis nie może być pusty!" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "Pokaż wszystkie pozycje" @@ -793,30 +818,26 @@ msgstr "Pokaż wszystkie pozycje" msgid "didn't match any item" msgstr "nie pasuje do żadnej pozycji" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "Czy na pewno chcesz usunąć to pytanie?" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "Czy na pewno chcesz usunąć tą sekcję?" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "Czy na pewno chcesz usunąć obiekt docelowy:" diff --git a/locales/pt_BR.mo b/locales/pt_BR.mo index 207a3a3ce..2f8cf39bc 100644 Binary files a/locales/pt_BR.mo and b/locales/pt_BR.mo differ diff --git a/locales/pt_BR.po b/locales/pt_BR.po index d3b84e426..1c65f7ae9 100644 --- a/locales/pt_BR.po +++ b/locales/pt_BR.po @@ -1,19 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Eduardo Spinola , 2016 # Marco Antonio Martins Junior , 2016 +# Paulo Gobbato , 2017 # Pedro de Oliveira Lira , 2015 # Rafael Viana , 2015 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:52+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,167 +22,71 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Cabeçalho" -msgstr[1] "Cabeçalhos" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Categoria de Formulário" -msgstr[1] "Categorias de Formulário" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Formulário" msgstr[1] "Formulários" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Formulários aguardando validação" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Formulários sem categoria" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Adicionar uma questão" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Editar uma questão" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Seção" -msgstr[1] "Seções" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "Objeto GLPI" -msgstr[1] "Objetos GLPI" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Obrigatório" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Mostrar vazio" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Listas, um por linha" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Valores" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "Um por linha" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Filtro" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Atributos" - -#: ajax/question.php:269 -msgid "Range" -msgstr "Range" - -#: ajax/question.php:273 -msgid "Min" -msgstr "Mínimo" - -#: ajax/question.php:279 -msgid "Max" -msgstr "Máximo" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Validação adicional" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Expressão regular" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Para ajudar os usuários, especifique as condições adicionais de validação na descrição das questões." +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Nenhum formulário encontrado. Por favor escolha um formulário abaixo" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Exibir campo" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Um erro ocorreu enquanto requisitando forumlários" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Sempre exibido" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "Nenhum formulário nessa categoria" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Escondido a menos que" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Tem certeza que quer deletar esta questão?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Exibido a menos que" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Tem certeza que quer deletar esta seção?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Adicionar seção" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Tem certeza que quer deletar este destino:" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Editar seção" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Mostrar todos os itens" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Adicionar um destino" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "nenhum item condiz" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "Falha na criação da categoria! Já existe uma categoria com este nome" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Um campo obrigatório está vazio: " -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "Catálogo de serviços" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Form creator" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Lista de formulários" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "Já existe um cabeçalho para esta entidade! Você só pode ter um cabeçalho por entidade." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Form creator" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -191,332 +96,283 @@ msgstr "A questão foi salva com sucesso!" msgid "The question has been successfully updated!" msgstr "A questão foi modificada com sucesso!" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Resposta" -msgstr[1] "Respostas" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Já existe um cabeçalho para esta entidade! Você só pode ter um cabeçalho por entidade." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "Categoria da base de conhecimento" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "Falha na criação da categoria! Já existe uma categoria com este nome" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "Helpdesk" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Formulários aguardando validação" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Cabeçalho" +msgstr[1] "Cabeçalhos" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Categoria de Formulário" +msgstr[1] "Categorias de Formulário" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Alvo" +msgstr[1] "Alvos" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Tipo de acesso" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Um campo obrigatório está vazio: " +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Acesso público" + +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Acesso privado" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Acesso restrito" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Link para o formulário" + +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Por favor, ative o formulário para ver o link" + +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Adicionar um cabeçalho " + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Já existe um cabeçalho para uma Entidade Pai! Um novo cabeçalho irá sobrescrevê-lo. " + +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Resposta do formulário" msgstr[1] "Respostas do formulário" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Requerente" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Validador" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "esperando" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "aceito" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "rejeitado" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Formulário aceito pelo validador." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Formulário salvo com sucesso." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Comentário" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Necessário se rejeitado" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Rejeitar" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Aceitar" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Comentário de rejeição necesário!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Impossível gerar alvos!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Formulário salvo com sucesso!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "Você não é o validados destas respostas" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Data do formulário" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Descrição" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Página Inicial" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Acesso" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Todos os idiomas" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Acesso público" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Acesso privado" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Acesso restrito" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Acesso direto na página inicial" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Precisa ser validado?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "Formulário padrão no catálogo de serviços" - -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "Categoria" -msgstr[1] "Categorias" - -#: inc/form.class.php:528 -msgid "see all" -msgstr "Ver todos" - -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "Organizar por popularidade" - -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "Organizar por ordem alfabética" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Helpdesk" -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "Por favor, descreva o que precisa aqui" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "Helpdesk do GLPI" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Formulários recentes (requerente)" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Catálogo de serviços simplificado" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Nenhum formulário postado ainda" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Catálogo de serviços ampliado" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Todos os formulários (requerente)" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Modo de helpdesk" -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Formulários recentes (validador)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Destino" +msgstr[1] "Destinações" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "Nenhum formulário aguarda validação" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Destino" +msgstr[1] "Destinos" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Todos os formulários (validador)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Deletar" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Escolha um validador" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Adicionar um destino" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "O nome não pode ser vazio!" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr " Você deve selecionar um validador!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Duplicar" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Formulário duplicado: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Formulário transferido: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Alvo" -msgstr[1] "Alvos" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Tipo de acesso" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "Link para o formulário" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "Por favor, ative o formulário para ver o link" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Adicionar um cabeçalho " +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "O tipo não pode ser vazio!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Já existe um cabeçalho para uma Entidade Pai! Um novo cabeçalho irá sobrescrevê-lo. " +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Seção" +msgstr[1] "Seções" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "Questão" -msgstr[1] "Questões" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "O título é obrigatório. " -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "Formulário salvo" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "Um formulário precisa de validação" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Formulário rejeitado" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Formulário aceito" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Formulaáio deletado" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Formulário #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Nome do formulário" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Respostas de formulário completo" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Comentário rejeitado" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Link de validação" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Requisição #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Formulário criado" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "Sua requisição foi salva" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " "see your answers onto the following link:\\n##formcreator.validation_link##" msgstr "Olá,\\nSua requisição do GLPI foi salva com sucesso com o número ##formcreator.request_id## e transmitido para a equipe de helpdesk.\\nVocê pode ver suas respostas no seguinte link:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Um formulário vindo do GLPI necessita ser validado" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Olá,\\nUm formulário do GLPI precisa ser validado e você foi escolhido como validador.\\nVocê pode acessá-lo clicando neste link:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "Seu formulário foi recusado pelo validador" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -524,288 +380,561 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Olá,\\nLamentamos informar que o seu formulário foi recusado pelo validador pelo motivo abaixo:\\n##formcreator.validation_comment##\\n\\nVocê pode modificá-lo e re-submetê-lo clicando neste link:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Seu formulário foi aceito pelo validador" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." 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." -#: inc/notificationtargetformanswer.class.php:121 -msgid "Your form has been deleted by an administrator" -msgstr "Seu formulário foi deletado por um administrador" - -#: inc/notificationtargetformanswer.class.php:122 -msgid "" -"Hi,\\nWe are sorry to inform you that your request cannot be considered and " -"has been deleted by an administrator." -msgstr "Olá,\\nNós lamentamos informar que a sua solicitação não pode ser considerada e foi deletada por um administrador." - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Questão" -msgstr[1] "Questões" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Deletar" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "O título é obrigatório. " - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "O campo de tipo é obrigatório" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "A seção é obrigatória" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "O valor do campo é obrigatório:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "Um campo de descrição necessita uma descrição:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "Informações do LDAP não recuperadas!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Destino" -msgstr[1] "Destinações" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Destino" -msgstr[1] "Destinos" +#: inc/notificationtargetform_answer.class.php:121 +msgid "Your form has been deleted by an administrator" +msgstr "Seu formulário foi deletado por um administrador" -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "O tipo não pode ser vazio!" +#: inc/notificationtargetform_answer.class.php:122 +msgid "" +"Hi,\\nWe are sorry to inform you that your request cannot be considered and " +"has been deleted by an administrator." +msgstr "Olá,\\nNós lamentamos informar que a sua solicitação não pode ser considerada e foi deletada por um administrador." -#: inc/targetticket.class.php:7 +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Resposta" +msgstr[1] "Respostas" + +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Entidade ativa no momento" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Entidade padrão do solicitante" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "Primeira entidade do solicitante (alfabeticamente)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Última entidade do solicitante (alfabeticamente)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "A entidade do formulário" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Entidade padrão do validador" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Entidade específica" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Entidade padrão de uma resposta de tipo usuário" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" -msgstr "" +msgstr "De um objeto do GLPI > Entidade tipo pergunta resposta" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Tags das perguntas" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Tags específicas" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Tags das perguntas e tags específicas" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Tags de perguntas ou tags específicas" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "igual a resposta para a questão" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "calculado da data de criação do ticket" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "calculado da resposta a questão" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "Igual a resposta da pergunta" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Ticket alvo" msgstr[1] "Tickets alvos" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Edite um destino" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Título do ticket" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Questão" +msgstr[1] "Questões" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Pergunta de tipo usuário" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Pergunta de tipo entidade" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Tags de ticket" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Tags" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "Adicionar mensagem de validação como primeiro acompanhamento do ticket" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Cancelar" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Autores do ticket" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Requerente do formulário" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Validador do formulário" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Pessoa específica" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Pessoa da questão" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Grupo específico" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Grupo da questão" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Fornecedor específico" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Fornecedor da questão" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Formulário completo" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "O título não pode ser vazio!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "A descrição não pode ser vazia!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "Abrangência" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Objeto GLPI" +msgstr[1] "Objetos GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "Isto não é um número:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "O número deve ser maior que %d:" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "O número deve ser menor que %d:" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "Formato especificado não combina" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "Float" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "Isso não é um Inteiro:" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "Inteiro" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "O texto é muito curto (mínimo %d caracteres):" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "O texto é muito longo (máximo %d caracteres):" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "Área de Texto" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Texto" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "Este e-mail não é válido:" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Data" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "A questão precisa ter no mínimo %d respostas" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "A questão seguinte não aceita mais que %d respostas" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "Seleção Múltipla " + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "Um arquivo obrigatório está ausente:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "Seleção LDAP" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Selecionar" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "Caixas de Seleção" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" -msgstr "" +msgstr "Procure suporte" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" -msgstr "" +msgstr "Minhas requisições de suporte" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "Reservar um ativo" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "Consultar feeds" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Mostrar todos os itens" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "Validar" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "nenhum item condiz" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "Fechado" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "Voltar" +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Pessoa específica" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" -msgstr "Nenhum formulário encontrado. Por favor escolha um formulário abaixo" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Grupo específico" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" -msgstr "" +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Categoria da base de conhecimento" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" -msgstr "Nenhum formulário nessa categoria" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Obrigatório" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Tem certeza que quer deletar esta questão?" +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Adicionar uma questão" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Tem certeza que quer deletar esta seção?" +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Adicionar seção" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Tem certeza que quer deletar este destino:" +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "O campo de tipo é obrigatório" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "A seção é obrigatória" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "O valor do campo é obrigatório:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Um campo de descrição necessita uma descrição:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Informações do LDAP não recuperadas!" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "Importar formulários" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Descrição" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Página Inicial" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Acesso" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Todos os idiomas" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Acesso direto na página inicial" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Precisa ser validado?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Formulário padrão no catálogo de serviços" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Categoria" +msgstr[1] "Categorias" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "Ver todos" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "Organizar por popularidade" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "Organizar por ordem alfabética" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Por favor, descreva o que precisa aqui" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Formulários recentes (requerente)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Nenhum formulário postado ainda" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Todos os formulários (requerente)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Formulários recentes (validador)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Nenhum formulário aguarda validação" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Todos os formulários (validador)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Escolha um validador" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr " Você deve selecionar um validador!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Duplicar" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Formulário duplicado: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Formulário transferido: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "Formulários importados com sucesso de %s" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Questão" +msgstr[1] "Questões" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Editar uma questão" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Mostrar vazio" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Listas, um por linha" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Valores" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Um por linha" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Filtro" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Atributos" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Range" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Mínimo" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Máximo" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Validação adicional" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Expressão regular" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Para ajudar os usuários, especifique as condições adicionais de validação na descrição das questões." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Exibir campo" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Sempre exibido" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Escondido a menos que" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Exibido a menos que" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Editar seção" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Formulários sem categoria" diff --git a/locales/ro_RO.mo b/locales/ro_RO.mo index bb71ac9bc..4b8cd8182 100644 Binary files a/locales/ro_RO.mo and b/locales/ro_RO.mo differ diff --git a/locales/ro_RO.po b/locales/ro_RO.po index 9f563c609..40623d3a9 100644 --- a/locales/ro_RO.po +++ b/locales/ro_RO.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2016-11-29 10:01+0100\n" +"PO-Revision-Date: 2016-11-29 09:00+0000\n" +"Last-Translator: Johan Cwiklinski \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,21 +18,21 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 +#: hook.php:57 inc/form.class.php:317 inc/header.class.php:7 msgid "Header" msgid_plural "Headers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: hook.php:57 inc/category.class.php:9 +#: hook.php:58 inc/category.class.php:9 msgid "Form category" msgid_plural "Form categories" msgstr[0] "Formular categorie" msgstr[1] "Formular categorii" msgstr[2] "Formular categorii" -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 +#: setup.php:20 setup.php:129 ajax/homepage_forms.php:48 #: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 #: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 msgid "Form" @@ -41,8 +41,8 @@ msgstr[0] "Formular" msgstr[1] "Formulare" msgstr[2] "Formulare" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 +#: setup.php:119 inc/form.class.php:58 inc/formlist.class.php:22 +#: inc/formlist.class.php:23 msgid "Forms waiting for validation" msgstr "Formulare în aşteptarea validării" @@ -59,7 +59,7 @@ msgid "Edit a question" msgstr "Editează o întrebare" #: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 +#: inc/targetticket.class.php:941 msgid "Section" msgid_plural "Sections" msgstr[0] "Secţiune" @@ -143,11 +143,11 @@ msgstr "" msgid "Displayed unless" msgstr "" -#: ajax/section.php:21 inc/question.class.php:222 +#: ajax/section.php:23 inc/question.class.php:222 msgid "Add a section" msgstr "Adaugă o secţiune" -#: ajax/section.php:23 +#: ajax/section.php:25 msgid "Edit a section" msgstr "Editează o secţiune" @@ -160,7 +160,7 @@ msgid "" "A category already exists with the same name! Category creation failed." msgstr "" -#: front/formanswer.form.php:43 front/formanswer.php:12 +#: front/form_answer.form.php:37 front/form_answer.php:12 #: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 #: front/knowbaseitem.form.php:10 front/reservation.form.php:10 #: front/reservationitem.php:7 front/reservation.php:12 @@ -168,8 +168,8 @@ msgstr "" msgid "Service catalog" msgstr "" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/form_answer.php:16 front/form_answer.php:21 front/formdisplay.php:62 #: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 #: front/issue.php:21 front/targetticket.form.php:47 msgid "Form Creator" @@ -193,7 +193,7 @@ msgstr "" msgid "The question has been successfully updated!" msgstr "" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 +#: inc/answer.class.php:35 inc/targetticket.class.php:940 msgid "Answer" msgid_plural "Answers" msgstr[0] "Răspuns" @@ -228,203 +228,216 @@ msgstr "" msgid "A required field is empty:" msgstr "Un câmp cerut este necompletat:" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:301 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Răspuns formular" msgstr[1] "Răspunsuri formular" msgstr[2] "Răspunsuri formular" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetformanswer.class.php:51 msgid "Requester" msgstr "Solicitant" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetformanswer.class.php:52 msgid "Validator" msgstr "Validator" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "în aşteptare" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "acceptat" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "refuzat" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Comentariu" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Cerut dacă i refuzat" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Refuz" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Accept" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Comentariu refuzat este cerut" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:612 msgid "Cannot generate targets!" msgstr "" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:624 inc/form_answer.class.php:678 msgid "The form has been successfully saved!" msgstr "" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:638 inc/form_answer.class.php:656 +msgid "You are not the validator of these answers" +msgstr "" + +#: inc/form_answer.class.php:695 inc/form_answer.class.php:697 msgid "Form data" msgstr "Data Formular" -#: inc/form.class.php:92 +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "" + +#: inc/form.class.php:94 msgid "Description" msgstr "" -#: inc/form.class.php:120 +#: inc/form.class.php:122 msgid "Homepage" msgstr "Homepage" -#: inc/form.class.php:128 +#: inc/form.class.php:130 msgid "Access" msgstr "Acces" -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 msgid "All langages" msgstr "Toate limbile" -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 +#: inc/form.class.php:189 inc/form.class.php:243 inc/form_profile.class.php:35 msgid "Public access" msgstr "Public acces" -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 +#: inc/form.class.php:190 inc/form.class.php:246 inc/form_profile.class.php:36 msgid "Private access" msgstr "Privat acces" -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 +#: inc/form.class.php:191 inc/form.class.php:249 inc/form_profile.class.php:37 msgid "Restricted access" msgstr "Restricţionat acces" -#: inc/form.class.php:294 +#: inc/form.class.php:296 msgid "Direct access on homepage" msgstr "" -#: inc/form.class.php:321 +#: inc/form.class.php:323 msgid "Need to be validate?" msgstr "" -#: inc/form.class.php:426 +#: inc/form.class.php:427 msgid "Default form in service catalog" msgstr "" -#: inc/form.class.php:527 +#: inc/form.class.php:535 msgid "Category" msgid_plural "Categories" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: inc/form.class.php:528 +#: inc/form.class.php:536 msgid "see all" msgstr "" -#: inc/form.class.php:545 +#: inc/form.class.php:554 msgid "Popularity sort" msgstr "" -#: inc/form.class.php:549 +#: inc/form.class.php:558 msgid "Alphabetic sort" msgstr "" -#: inc/form.class.php:710 +#: inc/form.class.php:732 msgid "Please, describe your need here" msgstr "" -#: inc/form.class.php:719 +#: inc/form.class.php:741 msgid "My last forms (requester)" msgstr "" -#: inc/form.class.php:729 +#: inc/form.class.php:751 msgid "No form posted yet" msgstr "" -#: inc/form.class.php:741 +#: inc/form.class.php:763 msgid "All my forms (requester)" msgstr "" -#: inc/form.class.php:751 +#: inc/form.class.php:773 msgid "My last forms (validator)" msgstr "" -#: inc/form.class.php:771 +#: inc/form.class.php:793 msgid "No form waiting for validation" msgstr "Niciun Formular în aşteptarea validării" -#: inc/form.class.php:783 +#: inc/form.class.php:805 msgid "All my forms (validator)" msgstr "" -#: inc/form.class.php:874 +#: inc/form.class.php:897 msgid "Choose a validator" msgstr "Alege un validator" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/form.class.php:941 inc/target.class.php:119 msgid "The name cannot be empty!" msgstr "" -#: inc/form.class.php:1046 +#: inc/form.class.php:1093 msgid "You must select validator !" msgstr "" -#: inc/form.class.php:1270 +#: inc/form.class.php:1318 msgid "Duplicate" msgstr "Duplicheaza" -#: inc/form.class.php:1465 +#: inc/form.class.php:1490 #, php-format msgid "Form duplicated: %s" msgstr "" -#: inc/form.class.php:1476 +#: inc/form.class.php:1501 #, php-format msgid "Form Transfered: %s" msgstr "" -#: inc/formprofiles.class.php:12 +#: inc/form.class.php:1686 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "" + +#: inc/form_profile.class.php:12 msgid "Target" msgid_plural "Targets" msgstr[0] "Target" msgstr[1] "Targete" msgstr[2] "Targete" -#: inc/formprofiles.class.php:29 +#: inc/form_profile.class.php:29 msgid "Access type" msgstr "Tip acces" -#: inc/formprofiles.class.php:44 +#: inc/form_profile.class.php:44 msgid "Link to the form" msgstr "" -#: inc/formprofiles.class.php:52 +#: inc/form_profile.class.php:52 msgid "Please active the form to view the link" msgstr "" @@ -438,7 +451,7 @@ msgid "" "previous one." msgstr "" -#: inc/issue.class.php:6 inc/issue.class.php:184 +#: inc/issue.class.php:6 inc/issue.class.php:187 msgid "Issue" msgid_plural "Issues" msgstr[0] "" @@ -532,7 +545,7 @@ msgid "" msgstr "" #: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/targetticket.class.php:1421 msgid "Your form has been accepted by the validator" msgstr "" @@ -552,8 +565,8 @@ msgid "" "has been deleted by an administrator." msgstr "" -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 +#: inc/question.class.php:35 inc/targetticket.class.php:236 +#: inc/targetticket.class.php:417 inc/targetticket.class.php:938 msgid "Question" msgid_plural "Questions" msgstr[0] "Întrebare" @@ -565,28 +578,28 @@ msgstr[2] "Întrebări" msgid "Delete" msgstr "Şterge" -#: inc/question.class.php:256 inc/section.class.php:163 +#: inc/question.class.php:257 inc/section.class.php:178 msgid "The title is required" msgstr "Titlul este cerut" -#: inc/question.class.php:262 +#: inc/question.class.php:264 msgid "The field type is required" msgstr "" -#: inc/question.class.php:268 +#: inc/question.class.php:271 msgid "The section is required" msgstr "Secţiunea este cerută" -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 +#: inc/question.class.php:280 inc/question.class.php:292 +#: inc/question.class.php:306 msgid "The field value is required:" msgstr "" -#: inc/question.class.php:311 +#: inc/question.class.php:320 msgid "A description field should have a description:" msgstr "" -#: inc/question.class.php:362 +#: inc/question.class.php:375 msgid "Cannot recover LDAP informations!" msgstr "" @@ -604,7 +617,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: inc/target.class.php:123 +#: inc/target.class.php:125 msgid "The type cannot be empty!" msgstr "" @@ -672,119 +685,131 @@ msgstr "" msgid "calculated from the answer to the question" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:40 +msgid "Equals to the answer to the question" +msgstr "" + +#: inc/targetticket.class.php:66 inc/targetticket.class.php:108 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Tichet target" msgstr[1] "Tichete target" msgstr[2] "Tichete target" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:96 msgid "Edit a destination" msgstr "Editează o destinaţie" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:111 msgid "Ticket title" msgstr "Titlu Tichet" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:310 msgid "User type question" msgstr "" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:311 msgid "Entity type question" msgstr "" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:375 msgid "Ticket tags" msgstr "" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:418 msgid "Tags" msgstr "" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:484 msgid "Add validation message as first ticket followup" msgstr "" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:498 msgid "Cancel" msgstr "Anulează" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:572 msgid "Ticket actors" msgstr "" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:612 inc/targetticket.class.php:669 +#: inc/targetticket.class.php:713 inc/targetticket.class.php:770 +#: inc/targetticket.class.php:813 inc/targetticket.class.php:883 msgid "Form requester" msgstr "Formular Solicitant" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:613 inc/targetticket.class.php:672 +#: inc/targetticket.class.php:714 inc/targetticket.class.php:773 +#: inc/targetticket.class.php:814 inc/targetticket.class.php:886 msgid "Form validator" msgstr "Validator formular" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 +#: inc/targetticket.class.php:614 inc/targetticket.class.php:715 +#: inc/targetticket.class.php:815 msgid "Specific person" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:615 inc/targetticket.class.php:682 +#: inc/targetticket.class.php:716 inc/targetticket.class.php:783 +#: inc/targetticket.class.php:816 inc/targetticket.class.php:896 msgid "Person from the question" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 +#: inc/targetticket.class.php:616 inc/targetticket.class.php:717 +#: inc/targetticket.class.php:817 msgid "Specific group" msgstr "Specific grup" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:617 inc/targetticket.class.php:693 +#: inc/targetticket.class.php:718 inc/targetticket.class.php:794 +#: inc/targetticket.class.php:818 inc/targetticket.class.php:907 msgid "Group from the question" msgstr "" -#: inc/targetticket.class.php:757 +#: inc/targetticket.class.php:819 msgid "Specific supplier" msgstr "Furnizor specific" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:820 inc/targetticket.class.php:918 msgid "Supplier from the question" msgstr "" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:945 msgid "Full form" msgstr "Formular complet" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:992 msgid "The title cannot be empty!" msgstr "" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:998 msgid "The description cannot be empty!" msgstr "" -#: inc/wizard.class.php:83 +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" msgstr "" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" msgstr "" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "" +#: inc/wizard.class.php:253 +msgid "To validate" +msgstr "" + +#: inc/wizard.class.php:266 +msgid "Closed" +msgstr "" + #: scripts/combobox.js.php:54 msgid "Show All Items" msgstr "Afiseaza toate elementrele" @@ -793,30 +818,26 @@ msgstr "Afiseaza toate elementrele" msgid "didn't match any item" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" - -#: scripts/scripts.js.php:235 +#: scripts/scripts.js.php:250 msgid "No form found. Please choose a form below instead" msgstr "" -#: scripts/scripts.js.php:253 +#: scripts/scripts.js.php:268 msgid "An error occured while querying forms" msgstr "" -#: scripts/scripts.js.php:289 +#: scripts/scripts.js.php:304 msgid "No form yet in this category" msgstr "" -#: scripts/scripts.js.php:382 +#: scripts/scripts.js.php:402 msgid "Are you sure you want to delete this question?" msgstr "" -#: scripts/scripts.js.php:417 +#: scripts/scripts.js.php:437 msgid "Are you sure you want to delete this section?" msgstr "" -#: scripts/scripts.js.php:454 +#: scripts/scripts.js.php:474 msgid "Are you sure you want to delete this destination:" msgstr "" diff --git a/locales/ru_RU.mo b/locales/ru_RU.mo index 6e10f3e89..5ab3b2d46 100644 Binary files a/locales/ru_RU.mo and b/locales/ru_RU.mo differ diff --git a/locales/ru_RU.po b/locales/ru_RU.po index 36ec18daf..6d7586d35 100644 --- a/locales/ru_RU.po +++ b/locales/ru_RU.po @@ -1,19 +1,20 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Alexey Petukhov , 2014-2015 # Jérémy MOREAU , 2014 # Nikolay , 2016 +# Nikolay , 2017 # Nikolay , 2016 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:52+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Russian (Russia) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,25 +22,9 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Заголовок" -msgstr[1] "Заголовки" -msgstr[2] "Заголовки" -msgstr[3] "Заголовки" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Категория формы" -msgstr[1] "Категории формы" -msgstr[2] "Категории формы" -msgstr[3] "Категории формы" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Форма" @@ -47,197 +32,147 @@ msgstr[1] "Формы" msgstr[2] "Формы" msgstr[3] "Формы" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Формы, ожидающие утверждения" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Формы без категорий" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Добавить вопрос" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Изменить вопрос" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Секция" -msgstr[1] "Секции" -msgstr[2] "Секции" -msgstr[3] "Секции" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Не найдена форма. Пожалуйста, выберите форму ниже вместо этой" -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "Объект GLPI" -msgstr[1] "Объекты GLPI" -msgstr[2] "Объекты GLPI" -msgstr[3] "Объекты GLPI" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Произошла ошибка во время выполнения запроса форм" -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Требуется" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "Нет формы еще в этой категории" -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Показывать пустое" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Вы уверены, что хотите удалить этот вопрос?" -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "По одному в каждой строке для списка" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Вы уверены, что хотите удалить эту секцию?" -#: ajax/question.php:223 -msgid "Values" -msgstr "Значения" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Вы уверены, что хотите удалить это назначение:" -#: ajax/question.php:224 -msgid "One per line" -msgstr "По одному в каждой линии" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Показать всё" -#: ajax/question.php:236 -msgid "Filter" -msgstr "Фильтр" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "не соответствует ни одному" -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Атрибут" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Требуемое поле пустое:" -#: ajax/question.php:269 -msgid "Range" -msgstr "Диапазон" +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 +msgid "Service catalog" +msgstr "Каталог услуг" -#: ajax/question.php:273 -msgid "Min" -msgstr "Минимум" +#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 +msgid "Form list" +msgstr "Список форм" -#: ajax/question.php:279 -msgid "Max" -msgstr "Максимум" +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Форма создания заявки" -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Дополнительная проверка" +#: front/question.form.php:15 +msgid "The question has been successfully saved!" +msgstr "Вопрос успешно сохранен!" -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Регулярное выражение" +#: front/question.form.php:25 +msgid "The question has been successfully updated!" +msgstr "Вопрос успешно обновлен!" -#: ajax/question.php:313 +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Укажите дополнительные критерии утверждения в описании вопроса для помощи пользователям." - -#: ajax/question.php:320 -msgid "Show field" -msgstr "Показать поле" - -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Всегда видим" - -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Скрытые исключения" - -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Показанные исключения" - -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Добавить раздел" - -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Изменить раздел" - -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Добавить назначение" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Такой заголовок уже существует в этой организации! Заголовок должен быть уникальным." #: front/category.form.php:13 msgid "" "A category already exists with the same name! Category creation failed." msgstr "Категория с таким названием уже существует! Категория не создана." -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 -msgid "Service catalog" -msgstr "" - -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Форма создания заявки" - -#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 -msgid "Form list" -msgstr "Список форм" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Формы ожидающие согласования" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "Такой заголовок уже существует в этой организации! Заголовок должен быть уникальным." +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Заголовок" +msgstr[1] "Заголовки" +msgstr[2] "Заголовки" +msgstr[3] "Заголовки" -#: front/question.form.php:15 -msgid "The question has been successfully saved!" -msgstr "Вопрос успешно сохранен!" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Категория формы" +msgstr[1] "Категории формы" +msgstr[2] "Категории формы" +msgstr[3] "Категории формы" -#: front/question.form.php:25 -msgid "The question has been successfully updated!" -msgstr "Вопрос успешно обновлен!" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Цель" +msgstr[1] "Цели" +msgstr[2] "Цели" +msgstr[3] "Цели" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Ответ" -msgstr[1] "Ответы" -msgstr[2] "Ответы" -msgstr[3] "Ответы" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Тип доступа" -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Публичный доступ" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Личный доступ" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Доступ запрещен" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Ссылка на форму" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Пожалуйста, активную форму можно увидеть по ссылке" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Добавить заголовок" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Требуемое поле пустое:" +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Такой заголовок уже существует в родительской организации! Заголовок перезапишет предыдущий." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Ответ в форме" @@ -245,450 +180,324 @@ msgstr[1] "Ответы в форме" msgstr[2] "Ответ в форме" msgstr[3] "Форма ответов" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "Заказчик" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" -msgstr "Проверяющий" +msgstr "Согласующий" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "ожидание" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "принято" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "отклонено" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." -msgstr "Форма принята проверяющим." +msgstr "Форма принята согласующим." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Форма успешно сохранена." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Комментарий" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Требуется если отклонено" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Отклонить" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Принять" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Требуется комментарий для отклонения!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Не удается выполнить задание!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Форма успешно сохранена!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "Вы не согласующий этих ответов" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Форма данных" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Описание" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Домашняя страница" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Доступ" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Все языки" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Публичный доступ" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Личный доступ" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Доступ запрещен" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Прямой доступ с домашней страницы" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Требуется проверка?" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "" - -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: inc/form.class.php:528 -msgid "see all" -msgstr "" - -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "" - -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Служба поддержки" -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "Служба поддержки GLPI" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Мои последние формы (заказчик)" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Упрощенный каталог услуг" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Еще не создано форм" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Расширенный каталог услуг" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Все мои формы (заказчик)" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Режим службы поддержки" -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Мои последние формы (утверждающий)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Назначение" +msgstr[1] "Назначения" +msgstr[2] "Назначения" +msgstr[3] "Назначения" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "Нет форм для утверждения" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Назначение" +msgstr[1] "Назначения" +msgstr[2] "Назначений" +msgstr[3] "Назначения" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Все мои формы (утверждающий)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Удалить" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Выбрать утверждающего сотрудника" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Добавить назначение" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "Требуется указать название!" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Вы должны выбрать проверяющего!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Дублировать" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Форма дубликата: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Форма передана: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Цель" -msgstr[1] "Цели" -msgstr[2] "Цели" -msgstr[3] "Цели" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Тип доступа" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Добавить заголовок" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Требуется указать тип!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Такой заголовок уже существует в родительской организации! Заголовок перезапишет предыдущий." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Секция" +msgstr[1] "Секции" +msgstr[2] "Секции" +msgstr[3] "Секции" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "Требуется указать название" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "Форма была сохранена" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" -msgstr "Форма требует утверждения" +msgstr "Форма требует согласования" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Форма отклонена" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Форма принята" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Форма удалена" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Форма #" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Название формы" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Полная форма ответа" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Комментарий отклонения" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" -msgstr "Ссылка для утверждения" +msgstr "Ссылка на согласование" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "Запрос #" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Форма была создана" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "Ваш запрос сохранен!" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 msgid "" "Hi,\\nYour request from GLPI has been successfully saved with number " "##formcreator.request_id## and transmitted to the helpdesk team.\\nYou can " "see your answers onto the following link:\\n##formcreator.validation_link##" msgstr "Здравствуйте,\\nВаш запрос формы GLPI был успешно сохранен под номером ##formcreator.request_id## и передана в команду службы поддержки.\\nВы можете увидеть Ваши ответы по следующей ссылке:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" -msgstr "Форма из GLPI, требующая проверки" +msgstr "Форма GLPI должна быть согласована" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Здравствуйте,\\nФорму из GLPI нужно проверить, и в качестве проверяющего выбраны вы.\\nВы можете получить доступ к нему, нажав на эту ссылку:\\n##formcreator.validation_link##" +msgstr "Здравствуйте,\\nФорму из GLPI нужно проверить, и в качестве согласующего выбраны Вы.\\nВы можете получить доступ к нему, нажав на эту ссылку:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" -msgstr "Ваша форма была отклонена проверяющим" +msgstr "Ваша форма была отклонена согласующим" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 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##" +msgstr "Здравствуйте,\\nМы сожалеем сообщить Вам, что Ваша форма была отклонена согласующим по причине ниже:\\n##formcreator.validation_comment##\\n\\nВы можете все еще исправить и снова отправить кликнув по этой ссылке:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" -msgstr "Ваша форма была принята проверяющим" +msgstr "Ваша форма была принята согласующим" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 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Ваш запрос будет вскоре рассмотрен." +msgstr "Здравствуйте,\\nМы рады сообщить Вам, что Ваша форма была принята согласующим.\\nВаш запрос будет вскоре рассмотрен." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" msgstr "Ваша заявка была удалена администратором" -#: inc/notificationtargetformanswer.class.php:122 -msgid "" -"Hi,\\nWe are sorry to inform you that your request cannot be considered and " -"has been deleted by an administrator." -msgstr "Здравствуйте,\\nМы сожалеем сообщить Вам, что Ваш запрос не может быть рассмотрена и была удалена администратором." - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Вопрос" -msgstr[1] "Вопросы" -msgstr[2] "Вопросы" -msgstr[3] "Вопросы" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Удалить" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "Требуется указать название" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "Требуется указать тип поля" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "Требуется указать секцию" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "Требуется указать значение поля:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "Поле с описанием должно содержать описание:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "Невозможно получить информацию из LDAP!" - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Назначение" -msgstr[1] "Назначения" -msgstr[2] "Назначения" -msgstr[3] "Назначения" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Назначение" -msgstr[1] "Назначения" -msgstr[2] "Назначений" -msgstr[3] "Назначения" +#: inc/notificationtargetform_answer.class.php:122 +msgid "" +"Hi,\\nWe are sorry to inform you that your request cannot be considered and " +"has been deleted by an administrator." +msgstr "Здравствуйте,\\nМы сожалеем сообщить Вам, что Ваш запрос не может быть рассмотрена и была удалена администратором." -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "Требуется указать тип!" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Ответ" +msgstr[1] "Ответы" +msgstr[2] "Ответы" +msgstr[3] "Ответы" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Текущая активная организация" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Заказчик организации по умолчанию" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "Первый действующий заказчик организации (в алфавитном порядке)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Последний действующий заказчик организации (в алфавитном порядке)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Форма организации" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" -msgstr "Организация проверяющего по умолчанию" +msgstr "Организация согласующего по умолчанию" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Особая организация" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Организация отвечающего на запросы по умолчанию" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "Форма объекта GLPI > Организация отвечающего на запросы" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Тэг из запросов" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Особые тэги" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Тэги из запросов и особых тэгов" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Тэги из запросов или особых тэгов" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "Аналогично ответу на вопрос" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "Получено из даты создания заявки" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "Получено из ответов на вопрос" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "Точный ответ на вопрос" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Целевая заявка" @@ -696,144 +505,468 @@ msgstr[1] "Целевые заявки" msgstr[2] "Целевые заявки" msgstr[3] "Целевые заявки" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Изменить назначение" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Заголовок заявки" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Вопрос" +msgstr[1] "Вопросы" +msgstr[2] "Вопросы" +msgstr[3] "Вопросы" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Отвечающий на запросы" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Организация запрашивающего" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Тэги заявки" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Тэги" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" -msgstr "Добавить подтверждение в качестве первой заметки" +msgstr "Добавить согласование в качестве первого комментария заявки" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "Отменить" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Участники заявки" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Запрашивающий форму" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" -msgstr "Утверждающий форму" - -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Указанная персона" +msgstr "Согласующий форму" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Персона из вопроса" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Указанная группа" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Группа из вопроса" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Указанный поставщик" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Поставщик из вопроса" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Форма полностью" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "Требуется указать заголовок!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "Требуется указать описание!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "Переключатель" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Объект GLPI" +msgstr[1] "Объекты GLPI" +msgstr[2] "Объекты GLPI" +msgstr[3] "Объекты GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "Это не число:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "Число должно быть больше, чем %d:" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "Число должно быть меньше, чем %d:" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "Указанный формат не соотвутствует" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "Плавающий" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "Это не целое число:" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "Целое число" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "Этот текст слишком короткий (минимум %d символов)" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "Этот текст слишком длинный (максимум %d символов)" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "Текстовое поле" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Текст" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "Этот почтовый адрес ЭП неправильный:" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Дата и время" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "Вопрос должен содержать хотя бы %d ответ(ов)" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "Вопрос должен содержать не более, чем %d ответ(ов)" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "Множественный выбор" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "Требуемое поле отсутствует:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "Выбор LDAP" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Выбор" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "Чекбокс" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" -msgstr "" +msgstr "Обратиться за помощью" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" -msgstr "" +msgstr "Мои просьбы о помощи" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" -msgstr "" +msgstr "Заказать актив" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" -msgstr "" +msgstr "Консультирующие каналы" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Показать всё" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "Согласовать" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "не соответствует ни одному" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "Закрыто" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "" +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Указанная персона" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" -msgstr "" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Указанная группа" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" -msgstr "" +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Категория базы знаний" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" -msgstr "" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Обязательный" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Вы уверены, что хотите удалить этот вопрос?" +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Добавить вопрос" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Вы уверены, что хотите удалить эту секцию?" +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Добавить раздел" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Вы уверены, что хотите удалить это назначение:" +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Требуется указать тип поля" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Требуется указать секцию" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "Требуется указать значение поля:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Поле с описанием должно содержать описание:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Невозможно получить информацию из LDAP!" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "Импорт форм" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Описание" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Домашняя страница" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Доступ" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Все языки" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Прямой доступ с домашней страницы" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Требуется согласование?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Форма по умолчанию в каталоге услуг" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Категория" +msgstr[1] "Категория" +msgstr[2] "Категории" +msgstr[3] "Категории" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "смотреть всё" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "По популярности" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "По алфавиту" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Пожалуйста, опишите здесь, что Вам нужно" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Мои последние формы (заказчик)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Еще не создано форм" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Все мои формы (заказчик)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Мои последние формы (согласующий)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Нет форм для согласования" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Все мои формы (согласующий)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Выбрать согласующего" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Вы должны выбрать согласующего!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Дублировать" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Форма дубликата: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Форма передана: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "Формы успешно импортированы из %s" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Проблема" +msgstr[1] "Проблема" +msgstr[2] "Проблемы" +msgstr[3] "Проблемы" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Изменить вопрос" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Показывать пустой" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "По одному в каждой строке для списка" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Значения" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "По одному в каждой линии" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Фильтр" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Атрибут" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Диапазон" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Минимум" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Максимум" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Дополнительное согласование" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Регулярное выражение" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Укажите дополнительные критерии согласования в описании вопроса для помощи пользователям." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Показать поле" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Всегда видим" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Скрытые исключения" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Показанные исключения" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Изменить раздел" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Формы без категорий" diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo index ce18139b6..ea46ff098 100644 Binary files a/locales/tr_TR.mo and b/locales/tr_TR.mo differ diff --git a/locales/tr_TR.po b/locales/tr_TR.po index 9066131e2..a245bc699 100644 --- a/locales/tr_TR.po +++ b/locales/tr_TR.po @@ -1,6 +1,6 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: # Kaya Zeren , 2015-2016 @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:52+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,162 +18,70 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "Üst Bilgiler" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "Form kategorileri" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" msgstr[0] "Formlar" -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "Değerlendirme bekleyen formlar" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "Kategorisi bulunmayan formlar" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "Bir soru ekle" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "Bir soruyu düzenle" - -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "Bölüm" - -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "GLPI nesnesi" - -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "Zorunlu" - -#: ajax/question.php:178 -msgid "Show empty" -msgstr "Boş görüntülensin" - -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "Listeler için her satıra bir tane" - -#: ajax/question.php:223 -msgid "Values" -msgstr "Değerler" - -#: ajax/question.php:224 -msgid "One per line" -msgstr "Her satıra bir tane" - -#: ajax/question.php:236 -msgid "Filter" -msgstr "Süzgeç" - -#: ajax/question.php:245 -msgid "Attribute" -msgstr "Öznitelik" - -#: ajax/question.php:269 -msgid "Range" -msgstr "Aralık" - -#: ajax/question.php:273 -msgid "Min" -msgstr "En küçük" - -#: ajax/question.php:279 -msgid "Max" -msgstr "En büyük" - -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "Ek değerlendirme" - -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "Kurallı ifade" - -#: ajax/question.php:313 -msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "Açıklamada ek değerlendirme koşullarını belirterek kullanıcılara yardımcı olabilirsiniz." +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Herhangi bir form bulunamadı. Lütfen aşağıdan bir form seçin" -#: ajax/question.php:320 -msgid "Show field" -msgstr "Alan görüntülensin" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Formlar alınırken bir sorun çıktı" -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "Herzaman görüntülensin" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "Bu kategoride henüz bir form yok" -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "Şu olmadan gizlensin" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Bu soruyu silmek istediğinize emin misiniz?" -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "Şu olmadan görüntülensin" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Bu bölümü silmek istediğinize emin misiniz?" -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "Bir bölüm ekle" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Bu hedefi silmek istediğinize emin misiniz:" -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "Bir bölümü düzenle" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Tüm Ögelere Bakın" -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "Bir hedef ekle" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "uygun bir öge bulunamadı" -#: front/category.form.php:13 -msgid "" -"A category already exists with the same name! Category creation failed." -msgstr "Aynı adlı bir kategori bulunduğundan kategori oluşturulamadı." +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Zorunlu bir alan boş bırakılmış:" -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 msgid "Service catalog" msgstr "Hizmet Kataloğu" -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "Form Oluşturucu" - #: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 msgid "Form list" msgstr "Form listesi" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "Bu varlık için bir üst bilgi zaten var. Her bir varlık için yalnız bir üst bilgi bulunabilir." +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Form Oluşturucu" #: front/question.form.php:15 msgid "The question has been successfully saved!" @@ -183,327 +91,276 @@ msgstr "Soru kaydedildi!" msgid "The question has been successfully updated!" msgstr "Soru güncellendi!" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "Yanıt" +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 +msgid "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Bu varlık için bir üst bilgi zaten var. Her bir varlık için yalnız bir üst bilgi bulunabilir." -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "Bilgi Bankası Kategorisi" +#: front/category.form.php:13 +msgid "" +"A category already exists with the same name! Category creation failed." +msgstr "Aynı adlı bir kategori bulunduğundan kategori oluşturulamadı." -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "Destek Merkezi" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Değerlendirme bekleyen formlar" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Üst Bilgiler" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Form kategorileri" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Hedefler" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Erişim tipi" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "Zorunlu bir alan boş bırakılmış:" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Herkese açık" + +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Özel" + +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Kısıtlı" + +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Forma bağla" + +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Lütfen bağlantının görüntülenmesi için formu etkinleştirin" -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Bir üst bilgi ekle" + +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Üst varlık için bir üst bilgi zaten var. Farklı bir varlık öncekinin yerine geçer." + +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" msgstr[0] "Form yanıtları" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" msgstr "İstekte bulunan" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" msgstr "Değerlendirici" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" msgstr "bekliyor" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" msgstr "onaylandı" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" msgstr "reddedildi" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." msgstr "Form değerlendirici tarafından onaylandı" -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." msgstr "Form kaydedildi" -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" msgstr "Açıklama" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" msgstr "Reddedildi ise zorunlu" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" msgstr "Reddet" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" msgstr "Onayla" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" msgstr "Red açıklaması zorunludur." -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" msgstr "Hedefler oluşturulamadı." -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" msgstr "Form kaydedildi!" -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "Bu yanıtların değerlendiricisi değilsiniz" + +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 msgid "Form data" msgstr "Form verisi" -#: inc/form.class.php:92 -msgid "Description" -msgstr "Açıklama" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "Ana sayfa" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "Erişim" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "Tüm diller" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "Herkese açık" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "Özel" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "Kısıtlı" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "Ana sayfaya doğrudan erişim" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "Değerlendirilmesi gerekli" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "Hizmet kataloğundaki varsayılan form" - -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "Kategoriler" - -#: inc/form.class.php:528 -msgid "see all" -msgstr "tümünü görüntüle" - -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "Sık kullanım sıralaması" - -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "Alfabetik sıralama" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Destek Merkezi" -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "Lütfen neye gerek duyduğunuzu yazın" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "GLPI Destek Merkezi" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "Son formlarım (istekte bulunan)" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Basitleştirilmiş Hizmet Kataloğu" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "Henüz bir form eklenmemiş" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Genişletilmiş Hizmet Kataloğu" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "Tüm formlarım (istekte bulunan)" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Destek Merkezi Kipi" -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "Son formlarım (değerlendirici)" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Hedefler" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "Değerlendirilmeyi bekleyen bir form yok" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Hedefler" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "Tüm formlarım (değerlendirici)" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Sil" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "Bir değerlendirici seçin" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Bir hedef ekle" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" msgstr "Ad boş olamaz!" -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "Bir değerlendirici seçmelisiniz!" - -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "Kopyala" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "Form kopyalandı: %s" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "Form Aktarıldı: %s" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "Hedefler" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "Erişim tipi" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "Forma bağla" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "Lütfen bağlantının görüntülenmesi için formu etkinleştirin" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "Bir üst bilgi ekle" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Tip boş olamaz!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "Üst varlık için bir üst bilgi zaten var. Farklı bir varlık öncekinin yerine geçer." +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Bölüm" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "Sorun" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "Başlık zorunludur" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" msgstr "Form kaydedildi" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" msgstr "Değerlendirilmesi gereken bir form var" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" msgstr "Form reddedildi" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" msgstr "Form onaylandı" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" msgstr "Form silindi" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" msgstr "Form No" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" msgstr "Form adı" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" msgstr "Tam form yanıtları" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" msgstr "Red açıklaması" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" msgstr "Onaylama bağlantısı" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" msgstr "İstek No" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" msgstr "Bir form eklendi" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" msgstr "İsteğiniz kaydedildi" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "Merhaba,\\nGLPI üzerindeki isteğiniz ##formcreator.request_id## numara ile kaydedilerek destek ekibimize iletildi.\\nİsteğinize verilen yanıtları şu bağlantıdan görebilirsiniz:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" msgstr "Değerlendirilmesi gereken bir GLPI formu var" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "Merhaba,\\nGLPI üzerinde değerlendirilmesi gereken bir formu değerlendirmek üzere seçildiniz.\\nAşağıdaki bağlantıya tıklayarak forma erişebilirsiniz:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" msgstr "Formunuzdaki bilgiler hatalı olduğundan reddedildi" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 msgid "" "Hi,\\nWe are sorry to inform you that your form has been refused by the " "validator for the reason " @@ -511,284 +368,553 @@ msgid "" "resubmit it by clicking onto this link:\\n##formcreator.validation_link##" msgstr "Merhaba,\\nFormunuz üzerindeki veriler şu sorunlar nedeniyle reddedildi:\\n##formcreator.validation_comment##\\n\\nFormdaki verileri düzenleyip yeniden göndermek için şu bağlantıyı kullanabilirsiniz:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 msgid "Your form has been accepted by the validator" msgstr "Formunuz kabul edildi" -#: inc/notificationtargetformanswer.class.php:116 +#: inc/notificationtargetform_answer.class.php:116 msgid "" "Hi,\\nWe are pleased to inform you that your form has been accepted by the " "validator.\\nYour request will be considered soon." msgstr "Merhaba,\\nFormunuz kabul edildi.\\nİsteğiniz kısa süre içinde değerlendirilecek." -#: inc/notificationtargetformanswer.class.php:121 +#: inc/notificationtargetform_answer.class.php:121 msgid "Your form has been deleted by an administrator" -msgstr "Formunuz bir yönetici tarafından silindi" - -#: inc/notificationtargetformanswer.class.php:122 -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." - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "Sorular" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "Sil" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "Başlık zorunludur" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "Alan tipi zorunludur" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "Bölüm zorunludur" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "Alan değeri zorunludur:" - -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "Bir açıklama alanında açıklama bulunmalıdır:" - -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "LDAP bilgileri geri yüklenemedi." - -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "Hedefler" - -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "Hedefler" +msgstr "Formunuz bir yönetici tarafından silindi" -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "Tip boş olamaz!" +#: inc/notificationtargetform_answer.class.php:122 +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." + +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Yanıt" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" msgstr "Geçerli etkin varlık" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" msgstr "Varsayılan istekte bulunan kullanıcının varlığı" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" msgstr "İlk devingen istekte bulunan kullanıcının varlığı (alfabetik)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" msgstr "Son devingen istekte bulunan kullanıcının varlığı (alfabetik)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" msgstr "Form varlığı" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" msgstr "Onaylayan kişinin varsayılan varlığı" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" msgstr "Belirli varlık" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" msgstr "Soruyu yanıtlayan kullanıcı tipinin varsayılan varlığı" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" msgstr "Bir GLPI nesnesinden > Varlık tipi soru yanıtı" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" msgstr "Sorulardan etiketler" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" msgstr "Belirli etiketler" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" msgstr "Sorulardan etiketler ve belirli etiketler" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" msgstr "Sorulardan etiketler ya da belirli etiketler" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" msgstr "sorunun yanıtına eşit" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" msgstr "çağrı oluşturma zamanından hesaplanan" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" msgstr "sorunun yanıtından hesaplanan" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" +msgstr "" + +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "Sorunun yanıtına eşit" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" msgstr[0] "Hedef çağrılar" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" msgstr "Bir hedefi düzenle" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" msgstr "Çağrı başlığı" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Sorular" + +#: inc/targetticket.class.php:324 msgid "User type question" msgstr "Kullanıcı tipi soru" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" msgstr "Varlık tipi soru" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" msgstr "Çağrı etiketleri" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" msgstr "Etiketler" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" msgstr "İlk çağrı izlemesine değerlendirme iletisi eklensin" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" msgstr "İptal" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" msgstr "Çağrı aktörleri" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" msgstr "Form ile istekte bulunan" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" msgstr "Formu değerlendiren" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" -msgstr "Belirli bir kişi" - -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 msgid "Person from the question" msgstr "Sorudan kişi" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" -msgstr "Belirli bir grup" - -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 msgid "Group from the question" msgstr "Sorudan grup" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" -msgstr "Belirli sağlayıcı" +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" +msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 msgid "Supplier from the question" msgstr "Sorudan sağlayıcı" -#: inc/targetticket.class.php:883 +#: inc/targetticket.class.php:988 msgid "Full form" msgstr "Tam form" -#: inc/targetticket.class.php:927 +#: inc/targetticket.class.php:1035 msgid "The title cannot be empty!" msgstr "Başlık boş olamaz!" -#: inc/targetticket.class.php:933 +#: inc/targetticket.class.php:1041 msgid "The description cannot be empty!" msgstr "Açıklama boş olamaz!" -#: inc/wizard.class.php:83 +#: inc/fields/radios-field.class.php:48 +msgid "Radios" +msgstr "Radyo düğmeleri" + +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "GLPI nesnesi" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" +msgstr "Bu bir sayı değil:" + +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" +msgstr "Şu sayı %d değerinden büyük olmalıdır:" + +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" +msgstr "Şu sayı %d değerinden küçük olmalıdır:" + +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" +msgstr "Özel biçim uyumlu değil:" + +#: inc/fields/float-field.class.php:38 +msgid "Float" +msgstr "Ondalık" + +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" +msgstr "Bu bir tamsayı değil:" + +#: inc/fields/integer-field.class.php:38 +msgid "Integer" +msgstr "Tamsayı" + +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" +msgstr "Metin çok kısa (en az %d karakter olmalıdır)" + +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" +msgstr "Metin çok uzun (en fazla %d karakter olmalıdır)" + +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" +msgstr "Metin alanı" + +#: inc/fields/text-field.class.php:32 +msgid "Text" +msgstr "Metin" + +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" +msgstr "E-posta adresi geçersiz:" + +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" +msgstr "Tarih saat" + +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" +msgstr "Şu sorunun en az %d yanıtı olmalıdır" + +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" +msgstr "Şu soru %d yanıttan fazlasını kabul etmez" + +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" +msgstr "Çoklu seçim" + +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" +msgstr "Zorunlu bir dosya eksik:" + +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" +msgstr "LDAP Seçin" + +#: inc/fields/select-field.class.php:51 +msgid "Select" +msgstr "Seçin" + +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" +msgstr "İşaret kutuları" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 msgid "Seek assistance" -msgstr "" +msgstr "Destek İsteyin" -#: inc/wizard.class.php:87 +#: inc/wizard.class.php:73 inc/wizard.class.php:74 msgid "My requests for assistance" -msgstr "" +msgstr "Destek İsteklerim" -#: inc/wizard.class.php:98 +#: inc/wizard.class.php:85 inc/wizard.class.php:86 msgid "Book an asset" msgstr "Bir varlığı ayırtın" -#: inc/wizard.class.php:105 +#: inc/wizard.class.php:94 inc/wizard.class.php:95 msgid "Consult feeds" msgstr "Akışlara bakın" -#: scripts/combobox.js.php:54 -msgid "Show All Items" -msgstr "Tüm Ögelere Bakın" +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "Değerlendirmek için" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" -msgstr "uygun bir öge bulunamadı" +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "Kapalı" -#: scripts/scripts.js.php:165 -msgid "Back" -msgstr "Geri" +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Belirli bir kişi" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" -msgstr "Herhangi bir form bulunamadı. Lütfen aşağıdan bir form seçin" +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Belirli bir grup" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" -msgstr "Formlar alınırken bir sorun çıktı" +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Bilgi Bankası Kategorisi" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" -msgstr "Bu kategoride henüz bir form yok" +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Zorunlu" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" -msgstr "Bu soruyu silmek istediğinize emin misiniz?" +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Bir soru ekle" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" -msgstr "Bu bölümü silmek istediğinize emin misiniz?" +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Bir bölüm ekle" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" -msgstr "Bu hedefi silmek istediğinize emin misiniz:" +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Alan tipi zorunludur" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Bölüm zorunludur" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "Alan değeri zorunludur:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Bir açıklama alanında açıklama bulunmalıdır:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "LDAP bilgileri geri yüklenemedi." + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "Formları al" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Açıklama" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Ana sayfa" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Erişim" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Tüm diller" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Ana sayfaya doğrudan erişim" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Değerlendirilmesi gerekli" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Hizmet kataloğundaki varsayılan form" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Kategoriler" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "tümünü görüntüle" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "Sık kullanım sıralaması" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "Alfabetik sıralama" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Lütfen neye gerek duyduğunuzu yazın" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Son formlarım (istekte bulunan)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Henüz bir form eklenmemiş" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Tüm formlarım (istekte bulunan)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Son formlarım (değerlendirici)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Değerlendirilmeyi bekleyen bir form yok" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Tüm formlarım (değerlendirici)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Bir değerlendirici seçin" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Bir değerlendirici seçmelisiniz!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Kopyala" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Form kopyalandı: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Form Aktarıldı: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "Form %s üzerinden alındı" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Sorun" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Bir soruyu düzenle" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Boş görüntülensin" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Listeler için her satıra bir tane" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Değerler" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Her satıra bir tane" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Süzgeç" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Öznitelik" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Aralık" + +#: ajax/question.php:272 +msgid "Min" +msgstr "En küçük" + +#: ajax/question.php:278 +msgid "Max" +msgstr "En büyük" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Ek değerlendirme" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Kurallı ifade" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Açıklamada ek değerlendirme koşullarını belirterek kullanıcılara yardımcı olabilirsiniz." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Alan görüntülensin" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Herzaman görüntülensin" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Şu olmadan gizlensin" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Şu olmadan görüntülensin" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Bir bölümü düzenle" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Kategorisi bulunmayan formlar" diff --git a/locales/uk_UA.mo b/locales/uk_UA.mo index 5c92d3948..d3259d373 100644 Binary files a/locales/uk_UA.mo and b/locales/uk_UA.mo differ diff --git a/locales/uk_UA.po b/locales/uk_UA.po index efac0ab27..d895977c4 100644 --- a/locales/uk_UA.po +++ b/locales/uk_UA.po @@ -1,15 +1,16 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Resources Development Team -# This file is distributed under the same license as the GLPI - Resources plugin package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # # Translators: +# Andriy Smilyanets , 2016-2017 msgid "" msgstr "" "Project-Id-Version: GLPI Plugin - Formcreator\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-14 09:54+0200\n" -"PO-Revision-Date: 2016-10-14 07:54+0000\n" -"Last-Translator: alexandre delaunay \n" +"POT-Creation-Date: 2017-01-31 16:47+0100\n" +"PO-Revision-Date: 2017-01-31 15:51+0000\n" +"Last-Translator: Thierry Bugier Pineau \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/teclib/glpi-project-plugin-formcreator/language/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,805 +18,935 @@ msgstr "" "Language: uk_UA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: hook.php:56 inc/form.class.php:315 inc/header.class.php:7 -msgid "Header" -msgid_plural "Headers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: hook.php:57 inc/category.class.php:9 -msgid "Form category" -msgid_plural "Form categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: setup.php:20 setup.php:146 ajax/homepage_forms.php:48 -#: ajax/homepage_link.php:6 inc/entityconfig.class.php:27 -#: inc/form.class.php:50 inc/formlist.class.php:14 scripts/scripts.js.php:18 +#: scripts/scripts.js.php:18 setup.php:20 setup.php:131 +#: inc/entityconfig.class.php:27 inc/formlist.class.php:14 +#: inc/form.class.php:50 ajax/homepage_link.php:6 ajax/homepage_forms.php:48 msgid "Form" msgid_plural "Forms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: setup.php:136 inc/form.class.php:58 inc/form.class.php:59 -#: inc/formlist.class.php:22 inc/formlist.class.php:23 -msgid "Forms waiting for validation" -msgstr "" - -#: ajax/homepage_forms.php:52 -msgid "Forms without category" -msgstr "" - -#: ajax/question.php:27 inc/question.class.php:212 -msgid "Add a question" -msgstr "" - -#: ajax/question.php:28 -msgid "Edit a question" -msgstr "" +msgstr[0] "Замовлення" +msgstr[1] "Замовлення" +msgstr[2] "Замовлень" -#: ajax/question.php:64 inc/section.class.php:35 -#: inc/targetticket.class.php:879 -msgid "Section" -msgid_plural "Sections" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: scripts/scripts.js.php:250 +msgid "No form found. Please choose a form below instead" +msgstr "Замовлення не знайдене. Будь ласка, оберіть нижче інше Замовлення" -#: ajax/question.php:91 -msgid "GLPI object" -msgid_plural "GLPI objects" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: scripts/scripts.js.php:268 +msgid "An error occured while querying forms" +msgstr "Під час роботи з Замовленнями виникла помилка" -#: ajax/question.php:166 inc/question.class.php:168 inc/question.class.php:172 -msgid "Required" -msgstr "" +#: scripts/scripts.js.php:304 +msgid "No form yet in this category" +msgstr "В цій категорії ще немає Замовлень" -#: ajax/question.php:178 -msgid "Show empty" -msgstr "" +#: scripts/scripts.js.php:402 +msgid "Are you sure you want to delete this question?" +msgstr "Ви впевнені, що необхідно видалити це запитання?" -#: ajax/question.php:196 -msgid "One per line for lists" -msgstr "" +#: scripts/scripts.js.php:437 +msgid "Are you sure you want to delete this section?" +msgstr "Ви впевнені, що необхідно видалити цей розділ?" -#: ajax/question.php:223 -msgid "Values" -msgstr "" +#: scripts/scripts.js.php:474 +msgid "Are you sure you want to delete this destination:" +msgstr "Ви впевнені, що необхідно видалити це призначення?" -#: ajax/question.php:224 -msgid "One per line" -msgstr "" +#: scripts/combobox.js.php:54 +msgid "Show All Items" +msgstr "Показати Всі елементи" -#: ajax/question.php:236 -msgid "Filter" -msgstr "" +#: scripts/combobox.js.php:120 +msgid "didn't match any item" +msgstr "не відповідає жодному елементу" -#: ajax/question.php:245 -msgid "Attribute" -msgstr "" +#: scripts/forms-validation.js.php:11 inc/field.class.php:98 +#: inc/fields/actor-field.class.php:153 inc/fields/datetime-field.class.php:50 +#: inc/fields/multiselect-field.class.php:15 +#: inc/fields/date-field.class.php:50 inc/fields/checkboxes-field.class.php:74 +msgid "A required field is empty:" +msgstr "Обов'язкове поле порожнє:" -#: ajax/question.php:269 -msgid "Range" -msgstr "" +#: front/formdisplay.php:44 front/form_answer.php:12 front/reservation.php:12 +#: front/form_answer.form.php:37 front/knowbaseitem.form.php:10 +#: front/reservation.form.php:10 front/reservationitem.php:7 +#: front/issue.form.php:20 front/wizard.php:13 front/wizardfeeds.php:11 +#: front/issue.php:12 +msgid "Service catalog" +msgstr "Каталог сервісів" -#: ajax/question.php:273 -msgid "Min" -msgstr "" +#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 +msgid "Form list" +msgstr "Список Замовлення" -#: ajax/question.php:279 -msgid "Max" -msgstr "" +#: front/formdisplay.php:62 front/formdisplay.php:74 front/form_answer.php:16 +#: front/form_answer.php:21 front/targetticket.form.php:49 front/form.php:15 +#: front/form_answer.form.php:41 front/form_answer.form.php:46 +#: front/issue.php:16 front/issue.php:21 +msgid "Form Creator" +msgstr "Редактор Замовлень" -#: ajax/question.php:303 -msgid "Additional validation" -msgstr "" +#: front/question.form.php:15 +msgid "The question has been successfully saved!" +msgstr "Запитання збережено успішно!" -#: ajax/question.php:306 -msgid "Regular expression" -msgstr "" +#: front/question.form.php:25 +msgid "The question has been successfully updated!" +msgstr "Запитання оновлено успішно!" -#: ajax/question.php:313 +#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 msgid "" -"Specify the additional validation conditions in the description of the " -"question to help users." -msgstr "" - -#: ajax/question.php:320 -msgid "Show field" -msgstr "" - -#: ajax/question.php:329 -msgid "Always displayed" -msgstr "" - -#: ajax/question.php:330 -msgid "Hidden unless" -msgstr "" - -#: ajax/question.php:331 -msgid "Displayed unless" -msgstr "" - -#: ajax/section.php:21 inc/question.class.php:222 -msgid "Add a section" -msgstr "" - -#: ajax/section.php:23 -msgid "Edit a section" -msgstr "" - -#: ajax/target.php:8 inc/target.class.php:85 -msgid "Add a destination" -msgstr "" +"An header already exists for this entity! You can have only one header per " +"entity." +msgstr "Для цього підрозділу заголовок вже існує! Можна створити лише один заголовок для підрозділу." #: front/category.form.php:13 msgid "" "A category already exists with the same name! Category creation failed." -msgstr "" - -#: front/formanswer.form.php:43 front/formanswer.php:12 -#: front/formdisplay.php:44 front/issue.form.php:20 front/issue.php:12 -#: front/knowbaseitem.form.php:10 front/reservation.form.php:10 -#: front/reservationitem.php:7 front/reservation.php:12 -#: front/wizardfeeds.php:11 front/wizard.php:13 -msgid "Service catalog" -msgstr "" - -#: front/formanswer.form.php:47 front/formanswer.form.php:52 -#: front/formanswer.php:16 front/formanswer.php:21 front/formdisplay.php:62 -#: front/formdisplay.php:74 front/form.php:15 front/issue.php:16 -#: front/issue.php:21 front/targetticket.form.php:47 -msgid "Form Creator" -msgstr "" +msgstr "Категорія з такою назвою вже існує! Створення категорії неможливе." -#: front/formdisplay.php:47 front/formlist.php:16 front/formlist.php:22 -msgid "Form list" -msgstr "" +#: setup.php:121 inc/formlist.class.php:22 inc/formlist.class.php:23 +#: inc/form.class.php:58 +msgid "Forms waiting for validation" +msgstr "Замовлення, що очікують перевірки" -#: front/header.form.php:13 inc/header.class.php:34 inc/header.class.php:110 -msgid "" -"An header already exists for this entity! You can have only one header per " -"entity." -msgstr "" +#: hook.php:57 inc/header.class.php:7 inc/form.class.php:317 +msgid "Header" +msgid_plural "Headers" +msgstr[0] "Заголовок" +msgstr[1] "Заголовки" +msgstr[2] "Заголовків" -#: front/question.form.php:15 -msgid "The question has been successfully saved!" -msgstr "" +#: hook.php:58 inc/category.class.php:9 +msgid "Form category" +msgid_plural "Form categories" +msgstr[0] "Категорія Замовлень" +msgstr[1] "Категорії Замовлень" +msgstr[2] "Категорій Замовлень" -#: front/question.form.php:25 -msgid "The question has been successfully updated!" -msgstr "" +#: inc/form_profile.class.php:12 +msgid "Target" +msgid_plural "Targets" +msgstr[0] "Ціль" +msgstr[1] "Цілі" +msgstr[2] "Цілей" -#: inc/answer.class.php:35 inc/targetticket.class.php:878 -msgid "Answer" -msgid_plural "Answers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/form_profile.class.php:29 +msgid "Access type" +msgstr "Тип доступу" -#: inc/category.class.php:39 -msgid "Knowbase category" -msgstr "" +#: inc/form_profile.class.php:35 inc/form.class.php:189 inc/form.class.php:243 +msgid "Public access" +msgstr "Публічний доступ" -#: inc/entityconfig.class.php:65 -msgid "Helpdesk" -msgstr "" +#: inc/form_profile.class.php:36 inc/form.class.php:190 inc/form.class.php:246 +msgid "Private access" +msgstr "Приватний доступ" -#: inc/entityconfig.class.php:74 -msgid "GLPi's helpdesk" -msgstr "" +#: inc/form_profile.class.php:37 inc/form.class.php:191 inc/form.class.php:249 +msgid "Restricted access" +msgstr "Обмежений доступ" -#: inc/entityconfig.class.php:75 -msgid "Service catalog simplified" -msgstr "" +#: inc/form_profile.class.php:44 +msgid "Link to the form" +msgstr "Посилання на Замовлення" -#: inc/entityconfig.class.php:76 -msgid "Service catalog extended" -msgstr "" +#: inc/form_profile.class.php:52 +msgid "Please active the form to view the link" +msgstr "Активуйте Замовлення, щоб побачити посилання" -#: inc/entityconfig.class.php:79 -msgid "Helpdesk mode" -msgstr "" +#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 +msgid "Add an header" +msgstr "Додати заголовок" -#: inc/field.class.php:98 scripts/forms-validation.js.php:11 -msgid "A required field is empty:" -msgstr "" +#: inc/header.class.php:51 +msgid "" +"An header exists for a parent entity! Another header will overwrite the " +"previous one." +msgstr "Заголовок для батьківського підрозділу існує! Інший заголовок перепише попередній." -#: inc/formanswer.class.php:39 inc/issue.class.php:271 +#: inc/form_answer.class.php:39 inc/issue.class.php:328 msgid "Form answer" msgid_plural "Form answers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Відповідь Замовлення" +msgstr[1] "Відповіді Замовлення" +msgstr[2] "Відповідей Замовлення" -#: inc/formanswer.class.php:78 inc/notificationtargetformanswer.class.php:51 +#: inc/form_answer.class.php:78 inc/notificationtargetform_answer.class.php:51 msgid "Requester" -msgstr "" +msgstr "Замовник" -#: inc/formanswer.class.php:87 inc/notificationtargetformanswer.class.php:52 +#: inc/form_answer.class.php:87 inc/notificationtargetform_answer.class.php:52 msgid "Validator" -msgstr "" +msgstr "Контролер" -#: inc/formanswer.class.php:153 +#: inc/form_answer.class.php:153 msgid "waiting" -msgstr "" +msgstr "очікування" -#: inc/formanswer.class.php:157 +#: inc/form_answer.class.php:157 msgid "accepted" -msgstr "" +msgstr "ухвалено" -#: inc/formanswer.class.php:161 +#: inc/form_answer.class.php:161 msgid "refused" -msgstr "" +msgstr "відхилено" -#: inc/formanswer.class.php:277 +#: inc/form_answer.class.php:285 msgid "Form accepted by validator." -msgstr "" +msgstr "Замовлення ухвалене контролером." -#: inc/formanswer.class.php:279 +#: inc/form_answer.class.php:287 msgid "Form successfully saved." -msgstr "" +msgstr "Замовлення успішно збережено." -#: inc/formanswer.class.php:336 +#: inc/form_answer.class.php:344 msgid "Comment" -msgstr "" +msgstr "Пояснення" -#: inc/formanswer.class.php:341 +#: inc/form_answer.class.php:349 msgid "Required if refused" -msgstr "" +msgstr "Обов'язково для відхилення" -#: inc/formanswer.class.php:347 +#: inc/form_answer.class.php:355 msgid "Refuse" -msgstr "" +msgstr "Відхилити" -#: inc/formanswer.class.php:350 +#: inc/form_answer.class.php:358 msgid "Accept" -msgstr "" +msgstr "Ухвалити" -#: inc/formanswer.class.php:365 +#: inc/form_answer.class.php:373 msgid "Refused comment is required!" -msgstr "" +msgstr "Пояснення відхилення обов'язкове!" -#: inc/formanswer.class.php:604 +#: inc/form_answer.class.php:618 msgid "Cannot generate targets!" -msgstr "" +msgstr "Неможливо згенерувати призначення!" -#: inc/formanswer.class.php:616 inc/formanswer.class.php:633 +#: inc/form_answer.class.php:630 inc/form_answer.class.php:684 msgid "The form has been successfully saved!" -msgstr "" - -#: inc/formanswer.class.php:650 inc/formanswer.class.php:652 -msgid "Form data" -msgstr "" - -#: inc/form.class.php:92 -msgid "Description" -msgstr "" - -#: inc/form.class.php:120 -msgid "Homepage" -msgstr "" - -#: inc/form.class.php:128 -msgid "Access" -msgstr "" - -#: inc/form.class.php:186 inc/form.class.php:200 inc/form.class.php:254 -#: inc/form.class.php:309 -msgid "All langages" -msgstr "" - -#: inc/form.class.php:187 inc/form.class.php:241 inc/formprofiles.class.php:35 -msgid "Public access" -msgstr "" - -#: inc/form.class.php:188 inc/form.class.php:244 inc/formprofiles.class.php:36 -msgid "Private access" -msgstr "" - -#: inc/form.class.php:189 inc/form.class.php:247 inc/formprofiles.class.php:37 -msgid "Restricted access" -msgstr "" - -#: inc/form.class.php:294 -msgid "Direct access on homepage" -msgstr "" - -#: inc/form.class.php:321 -msgid "Need to be validate?" -msgstr "" - -#: inc/form.class.php:426 -msgid "Default form in service catalog" -msgstr "" - -#: inc/form.class.php:527 -msgid "Category" -msgid_plural "Categories" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr "Замовлення збережено успішно!" -#: inc/form.class.php:528 -msgid "see all" -msgstr "" +#: inc/form_answer.class.php:644 inc/form_answer.class.php:662 +msgid "You are not the validator of these answers" +msgstr "Ви не є контролером цих відповідей." -#: inc/form.class.php:545 -msgid "Popularity sort" -msgstr "" +#: inc/form_answer.class.php:701 inc/form_answer.class.php:703 +msgid "Form data" +msgstr "Інформація Замовлення" -#: inc/form.class.php:549 -msgid "Alphabetic sort" -msgstr "" +#: inc/entityconfig.class.php:65 +msgid "Helpdesk" +msgstr "Сервіс-деск" -#: inc/form.class.php:710 -msgid "Please, describe your need here" -msgstr "" +#: inc/entityconfig.class.php:74 +msgid "GLPi's helpdesk" +msgstr "Сервіс-деск GLPi" -#: inc/form.class.php:719 -msgid "My last forms (requester)" -msgstr "" +#: inc/entityconfig.class.php:75 +msgid "Service catalog simplified" +msgstr "Спрощений каталог сервісів" -#: inc/form.class.php:729 -msgid "No form posted yet" -msgstr "" +#: inc/entityconfig.class.php:76 +msgid "Service catalog extended" +msgstr "Розширений каталог сервісів" -#: inc/form.class.php:741 -msgid "All my forms (requester)" -msgstr "" +#: inc/entityconfig.class.php:79 +msgid "Helpdesk mode" +msgstr "Режим Сервіс-деску" -#: inc/form.class.php:751 -msgid "My last forms (validator)" -msgstr "" +#: inc/target.class.php:26 +msgid "Destination" +msgid_plural "Destinations" +msgstr[0] "Призначення" +msgstr[1] "Призначення" +msgstr[2] "Призначень" -#: inc/form.class.php:771 -msgid "No form waiting for validation" -msgstr "" +#: inc/target.class.php:48 +msgid "Destinations" +msgid_plural "Destinations" +msgstr[0] "Призначення" +msgstr[1] "Призначення" +msgstr[2] "Призначень" -#: inc/form.class.php:783 -msgid "All my forms (validator)" -msgstr "" +#: inc/target.class.php:72 inc/question.class.php:131 +#: inc/question.class.php:201 +msgid "Delete" +msgstr "Видалити" -#: inc/form.class.php:874 -msgid "Choose a validator" -msgstr "" +#: inc/target.class.php:85 ajax/target.php:8 +msgid "Add a destination" +msgstr "Додати призначення" -#: inc/form.class.php:910 inc/target.class.php:118 +#: inc/target.class.php:119 inc/form.class.php:939 msgid "The name cannot be empty!" -msgstr "" - -#: inc/form.class.php:1046 -msgid "You must select validator !" -msgstr "" +msgstr "Ім'я не може бути порожнім!" -#: inc/form.class.php:1270 -msgid "Duplicate" -msgstr "" - -#: inc/form.class.php:1465 -#, php-format -msgid "Form duplicated: %s" -msgstr "" - -#: inc/form.class.php:1476 -#, php-format -msgid "Form Transfered: %s" -msgstr "" - -#: inc/formprofiles.class.php:12 -msgid "Target" -msgid_plural "Targets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: inc/formprofiles.class.php:29 -msgid "Access type" -msgstr "" - -#: inc/formprofiles.class.php:44 -msgid "Link to the form" -msgstr "" - -#: inc/formprofiles.class.php:52 -msgid "Please active the form to view the link" -msgstr "" - -#: inc/header.class.php:32 inc/header.class.php:48 inc/header.class.php:59 -msgid "Add an header" -msgstr "" +#: inc/target.class.php:125 +msgid "The type cannot be empty!" +msgstr "Тип не може бути порожнім!" -#: inc/header.class.php:51 -msgid "" -"An header exists for a parent entity! Another header will overwrite the " -"previous one." -msgstr "" +#: inc/section.class.php:35 inc/targetticket.class.php:984 +#: ajax/question.php:63 +msgid "Section" +msgid_plural "Sections" +msgstr[0] "Розділ" +msgstr[1] "Розділи" +msgstr[2] "Розділів" -#: inc/issue.class.php:6 inc/issue.class.php:184 -msgid "Issue" -msgid_plural "Issues" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/section.class.php:178 inc/question.class.php:257 +msgid "The title is required" +msgstr "Назва є обов'язковою" -#: inc/notificationtargetformanswer.class.php:12 +#: inc/notificationtargetform_answer.class.php:12 msgid "The form as been saved" -msgstr "" +msgstr "Замовлення збережено" -#: inc/notificationtargetformanswer.class.php:13 -#: inc/notificationtargetformanswer.class.php:102 +#: inc/notificationtargetform_answer.class.php:13 +#: inc/notificationtargetform_answer.class.php:102 msgid "A form need to be validate" -msgstr "" +msgstr "Замовлення має бути перевірене контролером" -#: inc/notificationtargetformanswer.class.php:14 -#: inc/notificationtargetformanswer.class.php:108 +#: inc/notificationtargetform_answer.class.php:14 +#: inc/notificationtargetform_answer.class.php:108 msgid "The form is refused" -msgstr "" +msgstr "Замовлення відхилено" -#: inc/notificationtargetformanswer.class.php:15 -#: inc/notificationtargetformanswer.class.php:114 +#: inc/notificationtargetform_answer.class.php:15 +#: inc/notificationtargetform_answer.class.php:114 msgid "The form is accepted" -msgstr "" +msgstr "Замовлення ухвалене" -#: inc/notificationtargetformanswer.class.php:16 -#: inc/notificationtargetformanswer.class.php:120 +#: inc/notificationtargetform_answer.class.php:16 +#: inc/notificationtargetform_answer.class.php:120 msgid "The form is deleted" -msgstr "" +msgstr "Замовлення видалено" -#: inc/notificationtargetformanswer.class.php:49 +#: inc/notificationtargetform_answer.class.php:49 msgid "Form #" -msgstr "" +msgstr "Замовлення №" -#: inc/notificationtargetformanswer.class.php:50 +#: inc/notificationtargetform_answer.class.php:50 msgid "Form name" -msgstr "" +msgstr "Назва Замовлення" -#: inc/notificationtargetformanswer.class.php:54 +#: inc/notificationtargetform_answer.class.php:54 msgid "Full form answers" -msgstr "" +msgstr "Повні відповіді Замовлення" -#: inc/notificationtargetformanswer.class.php:55 +#: inc/notificationtargetform_answer.class.php:55 msgid "Refused comment" -msgstr "" +msgstr "Пояснення відхилення" -#: inc/notificationtargetformanswer.class.php:56 +#: inc/notificationtargetform_answer.class.php:56 msgid "Validation link" -msgstr "" +msgstr "Посилання контролю" -#: inc/notificationtargetformanswer.class.php:57 +#: inc/notificationtargetform_answer.class.php:57 msgid "Request #" -msgstr "" +msgstr "Запит №" -#: inc/notificationtargetformanswer.class.php:96 +#: inc/notificationtargetform_answer.class.php:96 msgid "A form has been created" -msgstr "" +msgstr "Замовлення створено" -#: inc/notificationtargetformanswer.class.php:97 +#: inc/notificationtargetform_answer.class.php:97 msgid "Your request has been saved" -msgstr "" +msgstr "Ваше Замовлення створено" -#: inc/notificationtargetformanswer.class.php:98 +#: inc/notificationtargetform_answer.class.php:98 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 "" +msgstr "Вітаємо!\\nВаше Замовлення успішно збережено з номером ##formcreator.request_id## і передано команді Сервіс-деску.\\nВи можете спостерігати Замовлення за наступним посиланням:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:103 +#: inc/notificationtargetform_answer.class.php:103 msgid "A form from GLPI need to be validate" -msgstr "" +msgstr "Замовлення має бути перевірене контролером" -#: inc/notificationtargetformanswer.class.php:104 +#: inc/notificationtargetform_answer.class.php:104 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 "" +msgstr "Вітаємо!,\\nЗамовлення з Сервіс-Деску потребує перевірки і Вас обрали у якості контролера.\\nВи можете переглянути його за наступним посиланням:\\n##formcreator.validation_link##" -#: inc/notificationtargetformanswer.class.php:109 +#: inc/notificationtargetform_answer.class.php:109 msgid "Your form has been refused by the validator" -msgstr "" +msgstr "Ваша Замовлення було відхилено контролером" -#: inc/notificationtargetformanswer.class.php:110 +#: inc/notificationtargetform_answer.class.php:110 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 "" - -#: inc/notificationtargetformanswer.class.php:115 -#: inc/targetticket.class.php:1329 -msgid "Your form has been accepted by the validator" -msgstr "" - -#: inc/notificationtargetformanswer.class.php:116 -msgid "" -"Hi,\\nWe are pleased to inform you that your form has been accepted by the " -"validator.\\nYour request will be considered soon." -msgstr "" - -#: inc/notificationtargetformanswer.class.php:121 -msgid "Your form has been deleted by an administrator" -msgstr "" - -#: inc/notificationtargetformanswer.class.php:122 -msgid "" -"Hi,\\nWe are sorry to inform you that your request cannot be considered and " -"has been deleted by an administrator." -msgstr "" - -#: inc/question.class.php:35 inc/targetticket.class.php:356 -#: inc/targetticket.class.php:876 -msgid "Question" -msgid_plural "Questions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: inc/question.class.php:131 inc/question.class.php:201 -#: inc/target.class.php:72 -msgid "Delete" -msgstr "" - -#: inc/question.class.php:256 inc/section.class.php:163 -msgid "The title is required" -msgstr "" - -#: inc/question.class.php:262 -msgid "The field type is required" -msgstr "" - -#: inc/question.class.php:268 -msgid "The section is required" -msgstr "" - -#: inc/question.class.php:276 inc/question.class.php:286 -#: inc/question.class.php:299 -msgid "The field value is required:" -msgstr "" +"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##" -#: inc/question.class.php:311 -msgid "A description field should have a description:" -msgstr "" +#: inc/notificationtargetform_answer.class.php:115 +#: inc/targetticket.class.php:1509 +msgid "Your form has been accepted by the validator" +msgstr "Ваше Замовлення схвалене контролером" -#: inc/question.class.php:362 -msgid "Cannot recover LDAP informations!" -msgstr "" +#: inc/notificationtargetform_answer.class.php:116 +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Повідомляємо, що Ваше Замовлення схвалене контролером та буде розглянуто найближчим часом." -#: inc/target.class.php:26 -msgid "Destination" -msgid_plural "Destinations" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/notificationtargetform_answer.class.php:121 +msgid "Your form has been deleted by an administrator" +msgstr "Ваше Замовлення було видалене адміністратором" -#: inc/target.class.php:48 -msgid "Destinations" -msgid_plural "Destinations" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: inc/notificationtargetform_answer.class.php:122 +msgid "" +"Hi,\\nWe are sorry to inform you that your request cannot be considered and " +"has been deleted by an administrator." +msgstr "Привіт!\\nНа жаль, Ваше Замовлення не може бути розглянуте і було видалене адміністратором." -#: inc/target.class.php:123 -msgid "The type cannot be empty!" -msgstr "" +#: inc/answer.class.php:35 inc/targetticket.class.php:983 +msgid "Answer" +msgid_plural "Answers" +msgstr[0] "Відповідь" +msgstr[1] "Відповіді" +msgstr[2] "Відповідей" -#: inc/targetticket.class.php:7 +#: inc/targetticket.class.php:21 msgid "Current active entity" -msgstr "" +msgstr "Поточний активний підрозділ" -#: inc/targetticket.class.php:8 +#: inc/targetticket.class.php:22 msgid "Default requester user's entity" -msgstr "" +msgstr "Типовий підрозділ замовника" -#: inc/targetticket.class.php:9 +#: inc/targetticket.class.php:23 msgid "First dynamic requester user's entity (alphabetical)" -msgstr "" +msgstr "Перший динамічний підрозділ замовника (за абеткою)" -#: inc/targetticket.class.php:10 +#: inc/targetticket.class.php:24 msgid "Last dynamic requester user's entity (alphabetical)" -msgstr "" +msgstr "Останній динамічний підрозділ замовника (за абеткою)" -#: inc/targetticket.class.php:11 +#: inc/targetticket.class.php:25 msgid "The form entity" -msgstr "" +msgstr "Підрозділ Замовлення" -#: inc/targetticket.class.php:12 +#: inc/targetticket.class.php:26 msgid "Default entity of the validator" -msgstr "" +msgstr "Типовий підрозділ контролера" -#: inc/targetticket.class.php:13 +#: inc/targetticket.class.php:27 inc/targetticket_actor.class.php:13 msgid "Specific entity" -msgstr "" +msgstr "Вказаний підрозділ" -#: inc/targetticket.class.php:14 +#: inc/targetticket.class.php:28 msgid "Default entity of a user type question answer" -msgstr "" +msgstr "Відповідь для питання типу Типовий підрозділ користувача" -#: inc/targetticket.class.php:15 +#: inc/targetticket.class.php:29 msgid "From a GLPI object > Entity type question answer" -msgstr "" +msgstr "З об'єкту GLPI > Відповідь для питання типу Підрозділ" -#: inc/targetticket.class.php:22 +#: inc/targetticket.class.php:36 msgid "Tags from questions" -msgstr "" +msgstr "Тег з запитань" -#: inc/targetticket.class.php:23 +#: inc/targetticket.class.php:37 msgid "Specific tags" -msgstr "" +msgstr "Визначені теги" -#: inc/targetticket.class.php:24 +#: inc/targetticket.class.php:38 msgid "Tags from questions and specific tags" -msgstr "" +msgstr "Теги з запитань та визначених тегів" -#: inc/targetticket.class.php:25 +#: inc/targetticket.class.php:39 msgid "Tags from questions or specific tags" -msgstr "" +msgstr "Теги з запитань або визначених тегів" -#: inc/targetticket.class.php:31 +#: inc/targetticket.class.php:45 msgid "equals to the answer to the question" -msgstr "" +msgstr "дорівнює відповіді на запитання" -#: inc/targetticket.class.php:32 +#: inc/targetticket.class.php:46 msgid "calculated from the ticket creation date" -msgstr "" +msgstr "обраховується з дати створення заявки" -#: inc/targetticket.class.php:33 +#: inc/targetticket.class.php:47 msgid "calculated from the answer to the question" +msgstr "обраховується з відповіді на запитання" + +#: inc/targetticket.class.php:53 +msgid "Urgency from template or Medium" msgstr "" -#: inc/targetticket.class.php:59 inc/targetticket.class.php:101 +#: inc/targetticket.class.php:54 +msgid "Equals to the answer to the question" +msgstr "Дорівнює відповіді на запитання" + +#: inc/targetticket.class.php:80 inc/targetticket.class.php:122 msgid "Target ticket" msgid_plural "Target tickets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Цільова заявка" +msgstr[1] "Цільові заявки" +msgstr[2] "Цільових заявок" -#: inc/targetticket.class.php:89 +#: inc/targetticket.class.php:110 msgid "Edit a destination" -msgstr "" +msgstr "Редагувати призначення" -#: inc/targetticket.class.php:104 +#: inc/targetticket.class.php:125 msgid "Ticket title" -msgstr "" +msgstr "Назва заявки" -#: inc/targetticket.class.php:249 +#: inc/targetticket.class.php:250 inc/targetticket.class.php:431 +#: inc/targetticket.class.php:981 inc/question.class.php:35 +msgid "Question" +msgid_plural "Questions" +msgstr[0] "Запитання" +msgstr[1] "Запитання" +msgstr[2] "Запитань" + +#: inc/targetticket.class.php:324 msgid "User type question" -msgstr "" +msgstr "Запитання типу користувача" -#: inc/targetticket.class.php:250 +#: inc/targetticket.class.php:325 msgid "Entity type question" -msgstr "" +msgstr "Запитання типу підрозділу" -#: inc/targetticket.class.php:314 +#: inc/targetticket.class.php:389 msgid "Ticket tags" -msgstr "" +msgstr "Теги заявки" -#: inc/targetticket.class.php:357 +#: inc/targetticket.class.php:432 msgid "Tags" -msgstr "" +msgstr "Теги" -#: inc/targetticket.class.php:423 +#: inc/targetticket.class.php:498 msgid "Add validation message as first ticket followup" -msgstr "" +msgstr "Додати повідомлення перевірки як першу відповідь заявки" -#: inc/targetticket.class.php:437 +#: inc/targetticket.class.php:512 msgid "Cancel" -msgstr "" +msgstr "Відміна" -#: inc/targetticket.class.php:511 +#: inc/targetticket.class.php:594 msgid "Ticket actors" -msgstr "" +msgstr "Виконавці заявки" -#: inc/targetticket.class.php:551 inc/targetticket.class.php:607 -#: inc/targetticket.class.php:651 inc/targetticket.class.php:708 -#: inc/targetticket.class.php:751 inc/targetticket.class.php:821 +#: inc/targetticket.class.php:691 inc/targetticket.class.php:801 +#: inc/targetticket.class.php:920 inc/targetticket_actor.class.php:7 msgid "Form requester" -msgstr "" +msgstr "Замовник Замовлення" -#: inc/targetticket.class.php:552 inc/targetticket.class.php:610 -#: inc/targetticket.class.php:652 inc/targetticket.class.php:711 -#: inc/targetticket.class.php:752 inc/targetticket.class.php:824 +#: inc/targetticket.class.php:694 inc/targetticket.class.php:804 +#: inc/targetticket.class.php:923 inc/targetticket_actor.class.php:8 msgid "Form validator" -msgstr "" +msgstr "Контролер Замовлення" -#: inc/targetticket.class.php:553 inc/targetticket.class.php:653 -#: inc/targetticket.class.php:753 -msgid "Specific person" +#: inc/targetticket.class.php:704 inc/targetticket.class.php:814 +#: inc/targetticket.class.php:933 inc/targetticket_actor.class.php:10 +msgid "Person from the question" +msgstr "Персона з запитання" + +#: inc/targetticket.class.php:715 inc/targetticket.class.php:825 +#: inc/targetticket.class.php:944 inc/targetticket_actor.class.php:12 +msgid "Group from the question" +msgstr "Група з запитання" + +#: inc/targetticket.class.php:721 inc/targetticket.class.php:831 +#: inc/targetticket.class.php:950 inc/targetticket_actor.class.php:15 +msgid "Actors from the question" msgstr "" -#: inc/targetticket.class.php:554 inc/targetticket.class.php:620 -#: inc/targetticket.class.php:654 inc/targetticket.class.php:721 -#: inc/targetticket.class.php:754 inc/targetticket.class.php:834 -msgid "Person from the question" +#: inc/targetticket.class.php:961 inc/targetticket_actor.class.php:14 +msgid "Supplier from the question" +msgstr "Постачальник з запитання" + +#: inc/targetticket.class.php:988 +msgid "Full form" +msgstr "Повне Замовлення" + +#: inc/targetticket.class.php:1035 +msgid "The title cannot be empty!" +msgstr "Назва не може бути порожня!" + +#: inc/targetticket.class.php:1041 +msgid "The description cannot be empty!" +msgstr "Опис не може бути порожнім!" + +#: inc/fields/radios-field.class.php:48 +msgid "Radios" msgstr "" -#: inc/targetticket.class.php:555 inc/targetticket.class.php:655 -#: inc/targetticket.class.php:755 -msgid "Specific group" +#: inc/fields/glpiselect-field.class.php:7 ajax/question.php:90 +msgid "GLPI object" +msgid_plural "GLPI objects" +msgstr[0] "Об'єкт GLPI" +msgstr[1] "Об'єкти GLPI" +msgstr[2] "Об'єктів GLPI" + +#: inc/fields/float-field.class.php:10 +msgid "This is not a number:" msgstr "" -#: inc/targetticket.class.php:556 inc/targetticket.class.php:631 -#: inc/targetticket.class.php:656 inc/targetticket.class.php:732 -#: inc/targetticket.class.php:756 inc/targetticket.class.php:845 -msgid "Group from the question" +#: inc/fields/float-field.class.php:15 inc/fields/integer-field.class.php:15 +#, php-format +msgid "The following number must be greater than %d:" msgstr "" -#: inc/targetticket.class.php:757 -msgid "Specific supplier" +#: inc/fields/float-field.class.php:21 inc/fields/integer-field.class.php:21 +#, php-format +msgid "The following number must be lower than %d:" msgstr "" -#: inc/targetticket.class.php:758 inc/targetticket.class.php:856 -msgid "Supplier from the question" +#: inc/fields/float-field.class.php:27 inc/fields/integer-field.class.php:27 +#: inc/fields/textarea-field.class.php:45 inc/fields/text-field.class.php:22 +msgid "Specific format does not match:" msgstr "" -#: inc/targetticket.class.php:883 -msgid "Full form" +#: inc/fields/float-field.class.php:38 +msgid "Float" msgstr "" -#: inc/targetticket.class.php:927 -msgid "The title cannot be empty!" +#: inc/fields/integer-field.class.php:10 +msgid "This is not an integer:" msgstr "" -#: inc/targetticket.class.php:933 -msgid "The description cannot be empty!" +#: inc/fields/integer-field.class.php:38 +msgid "Integer" msgstr "" -#: inc/wizard.class.php:83 -msgid "Seek assistance" +#: inc/fields/textarea-field.class.php:35 inc/fields/text-field.class.php:12 +#, php-format +msgid "The text is too short (minimum %d characters):" msgstr "" -#: inc/wizard.class.php:87 -msgid "My requests for assistance" +#: inc/fields/textarea-field.class.php:40 inc/fields/text-field.class.php:17 +#, php-format +msgid "The text is too long (maximum %d characters):" msgstr "" -#: inc/wizard.class.php:98 -msgid "Book an asset" +#: inc/fields/textarea-field.class.php:55 +msgid "Textarea" msgstr "" -#: inc/wizard.class.php:105 -msgid "Consult feeds" +#: inc/fields/text-field.class.php:32 +msgid "Text" msgstr "" -#: scripts/combobox.js.php:54 -msgid "Show All Items" +#: inc/fields/email-field.class.php:25 +msgid "This is not a valid e-mail:" msgstr "" -#: scripts/combobox.js.php:120 -msgid "didn't match any item" +#: inc/fields/actor-field.class.php:9 +msgid "Actor" +msgid_plural "Actors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: inc/fields/datetime-field.class.php:62 +msgid "Datetime" msgstr "" -#: scripts/scripts.js.php:165 -msgid "Back" +#: inc/fields/tag-field.class.php:66 +msgid "Tag" +msgid_plural "Tags" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: inc/fields/multiselect-field.class.php:20 +#: inc/fields/checkboxes-field.class.php:81 +#, php-format +msgid "The following question needs of at least %d answers" msgstr "" -#: scripts/scripts.js.php:235 -msgid "No form found. Please choose a form below instead" +#: inc/fields/multiselect-field.class.php:26 +#: inc/fields/checkboxes-field.class.php:87 +#, php-format +msgid "The following question does not accept more than %d answers" msgstr "" -#: scripts/scripts.js.php:253 -msgid "An error occured while querying forms" +#: inc/fields/multiselect-field.class.php:71 +msgid "Multiselect" msgstr "" -#: scripts/scripts.js.php:289 -msgid "No form yet in this category" +#: inc/fields/file-field.class.php:29 +msgid "A required file is missing:" msgstr "" -#: scripts/scripts.js.php:382 -msgid "Are you sure you want to delete this question?" +#: inc/fields/ldapselect-field.class.php:72 +msgid "LDAP Select" msgstr "" -#: scripts/scripts.js.php:417 -msgid "Are you sure you want to delete this section?" +#: inc/fields/select-field.class.php:51 +msgid "Select" msgstr "" -#: scripts/scripts.js.php:454 -msgid "Are you sure you want to delete this destination:" +#: inc/fields/checkboxes-field.class.php:99 +msgid "Checkboxes" msgstr "" + +#: inc/wizard.class.php:67 inc/wizard.class.php:68 +msgid "Seek assistance" +msgstr "Шукати допомогу" + +#: inc/wizard.class.php:73 inc/wizard.class.php:74 +msgid "My requests for assistance" +msgstr "Мої запити допомоги" + +#: inc/wizard.class.php:85 inc/wizard.class.php:86 +msgid "Book an asset" +msgstr "Замовити обладнання" + +#: inc/wizard.class.php:94 inc/wizard.class.php:95 +msgid "Consult feeds" +msgstr "Канали консультації" + +#: inc/wizard.class.php:227 +msgid "To validate" +msgstr "Для схвалення" + +#: inc/wizard.class.php:239 +msgid "Closed" +msgstr "Закрито" + +#: inc/targetticket_actor.class.php:9 +msgid "Specific person" +msgstr "Вказана персона" + +#: inc/targetticket_actor.class.php:11 +msgid "Specific group" +msgstr "Вказана група" + +#: inc/category.class.php:39 +msgid "Knowbase category" +msgstr "Категорія бази знань" + +#: inc/question.class.php:168 inc/question.class.php:172 ajax/question.php:165 +msgid "Required" +msgstr "Обов'язкове" + +#: inc/question.class.php:212 ajax/question.php:26 +msgid "Add a question" +msgstr "Додати запитання" + +#: inc/question.class.php:222 ajax/section.php:23 +msgid "Add a section" +msgstr "Додати розділ" + +#: inc/question.class.php:266 +msgid "The field type is required" +msgstr "Тип поля є обов'язковим" + +#: inc/question.class.php:273 +msgid "The section is required" +msgstr "Розділ є обов'язковим" + +#: inc/question.class.php:283 inc/question.class.php:302 +#: inc/question.class.php:316 +msgid "The field value is required:" +msgstr "Значення поля є обов'язковим:" + +#: inc/question.class.php:330 +msgid "A description field should have a description:" +msgstr "Поле опису повинне містити опис:" + +#: inc/question.class.php:386 +msgid "Cannot recover LDAP informations!" +msgstr "Неможливо отримати інформацію з LDAP!" + +#: inc/form.class.php:60 +msgid "Import forms" +msgstr "Імпорт Замовлень" + +#: inc/form.class.php:94 +msgid "Description" +msgstr "Опис" + +#: inc/form.class.php:122 +msgid "Homepage" +msgstr "Головна сторінка" + +#: inc/form.class.php:130 +msgid "Access" +msgstr "Доступ" + +#: inc/form.class.php:188 inc/form.class.php:202 inc/form.class.php:256 +#: inc/form.class.php:311 +msgid "All langages" +msgstr "Всі мови" + +#: inc/form.class.php:296 +msgid "Direct access on homepage" +msgstr "Прямий доступ до головної сторінки" + +#: inc/form.class.php:323 +msgid "Need to be validate?" +msgstr "Схвалення необхідне?" + +#: inc/form.class.php:427 +msgid "Default form in service catalog" +msgstr "Типове Замовлення каталогу сервісів" + +#: inc/form.class.php:535 +msgid "Category" +msgid_plural "Categories" +msgstr[0] "Категорія" +msgstr[1] "Категорії" +msgstr[2] "Категорій" + +#: inc/form.class.php:536 +msgid "see all" +msgstr "дивитись все" + +#: inc/form.class.php:554 +msgid "Popularity sort" +msgstr "Сортувати за популярністю" + +#: inc/form.class.php:558 +msgid "Alphabetic sort" +msgstr "Сортувати за абеткою" + +#: inc/form.class.php:730 +msgid "Please, describe your need here" +msgstr "Будь ласка, опишіть тут свою потребу" + +#: inc/form.class.php:739 +msgid "My last forms (requester)" +msgstr "Мої останні Замовлення (замовник)" + +#: inc/form.class.php:749 +msgid "No form posted yet" +msgstr "Заповнених Замовлень ще немає" + +#: inc/form.class.php:761 +msgid "All my forms (requester)" +msgstr "Всі мої Замовлення (замовник)" + +#: inc/form.class.php:771 +msgid "My last forms (validator)" +msgstr "Мої останні Замовлення (контролер)" + +#: inc/form.class.php:791 +msgid "No form waiting for validation" +msgstr "Немає Замовлень, що очікують контролю" + +#: inc/form.class.php:803 +msgid "All my forms (validator)" +msgstr "Всі мої Замовлення (контролер)" + +#: inc/form.class.php:895 +msgid "Choose a validator" +msgstr "Обрати контролера" + +#: inc/form.class.php:1102 +msgid "You must select validator !" +msgstr "Необхідно обрати контролера!" + +#: inc/form.class.php:1336 +msgid "Duplicate" +msgstr "Дублювати" + +#: inc/form.class.php:1511 +#, php-format +msgid "Form duplicated: %s" +msgstr "Замовлення продубльовано: %s" + +#: inc/form.class.php:1522 +#, php-format +msgid "Form Transfered: %s" +msgstr "Замовлення перенесено: %s" + +#: inc/form.class.php:1707 +#, php-format +msgid "Forms successfully imported from %s" +msgstr "Замовлення з %s успішно імпортовані" + +#: inc/issue.class.php:6 inc/issue.class.php:214 +msgid "Issue" +msgid_plural "Issues" +msgstr[0] "Проблема" +msgstr[1] "Проблеми" +msgstr[2] "Проблем" + +#: ajax/question.php:27 +msgid "Edit a question" +msgstr "Редагувати запитання" + +#: ajax/question.php:177 +msgid "Show empty" +msgstr "Показувати порожнє" + +#: ajax/question.php:195 +msgid "One per line for lists" +msgstr "Один на рядок для списків" + +#: ajax/question.php:222 +msgid "Values" +msgstr "Значення" + +#: ajax/question.php:223 +msgid "One per line" +msgstr "Один на рядок" + +#: ajax/question.php:235 +msgid "Filter" +msgstr "Фільтр" + +#: ajax/question.php:244 +msgid "Attribute" +msgstr "Атрибут" + +#: ajax/question.php:268 +msgid "Range" +msgstr "Інтервал" + +#: ajax/question.php:272 +msgid "Min" +msgstr "Мінімум" + +#: ajax/question.php:278 +msgid "Max" +msgstr "Максимум" + +#: ajax/question.php:302 +msgid "Additional validation" +msgstr "Додаткова перевірка" + +#: ajax/question.php:305 +msgid "Regular expression" +msgstr "Регулярний вираз" + +#: ajax/question.php:312 +msgid "" +"Specify the additional validation conditions in the description of the " +"question to help users." +msgstr "Для полегшення наведіть додаткові умови перевірки в описі запитання." + +#: ajax/question.php:319 +msgid "Show field" +msgstr "Показати поле" + +#: ajax/question.php:328 +msgid "Always displayed" +msgstr "Завжди видимі" + +#: ajax/question.php:329 +msgid "Hidden unless" +msgstr "Приховане доки" + +#: ajax/question.php:330 +msgid "Displayed unless" +msgstr "Видимі доки" + +#: ajax/section.php:25 +msgid "Edit a section" +msgstr "Редагувати розділ" + +#: ajax/homepage_forms.php:52 +msgid "Forms without category" +msgstr "Замовлення без категорії" diff --git a/plugin.xml b/plugin.xml index 5404d16db..4ecdd6695 100644 --- a/plugin.xml +++ b/plugin.xml @@ -144,6 +144,11 @@ Features 0.90 9.1 + + 2.4.0 + 0.90 + 9.1 + cz_CZ diff --git a/tools/extract_template.sh b/tools/extract_template.sh index 6563c7232..05b202537 100755 --- a/tools/extract_template.sh +++ b/tools/extract_template.sh @@ -1,10 +1,20 @@ #!/bin/bash -# Only strings with domain specified are extracted (use Xt args of keyword param to set number of args needed) +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/../" +pushd $DIR > /dev/null + +NAME='Formcreator' +POTFILE=${NAME,,}.pot -xgettext *.php */*.php --copyright-holder='Resources Development Team' --package-name='GLPI - Resources plugin' --package-version='1.5.0' -o locales/glpi.pot -L PHP --add-comments=TRANS --from-code=UTF-8 --force-po \ - --keyword=_n:1,2,4t --keyword=__s:1,2t --keyword=__:1,2t --keyword=_e:1,2t --keyword=_x:1c,2,3t \ - --keyword=_ex:1c,2,3t --keyword=_nx:1c,2,3,5t --keyword=_sx:1c,2,3t +PHP_SOURCES=`find ./ -name \*.php -not -path "./vendor/*" -not -path "./lib/*"` +if [ ! -d "locales" ]; then + mkdir locales +fi +# Only strings with domain specified are extracted (use Xt args of keyword param to set number of args needed) +xgettext $PHP_SOURCES -o locales/$POTFILE -L PHP --add-comments=TRANS --from-code=UTF-8 --force-po \ + --keyword=_n:1,2,4t --keyword=__s:1,2t --keyword=__:1,2t --keyword=_e:1,2t --keyword=_x:1c,2,3t --keyword=_ex:1c,2,3t \ + --keyword=_sx:1c,2,3t --keyword=_nx:1c,2,3,5t +popd > /dev/null \ No newline at end of file diff --git a/tools/move_to_po.php b/tools/move_to_po.php deleted file mode 100644 index 263211613..000000000 --- a/tools/move_to_po.php +++ /dev/null @@ -1,307 +0,0 @@ -. - -------------------------------------------------------------------------- - */ - -// ---------------------------------------------------------------------- -// Original Author of file: Julien Dombre -// Purpose of file: -// ---------------------------------------------------------------------- - -chdir(dirname($_SERVER["SCRIPT_FILENAME"])); - -if ($argv) { - for ($i=1 ; $i'.$sing_trans.' '.$current_string_plural.'->'.$plural_trans."\n"; - if (!strlen($sing_trans) || !strlen($plural_trans)) { -// echo "clean\n"; - $sing_trans = ''; - $plural_trans = ''; - } - $content = "msgstr[0] \"$sing_trans\"\n"; - $content .= "msgstr[1] \"$plural_trans\"\n"; - } - } else { - $content=''; - } - } - $context = ''; - } - // Standard replacement - $content = preg_replace('/charset=CHARSET/','charset=UTF-8',$content); - - if (preg_match('/Plural-Forms/',$content)) { - $content = "\"Plural-Forms: nplurals=2; plural=(n != 1)\\n\"\n"; - } - - if (fwrite($po, $content) === FALSE) { - echo "unable to write in po file"; - exit; - } - - } -} -fclose($pot); -fclose($po); - - -function search_in_dict($string, $context) { - global $REFLANG, $LANG; - - if ($context) { - $string = "$context/$string"; - } - - $ponctmatch = "([\.: \(\)]*)"; - $varmatch = "(%s)*"; - - if (preg_match("/$varmatch$ponctmatch(.*)$ponctmatch$varmatch$/U",$string,$reg)) { -// print_r($reg); - $left = $reg[1]; - $left .= $reg[2]; - $string = $reg[3]; - $right = $reg[4]; - if (isset($reg[5])) { - $right .= $reg[5]; - } - } - -// echo $left.' <- '.$string.' -> '.$right."\n"; - foreach ($REFLANG as $mod => $data) { - - foreach ($data as $key => $val) { - - if (!is_array($val)){ - if (!isset($LANG[$mod][$key])) { - continue; - } - - // Search same case with punc - if (strcmp($val,$left.$string.$right) === 0) { - return $LANG[$mod][$key]; - } - // Search same case with punc - if (strcasecmp($val,$left.$string.$right) === 0) { - return $LANG[$mod][$key]; - } - - // Search same case with left punc - if (strcmp($val,$left.$string) === 0) { - return $LANG[$mod][$key].$right; - } - // Search same case with left punc - if (strcasecmp($val,$left.$string) === 0) { - return $LANG[$mod][$key].$right; - } - - // Search same case with right punc - if (strcmp($val,$string.$right) === 0) { - return $left.$LANG[$mod][$key]; - } - // Search same case with right punc - if (strcasecmp($val,$string.$right) === 0) { - return $left.$LANG[$mod][$key]; - } - - // Search same case without punc - if (strcmp($val,$string) === 0) { - return $left.$LANG[$mod][$key].$right; - } - // Search non case sensitive - if (strcasecmp($val,$string) === 0) { - return $left.$LANG[$mod][$key].$right; - } - } else { - //toolbox::logdebug($val); - //toolbox::logdebug($key); - //toolbox::logdebug($mod); - foreach ($val as $k => $v) { - if (!isset($LANG[$mod][$key][$k])) { - continue; - } - - // Search same case with punc - if (strcmp($v,$left.$string.$right) === 0) { - return $LANG[$mod][$key][$k]; - } - // Search same case with punc - if (strcasecmp($v,$left.$string.$right) === 0) { - return $LANG[$mod][$key][$k]; - } - - // Search same case with left punc - if (strcmp($v,$left.$string) === 0) { - return $LANG[$mod][$key][$k].$right; - } - // Search same case with left punc - if (strcasecmp($v,$left.$string) === 0) { - return $LANG[$mod][$key][$k].$right; - } - - // Search same case with right punc - if (strcmp($v,$string.$right) === 0) { - return $left.$LANG[$mod][$key][$k]; - } - // Search same case with right punc - if (strcasecmp($v,$string.$right) === 0) { - return $left.$LANG[$mod][$key][$k]; - } - - // Search same case without punc - if (strcmp($v,$string) === 0) { - return $left.$LANG[$mod][$key][$k].$right; - } - // Search non case sensitive - if (strcasecmp($v,$string) === 0) { - return $left.$LANG[$mod][$key][$k].$right; - } - } - } - } - } - - return ""; -} -?> \ No newline at end of file diff --git a/tools/release b/tools/release new file mode 100755 index 000000000..59b19231e --- /dev/null +++ b/tools/release @@ -0,0 +1,684 @@ +#!/usr/bin/python +# Adapted from Galette release script + +import os, sys, argparse, re, git, subprocess +import tarfile, shutil, gitdb, time, urllib2, json +from datetime import datetime +from termcolor import colored +from lxml import etree + +plugin_dir = os.path.dirname( + os.path.dirname(os.path.abspath(__file__)) +) +dist_dir = os.path.join( + plugin_dir, + 'dist' +) +verbose = False +tagrefs = None +force = False +commit = None +extra = None +sign = True +github = True +assume_yes = False +banned = [ + 'dist', + 'vendor', + '.git', + '.gitignore', + '.gh_token', + '.tx', + 'tools', + 'tests', + '.atoum.php', + 'screenshot*.png' +] +gh_orga = 'pluginsGLPI' +script_version = '1.0.1' + +def print_err(msg): + """ + Display colored error message + """ + print colored(msg, 'red', attrs=['bold']) + +def get_numeric_version(ver): + """ + Returns all numeric version + """ + return re.findall(r'\d+', ver) + +def valid_version(ver): + """ + Check if provided version is valid. + + Takes all digits in passed version, then reassemble them with dots + to check if it is the same as original given one. + """ + return '.'.join(get_numeric_version(ver)) == ver + +def incr_version(ver): + """ + Increment version number + """ + version = get_numeric_version(ver) + version[-1] = str(int(version[-1]) + 1) + return version + +def propose_version(): + """ + Propose new minor and major versions, + according to existing git tags + """ + last_major = '0' + last_minor = '0' + + for tagref in tagrefs: + if valid_version(tagref.name): + #last minor version is always the last one :) + if tagref.name > last_minor: + last_minor = tagref.name + + #last major version + if len(tagref.name) == 5 and tagref.name > last_major: + last_major = tagref.name + + if verbose: + print 'last minor: %s | last major %s' % (last_minor, last_major) + + #no version provided. propose one + new_minor = None + new_major = None + + if len(last_minor) == 5: + #if the latest is a major version + new_minor = last_minor + ('.1') + else: + new_minor = '.'.join(incr_version(last_minor)) + + new_major = '.'.join(incr_version(last_major)) + + print """Proposed versions: + minor: %s + major: %s + """ % (new_minor, new_major) + +def get_latest_version(): + """ + Look for latest version + """ + last = None + for tagref in tagrefs: + if valid_version(tagref.name): + #last created minor version is always the last one :) + if tagref.name > last: + last = tagref.name + + return last + +def is_existing_version(ver): + """ + Look specified version exists + """ + for tagref in tagrefs: + if valid_version(tagref.name): + if tagref.name == ver: + return True + return False + +def ask_user_confirm(msg): + """ + Ask user his confirmation + """ + if assume_yes: + return True + else: + while True: + sys.stdout.write(msg) + choice = raw_input().lower() + if choice == 'y' or choice == 'yes': + return True + elif choice == 'n' or choice == 'no': + return False + else: + print_err( + "Invalid input. Please enter 'yes' or 'no' (or 'y' or 'n')." + ) + +def get_rel_name(buildver): + """ + Build archive name from command line parameters + That would be used for git archiving prefix and archive name + """ + archive_name = None + + if commit and extra: + now = datetime.now() + archive_name = 'glpi-%s-%s-%s-%s-%s' % ( + plugin_name, + buildver, + extra, + now.strftime('%Y%m%d'), + commit + ) + else: + archive_name = 'glpi-%s-%s' % (plugin_name, buildver) + + return archive_name + +def _do_build(repo, ver): + """ + Proceed build + """ + exists = False + ascexists = False + rel_name = get_rel_name(ver) + archive_name = rel_name + '.tar.bz2' + archive = os.path.join( + dist_dir, + archive_name + ) + + if not force: + #first check if a version + local = False + ascLocal = False + + #check if a release exists upstream + #FIXME: this retrieve only publicated release, not drafts + url = 'https://api.github.com/repos/%s/%s/releases/tags/%s' % (gh_orga, plugin_name, ver) + + exists = False + gh_id = None + + try: + request = urllib2.Request(url) + handle = urllib2.urlopen(request) + contents = json.loads(handle.read()) + + for asset in contents['assets']: + if archive_name == asset['name']: + exists = True + gh_id = contents['id'] + break + except (urllib2.URLError, urllib2.HTTPError): + pass + + if exists: + #we know a release exists for this tag. Check if files have been uploaded yet + pass + + if not exists: + #also check from local repo + exists = os.path.exists(archive) + if exists: + local = True + + #also check from local repo + ascexists = os.path.exists( + os.path.join( + dist_dir, + archive_name + '.asc' + ) + ) + + if exists or ascexists: + msg = None + if exists: + loctxt = '' + if local: + loctxt = 'locally ' + msg = 'Release %s already %sexists' % (rel_name, loctxt) + + if ascexists: + loctxt = '' + if ascLocal: + loctxt = ' locally' + if msg is not None: + msg += ' and has been %ssigned!' % loctxt + else: + msg += 'Release has been %ssigned!' % loctxt + + msg += '\n\nYou will *NOT* build another one :)' + print_err(msg) + else: + print 'Building %s...' % rel_name + + if verbose: + typestr = 'Tag' + typever = ver + + if commit and extra: + typestr = 'Commit' + typever = commit + + print 'Release name: %s, %s: %s, Dest: %s' % ( + rel_name, + typestr, + typever, + archive + ) + + paths = os.listdir(plugin_dir) + paths = list(set(paths) - set(banned)) + + if commit and extra: + print 'Archiving GIT commit %s' % commit + with open(archive, 'wb') as stream: + repo.archive(stream, commit, prefix=plugin_name+'/', path=paths) + else: + print 'Archiving GIT tag %s' % ver + with open(archive, 'wb') as stream: + repo.archive(stream, ver, prefix=plugin_name+'/', path=paths) + + print 'Adding vendor libraries' + prepare(plugin_name, archive) + + if sign: + do_sign(archive) + + if github: + create_gh_release(archive, gh_id, plugin_name, ver) + +def do_sign(archive): + sign_cmd = 'gpg --no-use-agent --detach-sign --armor %s' % archive + p1 = subprocess.Popen(sign_cmd, shell=True) + p1.communicate() + +def create_gh_release(archive, gh_id, plugin_name, ver): + with open(gh_cred_file, 'r') as fd: + token = fd.readline().strip() + + gh = github.Github(token) + gh_user = gh.get_user() + + for gh_repo in gh_user.get_repos(): + if gh_repo.full_name == '%s/%s' % (gh_orga, plugin_name): + break + + gh_release = None + + #check in all releases (including drafts) if nothing has been found yet + if gh_id is None: + for gh_rel in gh_repo.get_releases(): + if gh_rel.tag_name == ver: + gh_release = gh_rel + break + + #create release if it does not exists + if gh_id is None and gh_release is None: + is_prerelease = True if commit else False + gh_release = gh_repo.create_git_release( + ver, + 'GLPI %s %s' % (plugin_name, ver), + 'Automated release from release script', + True, + is_prerelease + ) + elif gh_id is not None: + gh_release = gh_repo.get_release(gh_id) + + #upload = ask_user_confirm( + # 'Do you want to upload archive %s? [yes/No] ' % archive + #) + + #if upload: + # do_upload(archive, gh_id, plugin_name, ver) + +#def do_upload(archive, gh_id, plugin_name, ver): + #from uritemplate import URITemplate + #import requests + #import mimetypes + + #Upload asset + #template = URITemplate(gh_release.upload_url) + + #headers = {'Content-Type': 'application/octet-stream', 'Authorization': 'token %s' % token} + #params = {'name': '%s-%s.tar.bz2' % (plugin_name, ver)} + #url = template.expand(params) + + ## Bad request :'( + #f = open('/var/www/webapps/glpi/plugins/order/dist/glpi-order-1.9.5.tar.bz2', 'rb') + #r = requests.post( + # url, + # data=f, + # headers=headers + #) + #print r.json() + #r.raise_for_status() + +def prepare(rel_name, archive): + """ + Add external libraries to the archive, if any + """ + + plugin = tarfile.open(archive, 'r') + src_dir = os.path.join(dist_dir, 'src') + if not os.path.exists(src_dir): + os.makedirs(src_dir) + plugin.extractall(path=src_dir) + plugin.close() + + build_dir = os.path.join(src_dir, plugin_name) + if os.path.exists(os.path.join(build_dir, 'composer.lock')): + composer = ['composer', 'install', '-o', '--no-dev'] + + if not verbose: + composer.insert(-1, '-q') + + p1 = subprocess.Popen( + composer, + cwd=build_dir + ) + p1.communicate() + + compile_mo(build_dir) + + minify(build_dir) + + plugin = tarfile.open(archive, 'w|bz2') + + for i in os.listdir(src_dir): + plugin.add( + os.path.join(src_dir, i), + arcname=rel_name + ) + + plugin.close() + shutil.rmtree(src_dir) + +def compile_mo(build_dir): + locales_dir = os.path.join(build_dir, 'locales') + if verbose: + print 'Locales dir: %s' % locales_dir + if os.path.exists(locales_dir): + for file in os.listdir(locales_dir): + if file.endswith('.po'): + if verbose: + print 'Compiling %s...' % file + p1 = subprocess.Popen( + ['msgfmt', file, '-o', file.replace('.po', '.mo')], + cwd=locales_dir + ) + p1.communicate() + +def minify(build_dir): + robo_path = os.path.join(plugin_dir, 'vendor', 'bin', 'robo') + if os.path.exists(robo_path): + robo = [robo_path, 'minify'] + if not verbose: + robo.insert(-1, '-q') + + if verbose: + print robo + + p1 = subprocess.Popen( + robo, + cwd=build_dir + ) + p1.communicate() + else: + print_err("Robo.li is not installed; cannot minify!") + +def valid_commit(repo, c): + """ + Validate commit existance in repository + """ + global commit + + try: + dformat = '%a, %d %b %Y %H:%M' + repo_commit = repo.commit(c) + + commit = repo_commit.hexsha[:10] + print colored("""Commit informations: + Hash: %s + Author: %s + Authored date: %s + Commiter: %s + Commit date: %s + Message: %s""" % ( + commit, + repo_commit.author, + time.strftime(dformat, time.gmtime(repo_commit.authored_date)), + repo_commit.committer, + time.strftime(dformat, time.gmtime(repo_commit.committed_date)), + repo_commit.message + ), None, 'on_grey', attrs=['bold']) + return True + except gitdb.exc.BadObject: + return False + +def guess_plugin_name(): + """ + Tries to guess plugin name, ask user at last + """ + name = None + + filename = os.path.join( + os.path.dirname(os.path.abspath(__file__)), + 'extract_template.sh' + ) + + #try to get configured plugin name + if os.path.exists(filename): + with file(filename) as input: + for count, line in enumerate(input): + results = re.match(r"^NAME='(.+)'$", line) + if results: + name = results.group(1) + break + + if name is None: + #No configured name found. Let's use current directory name + name = os.path.split(plugin_dir)[-1] + + return name.lower() + +def check_version(buildver): + if verbose: + print 'Checking for version %s' % buildver + + filename = os.path.join( + plugin_dir, + 'setup.php' + ) + + found = None + #find version constant + if os.path.exists(filename): + with file(filename) as input: + for count, line in enumerate(input): + regexp = ".*('|\")PLUGIN_%s_VERSION('|\"), ('|\")(.+)('|\")" % plugin_name.upper() + results = re.match(regexp, line) + if results: + found = results.group(4) + break + + if not found == buildver: + print_err('Plugin version check has failed (%s but %s found)!' % (buildver, found)) + return False + + #check plugins website XML file + xmlfile = os.path.join(plugin_dir, '%s.xml' % plugin_name) + if not os.path.exists(xmlfile): + xmlfile = os.path.join(plugin_dir, 'plugin.xml') + if not os.path.exists(xmlfile): + xmlfile = None + + if xmlfile != None: + if verbose: + print 'XML file found in %s' % xmlfile + try: + xmldoc = etree.parse(xmlfile) + for version in xmldoc.getiterator('num'): + if version.text == buildver: + if verbose: + print '%s found in the XML file!' % buildver + return True + print_err('%s *NOT* found in the XML file %s' % (buildver, xmlfile)) + except etree.XMLSyntaxError as err: + print_err('%s is *NOT* XML valid!' % (xmlfile)) + if verbose: + print format(err) + return False + else: + print_err('Plugins website configuration file has not been found!') + return False + +def main(): + """ + Main method + """ + global verbose, tagrefs, force, extra, assume_yes, sign, plugin_name, github, gh_cred_file + + parser = argparse.ArgumentParser(description='GLPI plugins release script', version=script_version) + group = parser.add_mutually_exclusive_group() + group.add_argument( + '-r', + '--release', + help='Version to release' + ) + parser.add_argument( + '-g', + '--nogithub', + help="DO NOT Create github draft release", + action='store_false' + ) + parser.add_argument( + '-C', + '--check-only', + help="Only do chec, does not release anything", + action='store_true' + ) + group.add_argument( + '-p', + '--propose', + help='Calculate and propose next possible versions', + action='store_true' + ) + parser.add_argument( + '-c', + '--commit', + help='Specify commit to archive (-v required)' + ) + parser.add_argument( + '-e', + '--extra', + help='Extra version informations (-c required)' + ) + parser.add_argument( + '-m', + '--compile-mo', + help="Compile MO files from PO files (exclusive)", + action='store_true' + ) + parser.add_argument( + '-M', + '--minify', + help="Minify CSS ans JS files", + action='store_true' + ) + parser.add_argument( + '-S', + '--nosign', + help="Do not sign release tarball", + action="store_false" + ) + parser.add_argument( + '-Y', + '--assume-yes', + help='Assume YES to all questions. Be sure to understand what you are doing!', + action='store_true' + ) + parser.add_argument( + '-V', + '--verbose', + help='Be more verbose', + action="store_true" + ) + parser.add_argument('-f', action='store_true') + args = parser.parse_args() + + verbose=args.verbose + sign=args.nosign + github=args.nogithub + + if verbose: + print args + + if github: + import github + gh_cred_file = os.path.join(plugin_dir, '.gh_token') + if not os.path.exists(gh_cred_file): + print_err('GitHub credential file does not exists! Either create it or use the --nogithub option.') + sys.exit(1) + + plugin_name = guess_plugin_name() + + plugin_repo = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + repo = git.Repo(plugin_repo) + tagrefs = repo.tags + + if args.f == True: + force = ask_user_confirm( + 'Are you *REALLY* sure you mean -f when you typed -f? [yes/No] ' + ) + assume_yes=args.assume_yes + + if args.check_only: + print '*** Entering *check-only* mode ***' + + #check if dist_dir exists + if not os.path.exists(dist_dir): + os.makedirs(dist_dir) + + build = False + buildver = None + if args.compile_mo or args.minify: + if args.compile_mo: + compile_mo(plugin_repo) + if args.minify: + minify(plugin_repo) + elif (args.extra or args.commit) and (not args.extra or not args.commit or not args.release): + print_err('You have to specify --version --commit and --extra all together') + sys.exit(1) + elif args.commit and args.release and args.extra: + if valid_commit(repo, args.commit): + if verbose: + print 'Commit is valid' + build = True + buildver = args.release + extra = args.extra + else: + print_err('Invalid commit ref %s' % args.commit) + elif args.release: + if not valid_version(args.release): + print_err('%s is not a valid version number!' % args.release) + sys.exit(1) + else: + #check if specified version exists + if not is_existing_version(args.release): + print_err('%s does not exist!' % args.release) + else: + build = True + buildver = args.release + elif args.propose: + propose_version() + else: + buildver = get_latest_version() + if force: + build = True + else: + build = ask_user_confirm( + 'Do you want to build version %s? [Yes/no] ' % buildver + ) + + if build: + if check_version(buildver) and args.check_only == False: + _do_build(repo, buildver) + +if __name__ == "__main__": + main() +