From e00d376eaf728d7e57d59d6443642190ec25bb95 Mon Sep 17 00:00:00 2001 From: dbs Date: Wed, 23 Feb 2011 02:10:05 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.open-ils.org/ILS/trunk@19507 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- build/i18n/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/i18n/Makefile b/build/i18n/Makefile index 79d3945b2e..26c62f27df 100644 --- a/build/i18n/Makefile +++ b/build/i18n/Makefile @@ -6,7 +6,7 @@ POTLIST=$(shell ls -d po/*) 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 -- 2.43.2