Author Topic: Message 'movingmessage' wasn't hadled  (Read 2748 times)

Offline yskzt

  • Newbie
  • *
  • Posts: 1
Message 'movingmessage' wasn't hadled
« on: June 22, 2007, 01:02:21 AM »
When I moved a message to other foler or trash, the default message "Loding..." was shown. My enviroment was 0.1 rc-1 in Japanese.

Maybe, It is cause that the message 'movingmessage' wasn't hadled. The message 'movingmessage' was used in app.js.

I tried to fix. The localized message was shown.

--- ./roundcubemail/program/include/main.inc.bak    2007-06-18 19:15:31.000000000 +0900
+++ ./roundcubemail/program/include/main.inc.bak  2007-06-22 14:12:41.000000000 +0900
@@ -395,7 +395,7 @@

  // add some basic label to client
  if (!$OUTPUT->ajax_call)
-  rcube_add_label('loading');
+  rcube_add_label('loading', 'movingmessage');
  }

and, I added message 'movingmessage' to japanese messages.inc.

$messages['movingmessage'] = '移動中です...';