diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-05 13:19:16 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-05 13:19:16 -0700 |
commit | 3ac3bc32fc48508deab171019e3539ece9bd72ff (patch) | |
tree | 9a676ab2ee3cae431386ada59a61283352a65e19 /scripts | |
parent | dbaa93d1aa92561674a3071e6429b0f708a37cb4 (diff) |
Some localization cleanup and doc to aid in customization:
* added locale/en/LC_MESSAGES/statusnet.po to make it easier to start customizing English texts
* added notes to locale/README about customizing and how to disable languages you haven't customized
* renamed PO templates from *.po to *.pot to match general conventions and reduce confusion for people trying to find which file they're supposed to edit
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update_po_templates.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/update_po_templates.php b/scripts/update_po_templates.php index 0bfa62a22..af9ed8d20 100755 --- a/scripts/update_po_templates.php +++ b/scripts/update_po_templates.php @@ -34,7 +34,7 @@ function update_core($dir, $domain) xgettext \ --from-code=UTF-8 \ --default-domain=$domain \ - --output=locale/$domain.po \ + --output=locale/$domain.pot \ --language=PHP \ --add-comments=TRANS \ --keyword="_m:1,1t" \ @@ -64,7 +64,7 @@ function do_update_plugin($dir, $domain) xgettext \ --from-code=UTF-8 \ --default-domain=$domain \ - --output=locale/$domain.po \ + --output=locale/$domain.pot \ --language=PHP \ --add-comments=TRANS \ --keyword='' \ |