[open-ils-commits] r19507 - trunk/build/i18n (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Feb 22 21:10:06 EST 2011
Author: dbs
Date: 2011-02-22 21:10:05 -0500 (Tue, 22 Feb 2011)
New Revision: 19507
Modified:
trunk/build/i18n/Makefile
Log:
Correct the install location for Dojo i18n bundles
We had been converting xx-YY into xx/yy for a directory structure,
but current evidence shows that it should be xx-yy. Hard to believe
we've overlooked this for so long. Also, with the exception of the
en-ca/en-gb/en-us locales, we should probably trim the locale to
just xx - but that's a different problem, and let's just focus on
getting this working to begin with.
Addresses Launchpad # 723489
Modified: trunk/build/i18n/Makefile
===================================================================
--- trunk/build/i18n/Makefile 2011-02-23 02:06:06 UTC (rev 19506)
+++ trunk/build/i18n/Makefile 2011-02-23 02:10:05 UTC (rev 19507)
@@ -6,7 +6,7 @@
DTDDIR=../../Open-ILS/web/opac/locale
CHROME_PROPSDIR=../../Open-ILS/xul/staff_client/chrome/locale
SERVER_PROPSDIR=../../Open-ILS/xul/staff_client/server/locale
-DOJO_LOCALE := $(shell echo ${LOCALE} | tr '[:upper:]-' '[:lower:]/')
+DOJO_LOCALE := $(shell echo ${LOCALE} | tr '[:upper:]' '[:lower:]')
DOJO_ACQ_SRC=../../Open-ILS/web/js/dojo/openils/acq/nls
DOJO_ACTOR_SRC=../../Open-ILS/web/js/dojo/openils/actor/nls
DOJO_AUTHORITY_SRC=../../Open-ILS/web/js/dojo/openils/authority/nls
More information about the open-ils-commits
mailing list