diff options
author | Jesse Jaggars <jhjaggars@gmail.com> | 2012-01-31 09:22:56 -0600 |
---|---|---|
committer | Jesse Jaggars <jhjaggars@gmail.com> | 2012-01-31 09:22:56 -0600 |
commit | a698f42b93f7469cdf2b0f69b92a725e9a70f804 (patch) | |
tree | e7e200bc9df522f0697217bd022585168dfe605a /Makefile | |
parent | d3af119863bd525e085495d01d329dd4384275cd (diff) | |
download | sos-a698f42b93f7469cdf2b0f69b92a725e9a70f804.tar.gz |
Fixing i18n in jython/java use case.
ResourceBundle was unable to find the translation text
resources. This change creates a new classloader loaded with
the jarfile that contains the translations and passes it in
directly to ResourceBundle.getBundle.
Additionally the eap6 plugin has been renamed to as7.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -84,9 +84,9 @@ po: clean cp $(PO_DIR)/en.properties $(PO_DIR)/en_US.properties -eap6: po +as7: po cp -r sos/* $(SRC_BUILD)/sos/ - find $(SRC_BUILD)/sos/plugins/ -not -name "*eap6.py" -not -name "*__init__.py" -type f -delete + find $(SRC_BUILD)/sos/plugins/ -not -name "*as7.py" -not -name "*__init__.py" -type f -delete zip: po zip -r $(ZIP_DEST) sos |