diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/pluginqueuehandler.php | 6 | ||||
-rwxr-xr-x | scripts/update_translations.php | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/scripts/pluginqueuehandler.php b/scripts/pluginqueuehandler.php index ae807db6a..fa39bdda6 100755 --- a/scripts/pluginqueuehandler.php +++ b/scripts/pluginqueuehandler.php @@ -41,6 +41,12 @@ class PluginQueueHandler extends QueueHandler return 'plugin'; } + function start() + { + $this->log(LOG_INFO, "INITIALIZE"); + return true; + } + function handle_notice($notice) { Event::handle('HandleQueuedNotice', array(&$notice)); diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 580c472ee..73f2a3a7e 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -109,7 +109,7 @@ foreach ($languages as $language) { file_put_contents($pofile, $new_file); // --backup=off is workaround for Mac OS X fail system(sprintf('msgmerge -U --backup=off %s %s', $pofile, $statusnet_pot)); - system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile)); + system(sprintf('msgfmt -o %s %s', $mofile, $pofile)); } else { echo "Unchanged - ".$code."\n"; } |