[open-ils-commits] r9966 - in trunk/Open-ILS: web/opac/locale/en-US xul/staff_client/server/cat

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Jul 3 22:37:17 EDT 2008


Author: dbs
Date: 2008-07-03 22:37:16 -0400 (Thu, 03 Jul 2008)
New Revision: 9966

Modified:
   trunk/Open-ILS/web/opac/locale/en-US/lang.dtd
   trunk/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul
Log:
Wrap those attributes in quotes, dangit.
And move one more attribute into an entity.


Modified: trunk/Open-ILS/web/opac/locale/en-US/lang.dtd
===================================================================
--- trunk/Open-ILS/web/opac/locale/en-US/lang.dtd	2008-07-03 14:52:00 UTC (rev 9965)
+++ trunk/Open-ILS/web/opac/locale/en-US/lang.dtd	2008-07-04 02:37:16 UTC (rev 9966)
@@ -2005,6 +2005,7 @@
 <!ENTITY staff.cat.spine_labels.inc_item_barcode.label "Include Item Barcode">
 <!ENTITY staff.cat.spine_labels.custom.label "Custom:">
 <!ENTITY staff.cat.spine_labels.available_macros.label "Available Macros">
+<!ENTITY staff.cat.volume_copy_creator.title "Volume/Copy Editor">
 <!ENTITY staff.cat.volume_copy_creator.label "Volume/Copy Creator">
 <!ENTITY staff.cat.volume_copy_creator.check_barcodes.label "Check Barcodes?">
 <!ENTITY staff.cat.volume_copy_creator.check_barcodes.accesskey "B">

Modified: trunk/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul	2008-07-03 14:52:00 UTC (rev 9965)
+++ trunk/Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul	2008-07-04 02:37:16 UTC (rev 9966)
@@ -21,15 +21,15 @@
 <window id="cat_volume_copy_creator_win" 
 	onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
 	width="800" height="580"
-	title="Volume/Copy Editor"
+	title="&staff.cat.volume_copy_creator.title;"
 	xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 
 	<!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
 	<!-- BEHAVIOR -->
-        <script type="text/javascript">
-		var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; 
+	<script type="text/javascript">
+	var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; 
 	</script>
-        <scripts id="openils_util_scripts"/>
+	<scripts id="openils_util_scripts"/>
 
 	<script type="text/javascript" src="/xul/server/main/JSAN.js"/>
 	<script type="text/javascript" src="volume_copy_creator.js"/>
@@ -40,11 +40,11 @@
 
 	<iframe id="summary" />
 	<groupbox flex="1" style="overflow: auto">
-		<caption id="caption" label="&staff.cat.volume_copy_creator.label;/>
+		<caption id="caption" label="&staff.cat.volume_copy_creator.label;"/>
 		<hbox style="border-bottom: solid black thin">
 			<hbox id="marc_cn"/>
 			<spacer flex="1" />
-			<checkbox id="check_barcodes" label="&staff.cat.volume_copy_creator.check_barcodes.label; oncommand="g.save_prefs();" accesskey="&staff.cat.volume_copy_creator.check_barcodes.accesskey;"/>
+			<checkbox id="check_barcodes" label="&staff.cat.volume_copy_creator.check_barcodes.label;" oncommand="g.save_prefs();" accesskey="&staff.cat.volume_copy_creator.check_barcodes.accesskey;"/>
 			<checkbox id="print_labels" label="&staff.cat.volume_copy_creator.print_labels.label;"  oncommand="g.save_prefs();" accesskey="&staff.cat.volume_copy_creator.print_labels.accesskey;"/>
 			<button id="Create" accesskey="&staff.cat.volume_copy_creator.create.accesskey;" label="&staff.cat.volume_copy_creator.create.label;" disabled="true" oncommand="g.stash_and_close();"/>
 		</hbox>



More information about the open-ils-commits mailing list