Replaced french word "anonyme" at app/views/wiki/show.rhtml with label_user_anonymous (#8994).
Contributed by Tom Rochette. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6411 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
77f0756bc0
commit
48dccc46f0
|
@ -15,13 +15,20 @@
|
||||||
|
|
||||||
<% if @content.version != @page.content.version %>
|
<% if @content.version != @page.content.version %>
|
||||||
<p>
|
<p>
|
||||||
<%= link_to(('« ' + l(:label_previous)), :action => 'show', :id => @page.title, :project_id => @page.project, :version => (@content.version - 1)) + " - " if @content.version > 1 %>
|
<%= link_to(('« ' + l(:label_previous)),
|
||||||
|
:action => 'show', :id => @page.title, :project_id => @page.project,
|
||||||
|
:version => (@content.version - 1)) + " - " if @content.version > 1 %>
|
||||||
<%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %>
|
<%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %>
|
||||||
<%= '(' + link_to('diff', :controller => 'wiki', :action => 'diff', :id => @page.title, :project_id => @page.project, :version => @content.version) + ')' if @content.version > 1 %> -
|
<%= '(' + link_to('diff', :controller => 'wiki', :action => 'diff',
|
||||||
<%= link_to((l(:label_next) + ' »'), :action => 'show', :id => @page.title, :project_id => @page.project, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
|
:id => @page.title, :project_id => @page.project,
|
||||||
|
:version => @content.version) + ')' if @content.version > 1 %> -
|
||||||
|
<%= link_to((l(:label_next) + ' »'), :action => 'show',
|
||||||
|
:id => @page.title, :project_id => @page.project,
|
||||||
|
:version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
|
||||||
<%= link_to(l(:label_current_version), :action => 'show', :id => @page.title, :project_id => @page.project) %>
|
<%= link_to(l(:label_current_version), :action => 'show', :id => @page.title, :project_id => @page.project) %>
|
||||||
<br />
|
<br />
|
||||||
<em><%= @content.author ? link_to_user(@content.author) : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
|
<em><%= @content.author ? link_to_user(@content.author) : l(:label_user_anonymous)
|
||||||
|
%>, <%= format_time(@content.updated_on) %> </em><br />
|
||||||
<%=h @content.comments %>
|
<%=h @content.comments %>
|
||||||
</p>
|
</p>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
Loading…
Reference in New Issue