diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb index d5cb6a6a1..66e3d9081 100644 --- a/app/views/calendars/show.html.erb +++ b/app/views/calendars/show.html.erb @@ -57,8 +57,8 @@ <%= call_hook(:view_calendars_show_bottom, :year => @year, :month => @month, :project => @project, :query => @query) %>
- <%= sprite_icon('bullet-go', l(:text_tip_issue_begin_day)) %> - <%= sprite_icon('bullet-end', l(:text_tip_issue_end_day)) %> + <%= sprite_icon('bullet-go', l(:text_tip_issue_begin_day), rtl: true) %> + <%= sprite_icon('bullet-end', l(:text_tip_issue_end_day), rtl: true) %> <%= sprite_icon('bullet-go-end', l(:text_tip_issue_begin_end_day)) %>
<% end %> diff --git a/app/views/common/_calendar.html.erb b/app/views/common/_calendar.html.erb index e1b202333..259dcaeec 100644 --- a/app/views/common/_calendar.html.erb +++ b/app/views/common/_calendar.html.erb @@ -20,8 +20,8 @@ <% ending = day == i.due_date %> <%= tag.div class: [ i.css_classes, 'tooltip hascontextmenu', starting: starting, ending: ending] do %> <%= "#{i.project} -" unless @project && @project == i.project %> - <%= sprite_icon('bullet-go') if starting && starting != ending %> - <%= sprite_icon('bullet-end') if ending && starting != ending %> + <%= sprite_icon('bullet-go', rtl: true) if starting && starting != ending %> + <%= sprite_icon('bullet-end', rtl: true) if ending && starting != ending %> <%= sprite_icon('bullet-go-end') if starting && ending %> <%= link_to_issue i, :truncate => 30 %> <%= render_issue_tooltip i %>