From 6081061ad82f92e97d7beb0ad81a8f07aa7ab9e3 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Mon, 22 Apr 2013 01:26:21 +0200 Subject: [PATCH] Small tranlsation improvement. --- app/assets/javascripts/app/controllers/task_widget.js.coffee | 4 ++-- db/seeds.rb | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/app/controllers/task_widget.js.coffee b/app/assets/javascripts/app/controllers/task_widget.js.coffee index 10bbb0bee..0b82cda71 100644 --- a/app/assets/javascripts/app/controllers/task_widget.js.coffee +++ b/app/assets/javascripts/app/controllers/task_widget.js.coffee @@ -33,8 +33,8 @@ class App.TaskWidget extends App.Controller data = url: '#' id: false - title: '?' - head: '?' + title: App.i18n.translateInline('Loading...') + head: App.i18n.translateInline('Loading...') if task.worker meta = task.worker.meta() if meta diff --git a/db/seeds.rb b/db/seeds.rb index 13a11086d..cf023dc6a 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -1791,6 +1791,7 @@ Translation.create_if_not_exists( :locale => 'de', :source => "Remove", :target Translation.create_if_not_exists( :locale => 'de', :source => "Add", :target => "Hinzufügen" ) Translation.create_if_not_exists( :locale => 'de', :source => "Call Outbound", :target => "Anruf ausgehend" ) Translation.create_if_not_exists( :locale => 'de', :source => "Call Inbound", :target => "Anruf eingehend" ) +Translation.create_if_not_exists( :locale => 'de', :source => "Loading...", :target => "Laden..." ) #Translation.create_if_not_exists( :locale => 'de', :source => "", :target => "" )