diff --git a/.tx/config b/.tx/config new file mode 100644 index 0000000..a592823 --- /dev/null +++ b/.tx/config @@ -0,0 +1,8 @@ +[main] +host = https://www.transifex.com + +[glpi-plugin-gantt.gantt-pot] +file_filter = locales/.po +source_file = locales/gantt.pot +source_lang = en_GB +type = PO diff --git a/ajax/gantt.php b/ajax/gantt.php index 0693a25..bc622ce 100644 --- a/ajax/gantt.php +++ b/ajax/gantt.php @@ -104,7 +104,7 @@ $p_target = $_POST["target"]; if ($p_item["type"] == "project" && $p_target["type"] != "project") { - throw new \Exception(__("Target item must be of project type")); + throw new \Exception(__("Target item must be of project type", 'gantt')); } $item = new \GlpiPlugin\Gantt\Item(); @@ -137,7 +137,7 @@ // double check for safety.. if ($p_item["type"] != "project") { - throw new \Exception(__("Item must be of project type")); + throw new \Exception(__("Item must be of project type", 'gantt')); } $item = new \GlpiPlugin\Gantt\Item(); @@ -202,7 +202,7 @@ $taskLink = new \ProjectTaskLink(); if ($taskLink->checkIfExist($_POST["taskLink"])) { - throw new \Exception(__("Link already exist!")); + throw new \Exception(__("Link already exist!", 'gantt')); } $id = $taskLink->add($_POST["taskLink"]); diff --git a/js/gantt-helper.js b/js/gantt-helper.js index b903c6c..3051885 100644 --- a/js/gantt-helper.js +++ b/js/gantt-helper.js @@ -49,29 +49,31 @@ var GlpiGantt = (function() { break; } + gantt.i18n.setLocale(CFG_GLPI.language.substr(0, 2)); + var formatFunc = gantt.date.date_to_str(parseDateFormat); return { init: function($ID) { var project_subtypes = [ - { key: gantt.config.types.project, label: _n("Project", "Projects", 1) }, - { key: gantt.config.types.task, label: _n("Task", "Tasks", 1) }, - { key: gantt.config.types.milestone, label: __("Milestone") } + { key: gantt.config.types.project, label: _n("Project", "Projects", 1, 'gantt') }, + { key: gantt.config.types.task, label: _n("Task", "Tasks", 1, 'gantt') }, + { key: gantt.config.types.milestone, label: __("Milestone", 'gantt') } ]; var task_subtypes = [ - { key: gantt.config.types.task, label: _n("Task", "Tasks", 1) }, - { key: gantt.config.types.milestone, label: __("Milestone") } + { key: gantt.config.types.task, label: _n("Task", "Tasks", 1, 'gantt') }, + { key: gantt.config.types.milestone, label: __("Milestone", 'gantt') } ]; var default_section = [ - { name: "description", height: 70, map_to: "text", type: "textarea", focus: true, default_value: __("New project") }, + { name: "description", height: 70, map_to: "text", type: "textarea", focus: true, default_value: __("New project", 'gantt') }, { name: "time", type: "duration", map_to: "auto" } ]; var new_project_section = [ - { name: "description", height: 70, map_to: "text", type: "textarea", focus: true, default_value: __("New project") }, + { name: "description", height: 70, map_to: "text", type: "textarea", focus: true, default_value: __("New project", 'gantt') }, { name: "time", type: "duration", map_to: "auto" }, { name: "type", type: "radio", map_to: "type", options: project_subtypes, default_value: gantt.config.types.project } ]; @@ -145,24 +147,24 @@ var GlpiGantt = (function() { gantt.templates.tooltip_text = function(start, end, task) { var text = "" + - task.type + ": " + task.text + "
" + __("Start date:") + " " + + task.type + ": " + task.text + "
" + __("Start date:", 'gantt') + " " + gantt.templates.tooltip_date_format(start) + - "
" + __("End date:") + " " + gantt.templates.tooltip_date_format(end) + - "
" + __("Progress:") + " " + parseInt(task.progress * 100) + "%"; + "
" + __("End date:", 'gantt') + " " + gantt.templates.tooltip_date_format(end) + + "
" + __("Progress:", 'gantt') + " " + parseInt(task.progress * 100) + "%"; if (task.content && task.content.length > 0) { - text += "
" + __("Description:") + "
" + task.content + "
"; + text += "
" + __("Description:", 'gantt') + "
" + task.content + "
"; } if (task.comment && task.comment.length > 0) { - text += "
" + __("Comment:") + "
" + task.comment + "
"; + text += "
" + __("Comment:", 'gantt') + "
" + task.comment + "
"; } return text; }; // columns definition gantt.config.columns = [ - { name: "text", label: __("Project / Task"), width: 290, tree: true, align: "left" }, - { name: "start_date", label: __("Start date"), align: "left", width: 90 }, - { name: "duration", label: __("Duration"), align: "center", width: 47 }, + { name: "text", label: __("Project / Task", 'gantt'), width: 290, tree: true, align: "left" }, + { name: "start_date", label: __("Start date", 'gantt'), align: "left", width: 90 }, + { name: "duration", label: __("Duration", 'gantt'), align: "center", width: 47 }, { name: "add", align: "center" } ]; @@ -210,7 +212,7 @@ var GlpiGantt = (function() { }, { unit: "week", - format: __("Week #%s").replace('%s', '%W') + format: __("Week #%s", 'gantt').replace('%s', '%W') } ] }, @@ -321,7 +323,7 @@ var GlpiGantt = (function() { if (task.$new) { gantt.getLightboxSection("time").setValue(new Date()); if (!isNaN(task.parent)) { - gantt.getLightboxSection("description").setValue(__('New project')); + gantt.getLightboxSection("description").setValue(__('New project', 'gantt')); } } else { if (gantt.getLightboxSection("type")) { @@ -370,16 +372,16 @@ var GlpiGantt = (function() { switch (parseInt(link.type)) { case parseInt(gantt.config.links.finish_to_start): - linkTitle = __("Finish to Start: "); + linkTitle = __("Finish to Start: ", 'gantt'); break; case parseInt(gantt.config.links.finish_to_finish): - linkTitle = __("Finish to Finish: "); + linkTitle = __("Finish to Finish: ", 'gantt'); break; case parseInt(gantt.config.links.start_to_start): - linkTitle = __("Start to Start: "); + linkTitle = __("Start to Start: ", 'gantt'); break; case parseInt(gantt.config.links.start_to_finish): - linkTitle = __("Start to Finish: "); + linkTitle = __("Start to Finish: ", 'gantt'); break; } @@ -388,12 +390,12 @@ var GlpiGantt = (function() { modal = gantt.modalbox({ title: `

${linkTitle}

`, text: `
- +
`, buttons: [ - { label: __("Save"), css: "gantt_save_btn", value: "save" }, - { label: __("Cancel"), css: "gantt_cancel_btn", value: "cancel" }, - { label: __("Delete"), css: "gantt_delete_btn", value: "delete" } + { label: __("Save", 'gantt'), css: "gantt_save_btn", value: "save" }, + { label: __("Cancel", 'gantt'), css: "gantt_cancel_btn", value: "cancel" }, + { label: __("Delete", 'gantt'), css: "gantt_delete_btn", value: "delete" } ], width: "500px", callback: function(result) { @@ -515,7 +517,7 @@ var GlpiGantt = (function() { gantt.message.position = 'bottom'; gantt.message({ type: 'warning', - text: __('Gantt mode: \'Readonly\''), + text: __('Gantt mode: \'Readonly\'', 'gantt'), expire: -1 }); } @@ -561,22 +563,22 @@ var GlpiGantt = (function() { var valid = true; if (source.type == 'project' && target.type == 'project') { - gantt.alert(__("Links between projects cannot be created.")); + gantt.alert(__("Links between projects cannot be created.", 'gantt')); valid = false; } else if (source.type == 'project' || target.type == 'project') { - gantt.alert(__("Links between projects and tasks cannot be created.")); + gantt.alert(__("Links between projects and tasks cannot be created.", 'gantt')); valid = false; } else if (type == gantt.config.links.finish_to_start && target.start_date < source.end_date) { - gantt.alert(__("Target task can't start before source task ends.")); + gantt.alert(__("Target task can't start before source task ends.", 'gantt')); valid = false; } else if (type == gantt.config.links.start_to_start && target.start_date < source.start_date) { - gantt.alert(__("Target task can't start before source task starts.")); + gantt.alert(__("Target task can't start before source task starts.", 'gantt')); valid = false; } else if (type == gantt.config.links.finish_to_finish && target.end_date < source.end_date) { - gantt.alert(__("Target task can't end before source task ends.")); + gantt.alert(__("Target task can't end before source task ends.", 'gantt')); valid = false; } else if (type == gantt.config.links.start_to_finish && target.end_date < source.start_date) { - gantt.alert(__("Target task can't end before the source task starts.")); + gantt.alert(__("Target task can't end before the source task starts.", 'gantt')); valid = false; } return valid; @@ -604,7 +606,7 @@ var GlpiGantt = (function() { gantt.deleteTask(id); displayAjaxMessageAfterRedirect(); } else { - gantt.alert(__('Could not create task: ') + json.error); + gantt.alert(__('Could not create task: ', 'gantt') + json.error); } }, error: function(resp) { @@ -638,7 +640,7 @@ var GlpiGantt = (function() { gantt.hideLightbox(); displayAjaxMessageAfterRedirect(); } else - gantt.alert(__('Could not update Task[%s]: ').replace('%s', item.text) + json.error); + gantt.alert(__('Could not update Task[%s]: ', 'gantt').replace('%s', item.text) + json.error); }, error: function(resp) { gantt.alert(resp.responseText); @@ -665,7 +667,7 @@ var GlpiGantt = (function() { gantt.updateTask(task.id); displayAjaxMessageAfterRedirect(); } else { - gantt.alert(__('Could not update Task[%s]: ').replace('%s', task.text) + json.error); + gantt.alert(__('Could not update Task[%s]: ', 'gantt').replace('%s', task.text) + json.error); gantt.undo(); } } @@ -743,7 +745,7 @@ var GlpiGantt = (function() { gantt.deleteTask(id); displayAjaxMessageAfterRedirect(); } else { - gantt.alert(__('Could not create project: ') + json.error); + gantt.alert(__('Could not create project: ', 'gantt') + json.error); } }, error: function(resp) { @@ -771,7 +773,7 @@ var GlpiGantt = (function() { gantt.hideLightbox(); displayAjaxMessageAfterRedirect(); } else { - gantt.alert(__('Could not update Project[%s]: ').replace('%s', item.text) + json.error); + gantt.alert(__('Could not update Project[%s]: ', 'gantt').replace('%s', item.text) + json.error); } }, error: function(resp) { diff --git a/locales/ar_SA.mo b/locales/ar_SA.mo new file mode 100644 index 0000000..06f073c Binary files /dev/null and b/locales/ar_SA.mo differ diff --git a/locales/ar_SA.po b/locales/ar_SA.po new file mode 100644 index 0000000..19e7945 --- /dev/null +++ b/locales/ar_SA.po @@ -0,0 +1,230 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Arabic (Saudi Arabia) (https://www.transifex.com/teclib/teams/28042/ar_SA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_SA\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "إلغاء" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "أيام" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "المدة" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "حفظ" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "تاريخ البداية" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/be_BY.mo b/locales/be_BY.mo new file mode 100644 index 0000000..3fc44c4 Binary files /dev/null and b/locales/be_BY.mo differ diff --git a/locales/be_BY.po b/locales/be_BY.po new file mode 100644 index 0000000..fad7c70 --- /dev/null +++ b/locales/be_BY.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Belarusian (Belarus) (https://www.transifex.com/teclib/teams/28042/be_BY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: be_BY\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" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Дзён" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Захаваць" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Дата пачатку" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/bg_BG.mo b/locales/bg_BG.mo new file mode 100644 index 0000000..7777cca Binary files /dev/null and b/locales/bg_BG.mo differ diff --git a/locales/bg_BG.po b/locales/bg_BG.po new file mode 100644 index 0000000..596a9b2 --- /dev/null +++ b/locales/bg_BG.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Bulgarian (Bulgaria) (https://www.transifex.com/teclib/teams/28042/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Отказ" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Коментар:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Не можа да се създаде проект:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Не може да се създаде задача:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Проектът [%s] не можа да се актуализира:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Не може да обновите задача [%s]: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Дни" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Изтриване" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Описание:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Продължителност" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Цял екран" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Връзката вече съществува!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Важно събитие" + +#: templates/view.html.twig +msgid "Months" +msgstr "Месеци" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Нов проект" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Недостатъчни права" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Проект" +msgstr[1] "Проекти" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Проект / Задача" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Запис" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Начална дата" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Задача" +msgstr[1] "Задачи" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Седмица #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Седмици" + +#: templates/view.html.twig +msgid "Years" +msgstr "Години" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Увеличи" + +#: templates/view.html.twig +msgid "by name" +msgstr "по име" diff --git a/locales/ca_ES.mo b/locales/ca_ES.mo new file mode 100644 index 0000000..25987d6 Binary files /dev/null and b/locales/ca_ES.mo differ diff --git a/locales/ca_ES.po b/locales/ca_ES.po new file mode 100644 index 0000000..7058a86 --- /dev/null +++ b/locales/ca_ES.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/teclib/teams/28042/ca_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancel·la" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dies" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Suprimeix" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duració" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Fita" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nou projecte" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "No tens prous permisos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projecte" +msgstr[1] "Projectes" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Desa" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Data inicial" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tasca" +msgstr[1] "Tasques" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/cs_CZ.mo b/locales/cs_CZ.mo new file mode 100644 index 0000000..3eab41b Binary files /dev/null and b/locales/cs_CZ.mo differ diff --git a/locales/cs_CZ.po b/locales/cs_CZ.po new file mode 100644 index 0000000..15059b4 --- /dev/null +++ b/locales/cs_CZ.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/teclib/teams/28042/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Storno" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Komentář:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Nepodařilo se vytvořit projekt: " + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Nepodařilo se vytvořit úkol: " + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Nepodařilo se aktualizovat Project[%s]: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Nepodařilo se aktualizovat Úkol[%s]: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Dny" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Smazat" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Popis:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Trvání" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Datum ukončení:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtr" + +#: templates/view.html.twig +msgid "Find" +msgstr "Nalézt" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Na celou obrazovku" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Režim Gantt: 'Pouze pro čtení'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Položka musí být projektového typu" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Odkaz již existuje!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Odkazy mezi projekty a úkoly nelze vytvářet." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Odkazy mezi projekty nelze vytvářet." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Milník" + +#: templates/view.html.twig +msgid "Months" +msgstr "Měsíců" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nový projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Nedostatečná oprávnění" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Postup:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projekty" +msgstr[2] "Projektů" +msgstr[3] "Projekty" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Projekt / Úkol" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Čtvrtletí" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Uložit" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Datum zahájení" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Datum zahájení:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Cílová položka musí být projektového typu" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "Cílová úloha nemůže skončit dříve, než skončí zdrojová úloha." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Cílová úloha nemůže skončit před spuštěním zdrojové úlohy." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Cílová úloha nemůže být spuštěna před ukončením zdrojové úlohy." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Cílová úloha nemůže být spuštěna před spuštěním zdrojové úlohy." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Úkol" +msgstr[1] "Úkoly" +msgstr[2] "Úkolů" +msgstr[3] "Úkoly" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Týden #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Týdny" + +#: templates/view.html.twig +msgid "Years" +msgstr "Roky" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "podle jména" diff --git a/locales/da_DK.mo b/locales/da_DK.mo new file mode 100644 index 0000000..96fefa0 Binary files /dev/null and b/locales/da_DK.mo differ diff --git a/locales/da_DK.po b/locales/da_DK.po new file mode 100644 index 0000000..3ef085a --- /dev/null +++ b/locales/da_DK.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/teclib/teams/28042/da_DK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da_DK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annuller" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dag" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Slet" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Varighed" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Milepæl" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nyt projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Gem" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Startdato" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/de_DE.mo b/locales/de_DE.mo new file mode 100644 index 0000000..6854d56 Binary files /dev/null and b/locales/de_DE.mo differ diff --git a/locales/de_DE.po b/locales/de_DE.po new file mode 100644 index 0000000..7082e25 --- /dev/null +++ b/locales/de_DE.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: German (Germany) (https://www.transifex.com/teclib/teams/28042/de_DE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Abbrechen" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Kommentar:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Das Projekt konnte nicht erstellt werden:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Aufgabe konnte nicht erstellt werden: " + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Project (%s) konnte nicht aktualisiert werden: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Aufgabe (%s) konnte nicht erstellt werden: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Tage" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Löschen" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Beschreibung:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Dauer" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Enddatum:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filter" + +#: templates/view.html.twig +msgid "Find" +msgstr "Suchen" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Vollbildmodus" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Das Objekt muss ein Projekt sein" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Die Verknüpfung existiert bereits" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Meilenstein" + +#: templates/view.html.twig +msgid "Months" +msgstr "Monate" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Neues Projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Nicht ausreichend Rechte" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Fortschritt:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projekte" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Speichern" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Anfangsdatum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Anfangsdatum:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Das Zielelement muss vom Typ Projekt sein" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tätigkeit" +msgstr[1] "Tätigkeiten" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Woche #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Wochen" + +#: templates/view.html.twig +msgid "Years" +msgstr "Jahre" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "nach Name" diff --git a/locales/el_GR.mo b/locales/el_GR.mo new file mode 100644 index 0000000..111f551 Binary files /dev/null and b/locales/el_GR.mo differ diff --git a/locales/el_GR.po b/locales/el_GR.po new file mode 100644 index 0000000..01271c5 --- /dev/null +++ b/locales/el_GR.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/teclib/teams/28042/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Ακύρωση" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Ημέρα" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Διαγραφή" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Διάρκεια" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Αποθήκευσε" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Ημερομηνία έναρξης" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/en_GB.mo b/locales/en_GB.mo new file mode 100644 index 0000000..92ad010 Binary files /dev/null and b/locales/en_GB.mo differ diff --git a/locales/en_GB.po b/locales/en_GB.po new file mode 100644 index 0000000..fb83b11 --- /dev/null +++ b/locales/en_GB.po @@ -0,0 +1,218 @@ +# English translations for PACKAGE package. +# Copyright (C) 2022 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Automatically generated, 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 15:07+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancel" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Comment:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Could not create project: " + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Could not create task: " + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Could not update Project[%s]: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Could not update Task[%s]: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Days" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Delete" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Description:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duration" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "End date:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filter" + +#: templates/view.html.twig +msgid "Find" +msgstr "Find" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Finish to Finish: " + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Finish to Start: " + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Fullscreen" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "Gantt" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Gantt mode: 'Readonly'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Global GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Item must be of project type" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Lag" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Link already exist!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Links between projects and tasks cannot be created." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Links between projects cannot be created." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Milestone" + +#: templates/view.html.twig +msgid "Months" +msgstr "Months" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "New project" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Not enough rights" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Progress:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Project" +msgstr[1] "Projects" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Project / Task" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Quarters" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Save" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Start date" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Start date:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Start to Finish: " + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Start to Start: " + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Target item must be of project type" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "Target task can't end before source task ends." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Target task can't end before the source task starts." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Target task can't start before source task ends." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Target task can't start before source task starts." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Task" +msgstr[1] "Tasks" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Week #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Weeks" + +#: templates/view.html.twig +msgid "Years" +msgstr "Years" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "by name" diff --git a/locales/en_US.mo b/locales/en_US.mo new file mode 100644 index 0000000..636a3ec Binary files /dev/null and b/locales/en_US.mo differ diff --git a/locales/en_US.po b/locales/en_US.po new file mode 100644 index 0000000..91eb215 --- /dev/null +++ b/locales/en_US.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: English (United States) (https://www.transifex.com/teclib/teams/28042/en_US/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_US\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancel" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Days" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Delete" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duration" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Fullscreen" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Link already exist!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Milestone" + +#: templates/view.html.twig +msgid "Months" +msgstr "Months" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "New Project" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Not enough rights" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Project" +msgstr[1] "Projects" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Save" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Start Date" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Task" +msgstr[1] "Tasks" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/eo.mo b/locales/eo.mo new file mode 100644 index 0000000..96c3203 Binary files /dev/null and b/locales/eo.mo differ diff --git a/locales/eo.po b/locales/eo.po new file mode 100644 index 0000000..92a915b --- /dev/null +++ b/locales/eo.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Esperanto (https://www.transifex.com/teclib/teams/28042/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Отмена" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Удалить" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Продолжительность" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Этап" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Новый проект" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Сохранить" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Начиная с даты" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/es_419.mo b/locales/es_419.mo new file mode 100644 index 0000000..b8b481e Binary files /dev/null and b/locales/es_419.mo differ diff --git a/locales/es_419.po b/locales/es_419.po new file mode 100644 index 0000000..0c5170b --- /dev/null +++ b/locales/es_419.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Latin America) (https://www.transifex.com/teclib/teams/28042/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_419\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Eliminar" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "No tiene suficientes permisos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proyecto" +msgstr[1] "Proyectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha de Inicio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarea" +msgstr[1] "Tareas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/es_AR.mo b/locales/es_AR.mo new file mode 100644 index 0000000..91a4b47 Binary files /dev/null and b/locales/es_AR.mo differ diff --git a/locales/es_AR.po b/locales/es_AR.po new file mode 100644 index 0000000..f552eee --- /dev/null +++ b/locales/es_AR.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/teclib/teams/28042/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Anular" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Suprimir" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Sin suficientes derechos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proyecto" +msgstr[1] "Proyectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha de inicio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarea" +msgstr[1] "Tareas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/es_CL.mo b/locales/es_CL.mo new file mode 100644 index 0000000..6193f1c Binary files /dev/null and b/locales/es_CL.mo differ diff --git a/locales/es_CL.po b/locales/es_CL.po new file mode 100644 index 0000000..083bd1b --- /dev/null +++ b/locales/es_CL.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/teclib/teams/28042/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Eliminar" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha de Inicio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/es_CO.mo b/locales/es_CO.mo new file mode 100644 index 0000000..dcea350 Binary files /dev/null and b/locales/es_CO.mo differ diff --git a/locales/es_CO.po b/locales/es_CO.po new file mode 100644 index 0000000..b16c982 --- /dev/null +++ b/locales/es_CO.po @@ -0,0 +1,230 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/teclib/teams/28042/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Comentario:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "No se pudo crear el proyecto:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "No se pudo crear la tarea:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "No se pudo actualizar el proyecto [%s]:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "No se pudo actualizar la Tarea [%s]:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Borrar" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Descripción:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Fecha de fin:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtrar" + +#: templates/view.html.twig +msgid "Find" +msgstr "Encontrar" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Terminar para terminar:" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Terminar para Empezar:" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Modo Gantt: 'Solo lectura' " + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANTT global" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "El elemento debe ser del tipo de proyecto" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Retraso" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "¡El enlace ya existe!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "No se pueden crear vínculos entre proyectos y tareas. " + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "No se pueden crear vínculos entre proyectos. " + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "Meses" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "No hay suficientes derechos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Progreso:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proyecto" +msgstr[1] "Proyectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Proyecto / Tarea" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Cuarteles" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha de Inicio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Fecha de inicio:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Empezar para Terminar:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Empezar a empezar:" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "El elemento de destino debe ser del tipo de proyecto" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" +"La tarea de destino no puede finalizar antes de que finalice la tarea de " +"origen." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" +"La tarea de destino no puede finalizar antes de que comience la tarea de " +"origen." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" +"La tarea de destino no puede comenzar antes de que finalice la tarea de " +"origen." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" +"La tarea de destino no puede comenzar antes de que comience la tarea de " +"origen." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarea" +msgstr[1] "Tareas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Semana #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Semanas" + +#: templates/view.html.twig +msgid "Years" +msgstr "Años" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "por nombre" diff --git a/locales/es_ES.mo b/locales/es_ES.mo new file mode 100644 index 0000000..e242797 Binary files /dev/null and b/locales/es_ES.mo differ diff --git a/locales/es_ES.po b/locales/es_ES.po new file mode 100644 index 0000000..a05854a --- /dev/null +++ b/locales/es_ES.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/teclib/teams/28042/es_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Borrar" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtro" + +#: templates/view.html.twig +msgid "Find" +msgstr "Encontrar" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANTT Global" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "El elemento debe ser del tipo de proyecto" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "¡El enlace ya existe!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "Meses" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "No hay suficientes derechos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proyecto" +msgstr[1] "Proyectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha inicial" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "El elemento de destino debe ser del tipo proyecto" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarea" +msgstr[1] "Tareas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Semana nº%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Semanas" + +#: templates/view.html.twig +msgid "Years" +msgstr "Años" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "por nombre" diff --git a/locales/es_MX.mo b/locales/es_MX.mo new file mode 100644 index 0000000..21c0144 Binary files /dev/null and b/locales/es_MX.mo differ diff --git a/locales/es_MX.po b/locales/es_MX.po new file mode 100644 index 0000000..9edf2c7 --- /dev/null +++ b/locales/es_MX.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/teclib/teams/28042/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Borrar" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "No tiene suficientes permisos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proyecto" +msgstr[1] "Proyectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Registrar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha de inicio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarea" +msgstr[1] "Tareas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/es_VE.mo b/locales/es_VE.mo new file mode 100644 index 0000000..7e64d46 Binary files /dev/null and b/locales/es_VE.mo differ diff --git a/locales/es_VE.po b/locales/es_VE.po new file mode 100644 index 0000000..ace8a14 --- /dev/null +++ b/locales/es_VE.po @@ -0,0 +1,230 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/teclib/teams/28042/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Anular" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Comentario:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "No se pudo crear el proyecto: " + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "No se pudo crear la tarea: " + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "No se pudo actualizar el Proyecto[%s]: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "No se pudo actualizar la tarea [%s]: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Suprimir" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Descripción:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Fecha final:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtro" + +#: templates/view.html.twig +msgid "Find" +msgstr "Encontrar" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Fin a Fin: " + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Fin a Comienzo: " + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Modo Gantt: 'Solo lectura'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANT global" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "El elemento debe ser del tipo de proyecto" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Retraso" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "¡El enlace ya existe!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "No se pueden crear vínculos entre proyectos y tareas." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "No se pueden crear enlaces entre proyectos." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Hito" + +#: templates/view.html.twig +msgid "Months" +msgstr "Meses" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuevo proyecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "No hay suficientes derechos" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Progreso:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proyecto" +msgstr[1] "Proyectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Proyecto / Tarea" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Cuartiles" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Fecha de inicio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Fecha de inicio:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Comienzo a Fin: " + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Comienzo a Comienzo: " + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "El elemento de destino debe ser del tipo de proyecto" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" +"La tarea de destino no puede finalizar antes de que finalice la tarea de " +"origen." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" +"La tarea de destino no puede finalizar antes de que comience la tarea de " +"origen." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" +"La tarea de destino no puede comenzar antes de que finalice la tarea de " +"origen." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" +"La tarea de destino no puede comenzar antes de que comience la tarea de " +"origen." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarea" +msgstr[1] "Tareas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Semana #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Semanas" + +#: templates/view.html.twig +msgid "Years" +msgstr "Años" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "por nombre" diff --git a/locales/et_EE.mo b/locales/et_EE.mo new file mode 100644 index 0000000..fb3e1dd Binary files /dev/null and b/locales/et_EE.mo differ diff --git a/locales/et_EE.po b/locales/et_EE.po new file mode 100644 index 0000000..505c3eb --- /dev/null +++ b/locales/et_EE.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Estonian (Estonia) (https://www.transifex.com/teclib/teams/28042/et_EE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Tühista" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Kommentaar:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Päeva" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Kustuta" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Kestvus" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filter" + +#: templates/view.html.twig +msgid "Find" +msgstr "Leia" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Täisekraan" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Seos on juba olemas!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Verstapost" + +#: templates/view.html.twig +msgid "Months" +msgstr "Kuud" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Uus projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Õigused puuduvad" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projektid" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Kvartalit" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Salvesta" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Algusaeg" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tegevus" +msgstr[1] "Tegevused" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Nädalat" + +#: templates/view.html.twig +msgid "Years" +msgstr "Aastat" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "nime järgi" diff --git a/locales/eu_ES.mo b/locales/eu_ES.mo new file mode 100644 index 0000000..0f5fd42 Binary files /dev/null and b/locales/eu_ES.mo differ diff --git a/locales/eu_ES.po b/locales/eu_ES.po new file mode 100644 index 0000000..27dc5f8 --- /dev/null +++ b/locales/eu_ES.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Basque (Spain) (https://www.transifex.com/teclib/teams/28042/eu_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Ezeztatu" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Egun" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Ezabatu" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Iraupena" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Mugarria" + +#: templates/view.html.twig +msgid "Months" +msgstr "Hilabete" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Proiektu berria" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proiektua" +msgstr[1] "Proiektuak" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Gorde" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Hasiera data" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Ataza" +msgstr[1] "Atazak" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/fa_IR.mo b/locales/fa_IR.mo new file mode 100644 index 0000000..6528438 Binary files /dev/null and b/locales/fa_IR.mo differ diff --git a/locales/fa_IR.po b/locales/fa_IR.po new file mode 100644 index 0000000..2cd98df --- /dev/null +++ b/locales/fa_IR.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Persian (Iran) (https://www.transifex.com/teclib/teams/28042/fa_IR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa_IR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "لغو" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "روز" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "برای حذف" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "مدت" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "ذخیره" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "تاریخ شروع" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/fi_FI.mo b/locales/fi_FI.mo new file mode 100644 index 0000000..ef1a1f6 Binary files /dev/null and b/locales/fi_FI.mo differ diff --git a/locales/fi_FI.po b/locales/fi_FI.po new file mode 100644 index 0000000..6c0d34b --- /dev/null +++ b/locales/fi_FI.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Finnish (Finland) (https://www.transifex.com/teclib/teams/28042/fi_FI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi_FI\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Peru" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Viikonpäivät" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Poista" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Kesto" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Välitavoite" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Uusi projekti" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekti" +msgstr[1] "Projektit" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Tallenna" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Aloituspäivä" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tehtävä" +msgstr[1] "Tehtävät" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/fr_BE.mo b/locales/fr_BE.mo new file mode 100644 index 0000000..a46253a Binary files /dev/null and b/locales/fr_BE.mo differ diff --git a/locales/fr_BE.po b/locales/fr_BE.po new file mode 100644 index 0000000..b4944d9 --- /dev/null +++ b/locales/fr_BE.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: French (Belgium) (https://www.transifex.com/teclib/teams/28042/fr_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_BE\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annuler" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Jours" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Supprimer" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Durée" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Étape" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nouveau projet" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Autorisations insuffisantes" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Enregistrer" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Date de début" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/fr_CA.mo b/locales/fr_CA.mo new file mode 100644 index 0000000..dceb9ac Binary files /dev/null and b/locales/fr_CA.mo differ diff --git a/locales/fr_CA.po b/locales/fr_CA.po new file mode 100644 index 0000000..6017504 --- /dev/null +++ b/locales/fr_CA.po @@ -0,0 +1,223 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: French (Canada) (https://www.transifex.com/teclib/teams/28042/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annuler" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Commentaires" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Ne peut pas créer le projet:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Ne peut pas créer la tâche:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Ne peut pas mettre à jour le projet[%s]:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Ne peut pas mettre à jour la tâche[%s]:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Jours" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Supprimer" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Description" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Durée" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Date de fin" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtrer" + +#: templates/view.html.twig +msgid "Find" +msgstr "Chercher" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Fin-Fin :" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Fin-Début :" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Plein écran" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Mode Gantt : 'Lecture seule\"" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANTT Global" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "L'item doit être de type projet." + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Latence" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Le lien existe déjà !" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Les liens entre les projets et les tâches ne peuvent pas être créés." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Les liens entre les projets ne peuvent pas être créés." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Étape" + +#: templates/view.html.twig +msgid "Months" +msgstr "Mois" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nouveau projet" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Autorisations insuffisantes" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Progression" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projet" +msgstr[1] "Projets" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Projet / Tâche" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Trimestres" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Enregistrer" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Date de début" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Date de début" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Début-Fin :" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Début-Début :" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "L'item cible doit être de type projet." + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "La tâche cible ne peut pas se finir avant la fin de la tâche source." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "La tâche cible ne peut pas se finir avant le début la tâche source." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "La tâche cible ne peut pas démarrer avant la fin de la tâche source." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" +"La tâche cible ne peut pas démarrer avant le début de la tâche source." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tâche" +msgstr[1] "Tâches" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Semaine # %s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Semaines" + +#: templates/view.html.twig +msgid "Years" +msgstr "Années" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "par nom" diff --git a/locales/fr_FR.mo b/locales/fr_FR.mo new file mode 100644 index 0000000..f4ef531 Binary files /dev/null and b/locales/fr_FR.mo differ diff --git a/locales/fr_FR.po b/locales/fr_FR.po new file mode 100644 index 0000000..b1fdc4b --- /dev/null +++ b/locales/fr_FR.po @@ -0,0 +1,223 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: French (France) (https://www.transifex.com/teclib/teams/28042/fr_FR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annuler" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Commentaires" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Ne peut pas créer le projet:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Ne peut pas créer la tâche:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Ne peut pas mettre à jour le projet[%s]:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Ne peut pas mettre à jour la tâche[%s]:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Jours" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Supprimer" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Description" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Durée" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Date de fin" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtrer" + +#: templates/view.html.twig +msgid "Find" +msgstr "Chercher" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Fin-Fin :" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Fin-Début :" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Plein écran" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Mode Gantt : 'Lecture seule\"" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANTT Global" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "L'item doit être de type projet." + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Latence" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Le lien existe déjà !" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Les liens entre les projets et les tâches ne peuvent pas être créés." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Les liens entre les projets ne peuvent pas être créés." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Étape" + +#: templates/view.html.twig +msgid "Months" +msgstr "Mois" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nouveau projet" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Autorisations insuffisantes" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Progression" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projet" +msgstr[1] "Projets" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Projet / Tâche" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Trimestres" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Enregistrer" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Date de début" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Date de début" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Début-Fin :" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Début-Début :" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "L'item cible doit être de type projet." + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "La tâche cible ne peut pas se finir avant la fin de la tâche source." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "La tâche cible ne peut pas se finir avant le début la tâche source." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "La tâche cible ne peut pas démarrer avant la fin de la tâche source." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" +"La tâche cible ne peut pas démarrer avant le début de la tâche source." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tâche" +msgstr[1] "Tâches" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Semaine # %s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Semaines" + +#: templates/view.html.twig +msgid "Years" +msgstr "Années" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "par nom" diff --git a/locales/gantt.pot b/locales/gantt.pot new file mode 100644 index 0000000..6fbe5c1 --- /dev/null +++ b/locales/gantt.pot @@ -0,0 +1,219 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/gl_ES.mo b/locales/gl_ES.mo new file mode 100644 index 0000000..558ead7 Binary files /dev/null and b/locales/gl_ES.mo differ diff --git a/locales/gl_ES.po b/locales/gl_ES.po new file mode 100644 index 0000000..466f5b6 --- /dev/null +++ b/locales/gl_ES.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/teclib/teams/28042/gl_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Días" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Borrar" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duración" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Fito" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Novo proxecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Non tes dereitos suficientes" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proxecto" +msgstr[1] "Proxectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Gardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Data inicial" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarefa" +msgstr[1] "Tarefas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/he_IL.mo b/locales/he_IL.mo new file mode 100644 index 0000000..e4951f8 Binary files /dev/null and b/locales/he_IL.mo differ diff --git a/locales/he_IL.po b/locales/he_IL.po new file mode 100644 index 0000000..a072aaf --- /dev/null +++ b/locales/he_IL.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Hebrew (Israel) (https://www.transifex.com/teclib/teams/28042/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "ביטול" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "ימים" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "למחוק" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "משך" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "שמירה" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "תאריך התחלה" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "משימה" +msgstr[1] "משימות" +msgstr[2] "משימות" +msgstr[3] "משימות" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/hi_IN.mo b/locales/hi_IN.mo new file mode 100644 index 0000000..29f4620 Binary files /dev/null and b/locales/hi_IN.mo differ diff --git a/locales/hi_IN.po b/locales/hi_IN.po new file mode 100644 index 0000000..2d38cec --- /dev/null +++ b/locales/hi_IN.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Hindi (India) (https://www.transifex.com/teclib/teams/28042/hi_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "रद्द करें" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "दिन" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "विलोपन" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "अवधि" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "मील का पत्थर" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "नई परियोजना" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "पर्याप्त अधिकार नहीं" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "परियोजनाओं" +msgstr[1] "परियोजनाओं" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "सहेजें" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "आरंभ करने की तिथि" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "कार्य" +msgstr[1] "कार्य" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/hr_HR.mo b/locales/hr_HR.mo new file mode 100644 index 0000000..282b621 Binary files /dev/null and b/locales/hr_HR.mo differ diff --git a/locales/hr_HR.po b/locales/hr_HR.po new file mode 100644 index 0000000..9f00524 --- /dev/null +++ b/locales/hr_HR.po @@ -0,0 +1,224 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/teclib/teams/28042/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr_HR\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" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Otkaži" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Komentar:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dani" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Izbriši" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Opis:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Trajanje" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtar" + +#: templates/view.html.twig +msgid "Find" +msgstr "Pronađi" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Cjeloekranski prikaz" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Globalni GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Prekretnica" + +#: templates/view.html.twig +msgid "Months" +msgstr "Mjeseci" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Novi projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Nema dovoljno prava" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projekti" +msgstr[2] "Projekti" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Spremi" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Datum početka" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Zadatak" +msgstr[1] "Zadaci" +msgstr[2] "Zadaci" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/hu_HU.mo b/locales/hu_HU.mo new file mode 100644 index 0000000..cb5e783 Binary files /dev/null and b/locales/hu_HU.mo differ diff --git a/locales/hu_HU.po b/locales/hu_HU.po new file mode 100644 index 0000000..1d8566f --- /dev/null +++ b/locales/hu_HU.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Hungarian (Hungary) (https://www.transifex.com/teclib/teams/28042/hu_HU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu_HU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Mégsem" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Megjegyzés:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Nem sikerült létrehozni a projektet:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Nem sikerült létrehozni a feladatot:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Nap" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Töröl" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Leírás:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Tartam" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Szűrő" + +#: templates/view.html.twig +msgid "Find" +msgstr "Keresés" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Teljes képernyő" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Gantt mód: \"Csak olvasható\"" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Globális GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Lemaradás" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Mérföldkő" + +#: templates/view.html.twig +msgid "Months" +msgstr "Hónapok" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Új projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Nincs elég jogosultság" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Előrehalad:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projektek" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Projekt / Feladat" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Mentés" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Kezdő dátum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Feladat" +msgstr[1] "Feladatok" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Hét #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Hetek" + +#: templates/view.html.twig +msgid "Years" +msgstr "Évek" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Nagyít" + +#: templates/view.html.twig +msgid "by name" +msgstr "név szerint" diff --git a/locales/id_ID.mo b/locales/id_ID.mo new file mode 100644 index 0000000..b797ea5 Binary files /dev/null and b/locales/id_ID.mo differ diff --git a/locales/id_ID.po b/locales/id_ID.po new file mode 100644 index 0000000..6a3ed0b --- /dev/null +++ b/locales/id_ID.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Indonesian (Indonesia) (https://www.transifex.com/teclib/teams/28042/id_ID/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id_ID\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Batal" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Hari-hari" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Hapus" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Durasi" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Item harus berupa tipe project" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Pranala sudah ada!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Proyek baru" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Simpan" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Tanggal mulai" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Target tujuan harus berupa tipe project" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/is_IS.mo b/locales/is_IS.mo new file mode 100644 index 0000000..971d825 Binary files /dev/null and b/locales/is_IS.mo differ diff --git a/locales/is_IS.po b/locales/is_IS.po new file mode 100644 index 0000000..4aab36d --- /dev/null +++ b/locales/is_IS.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Icelandic (Iceland) (https://www.transifex.com/teclib/teams/28042/is_IS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is_IS\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dagar" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Vista" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Upphafsdagur" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/it_IT.mo b/locales/it_IT.mo new file mode 100644 index 0000000..eb5bcc4 Binary files /dev/null and b/locales/it_IT.mo differ diff --git a/locales/it_IT.po b/locales/it_IT.po new file mode 100644 index 0000000..a54d7c1 --- /dev/null +++ b/locales/it_IT.po @@ -0,0 +1,230 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Italian (Italy) (https://www.transifex.com/teclib/teams/28042/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annulla" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Commento:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Impossibile creare il progetto:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Impossibile creare l'attività:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Impossibile aggiornare il progetto [%s]:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Impossibile aggiornare l'attività [%s]:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Giorni" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Cancella" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Descrizione:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Durata" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Data di termine:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtro" + +#: templates/view.html.twig +msgid "Find" +msgstr "Trova" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Dalla fine alla fine:" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Finisci per iniziare:" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Schermo intero" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Modalità Gantt: 'Sola lettura'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANTT globale" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "L'oggetto deve essere un tipo di progetto" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Ritardo" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Il collegamento è già presente" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Non è possibile creare collegamenti tra progetti e attività." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Non è possibile creare collegamenti tra progetti." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Milestone" + +#: templates/view.html.twig +msgid "Months" +msgstr "Mesi" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nuovo progetto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Diritti insufficienti" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Avanzamento:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Progetto" +msgstr[1] "Progetti" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Progetto / Attività" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Trimestri" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Salva" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Data di inizio" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Data di inizio:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Dall'inizio alla fine:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Inizia per iniziare:" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "L'oggetto di destinazione deve essere un tipo di progetto" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" +"L'attività di destinazione non può terminare prima della fine dell'attività " +"di origine." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" +"L'attività di destinazione non può terminare prima dell'avvio dell'attività " +"di origine." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" +"L'attività di destinazione non può essere avviata prima del termine " +"dell'attività di origine." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" +"L'attività di destinazione non può essere avviata prima dell'avvio " +"dell'attività di origine." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Attività" +msgstr[1] "Attività" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Settimana nr %s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Settimane" + +#: templates/view.html.twig +msgid "Years" +msgstr "Anni" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "per nome" diff --git a/locales/ja_JP.mo b/locales/ja_JP.mo new file mode 100644 index 0000000..9117029 Binary files /dev/null and b/locales/ja_JP.mo differ diff --git a/locales/ja_JP.po b/locales/ja_JP.po new file mode 100644 index 0000000..3577477 --- /dev/null +++ b/locales/ja_JP.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Japanese (Japan) (https://www.transifex.com/teclib/teams/28042/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "中止" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "コメント :" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "プロジェクトを作成できませんでした :" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "タスクを作成できませんでした :" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "%s プロジェクトを更新できませんでした :" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "%s タスクを更新できませんでした :" + +#: templates/view.html.twig +msgid "Days" +msgstr "日" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "削除" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "詳細 :" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "期間" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "終了日 :" + +#: templates/view.html.twig +msgid "Filter" +msgstr "フィルター" + +#: templates/view.html.twig +msgid "Find" +msgstr "検索" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "終了して終了 :" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "開始して終了 :" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "全画面表示" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "GANTT モード : 「表示のみ」" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "全体 GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "アイテムは、プロジェクトの型に合致していなくてはなりません" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "遅れ" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "リンクがすでに存在します!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "プロジェクトとタスクのリンクを作成できません。" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "プロジェクトとのリンクを作成できません。" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "マイルストーン" + +#: templates/view.html.twig +msgid "Months" +msgstr "カ月" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "新規プロジェクト" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "十分な権利がない" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "進行状況 :" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "プロジェクト" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "プロジェクト・タスク" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "四半期" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "保存" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "開始日" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "開始日 :" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "終了して開始 :" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "開始して開始 :" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "対象のアイテムは、プロジェクトの型に合致していなくてはなりません" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "対象のタスクは、元のタスクが終了しないと終了できません。" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "対象のタスクは、元のタスクが開始しないと終了できません。" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "対象のタスクは、元タスクが終了しないと開始できません。" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "対象のタスクは、元のタスクが開始しないと開始できません。" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "タスク" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "第 %s 週" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "週" + +#: templates/view.html.twig +msgid "Years" +msgstr "年" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "ズーム" + +#: templates/view.html.twig +msgid "by name" +msgstr "名前ごと" diff --git a/locales/kn.mo b/locales/kn.mo new file mode 100644 index 0000000..58287fb Binary files /dev/null and b/locales/kn.mo differ diff --git a/locales/kn.po b/locales/kn.po new file mode 100644 index 0000000..bc4e667 --- /dev/null +++ b/locales/kn.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Kannada (https://www.transifex.com/teclib/teams/28042/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "ರದ್ದುಮಾಡಿ" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "ದಿನಗಳು" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "ಅಳಿಸಿ" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "ಮೈಲಿಗಲ್ಲು" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "ಉಳಿಸಿ" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "ಪ್ರಾರಂಭ ದಿನಾಂಕ" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/ko_KR.mo b/locales/ko_KR.mo new file mode 100644 index 0000000..aca4548 Binary files /dev/null and b/locales/ko_KR.mo differ diff --git a/locales/ko_KR.po b/locales/ko_KR.po new file mode 100644 index 0000000..d393366 --- /dev/null +++ b/locales/ko_KR.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Korean (Korea) (https://www.transifex.com/teclib/teams/28042/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "취소" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "일수" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "삭제" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "기간" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "전체화면" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "마일스톤" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "새 프로젝트" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "권한이 부족합니다" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "프로젝트" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "저장" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "시작 날짜" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "작업" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/lt_LT.mo b/locales/lt_LT.mo new file mode 100644 index 0000000..5eaae7f Binary files /dev/null and b/locales/lt_LT.mo differ diff --git a/locales/lt_LT.po b/locales/lt_LT.po new file mode 100644 index 0000000..4b6c404 --- /dev/null +++ b/locales/lt_LT.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/teclib/teams/28042/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Atšaukti" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Diena" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Šalinti" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Trukmė" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Išsaugoti" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Pradžios data" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Užduotys" +msgstr[1] "Užduotys" +msgstr[2] "Užduotys" +msgstr[3] "Užduotys" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/lv_LV.mo b/locales/lv_LV.mo new file mode 100644 index 0000000..deb410b Binary files /dev/null and b/locales/lv_LV.mo differ diff --git a/locales/lv_LV.po b/locales/lv_LV.po new file mode 100644 index 0000000..2d92986 --- /dev/null +++ b/locales/lv_LV.po @@ -0,0 +1,224 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Latvian (Latvia) (https://www.transifex.com/teclib/teams/28042/lv_LV/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv_LV\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Atcelt" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dienas" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Dzēst" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Ilgums" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pilnekrāna skats" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Atskaites punkts" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Jauns projekts" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Nav nepieciešamo tiesību" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekti" +msgstr[1] "Projekts" +msgstr[2] "Projekti" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Saglabāt" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Sākuma datums" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Uzdevumi" +msgstr[1] "Uzdevums" +msgstr[2] "Uzdevumi" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/mn_MN.mo b/locales/mn_MN.mo new file mode 100644 index 0000000..9e2fab2 Binary files /dev/null and b/locales/mn_MN.mo differ diff --git a/locales/mn_MN.po b/locales/mn_MN.po new file mode 100644 index 0000000..3e892c5 --- /dev/null +++ b/locales/mn_MN.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Mongolian (Mongolia) (https://www.transifex.com/teclib/teams/28042/mn_MN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn_MN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Цуцлах" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Коммент:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Project үүсгэж чадсангүй:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Task-г үүсгэж чадсангүй:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Project [%s]-г шинэчилж чадсангүй:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Task [%s] -г шинэчилж чадсангүй:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Өдөр" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Устгах" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Тайлбар:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Үргэлжлэх хугацаа" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Дуусах өдөр:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Шүүлтүүр" + +#: templates/view.html.twig +msgid "Find" +msgstr "Хайх" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Дуусгахаас дуусгах:" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Эхлэхээс дуусгах:" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Бүтэн дэлгэцээр" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Гант горим: \"Зөвхөн унших\"" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Энэ нь төслийн төрөл байх ёстой" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Хоцрох" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Холбоос аль хэдийн байна!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Project болон task-н хооронд холбоос үүсгэх боломжгүй." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Project хооронд холбоос үүсгэх боломжгүй." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Анхны хугацаа" + +#: templates/view.html.twig +msgid "Months" +msgstr "Сар" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Шинэ төсөл" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Эрх хангалтгүй байна" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Явц:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Төсөл" +msgstr[1] "Төсөл" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Project / Task" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Quarters" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Хадгалах" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Эхлэх огноо" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Эхлэх өдөр:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Эхлэхээс дуусгах:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Эхлэхээс эхлэх" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Зорилтот зүйл нь төслийн төрөл байх ёстой" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "Зорилтот task эх сурвалж дуусахаас өмнө дуусах боломжгүй." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Зорилтот task эх сурвалж эхлэхээс өмнө дуусах боломжгүй." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Зорилтот task-г эх сурвалж дуусахаас өмнө эхлүүлэх боломжгүй." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Зорилтот task-г эх сурвалж эхлэхээс өмнө эхлүүлэх боломжгүй." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Task-ууд" +msgstr[1] "Task" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Долоо хоног #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Долоо хоног" + +#: templates/view.html.twig +msgid "Years" +msgstr "Жил" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Томруулах" + +#: templates/view.html.twig +msgid "by name" +msgstr "нэрээр" diff --git a/locales/ms_MY.mo b/locales/ms_MY.mo new file mode 100644 index 0000000..8edfe05 Binary files /dev/null and b/locales/ms_MY.mo differ diff --git a/locales/ms_MY.po b/locales/ms_MY.po new file mode 100644 index 0000000..3e7d56c --- /dev/null +++ b/locales/ms_MY.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Malay (Malaysia) (https://www.transifex.com/teclib/teams/28042/ms_MY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms_MY\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Hari" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Simpan" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Tarikh mula" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/nb_NO.mo b/locales/nb_NO.mo new file mode 100644 index 0000000..b29e843 Binary files /dev/null and b/locales/nb_NO.mo differ diff --git a/locales/nb_NO.po b/locales/nb_NO.po new file mode 100644 index 0000000..f78cd0e --- /dev/null +++ b/locales/nb_NO.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/teclib/teams/28042/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Avbryt" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dager" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Slett" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Varighet" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Milepæl" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nytt prosjekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Prosjekt" +msgstr[1] "Prosjekter" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Lagre" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Startdato" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Oppgave" +msgstr[1] "Oppgaver" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/nl_BE.mo b/locales/nl_BE.mo new file mode 100644 index 0000000..b8bb72e Binary files /dev/null and b/locales/nl_BE.mo differ diff --git a/locales/nl_BE.po b/locales/nl_BE.po new file mode 100644 index 0000000..4cd08e4 --- /dev/null +++ b/locales/nl_BE.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/teclib/teams/28042/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annuleren" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dagen" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Verwijderen" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duur" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Mijlpaal" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nieuw project" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Niet genoeg rechten" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Project" +msgstr[1] "Projecten" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Bewaren" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Begindatum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Taak" +msgstr[1] "Taken" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/nl_NL.mo b/locales/nl_NL.mo new file mode 100644 index 0000000..6d72a2e Binary files /dev/null and b/locales/nl_NL.mo differ diff --git a/locales/nl_NL.po b/locales/nl_NL.po new file mode 100644 index 0000000..24ef977 --- /dev/null +++ b/locales/nl_NL.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/teclib/teams/28042/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Annuleren" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dagen" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Verwijderen" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duur" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Koppeling bestaat al!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Mijlpaal" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nieuw project" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Niet genoeg rechten" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Bewaren" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Begindatum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/nn_NO.mo b/locales/nn_NO.mo new file mode 100644 index 0000000..805c121 Binary files /dev/null and b/locales/nn_NO.mo differ diff --git a/locales/nn_NO.po b/locales/nn_NO.po new file mode 100644 index 0000000..7621684 --- /dev/null +++ b/locales/nn_NO.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Norwegian Nynorsk (Norway) (https://www.transifex.com/teclib/teams/28042/nn_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Avbryt" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dag" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Slett" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Vart i" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Lagre" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/pl_PL.mo b/locales/pl_PL.mo new file mode 100644 index 0000000..5babedc Binary files /dev/null and b/locales/pl_PL.mo differ diff --git a/locales/pl_PL.po b/locales/pl_PL.po new file mode 100644 index 0000000..e064b69 --- /dev/null +++ b/locales/pl_PL.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Polish (Poland) (https://www.transifex.com/teclib/teams/28042/pl_PL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Anuluj" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Komentarz:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dni" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Usuń" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Czas trwania" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtr" + +#: templates/view.html.twig +msgid "Find" +msgstr "Znajdź" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Pełny ekran" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Link już istnieje!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Kamień milowy" + +#: templates/view.html.twig +msgid "Months" +msgstr "Miesiące" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nowy projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Brak wystarczających uprawnień" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Postęp:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projekty" +msgstr[2] "Projekty" +msgstr[3] "Projekty" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Zapisz" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Data początkowa" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Zadanie" +msgstr[1] "Zadania" +msgstr[2] "Zadań" +msgstr[3] "Zadań" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Tydzień #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Tygodnie" + +#: templates/view.html.twig +msgid "Years" +msgstr "Lata" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/pt_BR.mo b/locales/pt_BR.mo new file mode 100644 index 0000000..923d57f Binary files /dev/null and b/locales/pt_BR.mo differ diff --git a/locales/pt_BR.po b/locales/pt_BR.po new file mode 100644 index 0000000..eee3311 --- /dev/null +++ b/locales/pt_BR.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/teclib/teams/28042/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Comentário:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Não foi possível criar o projeto: " + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Não foi possível criar a tarefa: " + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Não foi possível atualizar o Projeto[%s]: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Não foi possível atualizar a Tarefa[%s]: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Dias" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Excluir" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Descrição:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duração" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Data final:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filtro" + +#: templates/view.html.twig +msgid "Find" +msgstr "Procurar" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Terminar para Terminar: " + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Terminar para Iniciar: " + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Tela cheia" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Modo Gantt: 'Somente leitura'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "GANTT global" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Item deve ser um tipo de projeto" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Atraso" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "O link já existe!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Relacionamentos entre projetos e tarefas não podem ser criados." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Relacionamentos entre projetos não podem ser criados." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Marco" + +#: templates/view.html.twig +msgid "Months" +msgstr "Meses" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Novo projeto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Não tem permissão suficiente" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Progresso:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projeto" +msgstr[1] "Projetos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Projeto / Tarefa" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Semestres" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Salvar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Data inicial" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Data inicial:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Iniciar para Terminar: " + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Iniciar para Iniciar: " + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Destino do item deve ser um tipo de projeto" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "A tarefa alvo não pode terminar antes do término da tarefa de origem." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "A tarefa alvo não pode terminar antes do início da tarefa de origem." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "A tarefa alvo não pode iniciar antes do término da tarefa de origem." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "A tarefa alvo não pode iniciar antes do início da tarefa de origem." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarefa" +msgstr[1] "Tarefas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Semana #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Semanas" + +#: templates/view.html.twig +msgid "Years" +msgstr "Anos" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Zoom" + +#: templates/view.html.twig +msgid "by name" +msgstr "por nome" diff --git a/locales/pt_PT.mo b/locales/pt_PT.mo new file mode 100644 index 0000000..91cbfa5 Binary files /dev/null and b/locales/pt_PT.mo differ diff --git a/locales/pt_PT.po b/locales/pt_PT.po new file mode 100644 index 0000000..8475538 --- /dev/null +++ b/locales/pt_PT.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/teclib/teams/28042/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Cancelar" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dias" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Elimina" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Duração" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Ecrã inteiro" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "O item deve ser do tipo de projeto" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "O link já existe!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Marco" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Novo projecto" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Não tem privilégios suficientes" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projecto" +msgstr[1] "Projectos" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Guardar" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Data de Início" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "O item de destino deve ser do tipo de projeto" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Tarefa" +msgstr[1] "Tarefas" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/ro_RO.mo b/locales/ro_RO.mo new file mode 100644 index 0000000..6520ad8 Binary files /dev/null and b/locales/ro_RO.mo differ diff --git a/locales/ro_RO.po b/locales/ro_RO.po new file mode 100644 index 0000000..23965d3 --- /dev/null +++ b/locales/ro_RO.po @@ -0,0 +1,224 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/teclib/teams/28042/ro_RO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro_RO\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Anulează" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Zile" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Șterge" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Durata" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Etapa" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Proiect nou" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proiect" +msgstr[1] "Proiecte" +msgstr[2] "Proiecte" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Salvează" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Dată de început" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Task" +msgstr[1] "Taskuri" +msgstr[2] "Taskuri" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/ru_RU.mo b/locales/ru_RU.mo new file mode 100644 index 0000000..779858b Binary files /dev/null and b/locales/ru_RU.mo differ diff --git a/locales/ru_RU.po b/locales/ru_RU.po new file mode 100644 index 0000000..2464426 --- /dev/null +++ b/locales/ru_RU.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Russian (Russia) (https://www.transifex.com/teclib/teams/28042/ru_RU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"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" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Отмена" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Комментарий:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Не удалось создать проект:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Не удалось создать задачу:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Не удалось обновить Проект [%s]: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Не удалось обновить задачу [%s]:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Дни" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Удалить" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Описание:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Продолжительность" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Дата окончания:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Фильтр" + +#: templates/view.html.twig +msgid "Find" +msgstr "Найти" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "С конца к концу:" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "С конца к началу:" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Полный экран" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Режим Гантта: Только чтение" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Общая GANTT-диаграмма" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Элемент должен быть типа проекта" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Лаг" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Ссылка уже существует!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Связи между проектами и задачами не могут быть созданы." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Связи между проектами не могут быть созданы." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Этап" + +#: templates/view.html.twig +msgid "Months" +msgstr "Месяцы" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Новый проект" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Недостаточно прав" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Прогресс:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Проект" +msgstr[1] "Проекты" +msgstr[2] "Проекты" +msgstr[3] "Проекты" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Проект / Задача" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Кварталы" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Сохранить" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Начиная с даты" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Начиная с даты" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Сначала до конца:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Сначала до начала:" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Целевой элемент должен быть типа проекта" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "Целевая задача не может окончиться раньше завершения исходной задачи." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Целевая задача не может завершиться раньше начала исходной задачи." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Целевая задача не может начаться раньше окончания исходной задачи." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Целевая задача не может начаться раньше начала исходной задачи." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Задача" +msgstr[1] "Задачи" +msgstr[2] "Задачи" +msgstr[3] "Задач" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Неделя #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Недели" + +#: templates/view.html.twig +msgid "Years" +msgstr "Годы" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Масштаб" + +#: templates/view.html.twig +msgid "by name" +msgstr "по имени" diff --git a/locales/sk_SK.mo b/locales/sk_SK.mo new file mode 100644 index 0000000..22f0a3f Binary files /dev/null and b/locales/sk_SK.mo differ diff --git a/locales/sk_SK.po b/locales/sk_SK.po new file mode 100644 index 0000000..d1b5bb0 --- /dev/null +++ b/locales/sk_SK.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/teclib/teams/28042/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Zrušiť" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Poznámka:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Nepodarilo sa vytvoriť projekt:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Nepodarilo sa vytvoriť úlohu:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Nepodarilo sa aktualizovať projekt[%s]:" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Nepodarilo sa aktualizovať úlohu[%s]:" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dni" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Zmazať" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Opis:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Trvanie" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Dátum skončenia:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Filter" + +#: templates/view.html.twig +msgid "Find" +msgstr "Hľadať" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Od konca na koniec:" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Od konca na začiatok:" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Na celú obrazovku" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Režim Gantt: 'Iba na čítanie' " + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Globálny GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Položka musí byť typu projekt" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Oneskorenie" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Prepojenie už existuje" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Odkazy medzi projektami a úlohami sa nedajú vytvoriť." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Odkazy medzi projektami sa nedajú vytvoriť." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Míľnik" + +#: templates/view.html.twig +msgid "Months" +msgstr "Mesiace" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nový projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Nedostatočné oprávnenia" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Stav vybavenia:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projekty" +msgstr[2] "Projekty" +msgstr[3] "Projekty" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Projekt / Úloha" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Štvrťroky" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Uložiť" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Počiatočný dátum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Dátum začatia:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Od začiatku na koniec:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Od začiatku na začiatok:" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Cieľová položka musí byť typu projekt" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "Cieľová úloha nemôže skončiť skôr, než skončí zdrojová úloha." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Cieľová úloha nemôže skončiť skôr, než začne zdrojová úloha." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Cieľová úloha nemôže začať skôr, než skončí zdrojová úloha." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Cieľová úloha nemôže začať skôr, než začne zdrojová úloha." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Úloha" +msgstr[1] "Úlohy" +msgstr[2] "Úlohy" +msgstr[3] "Úlohy" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Týždeň #%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Týždne" + +#: templates/view.html.twig +msgid "Years" +msgstr "Roky" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Priblížiť" + +#: templates/view.html.twig +msgid "by name" +msgstr "podľa mena" diff --git a/locales/sl_SI.mo b/locales/sl_SI.mo new file mode 100644 index 0000000..c7d66ce Binary files /dev/null and b/locales/sl_SI.mo differ diff --git a/locales/sl_SI.po b/locales/sl_SI.po new file mode 100644 index 0000000..4787f64 --- /dev/null +++ b/locales/sl_SI.po @@ -0,0 +1,226 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/teclib/teams/28042/sl_SI/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Prekliči" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dan" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Izbriši" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Trajanje" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Postavka mora biti tipa projekt" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Povezava že obstaja!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Nov Projekt" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Shrani" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Začetni datum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Cilj mora biti tipa projekt" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/sr_RS.mo b/locales/sr_RS.mo new file mode 100644 index 0000000..3b3719d Binary files /dev/null and b/locales/sr_RS.mo differ diff --git a/locales/sr_RS.po b/locales/sr_RS.po new file mode 100644 index 0000000..fbf0639 --- /dev/null +++ b/locales/sr_RS.po @@ -0,0 +1,224 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Serbian (Serbia) (https://www.transifex.com/teclib/teams/28042/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Otkaži" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dani" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Obriši" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Trajanje" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Prekretnica" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Novi projekat" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Snimi" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Početni datum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/sv_SE.mo b/locales/sv_SE.mo new file mode 100644 index 0000000..8428995 Binary files /dev/null and b/locales/sv_SE.mo differ diff --git a/locales/sv_SE.po b/locales/sv_SE.po new file mode 100644 index 0000000..344a4d9 --- /dev/null +++ b/locales/sv_SE.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Swedish (Sweden) (https://www.transifex.com/teclib/teams/28042/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Avbryt" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Dagar" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Radera" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Tidsåtgång" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Projekt" +msgstr[1] "Projekt" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Spara" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Start datum" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Uppgift" +msgstr[1] "Uppgifter" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/th_TH.mo b/locales/th_TH.mo new file mode 100644 index 0000000..4e5af5e Binary files /dev/null and b/locales/th_TH.mo differ diff --git a/locales/th_TH.po b/locales/th_TH.po new file mode 100644 index 0000000..07a793d --- /dev/null +++ b/locales/th_TH.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Thai (Thailand) (https://www.transifex.com/teclib/teams/28042/th_TH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th_TH\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "ยกเลิก" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "วัน" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "ลบ" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "ระยะเวลา" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "โครงการ" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr " บันทึก " + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "วันเริ่มต้น" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "งาน" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "สัปดาห์" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/tr_TR.mo b/locales/tr_TR.mo new file mode 100644 index 0000000..3a63763 Binary files /dev/null and b/locales/tr_TR.mo differ diff --git a/locales/tr_TR.po b/locales/tr_TR.po new file mode 100644 index 0000000..6dc2dd6 --- /dev/null +++ b/locales/tr_TR.po @@ -0,0 +1,222 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/teclib/teams/28042/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "İptal" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Yorum:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Proje eklenemedi:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Görev eklenemedi:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Proje[%s] eklenemedi: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Görev[%s] güncellenemedi: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Gün" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Sil" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Açıklama:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Süre" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Bitiş tarihi:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Süz" + +#: templates/view.html.twig +msgid "Find" +msgstr "Bul" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Bitişten bitişe:" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Bitişten başlangıca:" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Tam ekran" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Gantt kipi: 'Salt okunur'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Genel GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Öge proje türünde olmalıdır" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Gecikme" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Bağlantı zaten var!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Projeler ve görevler arasında bağlantı kurulamadı." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Projeler arasında bağlantı kurulamadı." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Kilometre taşı" + +#: templates/view.html.twig +msgid "Months" +msgstr "Ay" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Proje eklendiğinde" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "İzinler yetersiz" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "İlerleme:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Proje" +msgstr[1] "Projeler" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Proje / görev" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Çeyrek" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Kaydet" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Başlangıç tarihi" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Başlangıç tarihi:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Başlangıçtan bitişe:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Başlangıçtan başlangıca:" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Hedef öge proje türünde olmalıdır" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "Hedef görev, kaynak görevin bitiş tarihinden önce bitemez." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Hedef görev, kaynak görevin başlangıç tarihinden önce bitemez." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Hedef görev, kaynak görevin bitiş tarihinden önce başlayamaz." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Hedef görev, kaynak görevin başlangıç tarihinden önce başlayamaz." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Görev" +msgstr[1] "Görevler" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "%s. hafta" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Hafta" + +#: templates/view.html.twig +msgid "Years" +msgstr "Yıl" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Yakınlaştır" + +#: templates/view.html.twig +msgid "by name" +msgstr "ada göre" diff --git a/locales/uk_UA.mo b/locales/uk_UA.mo new file mode 100644 index 0000000..56b7f04 Binary files /dev/null and b/locales/uk_UA.mo differ diff --git a/locales/uk_UA.po b/locales/uk_UA.po new file mode 100644 index 0000000..88c4386 --- /dev/null +++ b/locales/uk_UA.po @@ -0,0 +1,227 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/teclib/teams/28042/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Відміна" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "Примітка:" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "Не можу створити проект:" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "Не можу створити завдання:" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "Не можу змінити Проект[%s]: " + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "Не можу змінити Завдання[%s]: " + +#: templates/view.html.twig +msgid "Days" +msgstr "Дні" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Видалити" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "Опис:" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Тривалість" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "Кінцева дата:" + +#: templates/view.html.twig +msgid "Filter" +msgstr "Фільтр" + +#: templates/view.html.twig +msgid "Find" +msgstr "Шукати" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "Завершити, щоб завершити: " + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "Завершити, щоб почати: " + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "Повний екран" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "Режим Ганта: 'Тільки читання'" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "Глобальний GANTT" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "Елемент повинен мати тип проекту" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "Відставання" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "Зв'язок вже існує!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "Не можна створити зв'язки між проектами та завданнями." + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "Не можна створити зв'язки між проектами." + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Віха" + +#: templates/view.html.twig +msgid "Months" +msgstr "Місяці" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Новий проект" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "Недостатньо прав" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "Прогрес:" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Проект" +msgstr[1] "Проекти" +msgstr[2] "Проекти" +msgstr[3] "Проекти" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "Проект / завдання" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "Квартали" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Зберегти" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Початкова дата" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "Початкова дата:" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "Почати, щоб завершити:" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "Почати, щоб почати:" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "Цільовий елемент повинен мати тип проекту" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" +"Цільове завдання не може закінчуватись до завершення вихідного завдання." + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "Цільове завдання не може закінчуватись до початку вихідного завдання." + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "Цільове завдання не може починатись до завершення вихідного завдання." + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "Цільове завдання не може починатись до початку вихідного завдання." + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Завдання" +msgstr[1] "Завдання" +msgstr[2] "Завдання" +msgstr[3] "Завдання" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "Тиждень №%s" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "Тижні" + +#: templates/view.html.twig +msgid "Years" +msgstr "Роки" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "Збільшити" + +#: templates/view.html.twig +msgid "by name" +msgstr "по назві" diff --git a/locales/vi_VN.mo b/locales/vi_VN.mo new file mode 100644 index 0000000..2460c49 Binary files /dev/null and b/locales/vi_VN.mo differ diff --git a/locales/vi_VN.po b/locales/vi_VN.po new file mode 100644 index 0000000..74dd848 --- /dev/null +++ b/locales/vi_VN.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/teclib/teams/28042/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "Hủy" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "Các ngày" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "Xóa" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "Thời hạn" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "Mốc" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "Dự án mới" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "Các dự án" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "Lưu" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "Ngày bắt đầu" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "Các nhiệm vụ" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/zh_CN.mo b/locales/zh_CN.mo new file mode 100644 index 0000000..caa5952 Binary files /dev/null and b/locales/zh_CN.mo differ diff --git a/locales/zh_CN.po b/locales/zh_CN.po new file mode 100644 index 0000000..2301057 --- /dev/null +++ b/locales/zh_CN.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Chinese (China) (https://www.transifex.com/teclib/teams/28042/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "取消" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "日" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "删除" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "期间" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "全屏" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "链接已存在!" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "丰碑" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "新增项目" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "无权限" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "项目" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "保存" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "开始日期" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "任务" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/zh_HK.mo b/locales/zh_HK.mo new file mode 100644 index 0000000..6c10e00 Binary files /dev/null and b/locales/zh_HK.mo differ diff --git a/locales/zh_HK.po b/locales/zh_HK.po new file mode 100644 index 0000000..44f0664 --- /dev/null +++ b/locales/zh_HK.po @@ -0,0 +1,216 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Language-Team: Chinese (Hong Kong) (https://www.transifex.com/teclib/teams/28042/zh_HK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_HK\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/locales/zh_TW.mo b/locales/zh_TW.mo new file mode 100644 index 0000000..fbbb374 Binary files /dev/null and b/locales/zh_TW.mo differ diff --git a/locales/zh_TW.po b/locales/zh_TW.po new file mode 100644 index 0000000..53e4116 --- /dev/null +++ b/locales/zh_TW.po @@ -0,0 +1,220 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Cédric Anne, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-06 15:07+0000\n" +"PO-Revision-Date: 2022-05-06 13:53+0000\n" +"Last-Translator: Cédric Anne, 2022\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/teclib/teams/28042/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/gantt-helper.js:395 +msgid "Cancel" +msgstr "取消" + +#: js/gantt-helper.js:156 +msgid "Comment:" +msgstr "" + +#: js/gantt-helper.js:746 +msgid "Could not create project: " +msgstr "" + +#: js/gantt-helper.js:607 +msgid "Could not create task: " +msgstr "" + +#: js/gantt-helper.js:774 +#, javascript-format +msgid "Could not update Project[%s]: " +msgstr "" + +#: js/gantt-helper.js:641 js/gantt-helper.js:668 +#, javascript-format +msgid "Could not update Task[%s]: " +msgstr "" + +#: templates/view.html.twig +msgid "Days" +msgstr "日" + +#: js/gantt-helper.js:396 +msgid "Delete" +msgstr "刪除" + +#: js/gantt-helper.js:153 +msgid "Description:" +msgstr "" + +#: js/gantt-helper.js:165 +msgid "Duration" +msgstr "期間" + +#: js/gantt-helper.js:150 +msgid "End date:" +msgstr "" + +#: templates/view.html.twig +msgid "Filter" +msgstr "" + +#: templates/view.html.twig +msgid "Find" +msgstr "" + +#: js/gantt-helper.js:376 +msgid "Finish to Finish: " +msgstr "" + +#: js/gantt-helper.js:373 +msgid "Finish to Start: " +msgstr "" + +#: templates/view.html.twig +msgid "Fullscreen" +msgstr "" + +#: src/ProjectTab.php:45 +msgid "Gantt" +msgstr "" + +#: js/gantt-helper.js:518 +msgid "Gantt mode: 'Readonly'" +msgstr "" + +#: src/ProjectTab.php:73 src/ProjectTab.php:75 +msgid "Global GANTT" +msgstr "" + +#: ajax/gantt.php:140 +msgid "Item must be of project type" +msgstr "" + +#: js/gantt-helper.js:391 +msgid "Lag" +msgstr "" + +#: ajax/gantt.php:205 +msgid "Link already exist!" +msgstr "" + +#: js/gantt-helper.js:567 +msgid "Links between projects and tasks cannot be created." +msgstr "" + +#: js/gantt-helper.js:564 +msgid "Links between projects cannot be created." +msgstr "" + +#: js/gantt-helper.js:60 js/gantt-helper.js:65 +msgid "Milestone" +msgstr "里程碑" + +#: templates/view.html.twig +msgid "Months" +msgstr "" + +#: js/gantt-helper.js:69 js/gantt-helper.js:74 js/gantt-helper.js:324 +msgid "New project" +msgstr "新專案" + +#: src/TaskDAO.php:42 src/TaskDAO.php:77 src/TaskDAO.php:97 +#: src/ProjectDAO.php:42 src/ProjectDAO.php:68 src/ProjectDAO.php:85 +msgid "Not enough rights" +msgstr "" + +#: js/gantt-helper.js:151 +msgid "Progress:" +msgstr "" + +#: js/gantt-helper.js:58 +msgid "Project" +msgid_plural "Projects" +msgstr[0] "專案" + +#: js/gantt-helper.js:163 +msgid "Project / Task" +msgstr "" + +#: templates/view.html.twig +msgid "Quarters" +msgstr "" + +#: js/gantt-helper.js:394 +msgid "Save" +msgstr "存檔" + +#: js/gantt-helper.js:164 +msgid "Start date" +msgstr "開始日期" + +#: js/gantt-helper.js:148 +msgid "Start date:" +msgstr "" + +#: js/gantt-helper.js:382 +msgid "Start to Finish: " +msgstr "" + +#: js/gantt-helper.js:379 +msgid "Start to Start: " +msgstr "" + +#: ajax/gantt.php:107 +msgid "Target item must be of project type" +msgstr "" + +#: js/gantt-helper.js:576 +msgid "Target task can't end before source task ends." +msgstr "" + +#: js/gantt-helper.js:579 +msgid "Target task can't end before the source task starts." +msgstr "" + +#: js/gantt-helper.js:570 +msgid "Target task can't start before source task ends." +msgstr "" + +#: js/gantt-helper.js:573 +msgid "Target task can't start before source task starts." +msgstr "" + +#: js/gantt-helper.js:59 js/gantt-helper.js:64 +msgid "Task" +msgid_plural "Tasks" +msgstr[0] "作業" + +#: js/gantt-helper.js:213 +#, javascript-format +msgid "Week #%s" +msgstr "" + +#: templates/view.html.twig +msgid "Weeks" +msgstr "" + +#: templates/view.html.twig +msgid "Years" +msgstr "" + +#: templates/view.html.twig +msgid "Zoom" +msgstr "" + +#: templates/view.html.twig +msgid "by name" +msgstr "" diff --git a/src/ProjectDAO.php b/src/ProjectDAO.php index 47d0c5b..c449680 100644 --- a/src/ProjectDAO.php +++ b/src/ProjectDAO.php @@ -39,7 +39,7 @@ public function addProject($project) { if (!\Project::canCreate()) { - throw new \Exception(__('Not enough rights')); + throw new \Exception(__('Not enough rights', 'gantt')); } $input = [ @@ -65,7 +65,7 @@ public function updateProject($project) $p->getFromDB($project->id); if (!$p::canUpdate() || !$p->canUpdateItem()) { - throw new \Exception(__('Not enough rights')); + throw new \Exception(__('Not enough rights', 'gantt')); } $p->update([ @@ -82,7 +82,7 @@ public function updateParent($project) $p->getFromDB($project->id); if (!$p::canUpdate() || !$p->canUpdateItem()) { - throw new \Exception(__('Not enough rights')); + throw new \Exception(__('Not enough rights', 'gantt')); } $input = [ diff --git a/src/TaskDAO.php b/src/TaskDAO.php index 76c2b0d..658a286 100644 --- a/src/TaskDAO.php +++ b/src/TaskDAO.php @@ -39,7 +39,7 @@ public function addTask($task) { if (!\ProjectTask::canCreate()) { - throw new \Exception(__('Not enough rights')); + throw new \Exception(__('Not enough rights', 'gantt')); } $t = new \ProjectTask(); @@ -74,7 +74,7 @@ public function updateTask($task) $t->getFromDB($task->id); if (!$t::canUpdate() || !$t->canUpdateItem()) { - throw new \Exception(__('Not enough rights')); + throw new \Exception(__('Not enough rights', 'gantt')); } $t->update([ @@ -94,7 +94,7 @@ public function updateParent($task) $t->getFromDBByCrit(['uuid' => $task->id]); if (!$t::canUpdate() || !$t->canUpdateItem()) { - throw new \Exception(__('Not enough rights')); + throw new \Exception(__('Not enough rights', 'gantt')); } if (!is_numeric($task->parent)) { diff --git a/templates/view.html.twig b/templates/view.html.twig index 244e0db..14ff70e 100644 --- a/templates/view.html.twig +++ b/templates/view.html.twig @@ -32,7 +32,7 @@
  • + title="{{ __('Fullscreen', 'gantt') }}" data-bs-toggle="tooltip">
  • @@ -41,23 +41,23 @@
    - {{ __('Zoom') }} + {{ __('Zoom', 'gantt') }} - + - + - + - + - +
    @@ -67,16 +67,16 @@ -