diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-06-18 10:47:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-06-18 10:47:02 +0000 |
commit | 483657f7c007fbd34cfe378cef29db4e3f3a9e08 (patch) | |
tree | a9695184835dabdec0b3e5220a46b72fc1ea5eb3 /app/views/imports/show.html.erb | |
parent | 03c957670d3c914254e36fe394e45ef473205961 (diff) | |
download | redmine-483657f7c007fbd34cfe378cef29db4e3f3a9e08.tar.gz redmine-483657f7c007fbd34cfe378cef29db4e3f3a9e08.zip |
Adjust i18n strings.
git-svn-id: http://svn.redmine.org/redmine/trunk@15562 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/imports/show.html.erb')
-rw-r--r-- | app/views/imports/show.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/imports/show.html.erb b/app/views/imports/show.html.erb index a50db99fe..3a0d67611 100644 --- a/app/views/imports/show.html.erb +++ b/app/views/imports/show.html.erb @@ -1,7 +1,7 @@ <h2><%= l(:label_import_issues) %></h2> <% if @import.saved_items.count > 0 %> - <p><%= l(:notice_import_finished, :count => @import.saved_items.count) %></p> + <p><%= l(:notice_import_finished, :count => @import.saved_items.count) %>:</p> <ul id="saved-items"> <% @import.saved_objects.each do |issue| %> @@ -11,7 +11,7 @@ <% end %> <% if @import.unsaved_items.count > 0 %> - <p><%= l(:notice_import_finished_with_errors, :count => @import.unsaved_items.count, :total => @import.total_items) %></p> + <p><%= l(:notice_import_finished_with_errors, :count => @import.unsaved_items.count, :total => @import.total_items) %>:</p> <table id="unsaved-items" class="list"> <thead> |