diff --git a/app/controllers/issue_statuses_controller.rb b/app/controllers/issue_statuses_controller.rb index 13943dd..8baff73 100644 --- a/app/controllers/issue_statuses_controller.rb +++ b/app/controllers/issue_statuses_controller.rb @@ -41,6 +41,22 @@ def new def create @issue_status = IssueStatus.new(params[:issue_status]) if request.post? && @issue_status.save + if params[:add_to_all_workflows] + begin + Workflow.transaction do + Tracker.all.each do |tracker| + Role.all.each do |role| + (IssueStatus.all - [@issue_status]).each do |status| + Workflow.create! :tracker_id => tracker.id, :old_status => @issue_status, :new_status => status, :role => role # from + Workflow.create! :tracker_id => tracker.id, :old_status => status, :new_status => @issue_status, :role => role # to + end + end + end + end + rescue + flash[:warning] = l(:error_unable_add_to_workflows) + end + end flash[:notice] = l(:notice_successful_create) redirect_to :action => 'index' else diff --git a/app/views/issue_statuses/new.html.erb b/app/views/issue_statuses/new.html.erb index c9e60ab..56abd5f 100644 --- a/app/views/issue_statuses/new.html.erb +++ b/app/views/issue_statuses/new.html.erb @@ -2,5 +2,6 @@ <%= labelled_form_for @issue_status do |f| %> <%= render :partial => 'form', :locals => {:f => f} %> +

<%= submit_tag l(:button_create) %> <% end %> diff --git a/config/locales/ar.yml b/config/locales/ar.yml index c5be8b7..9186313 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -1078,3 +1078,6 @@ ar: label_cross_project_tree: مع شجرة المشروع label_cross_project_hierarchy: مع التسلسل الهرمي للمشروع label_cross_project_system: مع جميع المشاريع + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 93eb928..f04c418 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -1076,3 +1076,6 @@ bg: description_date_from: Въведете начална дата description_date_to: Въведете крайна дата text_repository_identifier_info: 'Позволени са малки букви (a-z), цифри, тирета и _.
Промяна след създаването му не е възможна.' + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/bs.yml b/config/locales/bs.yml index 4a7d4bc..c0a25c9 100644 --- a/config/locales/bs.yml +++ b/config/locales/bs.yml @@ -1091,3 +1091,6 @@ bs: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 39a6f7f..9dc15f6 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -1080,3 +1080,6 @@ ca: label_cross_project_tree: "Amb l'arbre del projecte" label_cross_project_hierarchy: "Amb la jerarquia del projecte" label_cross_project_system: "Amb tots els projectes" + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 4063534..7b18039 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -1081,3 +1081,6 @@ cs: label_cross_project_tree: Se stromem projektu label_cross_project_hierarchy: S hierarchií projektu label_cross_project_system: Se všemi projekty + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/da.yml b/config/locales/da.yml index fc34e94..f62ac68 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -1095,3 +1095,6 @@ da: label_cross_project_tree: Med projekttræ label_cross_project_hierarchy: Med projekthierarki label_cross_project_system: Med alle projekter + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/de.yml b/config/locales/de.yml index 78103d2..4bd47af 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1094,3 +1094,6 @@ de: label_cross_project_tree: Mit Projektbaum label_cross_project_hierarchy: Mit Projekthierarchie label_cross_project_system: Mit allen Projekten + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/el.yml b/config/locales/el.yml index d1751f2..ccdb9a7 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -1078,3 +1078,6 @@ el: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 2057769..0db583b 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -1080,3 +1080,6 @@ en-GB: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/en.yml b/config/locales/en.yml index 1b2bc5b..3dc8947 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -196,6 +196,7 @@ en: error_workflow_copy_source: 'Please select a source tracker or role' error_workflow_copy_target: 'Please select target tracker(s) and role(s)' error_unable_delete_issue_status: 'Unable to delete issue status' + error_unable_add_to_workflows: 'Unable to add issue status to all workflows. Please add it manually.' error_unable_to_connect: "Unable to connect (%{value})" error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})" error_session_expired: "Your session has expired. Please login again." @@ -516,6 +517,7 @@ en: label_issue_status: Issue status label_issue_status_plural: Issue statuses label_issue_status_new: New status + label_add_to_all_workflows: Add to all workflows label_issue_category: Issue category label_issue_category_plural: Issue categories label_issue_category_new: New category diff --git a/config/locales/es.yml b/config/locales/es.yml index f068e0b..89f99ac 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -1115,3 +1115,6 @@ es: label_cross_project_tree: Con el árbol del proyecto label_cross_project_hierarchy: Con la jerarquía del proyecto label_cross_project_system: Con todos los proyectos + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/et.yml b/config/locales/et.yml index e8851dc..390d935 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -1091,3 +1091,6 @@ et: label_cross_project_tree: "projektipuuga" label_cross_project_hierarchy: "projektihierarhiaga" label_cross_project_system: "kõigi projektidega" + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 92400f0..d5146a3 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -1081,3 +1081,6 @@ eu: label_cross_project_tree: Proiektu zuhaitzarekin label_cross_project_hierarchy: Proiektu Hierarkiarekin label_cross_project_system: Proiektu guztiekin + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/fa.yml b/config/locales/fa.yml index c595700..2665c0a 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -1080,3 +1080,6 @@ fa: label_cross_project_tree: با درخت پروژه label_cross_project_hierarchy: با رشته پروژه‌ها label_cross_project_system: با همه پروژه‌ها + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 269eea3..b0fd67d 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -1099,3 +1099,6 @@ fi: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 54b17e6..7a3e963 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -1092,3 +1092,6 @@ fr: setting_repositories_encodings: Encodages des fichiers et des dépôts label_search_for_watchers: Rechercher des observateurs text_repository_identifier_info: 'Seuls les lettres minuscules (a-z), chiffres, tirets et underscore sont autorisés.
Un fois sauvegardé, l''identifiant ne pourra plus être modifié.' + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/gl.yml b/config/locales/gl.yml index 25fdaca..60f73f7 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1089,3 +1089,6 @@ gl: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/he.yml b/config/locales/he.yml index 08a1584..b0a7313 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -1083,3 +1083,6 @@ he: label_cross_project_tree: עם עץ הפרויקט label_cross_project_hierarchy: עם היררכית הפרויקטים label_cross_project_system: עם כל הפרויקטים + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/hr.yml b/config/locales/hr.yml index e5f68a4..3f820e8 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -1081,3 +1081,6 @@ hr: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 449a1f2..a29eaf2 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -1097,3 +1097,6 @@ label_cross_project_tree: Projekt fával label_cross_project_hierarchy: Projekt hierarchiával label_cross_project_system: Minden projekttel + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/id.yml b/config/locales/id.yml index 90e678f..24b4bce 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -1084,3 +1084,6 @@ id: label_cross_project_tree: Dengan pohon proyek label_cross_project_hierarchy: Dengan hirarki proyek label_cross_project_system: Dengan semua proyek + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/it.yml b/config/locales/it.yml index fe53789..a220448 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -1079,3 +1079,6 @@ it: label_cross_project_tree: Con progetto padre label_cross_project_hierarchy: Con gerarchia progetto label_cross_project_system: Con tutti i progetti + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 646f2ac..f450def 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -1108,3 +1108,6 @@ ja: label_cross_project_tree: プロジェクトツリー単位 label_cross_project_hierarchy: プロジェクト階層単位 label_cross_project_system: すべてのプロジェクト + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 3785345..4d7bb79 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -1128,3 +1128,6 @@ ko: label_cross_project_tree: 최상위 및 모든 하위 프로젝트 label_cross_project_hierarchy: 상위 및 하위 프로젝트 label_cross_project_system: 모든 프로젝트 + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 4f0f904..8b1ce0a 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -1138,3 +1138,6 @@ lt: label_cross_project_tree: Su projekto medžiu label_cross_project_hierarchy: Su projekto hierarchija label_cross_project_system: Su visais projektais + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 4702cd0..da958fe 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -1072,3 +1072,6 @@ lv: label_cross_project_tree: Ar projekta koku label_cross_project_hierarchy: Ar projektu hierarhiju label_cross_project_system: Ar visiem projektiem + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/mk.yml b/config/locales/mk.yml index 32edba3..9269658 100644 --- a/config/locales/mk.yml +++ b/config/locales/mk.yml @@ -1078,3 +1078,6 @@ mk: label_cross_project_tree: Со дрвото на проектот label_cross_project_hierarchy: Со хиерархијата на проектот label_cross_project_system: Со сите проекти + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/mn.yml b/config/locales/mn.yml index b920571..8640949 100644 --- a/config/locales/mn.yml +++ b/config/locales/mn.yml @@ -1080,3 +1080,6 @@ mn: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 0f9070c..73a3948 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -1060,3 +1060,6 @@ nl: label_cross_project_tree: Met project boom label_cross_project_hierarchy: Met project hiërarchie label_cross_project_system: Met alle projecten + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/no.yml b/config/locales/no.yml index 2616503..1b2c863 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -1068,3 +1068,6 @@ label_cross_project_tree: Med prosjekt-tre label_cross_project_hierarchy: Med prosjekt-hierarki label_cross_project_system: Med alle prosjekter + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 4a64390..e885e8d 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -1095,3 +1095,6 @@ pl: label_cross_project_tree: Z drzewem projektów label_cross_project_hierarchy: Z hierarchią projektów label_cross_project_system: Ze wszystkimi projektami + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 1318078..8468d39 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -1100,3 +1100,6 @@ pt-BR: label_cross_project_tree: Com a árvore do projeto label_cross_project_hierarchy: Com a hierarquia do projeto label_cross_project_system: Com todos os projetos + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/pt.yml b/config/locales/pt.yml index a86760f..9710337 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -1083,3 +1083,6 @@ pt: label_cross_project_tree: Com árvore do projecto label_cross_project_hierarchy: Com hierarquia do projecto label_cross_project_system: Com todos os projectos + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 500a102..2225403 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -1075,3 +1075,6 @@ ro: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 60cbd2a..726dbef 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -1191,3 +1191,6 @@ ru: label_cross_project_tree: С деревом проектов label_cross_project_hierarchy: С иерархией проектов label_cross_project_system: Со всеми проектами + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 9c8ad89..2d73b22 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -1078,3 +1078,6 @@ sk: label_cross_project_tree: S projektovým stromom label_cross_project_hierarchy: S hierarchiou projektu label_cross_project_system: So všetkými projektami + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 745bd4d..f144b9f 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -1078,3 +1078,6 @@ sl: label_cross_project_tree: Z drevesom projekta label_cross_project_hierarchy: S projektno hierarhijo label_cross_project_system: Z vsemi projekti + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/sq.yml b/config/locales/sq.yml index b2fe55b..76df6b7 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -1074,3 +1074,6 @@ sq: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/sr-YU.yml b/config/locales/sr-YU.yml index 8532623..35555cf 100644 --- a/config/locales/sr-YU.yml +++ b/config/locales/sr-YU.yml @@ -1080,3 +1080,6 @@ sr-YU: label_cross_project_tree: Sa stablom projekta label_cross_project_hierarchy: Sa hijerarhijom projekta label_cross_project_system: Sa svim projektima + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 708d1bf..43fc470 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -1079,3 +1079,6 @@ sr: label_cross_project_tree: Са стаблом пројекта label_cross_project_hierarchy: Са хијерархијом пројекта label_cross_project_system: Са свим пројектима + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 58021c7..2e05b1d 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -1116,3 +1116,6 @@ sv: label_cross_project_tree: Med projektträd label_cross_project_hierarchy: Med projekthierarki label_cross_project_system: Med alla projekt + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/th.yml b/config/locales/th.yml index e57f8df..c9dfde8 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -1075,3 +1075,6 @@ th: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 691eec8..6a57818 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -1097,3 +1097,6 @@ tr: label_cross_project_tree: Proje ağacı ile label_cross_project_hierarchy: Proje hiyerarşisi ile label_cross_project_system: Tüm projeler ile + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 97fed6c..ebeef15 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -1073,3 +1073,6 @@ uk: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 85efb09..39c5146 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -1129,3 +1129,6 @@ vi: label_cross_project_tree: With project tree label_cross_project_hierarchy: With project hierarchy label_cross_project_system: With all projects + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 963705b..f581fbc 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1159,3 +1159,6 @@ label_cross_project_tree: 與專案樹共用 label_cross_project_hierarchy: 與專案階層架構共用 label_cross_project_system: 與全部的專案共用 + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows diff --git a/config/locales/zh.yml b/config/locales/zh.yml index a76b808..b5d4b73 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -1082,3 +1082,6 @@ zh: label_cross_project_tree: 与项目树共享 label_cross_project_hierarchy: 与项目继承层次共享 label_cross_project_system: 与所有项目共享 + error_unable_add_to_workflows: Unable to add issue status to all workflows. Please + add it manually. + label_add_to_all_workflows: Add to all workflows