From 46085644ed7c44ba8d2d8a88823a4bca1aa063b6 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 4 Jun 2013 17:17:48 +0000 Subject: [PATCH] Adds a specific error message for when the start date is too earlier than the minimum start date (#14086). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11926 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/issue.rb | 3 ++- config/locales/ar.yml | 1 + config/locales/az.yml | 1 + config/locales/bg.yml | 1 + config/locales/bs.yml | 1 + config/locales/ca.yml | 1 + config/locales/cs.yml | 1 + config/locales/da.yml | 1 + config/locales/de.yml | 1 + config/locales/el.yml | 1 + config/locales/en-GB.yml | 1 + config/locales/en.yml | 1 + config/locales/es.yml | 1 + config/locales/et.yml | 1 + config/locales/eu.yml | 1 + config/locales/fa.yml | 1 + config/locales/fi.yml | 1 + config/locales/fr.yml | 1 + config/locales/gl.yml | 1 + config/locales/he.yml | 1 + config/locales/hr.yml | 1 + config/locales/hu.yml | 1 + config/locales/id.yml | 1 + config/locales/it.yml | 1 + config/locales/ja.yml | 1 + config/locales/ko.yml | 1 + config/locales/lt.yml | 1 + config/locales/lv.yml | 1 + config/locales/mk.yml | 1 + config/locales/mn.yml | 1 + config/locales/nl.yml | 1 + config/locales/no.yml | 1 + config/locales/pl.yml | 1 + config/locales/pt-BR.yml | 1 + config/locales/pt.yml | 1 + config/locales/ro.yml | 1 + config/locales/ru.yml | 1 + config/locales/sk.yml | 1 + config/locales/sl.yml | 1 + config/locales/sq.yml | 1 + config/locales/sr-YU.yml | 1 + config/locales/sr.yml | 1 + config/locales/sv.yml | 1 + config/locales/th.yml | 1 + config/locales/tr.yml | 1 + config/locales/uk.yml | 1 + config/locales/vi.yml | 1 + config/locales/zh-TW.yml | 1 + config/locales/zh.yml | 1 + 49 files changed, 50 insertions(+), 1 deletion(-) diff --git a/app/models/issue.rb b/app/models/issue.rb index 1963c0293..c4183b016 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -18,6 +18,7 @@ class Issue < ActiveRecord::Base include Redmine::SafeAttributes include Redmine::Utils::DateCalculation + include Redmine::I18n belongs_to :project belongs_to :tracker @@ -552,7 +553,7 @@ class Issue < ActiveRecord::Base end if start_date && soonest_start && start_date < soonest_start - errors.add :start_date, :invalid + errors.add :start_date, :earlier_than_minimum_start_date, :date => format_date(soonest_start) end if fixed_version diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 413cf884d..795c71e9e 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -128,6 +128,7 @@ ar: not_same_project: "لا ينتمي الى نفس المشروع" circular_dependency: "هذه العلاقة سوف تخلق علاقة تبعية دائرية" cant_link_an_issue_with_a_descendant: "لا يمكن ان تكون المشكلة مرتبطة بواحدة من المهام الفرعية" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: الرجاء التحديد diff --git a/config/locales/az.yml b/config/locales/az.yml index 68a26e35a..b3e764477 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -196,6 +196,7 @@ az: not_same_project: "təkcə bir layihəyə aid deyildir" circular_dependency: "Belə əlaqə dövri asılılığa gətirib çıxaracaq" cant_link_an_issue_with_a_descendant: "Tapşırıq özünün alt tapşırığı ilə əlaqəli ola bilməz" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" support: array: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 4446eaae0..88c0d582c 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -130,6 +130,7 @@ bg: not_same_project: "не е от същия проект" circular_dependency: "Тази релация ще доведе до безкрайна зависимост" cant_link_an_issue_with_a_descendant: "Една задача не може да бъде свързвана към своя подзадача" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Изберете diff --git a/config/locales/bs.yml b/config/locales/bs.yml index ff8a45706..28447f0ce 100644 --- a/config/locales/bs.yml +++ b/config/locales/bs.yml @@ -140,6 +140,7 @@ bs: not_same_project: "ne pripada istom projektu" circular_dependency: "Ova relacija stvar cirkularnu zavisnost" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Molimo odaberite diff --git a/config/locales/ca.yml b/config/locales/ca.yml index c3b2825f5..80d915170 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -132,6 +132,7 @@ ca: not_same_project: "no pertany al mateix projecte" circular_dependency: "Aquesta relació crearia una dependència circular" cant_link_an_issue_with_a_descendant: "Un assumpte no es pot enllaçar a una de les seves subtasques" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Seleccioneu diff --git a/config/locales/cs.yml b/config/locales/cs.yml index cdd9e99dd..5fa64f156 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -134,6 +134,7 @@ cs: not_same_project: "nepatří stejnému projektu" circular_dependency: "Tento vztah by vytvořil cyklickou závislost" cant_link_an_issue_with_a_descendant: "Úkol nemůže být spojen s jedním z jeho dílčích úkolů" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Prosím vyberte diff --git a/config/locales/da.yml b/config/locales/da.yml index d0caa55d0..cb96bcbd3 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -141,6 +141,7 @@ da: not_same_project: "hører ikke til samme projekt" circular_dependency: "Denne relation vil skabe et afhængighedsforhold" cant_link_an_issue_with_a_descendant: "En sag kan ikke relateres til en af dens underopgaver" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" template: header: diff --git a/config/locales/de.yml b/config/locales/de.yml index db5a3412f..d01b564f1 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -145,6 +145,7 @@ de: not_same_project: "gehört nicht zum selben Projekt" circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen" cant_link_an_issue_with_a_descendant: "Ein Ticket kann nicht mit einer Ihrer Unteraufgaben verlinkt werden" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Bitte auswählen diff --git a/config/locales/el.yml b/config/locales/el.yml index 7269badc8..00b882435 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -130,6 +130,7 @@ el: not_same_project: "δεν ανήκει στο ίδιο έργο" circular_dependency: "Αυτή η σχέση θα δημιουργήσει κυκλικές εξαρτήσεις" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Παρακαλώ επιλέξτε diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 93a0401dd..2dd1a65c5 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -133,6 +133,7 @@ en-GB: not_same_project: "doesn't belong to the same project" circular_dependency: "This relation would create a circular dependency" cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Please select diff --git a/config/locales/en.yml b/config/locales/en.yml index 2719c10ed..04b74b02b 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -129,6 +129,7 @@ en: not_same_project: "doesn't belong to the same project" circular_dependency: "This relation would create a circular dependency" cant_link_an_issue_with_a_descendant: "An issue cannot be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Please select diff --git a/config/locales/es.yml b/config/locales/es.yml index ff9509f58..d513c1928 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -136,6 +136,7 @@ es: not_same_project: "no pertenece al mismo proyecto" circular_dependency: "Esta relación podría crear una dependencia circular" cant_link_an_issue_with_a_descendant: "Esta petición no puede ser ligada a una de estas tareas" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" # Append your own errors here or at the model/attributes scope. diff --git a/config/locales/et.yml b/config/locales/et.yml index 0c20508e8..df8fe3073 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -146,6 +146,7 @@ et: not_same_project: "ei kuulu sama projekti juurde" circular_dependency: "See suhe looks vastastikuse sõltuvuse" cant_link_an_issue_with_a_descendant: "Teemat ei saa sidustada tema enda alamteemaga" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: "Palun vali" diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 91b893125..0bbfaf8a3 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -131,6 +131,7 @@ eu: not_same_project: "ez dago proiektu berdinean" circular_dependency: "Erlazio honek mendekotasun zirkular bat sortuko luke" cant_link_an_issue_with_a_descendant: "Zeregin bat ezin da bere azpiataza batekin estekatu." + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Hautatu mesedez diff --git a/config/locales/fa.yml b/config/locales/fa.yml index dd58fd566..98717d45b 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -129,6 +129,7 @@ fa: not_same_project: "به همان پروژه وابسته نیست" circular_dependency: "این وابستگی یک وابستگی دایره وار خواهد ساخت" cant_link_an_issue_with_a_descendant: "یک پیامد نمی‌تواند به یکی از زیر کارهایش پیوند بخورد" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: گزینش کنید diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 2a796d6ef..4670d074b 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -154,6 +154,7 @@ fi: not_same_project: "ei kuulu samaan projektiin" circular_dependency: "Tämä suhde loisi kehän." cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Valitse, ole hyvä diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 3fcf78e73..db83c74f8 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -146,6 +146,7 @@ fr: not_same_project: "n'appartient pas au même projet" circular_dependency: "Cette relation créerait une dépendance circulaire" cant_link_an_issue_with_a_descendant: "Une demande ne peut pas être liée à l'une de ses sous-tâches" + earlier_than_minimum_start_date: "ne peut pas être antérieure au %{date} à cause des demandes qui précédent" actionview_instancetag_blank_option: Choisir diff --git a/config/locales/gl.yml b/config/locales/gl.yml index efabb6f74..ca06ddbf9 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -156,6 +156,7 @@ gl: not_same_project: "non pertence ao mesmo proxecto" circular_dependency: "Esta relación podería crear unha dependencia circular" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Por favor seleccione diff --git a/config/locales/he.yml b/config/locales/he.yml index 6fd37083c..69d20d366 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -134,6 +134,7 @@ he: not_same_project: "לא שייך לאותו הפרויקט" circular_dependency: "קשר זה יצור תלות מעגלית" cant_link_an_issue_with_a_descendant: "לא ניתן לקשר נושא לתת־משימה שלו" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: בחר בבקשה diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 1a9d70337..9e2ddf610 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -124,6 +124,7 @@ hr: not_same_project: "ne pripada istom projektu" circular_dependency: "Ovaj relacija stvara kružnu ovisnost" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Molimo odaberite diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 01bbaa755..67768ee3c 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -150,6 +150,7 @@ not_same_project: "nem azonos projekthez tartozik" circular_dependency: "Ez a kapcsolat egy körkörös függőséget eredményez" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Kérem válasszon diff --git a/config/locales/id.yml b/config/locales/id.yml index c28849002..4947c0c77 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -129,6 +129,7 @@ id: not_same_project: "tidak tergabung dalam proyek yang sama" circular_dependency: "kaitan ini akan menghasilkan circular dependency" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Silakan pilih diff --git a/config/locales/it.yml b/config/locales/it.yml index 1ba9b6a8c..5e3bb4881 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -134,6 +134,7 @@ it: not_same_project: "non appartiene allo stesso progetto" circular_dependency: "Questa relazione creerebbe una dipendenza circolare" cant_link_an_issue_with_a_descendant: "Una segnalazione non può essere collegata a una delle sue discendenti" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Scegli diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 8093304f1..0ac58232d 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -150,6 +150,7 @@ ja: not_same_project: "同じプロジェクトに属していません" circular_dependency: "この関係では、循環依存になります" cant_link_an_issue_with_a_descendant: "指定したチケットとは親子関係になっているため関連づけられません" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: 選んでください diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 420005e81..8fe219792 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -176,6 +176,7 @@ ko: not_same_project: "는 같은 프로젝트에 속해 있지 않습니다" circular_dependency: "이 관계는 순환 의존관계를 만들 수 있습니다" cant_link_an_issue_with_a_descendant: "일감은 하위 일감과 연결할 수 없습니다." + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: 선택하세요 diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 1f341d5dd..a7effd481 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -188,6 +188,7 @@ lt: not_same_project: "nepriklauso tam pačiam projektui" circular_dependency: "Šis ryšys sukurtų ciklinę priklausomybę" cant_link_an_issue_with_a_descendant: "Darbas negali būti susietas su viena iš savo darbo dalių" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Prašom parinkti diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 96e91c3dc..7289319b4 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -123,6 +123,7 @@ lv: not_same_project: "nepieder pie tā paša projekta" circular_dependency: "Šī relācija radītu ciklisku atkarību" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Izvēlieties diff --git a/config/locales/mk.yml b/config/locales/mk.yml index c2ddf50a7..a50e456d2 100644 --- a/config/locales/mk.yml +++ b/config/locales/mk.yml @@ -130,6 +130,7 @@ mk: not_same_project: "не припаѓа на истиот проект" circular_dependency: "Оваа врска ќе креира кружна зависност" cant_link_an_issue_with_a_descendant: "Задача неможе да се поврзе со една од нејзините подзадачи" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Изберете diff --git a/config/locales/mn.yml b/config/locales/mn.yml index bd090321a..e946dafb9 100644 --- a/config/locales/mn.yml +++ b/config/locales/mn.yml @@ -129,6 +129,7 @@ mn: not_same_project: "нэг ижил төсөлд хамаарахгүй байна" circular_dependency: "Энэ харьцаа нь гинжин(рекурсив) харьцаа үүсгэх юм байна" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Сонгоно уу diff --git a/config/locales/nl.yml b/config/locales/nl.yml index ef94bfddd..12e73a320 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -127,6 +127,7 @@ nl: not_same_project: "hoort niet bij hetzelfde project" circular_dependency: "Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben" cant_link_an_issue_with_a_descendant: "Een issue kan niet gelinked worden met een subtask" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Selecteer diff --git a/config/locales/no.yml b/config/locales/no.yml index c7b107608..14ad5b406 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -118,6 +118,7 @@ not_same_project: "hører ikke til samme prosjekt" circular_dependency: "Denne relasjonen ville lagd en sirkulær avhengighet" cant_link_an_issue_with_a_descendant: "En sak kan ikke kobles mot en av sine undersaker" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Vennligst velg diff --git a/config/locales/pl.yml b/config/locales/pl.yml index a96d29de6..de80e0ea3 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -137,6 +137,7 @@ pl: not_same_project: "nie należy do tego samego projektu" circular_dependency: "Ta relacja może wytworzyć zapętloną zależność" cant_link_an_issue_with_a_descendant: "Zagadnienie nie może zostać powiązane z jednym z własnych podzagadnień" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" support: array: diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 2c41cee5e..ad61a6251 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -149,6 +149,7 @@ pt-BR: not_same_project: "não pertence ao mesmo projeto" circular_dependency: "Esta relação geraria uma dependência circular" cant_link_an_issue_with_a_descendant: "Uma tarefa não pode ser relaciona a uma de suas subtarefas" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Selecione diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 687bb1d79..4ede548c0 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -137,6 +137,7 @@ pt: not_same_project: "não pertence ao mesmo projecto" circular_dependency: "Esta relação iria criar uma dependência circular" cant_link_an_issue_with_a_descendant: "Não é possível ligar uma tarefa a uma sub-tarefa que lhe é pertencente" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" ## Translated by: Pedro Araújo actionview_instancetag_blank_option: Seleccione diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 1e5f62aaa..451906fdf 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -124,6 +124,7 @@ ro: not_same_project: "trebuie să aparțină aceluiași proiect" circular_dependency: "Această relație ar crea o dependență circulară" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Selectați diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 98a248c60..81ef57805 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -206,6 +206,7 @@ ru: not_same_project: "не относится к одному проекту" circular_dependency: "Такая связь приведет к циклической зависимости" cant_link_an_issue_with_a_descendant: "Задача не может быть связана со своей подзадачей" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" support: array: diff --git a/config/locales/sk.yml b/config/locales/sk.yml index de75095cd..740915c8e 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -125,6 +125,7 @@ sk: not_same_project: "nepatrí rovnakému projektu" circular_dependency: "Tento vzťah by vytvoril cyklickú závislosť" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" # SK translation by Stanislav Pach | stano.pach@seznam.cz diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 48e47f96c..a2df48d5d 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -128,6 +128,7 @@ sl: not_same_project: "ne pripada istemu projektu" circular_dependency: "Ta odnos bi povzročil krožno odvisnost" cant_link_an_issue_with_a_descendant: "Zahtevek ne more biti povezan s svojo podnalogo" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Prosimo izberite diff --git a/config/locales/sq.yml b/config/locales/sq.yml index f1b55bbe0..4ce4a4e64 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -129,6 +129,7 @@ sq: not_same_project: "nuk i perket te njejtit projekt" circular_dependency: "Ky relacion do te krijoje nje varesi ciklike (circular dependency)" cant_link_an_issue_with_a_descendant: "Nje ceshtje nuk mund te lidhet me nenceshtje" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Zgjidhni diff --git a/config/locales/sr-YU.yml b/config/locales/sr-YU.yml index c15e53aff..2c74ca455 100644 --- a/config/locales/sr-YU.yml +++ b/config/locales/sr-YU.yml @@ -132,6 +132,7 @@ sr-YU: not_same_project: "ne pripada istom projektu" circular_dependency: "Ova veza će stvoriti kružnu referencu" cant_link_an_issue_with_a_descendant: "Problem ne može biti povezan sa jednim od svojih podzadataka" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Molim odaberite diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 69c57a73f..34bef3b37 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -130,6 +130,7 @@ sr: not_same_project: "не припада истом пројекту" circular_dependency: "Ова веза ће створити кружну референцу" cant_link_an_issue_with_a_descendant: "Проблем не може бити повезан са једним од својих подзадатака" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Молим одаберите diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 98a716a65..ece7dc6cd 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -134,6 +134,7 @@ sv: not_same_project: "tillhör inte samma projekt" circular_dependency: "Denna relation skulle skapa ett cirkulärt beroende" cant_link_an_issue_with_a_descendant: "Ett ärende kan inte länkas till ett av dess underärenden" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" direction: ltr date: diff --git a/config/locales/th.yml b/config/locales/th.yml index 8aa94c87a..8e37d0041 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -127,6 +127,7 @@ th: not_same_project: "ไม่ได้อยู่ในโครงการเดียวกัน" circular_dependency: "ความสัมพันธ์อ้างอิงเป็นวงกลม" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: กรุณาเลือก diff --git a/config/locales/tr.yml b/config/locales/tr.yml index cdc73db8b..d9f0f6f37 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -151,6 +151,7 @@ tr: not_same_project: "aynı projeye ait değil" circular_dependency: "Bu ilişki döngüsel bağımlılık meydana getirecektir" cant_link_an_issue_with_a_descendant: "Bir iş, alt işlerinden birine bağlanamaz" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" models: actionview_instancetag_blank_option: Lütfen Seçin diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 39f1d93a6..dc0dde9c0 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -127,6 +127,7 @@ uk: not_same_project: "не відносяться до одного проекту" circular_dependency: "Такий зв'язок приведе до циклічної залежності" cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: Оберіть diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 578c740fd..d152d5e72 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -144,6 +144,7 @@ vi: not_same_project: "không thuộc cùng dự án" circular_dependency: "quan hệ có thể gây ra lặp vô tận" cant_link_an_issue_with_a_descendant: "Một vấn đề không thể liên kết tới một trong số những tác vụ con của nó" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" direction: ltr date: diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 8293256e4..60191dfc0 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -186,6 +186,7 @@ not_same_project: "不屬於同一個專案" circular_dependency: "這個關聯會導致環狀相依" cant_link_an_issue_with_a_descendant: "問題無法被連結至自己的子任務" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" # You can define own errors for models or model attributes. # The values :model, :attribute and :value are always available for interpolation. diff --git a/config/locales/zh.yml b/config/locales/zh.yml index d9e4b4555..aca19adec 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -133,6 +133,7 @@ zh: not_same_project: "不属于同一个项目" circular_dependency: "此关联将导致循环依赖" cant_link_an_issue_with_a_descendant: "问题不能关联到它的子任务" + earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" actionview_instancetag_blank_option: 请选择