Skip to content

Commit

Permalink
Replace hardcoded string "diff" in Wiki#show and Repositories_Helper.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomzx committed Jul 31, 2011
1 parent bf13b0f commit 552cd8d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/helpers/repositories_helper.rb
Expand Up @@ -99,7 +99,7 @@ def render_changes_tree(tree)
:path => path_param,
:rev => @changeset.identifier) unless c.action == 'D'
text << " - #{c.revision}" unless c.revision.blank?
text << ' (' + link_to('diff', :controller => 'repositories',
text << ' (' + link_to(l(:label_diff), :controller => 'repositories',
:action => 'diff',
:id => @project,
:path => path_param,
Expand Down
2 changes: 1 addition & 1 deletion app/views/wiki/show.rhtml
Expand Up @@ -17,7 +17,7 @@
<p>
<%= link_to(('&#171; ' + 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}" %>
<%= '(' + link_to('diff', :controller => 'wiki', :action => 'diff', :id => @page.title, :project_id => @page.project, :version => @content.version) + ')' if @content.version > 1 %> -
<%= '(' + link_to(l(:label_diff), :controller => 'wiki', :action => 'diff', :id => @page.title, :project_id => @page.project, :version => @content.version) + ')' if @content.version > 1 %> -
<%= link_to((l(:label_next) + ' &#187;'), :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) %>
<br />
Expand Down
1 change: 1 addition & 0 deletions config/locales/en.yml
Expand Up @@ -678,6 +678,7 @@ en:
label_statistics: Statistics
label_commits_per_month: Commits per month
label_commits_per_author: Commits per author
label_diff: diff
label_view_diff: View differences
label_diff_inline: inline
label_diff_side_by_side: side by side
Expand Down
1 change: 1 addition & 0 deletions config/locales/fr.yml
Expand Up @@ -672,6 +672,7 @@ fr:
label_statistics: Statistiques
label_commits_per_month: Commits par mois
label_commits_per_author: Commits par auteur
label_diff: diff
label_view_diff: Voir les différences
label_diff_inline: en ligne
label_diff_side_by_side: côte à côte
Expand Down

0 comments on commit 552cd8d

Please sign in to comment.