Added missing translations.

This commit is contained in:
Martin Edenhofer 2013-09-30 02:03:06 +02:00
parent 33fe217401
commit d17116ddb9
3 changed files with 6 additions and 4 deletions

View file

@ -66,9 +66,9 @@ class App.TicketHistory extends App.ControllerModal
sortorder: (e) ->
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' )
else
@render( @historyListCache.reverse(), 'down' )

View file

@ -23,7 +23,7 @@
<% end %>
<li>
<% if ( item['type'] is 'notification' || item['type'] is 'email' ): %>
<%= item['type'] %>
<%- @T( item['type'] ) %>
<% if item['value_from']: %>
"<%= item['value_from'] %>" <%- @T( 'sent to' ) %>
<% end %>
@ -31,7 +31,7 @@
"<%= item['value_to'] %>"
<% end %>
<% 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_to']: %>
<%- @T( 'from' ) %>

View file

@ -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 => "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 => "from", :target => "von" )
Translation.create_if_not_exists( :locale => 'de', :source => "to", :target => "nach" )
#Translation.create_if_not_exists( :locale => 'de', :source => "", :target => "" )