Added missing translations.
This commit is contained in:
parent
33fe217401
commit
d17116ddb9
3 changed files with 6 additions and 4 deletions
|
@ -66,9 +66,9 @@ class App.TicketHistory extends App.ControllerModal
|
||||||
|
|
||||||
sortorder: (e) ->
|
sortorder: (e) ->
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
idDown = @el.find('[data-type="sortorder"]').hasClass('down')
|
isDown = @el.find('[data-type="sortorder"]').hasClass('down')
|
||||||
|
|
||||||
if idDown
|
if isDown
|
||||||
@render( @historyListCache, 'up' )
|
@render( @historyListCache, 'up' )
|
||||||
else
|
else
|
||||||
@render( @historyListCache.reverse(), 'down' )
|
@render( @historyListCache.reverse(), 'down' )
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<li>
|
<li>
|
||||||
<% if ( item['type'] is 'notification' || item['type'] is 'email' ): %>
|
<% if ( item['type'] is 'notification' || item['type'] is 'email' ): %>
|
||||||
<%= item['type'] %>
|
<%- @T( item['type'] ) %>
|
||||||
<% if item['value_from']: %>
|
<% if item['value_from']: %>
|
||||||
"<%= item['value_from'] %>" <%- @T( 'sent to' ) %>
|
"<%= item['value_from'] %>" <%- @T( 'sent to' ) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
"<%= item['value_to'] %>"
|
"<%= item['value_to'] %>"
|
||||||
<% end %>
|
<% end %>
|
||||||
<% else: %>
|
<% else: %>
|
||||||
<%= item['type'] %> <%= item['object'] %> <% if item['attribute']: %>"<%= item['attribute'] %>"<% end %>
|
<%- @T( item['type'] ) %> <%= item['object'] %> <% if item['attribute']: %>"<%= item['attribute'] %>"<% end %>
|
||||||
<% if item['value_from']: %>
|
<% if item['value_from']: %>
|
||||||
<% if item['value_to']: %>
|
<% if item['value_to']: %>
|
||||||
<%- @T( 'from' ) %>
|
<%- @T( 'from' ) %>
|
||||||
|
|
|
@ -1862,6 +1862,8 @@ Translation.create_if_not_exists( :locale => 'de', :source => "Thanks for your F
|
||||||
Translation.create_if_not_exists( :locale => 'de', :source => "What can you do here?", :target => "Was können Sie hier machen?" )
|
Translation.create_if_not_exists( :locale => 'de', :source => "What can you do here?", :target => "Was können Sie hier machen?" )
|
||||||
Translation.create_if_not_exists( :locale => 'de', :source => "Here you can create one.", :target => "Hier können Sie eins erstellen." )
|
Translation.create_if_not_exists( :locale => 'de', :source => "Here you can create one.", :target => "Hier können Sie eins erstellen." )
|
||||||
Translation.create_if_not_exists( :locale => 'de', :source => "Fold in", :target => "Einklappen" )
|
Translation.create_if_not_exists( :locale => 'de', :source => "Fold in", :target => "Einklappen" )
|
||||||
|
Translation.create_if_not_exists( :locale => 'de', :source => "from", :target => "von" )
|
||||||
|
Translation.create_if_not_exists( :locale => 'de', :source => "to", :target => "nach" )
|
||||||
|
|
||||||
#Translation.create_if_not_exists( :locale => 'de', :source => "", :target => "" )
|
#Translation.create_if_not_exists( :locale => 'de', :source => "", :target => "" )
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue