Commit d609ea5433a96c17a8d65c43066c079adadf96b0
Exists in
colab
and in
4 other branches
Merge pull request #245 from mezuro/fix-processing-by-date-loader-message
Fix missing translation on processing information when a date is chosen
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/repositories/show.html.erb
| ... | ... | @@ -47,7 +47,7 @@ |
| 47 | 47 | <%= select_tag(:month, options_for_select(month_options), :style => "width:55px; margin-top:5px") %> |
| 48 | 48 | <%= label_tag :year, t("year") %>: |
| 49 | 49 | <%= select_tag(:year, options_for_select(year_options), :style => "width:70px; margin-top:5px") %> |
| 50 | - <%= submit_tag(t('search'), class: 'btn btn-info', style: 'margin-bottom:5px', onClick: "Repository.State.set_loader('#{image_tag 'loader.gif'} Loading data. Please, wait.')") %> | |
| 50 | + <%= submit_tag(t('search'), class: 'btn btn-info', style: 'margin-bottom:5px', onClick: "Repository.State.set_loader('#{image_tag 'loader.gif'} #{j(t('repository.show.loading'))}')") %> | |
| 51 | 51 | </p> |
| 52 | 52 | <% end %> |
| 53 | 53 | ... | ... |