diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 16:02:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-21 16:02:28 +0000 |
commit | 6957eceee0b20849558ee9e06006b05e3ca99cd9 (patch) | |
tree | 8e8c37f79e06fc216679c2c45f509ef19022b089 /app/views/mailer | |
parent | 5097f6394de9485b019607324f1d535b0f155356 (diff) | |
download | redmine-6957eceee0b20849558ee9e06006b05e3ca99cd9.tar.gz redmine-6957eceee0b20849558ee9e06006b05e3ca99cd9.zip |
Added portuguese translation (Joao Carlos Clementoni).
Email templates copied from english.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@458 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/mailer')
-rw-r--r-- | app/views/mailer/attachments_add_pt.rhtml | 6 | ||||
-rw-r--r-- | app/views/mailer/document_add_pt.rhtml | 4 | ||||
-rw-r--r-- | app/views/mailer/issue_add_pt.rhtml | 3 | ||||
-rw-r--r-- | app/views/mailer/issue_edit_pt.rhtml | 8 | ||||
-rw-r--r-- | app/views/mailer/lost_password_pt.rhtml | 3 | ||||
-rw-r--r-- | app/views/mailer/register_pt.rhtml | 3 |
6 files changed, 27 insertions, 0 deletions
diff --git a/app/views/mailer/attachments_add_pt.rhtml b/app/views/mailer/attachments_add_pt.rhtml new file mode 100644 index 000000000..81e2974c1 --- /dev/null +++ b/app/views/mailer/attachments_add_pt.rhtml @@ -0,0 +1,6 @@ +<%= @added_to %> +<%= @attachments.size %> files(s) added. +<% @attachments.each do |attachment | %> +- <%= attachment.filename %><% end %> + +<%= @url %>
\ No newline at end of file diff --git a/app/views/mailer/document_add_pt.rhtml b/app/views/mailer/document_add_pt.rhtml new file mode 100644 index 000000000..67648de15 --- /dev/null +++ b/app/views/mailer/document_add_pt.rhtml @@ -0,0 +1,4 @@ +A document has been added to <%= @document.project.name %> (<%= @document.category.name %>): +<%= l(:field_title) %>: <%= @document.title %> + +http://<%= Setting.host_name %>/documents/show/<%= @document.id %>
\ No newline at end of file diff --git a/app/views/mailer/issue_add_pt.rhtml b/app/views/mailer/issue_add_pt.rhtml new file mode 100644 index 000000000..823de2cef --- /dev/null +++ b/app/views/mailer/issue_add_pt.rhtml @@ -0,0 +1,3 @@ +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_edit_pt.rhtml b/app/views/mailer/issue_edit_pt.rhtml new file mode 100644 index 000000000..7a9ca1634 --- /dev/null +++ b/app/views/mailer/issue_edit_pt.rhtml @@ -0,0 +1,8 @@ +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/lost_password_pt.rhtml b/app/views/mailer/lost_password_pt.rhtml new file mode 100644 index 000000000..332ddeb0b --- /dev/null +++ b/app/views/mailer/lost_password_pt.rhtml @@ -0,0 +1,3 @@ +To change your password, use the following link: + +http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %>
\ No newline at end of file diff --git a/app/views/mailer/register_pt.rhtml b/app/views/mailer/register_pt.rhtml new file mode 100644 index 000000000..64477febc --- /dev/null +++ b/app/views/mailer/register_pt.rhtml @@ -0,0 +1,3 @@ +To activate your redMine account, use the following link: + +http://<%= Setting.host_name %>/account/register?token=<%= @token.value %>
\ No newline at end of file |