diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-02 19:36:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-02 19:36:00 +0000 |
commit | e07c44543f9795c71d86bcb7240728576aa28951 (patch) | |
tree | 7a5211a805eb0a15085080c6ccb837e91542f84d /app/views/mailer | |
parent | 78b5e57a4ad8c29f166af268dfe4bc64aac541ca (diff) | |
download | redmine-e07c44543f9795c71d86bcb7240728576aa28951.tar.gz redmine-e07c44543f9795c71d86bcb7240728576aa28951.zip |
Bulgarian translation added (Nikolay Solakov)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@502 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/mailer')
-rw-r--r-- | app/views/mailer/attachments_add_bg.rhtml | 6 | ||||
-rw-r--r-- | app/views/mailer/document_add_bg.rhtml | 4 | ||||
-rw-r--r-- | app/views/mailer/issue_add_bg.rhtml | 3 | ||||
-rw-r--r-- | app/views/mailer/issue_edit_bg.rhtml | 8 | ||||
-rw-r--r-- | app/views/mailer/lost_password_bg.rhtml | 3 | ||||
-rw-r--r-- | app/views/mailer/register_bg.rhtml | 3 |
6 files changed, 27 insertions, 0 deletions
diff --git a/app/views/mailer/attachments_add_bg.rhtml b/app/views/mailer/attachments_add_bg.rhtml new file mode 100644 index 000000000..e38a97260 --- /dev/null +++ b/app/views/mailer/attachments_add_bg.rhtml @@ -0,0 +1,6 @@ +<%= @added_to %> +<%= @attachments.size %> файл(а) добавени. +<% @attachments.each do |attachment | %> +- <%= attachment.filename %><% end %> + +<%= @url %>
\ No newline at end of file diff --git a/app/views/mailer/document_add_bg.rhtml b/app/views/mailer/document_add_bg.rhtml new file mode 100644 index 000000000..aef4f1ffb --- /dev/null +++ b/app/views/mailer/document_add_bg.rhtml @@ -0,0 +1,4 @@ +Добавен е документ в <%= @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_bg.rhtml b/app/views/mailer/issue_add_bg.rhtml new file mode 100644 index 000000000..b7f0ce741 --- /dev/null +++ b/app/views/mailer/issue_add_bg.rhtml @@ -0,0 +1,3 @@ +Публикувана е нова задача с номер #<%= @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_bg.rhtml b/app/views/mailer/issue_edit_bg.rhtml new file mode 100644 index 000000000..5807c0e76 --- /dev/null +++ b/app/views/mailer/issue_edit_bg.rhtml @@ -0,0 +1,8 @@ +Задача #<%= @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/lost_password_bg.rhtml b/app/views/mailer/lost_password_bg.rhtml new file mode 100644 index 000000000..f415769fc --- /dev/null +++ b/app/views/mailer/lost_password_bg.rhtml @@ -0,0 +1,3 @@ +За да смените паролата си, използвайте следния линк: + +http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %>
\ No newline at end of file diff --git a/app/views/mailer/register_bg.rhtml b/app/views/mailer/register_bg.rhtml new file mode 100644 index 000000000..79e7ed90b --- /dev/null +++ b/app/views/mailer/register_bg.rhtml @@ -0,0 +1,3 @@ +За да активирате акаунта си използвайте следния линк: + +http://<%= Setting.host_name %>/account/register?token=<%= @token.value %>
\ No newline at end of file |