##// END OF EJS Templates
Removed hard-coded URLs in mail templates....
Jean-Philippe Lang -
r635:c4239a4fd2f9
parent child
Show More
@@ -5,4 +5,4
5
5
6 <%= issue.description %>
6 <%= issue.description %>
7
7
8 http://<%= Setting.host_name %>/issues/show/<%= issue.id %> No newline at end of file
8 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'issues', :action => 'show', :id => issue %>
@@ -1,4 +1,4
1 A document has been added to <%= @document.project.name %> (<%= @document.category.name %>):
1 A document has been added to <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Добавен е документ в <%= @document.project.name %> (<%= @document.category.name %>):
1 Добавен е документ в <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Ein Dokument wurde hinzugefügt: <%= @document.project.name %> (<%= @document.category.name %>):
1 Ein Dokument wurde hinzugefügt: <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Un document a été ajouté à <%= @document.project.name %> (<%= @document.category.name %>):
1 Un document a été ajouté à <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Un documento e' stato aggiunto a <%= @document.project.name %> (<%= @document.category.name %>):
1 Un documento e' stato aggiunto a <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 文書が <%= @document.project.name %> (<%= @document.category.name %>) に追加されました:
1 文書が <%= @document.project.name %> (<%= @document.category.name %>) に追加されました:
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Een document is toegevoegd aan <%= @document.project.name %> (<%= @document.category.name %>):
1 Een document is toegevoegd aan <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Um documento foi adicionado no projeto <%= @document.project.name %> (<%= @document.category.name %>):
1 Um documento foi adicionado no projeto <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Um documento foi adicionado no projeto <%= @document.project.name %> (<%= @document.category.name %>):
1 Um documento foi adicionado no projeto <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 Ett dokument har lagts till i <%= @document.project.name %> (<%= @document.category.name %>):
1 Ett dokument har lagts till i <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,4 +1,4
1 ��һ���ĵ��ѱ����뵽��Ŀ�� <%= @document.project.name %> (<%= @document.category.name %>):
1 ��һ���ĵ��ѱ����뵽��Ŀ�� <%= @document.project.name %> (<%= @document.category.name %>):
2 <%= l(:field_title) %>: <%= @document.title %>
2 <%= l(:field_title) %>: <%= @document.title %>
3
3
4 http://<%= Setting.host_name %>/documents/show/<%= @document.id %> No newline at end of file
4 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'documents', :action => 'show', :id => @document %>
@@ -1,3 +1,3
1 To change your password, use the following link:
1 To change your password, use the following link:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 За да смените паролата си, използвайте следния линк:
1 За да смените паролата си, използвайте следния линк:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 Benutzen Sie folgenden Link, um das Password zu ändern:
1 Benutzen Sie folgenden Link, um das Password zu ändern:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 Pour changer votre mot de passe, utilisez le lien suivant:
1 Pour changer votre mot de passe, utilisez le lien suivant:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 Per cambiare la password, usate il seguente collegamento:
1 Per cambiare la password, usate il seguente collegamento:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 パスワードを変更するには、以下のリンクをたどってください:
1 パスワードを変更するには、以下のリンクをたどってください:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 Gebruik de volgende link om Uw wachtwoord te wijzigen:
1 Gebruik de volgende link om Uw wachtwoord te wijzigen:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 Para mudar sua senha, clique no link abaixo:
1 Para mudar sua senha, clique no link abaixo:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 Para mudar sua senha, clique no link abaixo:
1 Para mudar sua senha, clique no link abaixo:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 För att ändra lösenord, följ denna länk:
1 För att ändra lösenord, följ denna länk:
2
2
3 http://<%= Setting.host_name %>/account/lost_password?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'lost_password', :token => @token.value %>
@@ -1,3 +1,3
1 To activate your redMine account, use the following link:
1 To activate your redMine account, use the following link:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 За да активирате акаунта си използвайте следния линк:
1 За да активирате акаунта си използвайте следния линк:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Um Ihren Account zu aktivieren, benutzen Sie folgenden Link:
1 Um Ihren Account zu aktivieren, benutzen Sie folgenden Link:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Pour activer votre compte sur redMine, utilisez le lien suivant:
1 Pour activer votre compte sur redMine, utilisez le lien suivant:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Per attivare la vostra utenza redMine, usate il seguente collegamento:
1 Per attivare la vostra utenza redMine, usate il seguente collegamento:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 redMine アカウントをアクティブにするには、以下のリンクをたどってください:
1 redMine アカウントをアクティブにするには、以下のリンクをたどってください:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Gebruik de volgende link om Uw redMine account te activeren:
1 Gebruik de volgende link om Uw redMine account te activeren:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Para ativar sua conta do redMine, clique no link abaixo:
1 Para ativar sua conta do redMine, clique no link abaixo:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Para ativar sua conta do redMine, clique no link abaixo:
1 Para ativar sua conta do redMine, clique no link abaixo:
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,3 +1,3
1 Fr att aktivera ditt redMine-konto, använd följande länk.
1 För att aktivera ditt redMine-konto, använd följande länk.
2
2
3 http://<%= Setting.host_name %>/account/register?token=<%= @token.value %> No newline at end of file
3 <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'account', :action => 'register', :token => @token.value %>
@@ -1,1 +1,3
1 This is a test email sent by Redmine.
1 This is a test email sent by Redmine.
2
3 Redmine URL: <%= url_for :only_path => false, :host => Setting.host_name, :controller => 'welcome' %>
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now