From eb80b79c26664d48e910902b58ca9a9b135b09e6 Mon Sep 17 00:00:00 2001
From: Azamat Hackimov <azamat.hackimov@gmail.com>
Date: Sat, 3 Apr 2010 11:54:24 +0000
Subject: [PATCH] New strings to localization (#5225) *
 error_can_not_delete_custom_field: Unable to delete custom field *
 error_unable_to_connect: Unable to connect ({{value}}) *
 error_can_not_remove_role: This role is in use and can not be deleted. *
 error_can_not_delete_tracker: This tracker contains issues and can't be
 deleted.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3627 e93f8b46-1217-0410-a6f0-8f06a7374b81
---
 app/controllers/auth_sources_controller.rb  | 2 +-
 app/controllers/custom_fields_controller.rb | 2 +-
 app/controllers/roles_controller.rb         | 2 +-
 app/controllers/trackers_controller.rb      | 2 +-
 config/locales/bg.yml                       | 4 ++++
 config/locales/bs.yml                       | 4 ++++
 config/locales/ca.yml                       | 4 ++++
 config/locales/cs.yml                       | 4 ++++
 config/locales/da.yml                       | 5 ++++-
 config/locales/de.yml                       | 4 ++++
 config/locales/el.yml                       | 4 ++++
 config/locales/en.yml                       | 5 ++++-
 config/locales/es.yml                       | 4 ++++
 config/locales/eu.yml                       | 4 ++++
 config/locales/fi.yml                       | 4 ++++
 config/locales/fr.yml                       | 4 ++++
 config/locales/gl.yml                       | 4 ++++
 config/locales/he.yml                       | 4 ++++
 config/locales/hr.yml                       | 4 ++++
 config/locales/hu.yml                       | 4 ++++
 config/locales/id.yml                       | 4 ++++
 config/locales/it.yml                       | 4 ++++
 config/locales/ja.yml                       | 4 ++++
 config/locales/ko.yml                       | 4 ++++
 config/locales/lt.yml                       | 4 ++++
 config/locales/mn.yml                       | 4 ++++
 config/locales/nl.yml                       | 4 ++++
 config/locales/no.yml                       | 4 ++++
 config/locales/pl.yml                       | 4 ++++
 config/locales/pt-BR.yml                    | 4 ++++
 config/locales/pt.yml                       | 4 ++++
 config/locales/ro.yml                       | 4 ++++
 config/locales/ru.yml                       | 9 +++++----
 config/locales/sk.yml                       | 4 ++++
 config/locales/sl.yml                       | 4 ++++
 config/locales/sr.yml                       | 4 ++++
 config/locales/sv.yml                       | 4 ++++
 config/locales/th.yml                       | 4 ++++
 config/locales/tr.yml                       | 4 ++++
 config/locales/uk.yml                       | 4 ++++
 config/locales/vi.yml                       | 4 ++++
 config/locales/zh-TW.yml                    | 4 ++++
 config/locales/zh.yml                       | 4 ++++
 43 files changed, 161 insertions(+), 10 deletions(-)

diff --git a/app/controllers/auth_sources_controller.rb b/app/controllers/auth_sources_controller.rb
index eaedb5ba3..75a321ffe 100644
--- a/app/controllers/auth_sources_controller.rb
+++ b/app/controllers/auth_sources_controller.rb
@@ -63,7 +63,7 @@ class AuthSourcesController < ApplicationController
       @auth_method.test_connection
       flash[:notice] = l(:notice_successful_connection)
     rescue => text
-      flash[:error] = "Unable to connect (#{text})"
+      flash[:error] = l(:error_unable_to_connect, text.message)
     end
     redirect_to :action => 'index'
   end
diff --git a/app/controllers/custom_fields_controller.rb b/app/controllers/custom_fields_controller.rb
index e8e9e4947..51457e74c 100644
--- a/app/controllers/custom_fields_controller.rb
+++ b/app/controllers/custom_fields_controller.rb
@@ -56,7 +56,7 @@ class CustomFieldsController < ApplicationController
     @custom_field = CustomField.find(params[:id]).destroy
     redirect_to :action => 'index', :tab => @custom_field.class.name
   rescue
-    flash[:error] = "Unable to delete custom field"
+    flash[:error] = l(:error_can_not_delete_custom_field)
     redirect_to :action => 'index'
   end
 end
diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index 00902735c..0809f9041 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -57,7 +57,7 @@ class RolesController < ApplicationController
     @role.destroy
     redirect_to :action => 'index'
   rescue
-    flash[:error] = 'This role is in use and can not be deleted.'
+    flash[:error] =  l(:error_can_not_remove_role)
     redirect_to :action => 'index'
   end
   
diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb
index 8a44ad825..efd9de945 100644
--- a/app/controllers/trackers_controller.rb
+++ b/app/controllers/trackers_controller.rb
@@ -55,7 +55,7 @@ class TrackersController < ApplicationController
   def destroy
     @tracker = Tracker.find(params[:id])
     unless @tracker.issues.empty?
-      flash[:error] = "This tracker contains issues and can\'t be deleted."
+      flash[:error] = l(:error_can_not_delete_tracker)
     else
       @tracker.destroy
     end
diff --git a/config/locales/bg.yml b/config/locales/bg.yml
index 5b7f1850e..d90447b51 100644
--- a/config/locales/bg.yml
+++ b/config/locales/bg.yml
@@ -887,3 +887,7 @@ bg:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/bs.yml b/config/locales/bs.yml
index 15e8a339f..c747bf268 100644
--- a/config/locales/bs.yml
+++ b/config/locales/bs.yml
@@ -911,3 +911,7 @@ bs:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/ca.yml b/config/locales/ca.yml
index 26b506912..f3ae16273 100644
--- a/config/locales/ca.yml
+++ b/config/locales/ca.yml
@@ -890,3 +890,7 @@ ca:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/cs.yml b/config/locales/cs.yml
index 98c767cfc..1676607c4 100644
--- a/config/locales/cs.yml
+++ b/config/locales/cs.yml
@@ -893,3 +893,7 @@ cs:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/da.yml b/config/locales/da.yml
index ab343fa84..d3a159006 100644
--- a/config/locales/da.yml
+++ b/config/locales/da.yml
@@ -913,4 +913,7 @@ da:
   field_parent_issue: Hoved opgave
   label_subtask_plural: Under opgaver
   label_project_copy_notifications: Send email notifikationer, mens projektet kopieres
-  
\ No newline at end of file
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/de.yml b/config/locales/de.yml
index 982452e58..84d26cd73 100644
--- a/config/locales/de.yml
+++ b/config/locales/de.yml
@@ -910,3 +910,7 @@ de:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/el.yml b/config/locales/el.yml
index a2c8ecc48..b3fe230f1 100644
--- a/config/locales/el.yml
+++ b/config/locales/el.yml
@@ -893,3 +893,7 @@ el:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 408267097..351de3b1b 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -161,13 +161,16 @@ en:
   error_issue_not_found_in_project: 'The issue was not found or does not belong to this project'
   error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.'
   error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").'
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_can_not_delete_tracker: "This tracker contains issues and can't be deleted."
+  error_can_not_remove_role: "This role is in use and can not be deleted."
   error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version can not be reopened'
   error_can_not_archive_project: This project can not be archived
   error_issue_done_ratios_not_updated: "Issue done ratios not updated."
   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_to_connect: "Unable to connect ({{value}})"
   warning_attachments_not_saved: "{{count}} file(s) could not be saved."
   
   mail_subject_lost_password: "Your {{value}} password"
diff --git a/config/locales/es.yml b/config/locales/es.yml
index 97569e3d8..ddb8e05de 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -937,3 +937,7 @@ es:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/eu.yml b/config/locales/eu.yml
index 43f0a81bb..74668dec7 100644
--- a/config/locales/eu.yml
+++ b/config/locales/eu.yml
@@ -897,3 +897,7 @@ eu:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/fi.yml b/config/locales/fi.yml
index 714801edc..fa0723ab8 100644
--- a/config/locales/fi.yml
+++ b/config/locales/fi.yml
@@ -923,3 +923,7 @@ fi:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/fr.yml b/config/locales/fr.yml
index 121d1b216..fff6834b8 100644
--- a/config/locales/fr.yml
+++ b/config/locales/fr.yml
@@ -915,3 +915,7 @@ fr:
   label_board_sticky: Sticky
   label_board_locked: Verrouillé
   error_unable_delete_issue_status: Unable to delete issue status
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/gl.yml b/config/locales/gl.yml
index 3a2e7cfda..f66f55af5 100644
--- a/config/locales/gl.yml
+++ b/config/locales/gl.yml
@@ -913,3 +913,7 @@ gl:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/he.yml b/config/locales/he.yml
index 2b40929ca..6d81878f4 100644
--- a/config/locales/he.yml
+++ b/config/locales/he.yml
@@ -897,3 +897,7 @@ he:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/hr.yml b/config/locales/hr.yml
index adc838e3c..a4c435dac 100644
--- a/config/locales/hr.yml
+++ b/config/locales/hr.yml
@@ -900,3 +900,7 @@ hr:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/hu.yml b/config/locales/hu.yml
index 9bc4375b0..dd44612ae 100644
--- a/config/locales/hu.yml
+++ b/config/locales/hu.yml
@@ -918,3 +918,7 @@
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/id.yml b/config/locales/id.yml
index 45aa1e3b2..8daacfc47 100644
--- a/config/locales/id.yml
+++ b/config/locales/id.yml
@@ -905,3 +905,7 @@ id:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/it.yml b/config/locales/it.yml
index 231ecdfcd..80c6512dc 100644
--- a/config/locales/it.yml
+++ b/config/locales/it.yml
@@ -900,3 +900,7 @@ it:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/ja.yml b/config/locales/ja.yml
index fd4a5de88..412937645 100644
--- a/config/locales/ja.yml
+++ b/config/locales/ja.yml
@@ -922,3 +922,7 @@ ja:
   enumeration_doc_categories: 文書カテゴリ
   enumeration_activities: 作業分類 (時間トラッキング)
   enumeration_system_activity: システム作業分類
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/ko.yml b/config/locales/ko.yml
index a3c3f6a12..7881b3b97 100644
--- a/config/locales/ko.yml
+++ b/config/locales/ko.yml
@@ -953,3 +953,7 @@ ko:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/lt.yml b/config/locales/lt.yml
index dba038907..2745baee1 100644
--- a/config/locales/lt.yml
+++ b/config/locales/lt.yml
@@ -961,3 +961,7 @@ lt:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/mn.yml b/config/locales/mn.yml
index 55232a68b..ec7d0dec9 100644
--- a/config/locales/mn.yml
+++ b/config/locales/mn.yml
@@ -894,3 +894,7 @@ mn:
   error_unable_delete_issue_status: Unable to delete issue status
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/nl.yml b/config/locales/nl.yml
index b92189da8..ad0a341dd 100644
--- a/config/locales/nl.yml
+++ b/config/locales/nl.yml
@@ -875,3 +875,7 @@ nl:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/no.yml b/config/locales/no.yml
index 38b51eeb7..937c07c2e 100644
--- a/config/locales/no.yml
+++ b/config/locales/no.yml
@@ -888,3 +888,7 @@
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/pl.yml b/config/locales/pl.yml
index 5a335358c..32458fdce 100644
--- a/config/locales/pl.yml
+++ b/config/locales/pl.yml
@@ -918,3 +918,7 @@ pl:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml
index 37c2c5004..b2a525ec0 100644
--- a/config/locales/pt-BR.yml
+++ b/config/locales/pt-BR.yml
@@ -921,3 +921,7 @@ pt-BR:
   field_parent_issue: Tarefa pai
   label_subtask_plural: Subtarefas
   label_project_copy_notifications: Enviar notificações por e-mail ao copiar projeto
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/pt.yml b/config/locales/pt.yml
index e320b9ff0..935a241b4 100644
--- a/config/locales/pt.yml
+++ b/config/locales/pt.yml
@@ -905,3 +905,7 @@ pt:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/ro.yml b/config/locales/ro.yml
index 778b5d07b..2dc040fcb 100644
--- a/config/locales/ro.yml
+++ b/config/locales/ro.yml
@@ -890,3 +890,7 @@ ro:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/ru.yml b/config/locales/ru.yml
index 253c533a9..42db0510b 100644
--- a/config/locales/ru.yml
+++ b/config/locales/ru.yml
@@ -275,12 +275,16 @@ ru:
   enumeration_activities: Действия (учет времени)
   enumeration_doc_categories: Категории документов
   enumeration_issue_priorities: Приоритеты задач
-
+  
+  error_can_not_remove_role: Эта роль используется и не может быть удалена.
+  error_can_not_delete_custom_field: Невозожно удалить настраиваемое поле
+  error_can_not_delete_tracker: Этот трекер содержит задачи и не может быть удален.
   error_can_t_load_default_data: "Конфигурация по умолчанию не была загружена: {{value}}"
   error_issue_not_found_in_project: Задача не была найдена или не прикреплена к этому проекту
   error_scm_annotate: "Данные отсутствуют или не могут быть подписаны."
   error_scm_command_failed: "Ошибка доступа к хранилищу: {{value}}"
   error_scm_not_found: Хранилище не содержит записи и/или исправления.
+  error_unable_to_connect: Невозможно подключиться ({{value}})
   error_unable_delete_issue_status: Невозможно удалить статус задачи
 
   field_account: Учетная запись
@@ -1013,6 +1017,3 @@ ru:
   label_close_versions: Закрыть завершенные версии
   label_board_sticky: Прикреплена
   label_board_locked: Заблокирована
-
-
-  
diff --git a/config/locales/sk.yml b/config/locales/sk.yml
index 6a23d2d77..001726009 100644
--- a/config/locales/sk.yml
+++ b/config/locales/sk.yml
@@ -892,3 +892,7 @@ sk:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/sl.yml b/config/locales/sl.yml
index f2249133b..281789358 100644
--- a/config/locales/sl.yml
+++ b/config/locales/sl.yml
@@ -892,3 +892,7 @@ sl:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/sr.yml b/config/locales/sr.yml
index cebbbe4f3..bc16a6157 100644
--- a/config/locales/sr.yml
+++ b/config/locales/sr.yml
@@ -908,3 +908,7 @@
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/sv.yml b/config/locales/sv.yml
index d56f8c6d7..482e76567 100644
--- a/config/locales/sv.yml
+++ b/config/locales/sv.yml
@@ -942,3 +942,7 @@ sv:
   enumeration_doc_categories: Dokumentkategorier
   enumeration_activities: Aktiviteter (tidsuppföljning)
   enumeration_system_activity: Systemaktivitet
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/th.yml b/config/locales/th.yml
index e7bbf83f3..81fce87a8 100644
--- a/config/locales/th.yml
+++ b/config/locales/th.yml
@@ -890,3 +890,7 @@ th:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/tr.yml b/config/locales/tr.yml
index 59fae8f07..f30f73698 100644
--- a/config/locales/tr.yml
+++ b/config/locales/tr.yml
@@ -920,3 +920,7 @@ tr:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/uk.yml b/config/locales/uk.yml
index eecd665f1..cb83099f1 100644
--- a/config/locales/uk.yml
+++ b/config/locales/uk.yml
@@ -889,3 +889,7 @@ uk:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/vi.yml b/config/locales/vi.yml
index 662a12db2..d40ad828c 100644
--- a/config/locales/vi.yml
+++ b/config/locales/vi.yml
@@ -952,3 +952,7 @@ vi:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml
index 83e9ba5bb..d7f7c2a11 100644
--- a/config/locales/zh-TW.yml
+++ b/config/locales/zh-TW.yml
@@ -984,3 +984,7 @@
   enumeration_doc_categories: 文件分類
   enumeration_activities: 活動 (時間追蹤)
   enumeration_system_activity: 系統活動
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
diff --git a/config/locales/zh.yml b/config/locales/zh.yml
index c5a5f5a68..234916186 100644
--- a/config/locales/zh.yml
+++ b/config/locales/zh.yml
@@ -915,3 +915,7 @@ zh:
   field_parent_issue: Parent task
   label_subtask_plural: Subtasks
   label_project_copy_notifications: Send email notifications during the project copy
+  error_can_not_delete_custom_field: Unable to delete custom field
+  error_unable_to_connect: Unable to connect ({{value}})
+  error_can_not_remove_role: This role is in use and can not be deleted.
+  error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
-- 
GitLab