]> source.dussan.org Git - redmine.git/commitdiff
Notifications about issues (add/edit) are now sent in plain text and html.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 11 Sep 2007 17:12:34 +0000 (17:12 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 11 Sep 2007 17:12:34 +0000 (17:12 +0000)
Removed lang specific strings in the corresponding mail templates, so that there is only one template for all languages.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@723 e93f8b46-1217-0410-a6f0-8f06a7374b81

42 files changed:
app/models/mailer.rb
app/views/mailer/_issue.rhtml [deleted file]
app/views/mailer/_issue_text_html.rhtml [new file with mode: 0644]
app/views/mailer/_issue_text_plain.rhtml [new file with mode: 0644]
app/views/mailer/issue_add.rhtml [deleted file]
app/views/mailer/issue_add.text.html.rhtml [new file with mode: 0644]
app/views/mailer/issue_add.text.plain.rhtml [new file with mode: 0644]
app/views/mailer/issue_add_bg.rhtml [deleted file]
app/views/mailer/issue_add_de.rhtml [deleted file]
app/views/mailer/issue_add_fr.rhtml [deleted file]
app/views/mailer/issue_add_it.rhtml [deleted file]
app/views/mailer/issue_add_ja.rhtml [deleted file]
app/views/mailer/issue_add_nl.rhtml [deleted file]
app/views/mailer/issue_add_pt-br.rhtml [deleted file]
app/views/mailer/issue_add_pt.rhtml [deleted file]
app/views/mailer/issue_add_sv.rhtml [deleted file]
app/views/mailer/issue_add_zh.rhtml [deleted file]
app/views/mailer/issue_edit.rhtml [deleted file]
app/views/mailer/issue_edit.text.html.rhtml [new file with mode: 0644]
app/views/mailer/issue_edit.text.plain.rhtml [new file with mode: 0644]
app/views/mailer/issue_edit_bg.rhtml [deleted file]
app/views/mailer/issue_edit_de.rhtml [deleted file]
app/views/mailer/issue_edit_fr.rhtml [deleted file]
app/views/mailer/issue_edit_it.rhtml [deleted file]
app/views/mailer/issue_edit_ja.rhtml [deleted file]
app/views/mailer/issue_edit_nl.rhtml [deleted file]
app/views/mailer/issue_edit_pt-br.rhtml [deleted file]
app/views/mailer/issue_edit_pt.rhtml [deleted file]
app/views/mailer/issue_edit_sv.rhtml [deleted file]
app/views/mailer/issue_edit_zh.rhtml [deleted file]
lang/bg.yml
lang/de.yml
lang/en.yml
lang/es.yml
lang/fr.yml
lang/it.yml
lang/ja.yml
lang/nl.yml
lang/pt-br.yml
lang/pt.yml
lang/sv.yml
lang/zh.yml

index 5679ca284d4b0aaa51ba7f0d7245891c64b99e36..b3ed16fc2e435ca11b0cef8ab190a237bf3e0ba4 100644 (file)
@@ -16,6 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 class Mailer < ActionMailer::Base
+  helper ApplicationHelper
   helper IssuesHelper
   
   def account_information(user, password)
diff --git a/app/views/mailer/_issue.rhtml b/app/views/mailer/_issue.rhtml
deleted file mode 100644 (file)
index bd438f2..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<%=l(:label_issue)%> #<%= issue.id %> - <%= issue.subject %>
-<%=l(:field_author)%>: <%= issue.author.name %>
-<%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %>
-<%=l(:field_status)%>: <%= issue.status.name %>
-
-<%= issue.description %>
-
-<%= url_for :only_path => false, :host => Setting.host_name, :controller => 'issues', :action => 'show', :id => issue %>
diff --git a/app/views/mailer/_issue_text_html.rhtml b/app/views/mailer/_issue_text_html.rhtml
new file mode 100644 (file)
index 0000000..33527a1
--- /dev/null
@@ -0,0 +1,10 @@
+<%= link_to "#{issue.tracker.name} ##{issue.id}",  :only_path => false, :host => Setting.host_name, :controller => 'issues', :action => 'show', :id => issue %>:
+<%= issue.subject %>
+
+<ul>
+    <li><%=l(:field_author)%>: <%= issue.author.name %></li>
+    <li><%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %></li>
+    <li><%=l(:field_status)%>: <%= issue.status.name %></li>
+</ul>
+
+<%= textilizable(issue.description) %>
diff --git a/app/views/mailer/_issue_text_plain.rhtml b/app/views/mailer/_issue_text_plain.rhtml
new file mode 100644 (file)
index 0000000..6c23fcd
--- /dev/null
@@ -0,0 +1,8 @@
+<%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %>
+<%= url_for :only_path => false, :host => Setting.host_name, :controller => 'issues', :action => 'show', :id => issue %>
+
+<%=l(:field_author)%>: <%= issue.author.name %>
+<%=l(:field_assigned_to)%>: <%= issue.assigned_to ? issue.assigned_to.name : "-" %>
+<%=l(:field_status)%>: <%= issue.status.name %>
+
+<%= issue.description %>
diff --git a/app/views/mailer/issue_add.rhtml b/app/views/mailer/issue_add.rhtml
deleted file mode 100644 (file)
index 823de2c..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Issue #<%= @issue.id %> has been reported.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add.text.html.rhtml b/app/views/mailer/issue_add.text.html.rhtml
new file mode 100644 (file)
index 0000000..a7ef8ec
--- /dev/null
@@ -0,0 +1,3 @@
+<%= l(:text_issue_added, "##{@issue.id}") %>
+<hr />
+<%= render :file => "_issue_text_html", :use_full_path => true, :locals => { :issue => @issue } %>
diff --git a/app/views/mailer/issue_add.text.plain.rhtml b/app/views/mailer/issue_add.text.plain.rhtml
new file mode 100644 (file)
index 0000000..a9aa13b
--- /dev/null
@@ -0,0 +1,3 @@
+<%= l(:text_issue_added, "##{@issue.id}") %>
+----------------------------------------
+<%= render :file => "_issue_text_plain", :use_full_path => true, :locals => { :issue => @issue } %>
diff --git a/app/views/mailer/issue_add_bg.rhtml b/app/views/mailer/issue_add_bg.rhtml
deleted file mode 100644 (file)
index b7f0ce7..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Публикувана е нова задача с номер #<%= @issue.id %>.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_de.rhtml b/app/views/mailer/issue_add_de.rhtml
deleted file mode 100644 (file)
index ddbf372..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Ticket Nr. #<%= @issue.id %> wurde erstellt.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_fr.rhtml b/app/views/mailer/issue_add_fr.rhtml
deleted file mode 100644 (file)
index 4581887..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Une nouvelle demande (#<%= @issue.id %>) a été soumise.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_it.rhtml b/app/views/mailer/issue_add_it.rhtml
deleted file mode 100644 (file)
index 9846f46..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-E' stata segnalata l'anomalia #<%= @issue.id %>.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_ja.rhtml b/app/views/mailer/issue_add_ja.rhtml
deleted file mode 100644 (file)
index 14d9258..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-問題 #<%= @issue.id %> が報告されました。
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_nl.rhtml b/app/views/mailer/issue_add_nl.rhtml
deleted file mode 100644 (file)
index 23ee2d5..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Issue #<%= @issue.id %> is gerapporteerd.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_pt-br.rhtml b/app/views/mailer/issue_add_pt-br.rhtml
deleted file mode 100644 (file)
index 0a13fac..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Tarefa #<%= @issue.id %> foi incluída.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_pt.rhtml b/app/views/mailer/issue_add_pt.rhtml
deleted file mode 100644 (file)
index 0a13fac..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Tarefa #<%= @issue.id %> foi incluída.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_sv.rhtml b/app/views/mailer/issue_add_sv.rhtml
deleted file mode 100644 (file)
index c25cc9b..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Brist #<%= @issue.id %> har rapporterats.
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_add_zh.rhtml b/app/views/mailer/issue_add_zh.rhtml
deleted file mode 100644 (file)
index f3e8f96..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-ÈÎÎñ #<%= @issue.id %> Òѱ¨¸æ
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit.rhtml b/app/views/mailer/issue_edit.rhtml
deleted file mode 100644 (file)
index 7a9ca16..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Issue #<%= @issue.id %> has been updated.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit.text.html.rhtml b/app/views/mailer/issue_edit.text.html.rhtml
new file mode 100644 (file)
index 0000000..59c767c
--- /dev/null
@@ -0,0 +1,10 @@
+<%= l(:text_issue_updated, "##{@issue.id}") %><br />
+<em><%= @journal.user.name %></em>
+<ul>
+<% for detail in @journal.details %>
+    <li><%= show_detail(detail, true) %></li>
+<% end %>
+</ul>
+<%= textilizable(@journal.notes) %>
+<hr />
+<%= render :file => "_issue_text_html", :use_full_path => true, :locals => { :issue => @issue } %>
diff --git a/app/views/mailer/issue_edit.text.plain.rhtml b/app/views/mailer/issue_edit.text.plain.rhtml
new file mode 100644 (file)
index 0000000..4431d46
--- /dev/null
@@ -0,0 +1,8 @@
+<%= l(:text_issue_updated, "##{@issue.id}") %>
+<%= @journal.user.name %>
+<% for detail in @journal.details %>
+<%= show_detail(detail, true) %>
+<% end %>
+<%= @journal.notes if @journal.notes? %>
+----------------------------------------
+<%= render :file => "_issue_text_plain", :use_full_path => true, :locals => { :issue => @issue } %>
diff --git a/app/views/mailer/issue_edit_bg.rhtml b/app/views/mailer/issue_edit_bg.rhtml
deleted file mode 100644 (file)
index 5807c0e..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Задача #<%= @issue.id %> е обновена.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_de.rhtml b/app/views/mailer/issue_edit_de.rhtml
deleted file mode 100644 (file)
index d1f418c..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Ticket #<%= @issue.id %> wurde aktualisiert.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_fr.rhtml b/app/views/mailer/issue_edit_fr.rhtml
deleted file mode 100644 (file)
index ecea9e2..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-La demande #<%= @issue.id %> a été mise à jour.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_it.rhtml b/app/views/mailer/issue_edit_it.rhtml
deleted file mode 100644 (file)
index 4d2abb7..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-L'anomalia #<%= @issue.id %> e' stata aggiornata.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_ja.rhtml b/app/views/mailer/issue_edit_ja.rhtml
deleted file mode 100644 (file)
index d3b1b52..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-問題 #<%= @issue.id %> が更新されました。
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_nl.rhtml b/app/views/mailer/issue_edit_nl.rhtml
deleted file mode 100644 (file)
index 668ec1b..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Issue #<%= @issue.id %> is gewijzigd.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_pt-br.rhtml b/app/views/mailer/issue_edit_pt-br.rhtml
deleted file mode 100644 (file)
index 39108da..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Tarefa #<%= @issue.id %> foi alterada.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_pt.rhtml b/app/views/mailer/issue_edit_pt.rhtml
deleted file mode 100644 (file)
index 39108da..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Tarefa #<%= @issue.id %> foi alterada.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_sv.rhtml b/app/views/mailer/issue_edit_sv.rhtml
deleted file mode 100644 (file)
index a368dad..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Brist #<%= @issue.id %> har uppdaterats.
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
diff --git a/app/views/mailer/issue_edit_zh.rhtml b/app/views/mailer/issue_edit_zh.rhtml
deleted file mode 100644 (file)
index 1d543ed..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-ÈÎÎñ #<%= @issue.id %> ÒѸüС£
-<%= @journal.user.name %>
-<% for detail in @journal.details %>
-<%= show_detail(detail, true) %>
-<% end %>
-<%= @journal.notes if @journal.notes? %>
-----------------------------------------
-<%= render :file => "_issue", :use_full_path => true, :locals => { :issue => @issue } %>
\ No newline at end of file
index 57846c3de3e76e1c9af3af38a93f4013c9d5971e..d2c5d41fa667622c05dc9b099f52101807fb1457 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Няма дефиниран workflow за този т
 text_unallowed_characters: Непозволени символи
 text_comma_separated: Позволено е изброяване (с разделител запетая).
 text_issues_ref_in_commit_messages: Отбелязване и приключване на задачи от commit съобщения
+text_issue_added: Публикувана е нова задача с номер %s.
+text_issue_updated: Задача %s е обновена.
 
 default_role_manager: Мениджър
 default_role_developper: Разработчик
index a367c088652c463b420737cfff6f45e2d44a1ea6..65d44b49b4308cb82e0abc02d7efca4066dedc36 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: No workflow defined for this tracker
 text_unallowed_characters: Unallowed characters
 text_comma_separated: Multiple values allowed (comma separated).
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
+text_issue_added: Ticket %s wurde erstellt.
+text_issue_updated: Ticket %s wurde aktualisiert.
 
 default_role_manager: Manager
 default_role_developper: Developer
index fd74c853a0ed6c162c825da81a8a6f6eef0c7939..30e81aa72c33a422b331c57096f6da8079167f52 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: No workflow defined for this tracker
 text_unallowed_characters: Unallowed characters
 text_comma_separated: Multiple values allowed (comma separated).
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
+text_issue_added: Issue %s has been reported.
+text_issue_updated: Issue %s has been updated.
 
 default_role_manager: Manager
 default_role_developper: Developer
index 366dfa01c4aa8bc227746a39347979a019339f0b..36d98d2042f886022f20e5720d04ace2d69874b4 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: No workflow defined for this tracker
 text_unallowed_characters: Unallowed characters
 text_comma_separated: Multiple values allowed (comma separated).
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
+text_issue_added: Issue %s has been reported.
+text_issue_updated: Issue %s has been updated.
 
 default_role_manager: Manager
 default_role_developper: Desarrollador
index b7ad0b0b416a639698ddb3c169f5a2329d1ea96b..cbdd4bf86972e8d24ff2ce767a200e10d8f0accf 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Aucun worflow n'est défini pour ce tracker
 text_unallowed_characters: Caractères non autorisés
 text_comma_separated: Plusieurs valeurs possibles (séparées par des virgules).
 text_issues_ref_in_commit_messages: Référencement et résolution des demandes dans les commentaires de commits
+text_issue_added: La demande %s a été soumise.
+text_issue_updated: La demande %s a été mise à jour.
 
 default_role_manager: Manager
 default_role_developper: Développeur
index b30d2ab9c6314f41ff01e7f92317330d26ec21b2..31a5f59abb8ca3862848bd17c31fbc603ec2514c 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Nessun workflow definito per questo tracker
 text_unallowed_characters: Unallowed characters
 text_comma_separated: Multiple values allowed (comma separated).
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
+text_issue_added: "E' stata segnalata l'anomalia %s."
+text_issue_updated: "L'anomalia %s e' stata aggiornata."
 
 default_role_manager: Manager
 default_role_developper: Sviluppatore
index a0d6c168bb254f69dfae5f1f419f2948aa1ef0e0..bd7d3bc82bf30f398e3f29f1df763679af597f9a 100644 (file)
@@ -473,6 +473,8 @@ text_tracker_no_workflow: このトラッカーにワークフローが定義さ
 text_unallowed_characters: 使えない文字です
 text_comma_separated: (カンマで区切った)複数の値が使えます
 text_issues_ref_in_commit_messages: コミットメッセージ内で問題の参照/修正
+text_issue_added: 問題 %s が報告されました。
+text_issue_updated: 問題 %s が更新されました。
 
 default_role_manager: 管理者
 default_role_developper: 開発者
index ba9817bbd463fb1a0f7b6edac35b00dd05f6cfb7..39bd0b1dd7106197ed8b2e33794cb4198910ce66 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Geen workflow gedefinieerd voor deze tracker
 text_unallowed_characters: Niet toegestane tekens
 text_coma_separated: Meerdere waarden toegestaan (door komma's gescheiden).
 text_issues_ref_in_commit_messages: Opzoeken en aanpassen van issues in commit berichten
+text_issue_added: Issue %s is gerapporteerd.
+text_issue_updated: Issue %s is gewijzigd.
 
 default_role_manager: Manager
 default_role_developper: Ontwikkelaar
index 15089070ab485c4506c9394ce2a372aa508db076..aa6841673138e389f7859abcfc9f34ea6e2c353a 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Sem workflow definido para este tipo.
 text_unallowed_characters: Unallowed characters\r
 text_comma_separated: Multiple values allowed (comma separated).\r
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages\r
+text_issue_added: Tarefa %s foi incluída.\r
+text_issue_updated: Tarefa %s foi alterada.\r
 \r
 default_role_manager: Analista de Negocio ou Gerente de Projeto\r
 default_role_developper: Desenvolvedor\r
index d4b0e0cad53f6a749ccdbb259fc03ef0b0493195..d4d24df85597c7bef9e60da1ea6f60d59f2fbe7d 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Sem workflow definido para este tipo.
 text_unallowed_characters: Caracteres não permitidos
 text_comma_separated: Permitido múltiplos valores (separados por vírgula).
 text_issues_ref_in_commit_messages: Referenciando e arrumando tarefas nas mensagens de commit
+text_issue_added: Tarefa %s foi incluída.
+text_issue_updated: Tarefa %s foi alterada.
 
 default_role_manager: Analista de Negócio ou Gerente de Projeto
 default_role_developper: Desenvolvedor
index 8e2c034dca7119c25f04a138698e970ca682d6b9..25ac78a503a2d0ca014c86cf6cbb96880c67dc11 100644 (file)
@@ -472,6 +472,8 @@ text_tracker_no_workflow: Inget workflow definerat för denna tracker
 text_unallowed_characters: Unallowed characters
 text_comma_separated: Multiple values allowed (comma separated).
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
+text_issue_added: Brist %s har rapporterats.
+text_issue_updated: Brist %s har uppdaterats.
 
 default_role_manager: Förvaltare
 default_role_developper: Utvecklare
index e9f8cb7d95bab53f24beb3fc9cfec464e354bc0e..fa01f70868d657e97c93af8ae1b98e31b2b91c4c 100644 (file)
@@ -474,6 +474,8 @@ text_tracker_no_workflow: No workflow defined for this tracker
 text_unallowed_characters: Unallowed characters
 text_comma_separated: Multiple values allowed (comma separated).
 text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
+text_issue_added: %s ѱ
+text_issue_updated: %s Ѹ
 
 default_role_manager: 管理员
 default_role_developper: 开发人员