add more translations for he locale. Contributed by Darian Shalev

This commit is contained in:
Reinier Balt 2012-04-11 20:21:28 +02:00
parent 07dd5306ae
commit ea158d8aab
14 changed files with 3025 additions and 356 deletions

View file

@ -1,10 +1,10 @@
<div class="stats_module">
<h3><%= t('stats.top10_projects') %></h3>
<% i=0
@projects_and_actions.each do |p|
@projects_and_actions.each do |p|
i+=1 -%>
<%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id}%> (<%=p.count %> actions) <br/>
<% end
<%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id}%> (<%=p.count %> <%= t('common.actions_midsentence') %>) <br/>
<% end
if i < 10
i.upto 10 do |j| -%>
<%= i -%> - n/a (n/a) <br/>
@ -16,10 +16,10 @@
<div class="stats_module">
<h3><%= t('stats.top10_projects_30days') %></h3>
<% i=0
@projects_and_actions_last30days.each do |p|
@projects_and_actions_last30days.each do |p|
i+=1 -%>
<%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id} %> (<%=p.count %> actions) <br/>
<% end
<%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id} %> (<%=p.count %> <%= t('common.actions_midsentence') %>) <br/>
<% end
if i < 10
i.upto 10 do |j| -%>
<%= i -%> - n/a (n/a) <br/>
@ -31,8 +31,8 @@
<div class="stats_module">
<h3><%= t('stats.top10_longrunning') %></h3>
<% i=0
@projects_and_runtime.each do |id, name, days|
@projects_and_runtime.each do |id, name, days|
i+=1 -%>
<%= i -%> - <%= link_to name, {:controller => "projects", :action => "show", :id => id} %> (<%=days %> days) <br/>
<%= i -%> - <%= link_to name, {:controller => "projects", :action => "show", :id => id} %> (<%=days %> <%= t('common.days_midsentence') %>) <br/>
<% end -%>
</div>