diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-07 00:46:03 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-07 00:46:03 +0200 |
commit | 7bcb5c3c9eb77df4e410cc439f1eb534998ebb41 (patch) | |
tree | e2be6a975b47fe69b9852fea66a1ae8cd15b7902 /scripts | |
parent | 5dc169260dc36209dd5ad0d4d4cac2bdaaefe62c (diff) |
Follow-up 3ac3bc32fc48508deab171019e3539ece9bd72ff: change po to pot so that exporting from translatewiki.net works.
Signed-off-by: Siebrand Mazeland <s.mazeland@xs4all.nl>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update_translations.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 45fe460a0..89d937e9d 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -31,7 +31,7 @@ define('LACONICA', true); // compatibility require_once(INSTALLDIR . '/lib/common.php'); // Master StatusNet .pot file location (created by update_pot.sh) -$statusnet_pot = INSTALLDIR . '/locale/statusnet.po'; +$statusnet_pot = INSTALLDIR . '/locale/statusnet.pot'; set_time_limit(60); @@ -98,7 +98,7 @@ foreach ($languages as $language) { $new_file = curl_get_file($file_url); if ($new_file === FALSE) { - echo "Couldn't retrieve .po file for $code: $file_url\n"; + echo "Could not retrieve .po file for $code: $file_url\n"; continue; } |