diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-09-23 13:55:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-09-23 13:55:40 +0000 |
commit | b085b2fce1e244aae43a300578f0d002fbf224da (patch) | |
tree | c255236ef58858f16e9b01ef673e4ec37cca1d97 /app/views/wiki/diff.html.erb | |
parent | c9640667d13cb8f37a94858acac68c0e6174107d (diff) | |
download | redmine-b085b2fce1e244aae43a300578f0d002fbf224da.tar.gz redmine-b085b2fce1e244aae43a300578f0d002fbf224da.zip |
User label_revision instead of label_version for wiki edits (#26575).
git-svn-id: http://svn.redmine.org/redmine/trunk@17509 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki/diff.html.erb')
-rw-r--r-- | app/views/wiki/diff.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/wiki/diff.html.erb b/app/views/wiki/diff.html.erb index 335e581f8..2482242fb 100644 --- a/app/views/wiki/diff.html.erb +++ b/app/views/wiki/diff.html.erb @@ -10,12 +10,12 @@ "#{l(:label_version)} #{@diff.content_to.version}" %> <p> -<%= l(:label_version) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %> +<%= l(:label_revision) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %> <em>(<%= @diff.content_from.author ? @diff.content_from.author.name : l(:label_user_anonymous) %>, <%= format_time(@diff.content_from.updated_on) %>)</em> → -<%= l(:label_version) %> <%= link_to @diff.content_to.version, :action => 'show', +<%= l(:label_revision) %> <%= link_to @diff.content_to.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_to.version %>/<%= @page.content.version %> |