[open-ils-commits] r11097 - in branches/rel_1_4: Open-ILS/web/conify/global/actor Open-ILS/web/conify/global/config Open-ILS/web/conify/global/permission Open-ILS/web/js/dojo/openils/conify/nls build/i18n build/i18n/po/en-US build/i18n/po/fr-CA build/i18n/po/hy-AM
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Nov 7 15:59:38 EST 2008
Author: dbs
Date: 2008-11-07 15:59:34 -0500 (Fri, 07 Nov 2008)
New Revision: 11097
Added:
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/conify.js
branches/rel_1_4/build/i18n/po/en-US/conify.js.pot
branches/rel_1_4/build/i18n/po/en-US/reports.js.pot
branches/rel_1_4/build/i18n/po/fr-CA/conify.js.po
branches/rel_1_4/build/i18n/po/fr-CA/reports.js.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.js.po
branches/rel_1_4/build/i18n/po/hy-AM/reports.js.po
Removed:
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aou.js
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aout.js
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/cam.js
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ccs.js
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/pgt.js
branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ppl.js
branches/rel_1_4/build/i18n/po/en-US/conify.aou.pot
branches/rel_1_4/build/i18n/po/en-US/conify.aout.pot
branches/rel_1_4/build/i18n/po/en-US/conify.cam.pot
branches/rel_1_4/build/i18n/po/en-US/conify.ccs.pot
branches/rel_1_4/build/i18n/po/en-US/conify.pgt.pot
branches/rel_1_4/build/i18n/po/en-US/conify.ppl.pot
branches/rel_1_4/build/i18n/po/fr-CA/conify.aou.po
branches/rel_1_4/build/i18n/po/fr-CA/conify.aout.po
branches/rel_1_4/build/i18n/po/fr-CA/conify.cam.po
branches/rel_1_4/build/i18n/po/fr-CA/conify.ccs.po
branches/rel_1_4/build/i18n/po/fr-CA/conify.pgt.po
branches/rel_1_4/build/i18n/po/fr-CA/conify.ppl.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.aou.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.aout.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.cam.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.ccs.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.pgt.po
branches/rel_1_4/build/i18n/po/hy-AM/conify.ppl.po
Modified:
branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html
branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.js
branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html
branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.js
branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.html
branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.js
branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.html
branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.js
branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html
branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.js
branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.html
branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.js
branches/rel_1_4/build/i18n/Makefile
Log:
Backport r11096 from trunk: Add reporter Dojo resource file (reports.js.pot); Generate POT files without msgstr contents (annoys pot2po); Merge Conify Dojo resource files into a single Dojo resource file (conify.js.pot)
Modified: branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.html 2008-11-07 20:59:34 UTC (rev 11097)
@@ -68,7 +68,7 @@
<div dojoType="dijit.layout.ContentPane" sizeShare="100">
<script type="dojo/method">
-<!--
+<![CDATA[
var ou_list_data = { label : 'shortname', identifier : 'id' };
window.dirtyStore = [];
@@ -98,7 +98,7 @@
});
if (dirtyStore.length > 0) {
- var confirmation = confirm(aou_strings.CONFIRM_EXIT);
+ var confirmation = confirm(aou_strings.CONFIRM_EXIT_AOU);
if (confirmation) {
for (var i in window.dirtyStore) {
@@ -116,7 +116,7 @@
method : 'open-ils.permacrud.search.aout.atomic',
timeout : 10,
params : [ ses, { id : { "!=" : null } }, { order_by : { aout : 'depth' } } ],
- onerror : function (r) { status_update(aou_strings.ERROR_FETCHING_TYPES) },
+ onerror : function (r) { status_update(aou_strings.ERROR_FETCHING_TYPES_AOUT) },
oncomplete : function (r) {
window._ou_type_list = r.recv().content();
window._ou_type_data = aout.toStoreData( window._ou_type_list );
@@ -140,7 +140,7 @@
highlighter.addresses_pane.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'addresses_pane', duration : 500 } );
highlighter.addresses_pane.red = dojox.fx.highlight( { color : '#FF2018', node : 'addresses_pane', duration : 500 } );
--->
+]]>
</script>
<div
id="ou_tree"
@@ -153,7 +153,7 @@
>
<script type="dojo/method" event="onClick" args="item,node">
-<!--
+<![CDATA[
right_pane_toggler.show();
current_ou = item;
@@ -194,7 +194,7 @@
hoo_load();
addr_load();
--->
+]]>
</script>
<script type="dojo/method" event="getLabel" args="item,pI">
@@ -289,11 +289,11 @@
required="true"
>
<script type="dojo/method" event="onChange">
-<!--
+<![CDATA[
if (current_ou && this.getValue()) this.store.setValue( current_ou, "parent_ou", this.getValue() );
if ( this.store.getValue( current_ou, '_trueRoot' ) == 'true' ) this.required = false;
else this.required = true;
--->
+]]>
</script>
</div>
</td>
@@ -325,12 +325,12 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var old_name = ou_list_store.getValue( current_ou, 'name' );
if (ou_list_store.getValue( current_ou, '_trueRoot' ) == 'true') {
highlighter.editor_pane.red.play();
- status_update( dojo.string.substitute( aou_strings.ERROR_DELETING_LAST, [ou_list_store.getValue( current_ou, 'name' )] ) );
+ status_update( dojo.string.substitute( aou_strings.ERROR_DELETING_LAST_AOU, [ou_list_store.getValue( current_ou, 'name' )] ) );
return false;
}
@@ -397,7 +397,7 @@
}).send();
}
--->
+]]>
</script>
</button>
@@ -408,6 +408,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
+<![CDATA[
var new_fm_obj = new aou().fromHash({
isnew : 1,
name : aou_strings.LABEL_NEW_BRANCH,
@@ -417,7 +418,6 @@
ou_type : ou_list_store.getValue( current_ou, 'ou_type' )
});
-<!--
var new_obj;
pCRUD.request({
@@ -426,7 +426,7 @@
params : [ ses, new_fm_obj ],
onerror : function (r) {
highlighter.editor_pane.red.play();
- status_update( aou_strings.ERROR_CREATING_CHILD );
+ status_update( aou_strings.ERROR_CREATING_CHILD_AOU );
},
oncomplete : function (r) {
var res = r.recv();
@@ -437,15 +437,15 @@
);
} else {
highlighter.editor_pane.red.play();
- status_update( aou_strings.ERROR_CREATING_CHILD );
+ status_update( aou_strings.ERROR_CREATING_CHILD_AOU );
}
},
}).send();
highlighter.editor_pane.green.play();
highlighter.ou_tree.green.play();
- status_update( dojo.string.substitute(aou_strings.SUCCESS_CREATING_CHILD, [ou_list_store.getValue( current_ou, 'name' )] ) );
--->
+ status_update( dojo.string.substitute(aou_strings.SUCCESS_CREATING_CHILD_AOU, [ou_list_store.getValue( current_ou, 'name' )] ) );
+]]>
</script>
</button>
@@ -493,7 +493,7 @@
<button jsId="save_hoo_button" dojoType="dijit.form.Button" label="&conify.save_button.label;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var method_name = 'open-ils.permacrud.update.aouhoo';
if (current_ou_hoo.isnew() == 1) method_name = 'open-ils.permacrud.create.aouhoo';
@@ -516,7 +516,7 @@
}
},
}).send();
--->
+]]>
</script>
</button>
@@ -572,7 +572,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var method_name = 'open-ils.permacrud.update.aoa';
if (current_billing_address.isnew() == 1) method_name = 'open-ils.permacrud.create.aoa';
@@ -600,7 +600,7 @@
}
},
}).send();
--->
+]]>
</script>
</button>
</div>
@@ -641,7 +641,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var method_name = 'open-ils.permacrud.update.aoa';
if (current_holds_address.isnew() == 1) method_name = 'open-ils.permacrud.create.aoa';
@@ -669,7 +669,7 @@
}
},
}).send();
--->
+]]>
</script>
</button>
</div>
@@ -709,7 +709,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var method_name = 'open-ils.permacrud.update.aoa';
if (current_mailing_address.isnew() == 1) method_name = 'open-ils.permacrud.create.aoa';
@@ -737,7 +737,7 @@
}
},
}).send();
--->
+]]>
</script>
</button>
</div>
@@ -777,7 +777,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var method_name = 'open-ils.permacrud.update.aoa';
if (current_ill_address.isnew() == 1) method_name = 'open-ils.permacrud.create.aoa';
@@ -805,7 +805,7 @@
}
},
}).send();
--->
+]]>
</script>
</button>
</div>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -32,7 +32,7 @@
dojo.require('dijit.layout.SplitContainer');
dojo.require('dojox.widget.Toaster');
dojo.require('dojox.fx');
-dojo.requireLocalization("openils.conify", "aou");
+dojo.requireLocalization("openils.conify", "conify");
// some handy globals
var cgi = new CGI();
@@ -43,7 +43,7 @@
var current_ou, current_ou_hoo;
var virgin_ou_id = -1;
-var aou_strings = dojo.i18n.getLocalization('openils.conify', 'aou');
+var aou_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
//var ou_type_store = new dojo.data.ItemFileWriteStore({ data : aout.toStoreData( globalOrgTypes ) });
Modified: branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.html 2008-11-07 20:59:34 UTC (rev 11097)
@@ -69,14 +69,14 @@
<div dojoType="dijit.layout.ContentPane" sizeShare="100">
<script type="dojo/method">
-<!--
+<![CDATA[
window.dirtyStore = [];
pCRUD.request({
method : 'open-ils.permacrud.search.aout.atomic',
timeout : 10,
params : [ ses, { id : { "!=" : null } }, { order_by : { aout : 'name' } } ],
- onerror : function (r) { status_update( aout_strings.ERROR_FETCHING_TYPES ) },
+ onerror : function (r) { status_update( aout_strings.ERROR_FETCHING_TYPES_AOUT ) },
oncomplete : function (r) {
ou_type_store = new dojo.data.ItemFileWriteStore({ data : aout.toStoreData( r.recv().content() ) });
ou_type_store.onSet = function (item, attr, o, n) {
@@ -109,7 +109,7 @@
});
}
}).send();
--->
+]]>
</script>
<div
id="type_tree"
@@ -122,7 +122,7 @@
>
<script type="dojo/method" event="onClick" args="item,node">
-<!--
+<![CDATA[
right_pane_toggler.show();
current_type = item;
current_fm_type = new aout().fromStoreItem(item);
@@ -158,7 +158,7 @@
editor_pane_can_have_vols.setChecked( this.store.getValue( current_type, 'can_have_vols' ) == 't' ? true : false );
editor_pane_can_have_users.setChecked( this.store.getValue( current_type, 'can_have_users' ) == 't' ? true : false );
--->
+]]>
</script>
<script type="dojo/method" event="getLabel" args="item,pI">
@@ -226,7 +226,7 @@
required="true"
>
<script type="dojo/method" event="onChange">
-<!--
+<![CDATA[
if (current_type && this.getValue()) {
if ( this.store.getValue( current_type, 'parent' ) == this.getValue() ) return;
@@ -239,7 +239,7 @@
scope : ou_type_store
});
}
--->
+]]>
</script>
</div>
</td>
@@ -252,7 +252,7 @@
jsId="editor_pane_can_have_vols"
type="checkbox"
dojoType="dijit.form.CheckBox"
- onChange='if (current_type) ou_type_store.setValue( current_type, "can_have_vols", this.checked ? "t" : "f" );'
+ onChange="if (current_type) ou_type_store.setValue( current_type, 'can_have_vols', this.checked ? 't' : 'f' );"
/>
</td>
</tr>
@@ -283,11 +283,11 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
if (ou_type_store.getValue( current_type, '_trueRoot' ) == 'true') {
highlighter.editor_pane.red.play();
- status_update( dojo.string.substitute( aout_strings.ERROR_DELETING_LAST, [ou_type_store.getValue( current_type, 'name' )] ) );
+ status_update( dojo.string.substitute( aout_strings.ERROR_DELETING_LAST_AOUT, [ou_type_store.getValue( current_type, 'name' )] ) );
return false;
}
@@ -359,7 +359,7 @@
}).send();
}
--->
+]]>
</script>
</button>
@@ -370,6 +370,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
+<![CDATA[
var new_fm_obj = new aout().fromHash({
isnew : 1,
name : aout_strings.LABEL_NEW_TYPE,
@@ -379,7 +380,6 @@
opac_label : ou_type_store.getValue( current_type, 'opac_label' ) + ' child' + virgin_out_id--,
parent : ou_type_store.getValue( current_type, 'id' )
});
-<!--
var err = false;
pCRUD.request({
method : 'open-ils.permacrud.create.aout',
@@ -387,7 +387,7 @@
params : [ ses, new_fm_obj ],
onerror : function (r) {
highlighter.editor_pane.red.play();
- status_update( aout_strings.ERROR_CREATING_CHILD_METHOD );
+ status_update( aout_strings.ERROR_CALLING_METHOD_AOUT );
err = true;
},
oncomplete : function (r) {
@@ -399,7 +399,7 @@
);
} else {
highlighter.editor_pane.red.play();
- status_update( aout_strings.ERROR_CREATING_CHILD );
+ status_update( aout_strings.ERROR_CREATING_CHILD_AOUT );
err = true;
}
},
@@ -408,9 +408,9 @@
if (!err) {
highlighter.editor_pane.green.play();
highlighter.type_tree.green.play();
- status_update( dojo.string.substitute( aout_strings.SUCCESS_CREATING_CHILD, [ou_type_store.getValue( current_type, 'name' )] ) );
+ status_update( dojo.string.substitute( aout_strings.SUCCESS_CREATING_CHILD_AOUT, [ou_type_store.getValue( current_type, 'name' )] ) );
}
--->
+]]>
</script>
</button>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/actor/org_unit_type.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -33,7 +33,7 @@
dojo.require('dijit.layout.SplitContainer');
dojo.require('dojox.widget.Toaster');
dojo.require('dojox.fx');
-dojo.requireLocalization("openils.conify", "aout");
+dojo.requireLocalization("openils.conify", "conify");
// some handy globals
var cgi = new CGI();
@@ -47,7 +47,7 @@
var highlighter = {};
-var aout_strings = dojo.i18n.getLocalization('openils.conify', 'aout');
+var aout_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
function status_update (markup) {
if (parent !== window && parent.status_update) parent.status_update( markup );
Modified: branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.html 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.html 2008-11-07 20:59:34 UTC (rev 11097)
@@ -68,7 +68,7 @@
<div dojoType="dijit.layout.LayoutContainer" id="grid_container" jsId="grid_container" orientation="vertical">
<script type="dojo/method">
-<!--
+<![CDATA[
window.highlighter= {};
window.highlighter.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'grid_container', duration : 500 } );
window.highlighter.red = dojox.fx.highlight( { color : '#FF2018', node : 'grid_container', duration : 500 } );
@@ -109,7 +109,7 @@
if (dirtyStore.length > 0) {
var confirmation = confirm(
- ccs_strings.CONFIRM_EXIT
+ ccs_strings.CONFIRM_EXIT_CCS
);
if (confirmation) {
@@ -123,7 +123,7 @@
});
}
}).send();
--->
+]]>
</script>
<div dojoType="dijit.layout.LayoutContainer" orientation="horizontal" style="margin-top: 5px;" layoutAlign="top">
@@ -131,7 +131,7 @@
<div dojoType="dijit.form.TextBox" id="new_status_code" jsId="new_status_name" label="&conify.copy_status.new_status.name;"></div>
<button dojoType="dijit.form.Button" id="save_new_status_code" jsId="save_new_status_name" label="&conify.copy_status.new_status.save;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var new_name = new_status_name.getValue();
if (!new_name) return;
@@ -147,7 +147,7 @@
params : [ ses, new_fm_obj ],
onerror : function (r) {
highlighter.red.play();
- status_update( ccs_strings.ERROR_CALLING_METHOD );
+ status_update( ccs_strings.ERROR_CALLING_METHOD_CCS );
err = true;
},
oncomplete : function (r) {
@@ -165,7 +165,7 @@
}
}
}).send();
--->
+]]>
</script>
</button>
</div>
@@ -174,7 +174,7 @@
<div dojoType="dojox.grid.data.DojoData" id="status_data_model" jsId="status_data_model" store="status_store" query="{ 'id' : '*' }"></div>
<div id="status_grid" dojoType="dojox.Grid" jsId="status_grid">
<script type="dojo/connect" event="startup">
-<!--
+<![CDATA[
var g = this;
var status_grid_layout = [
{ cells : [
@@ -238,7 +238,7 @@
this.setStructure(status_grid_layout);
this.setModel(window.status_data_model);
--->
+]]>
</script>
</div>
</div>
@@ -249,7 +249,7 @@
<button jsId="delete_ccs_button" dojoType="dijit.form.Button" label="&conify.copy_status.delete_selected;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var selected_rows = status_grid.selection.getSelected();
var selected_items = [];
@@ -264,7 +264,7 @@
for (var i in selected_items) {
current_status = selected_items[i];
- if ( confirm(dojo.string.substitue(ccs_strings.CONFIRM_DELETE, [status_store.getValue( current_status, 'name' )]))) {
+ if ( confirm(dojo.string.substitute(ccs_strings.CONFIRM_DELETE, [status_store.getValue( current_status, 'name' )]))) {
status_store.setValue( current_status, 'isdeleted', 1 );
@@ -304,7 +304,7 @@
}
}
--->
+]]>
</script>
</button>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/config/copy_status.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -29,7 +29,7 @@
dojo.require('dojox.widget.Toaster');
dojo.require('dojox.fx');
dojo.require('dojox.grid.Grid');
-dojo.requireLocalization("openils.conify", "ccs");
+dojo.requireLocalization("openils.conify", "conify");
// some handy globals
var cgi = new CGI();
@@ -40,7 +40,7 @@
var current_status;
var virgin_out_id = -1;
-var ccs_strings = dojo.i18n.getLocalization('openils.conify', 'ccs');
+var ccs_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
var highlighter = {};
@@ -88,7 +88,7 @@
if (event && dirtyStore.length > 0) {
confirmation = confirm(
- ccs_strings.CONFIRM_EXIT
+ ccs_strings.CONFIRM_EXIT_CCS
);
}
Modified: branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.html 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.html 2008-11-07 20:59:34 UTC (rev 11097)
@@ -62,7 +62,7 @@
<script type="text/javascript" src="marc_code_maps.js"></script>
<script type="text/javascript">
-<!--
+<![CDATA[
var grid_row_object_cache = {};
var layouts = {};
@@ -197,7 +197,7 @@
})(codelist[i])
}
--->
+]]>
</script>
</head>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/config/marc_code_maps.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -31,7 +31,7 @@
dojo.require('dojox.widget.Toaster');
dojo.require('dojox.fx');
dojo.require('dojox.grid.Grid');
-dojo.requireLocalization("openils.conify", "cam");
+dojo.requireLocalization("openils.conify", "conify");
console.log('loading marc_code_maps.js');
@@ -45,7 +45,7 @@
var stores = {};
var current_item = {};
-var cam_strings = dojo.i18n.getLocalization('openils.conify', 'cam');
+var cam_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
/*
var highlighter = {
@@ -81,7 +81,7 @@
params : [ ses, modified_ppl ],
onerror : function (r) {
//highlighter.red.play();
- status_update( dojo.string.substitute(cam_strings.ERROR_SAVING_DATA, [classname, obj.code()]) );
+ status_update( dojo.string.substitute(cam_strings.ERROR_SAVING_DATA_CAM, [classname, obj.code()]) );
},
oncomplete : function (r) {
var res = r.recv();
@@ -91,7 +91,7 @@
status_update( dojo.string.substitute(cam_strings.SUCCESS_SAVE, stores[classname].getValue( item, 'code' )) );
} else {
//highlighter.red.play();
- status_update( dojo.string.substitute( cam_strings.ERROR_SAVING_DATA, [classname, stores[classname].getValue( item, 'code' )] ) );
+ status_update( dojo.string.substitute( cam_strings.ERROR_SAVING_DATA_CAM, [classname, stores[classname].getValue( item, 'code' )] ) );
}
},
}).send();
@@ -111,7 +111,7 @@
var confirmation = true;
if (event && dirtyStore.length > 0) {
- confirmation = confirm( cam_strings.CONFIRM_EXIT );
+ confirmation = confirm( cam_strings.CONFIRM_EXIT_CAM );
event = null;
}
@@ -206,7 +206,7 @@
params : [ ses, new_fm_obj ],
onerror : function (r) {
//highlighter.red.play();
- status_update( dojo.string.substitute( cam_strings.ERROR_CALLING_METHOD, [cl] ) );
+ status_update( dojo.string.substitute( cam_strings.ERROR_CALLING_METHOD_CAM, [cl] ) );
err = true;
},
oncomplete : function (r) {
Modified: branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.html 2008-11-07 20:59:34 UTC (rev 11097)
@@ -80,7 +80,7 @@
<div dojoType="dijit.layout.ContentPane" sizeShare="100">
<script type="dojo/method">
- <!--
+ <![CDATA[
window.dirtyStore = [];
server.pCRUD.request({
@@ -107,7 +107,7 @@
});
if (dirtyStore.length > 0) {
- var confirmation = confirm( pgt_strings.CONFIRM_EXIT );
+ var confirmation = confirm( pgt_strings.CONFIRM_EXIT_PGT );
if (confirmation) {
for (var i in window.dirtyStore) {
@@ -124,7 +124,7 @@
server.actor.request({
method : 'open-ils.actor.org_types.retrieve',
timeout : 10,
- onerror : function (r) { status_update( pgt_strings.ERROR_FETCHING_TYPES ) },
+ onerror : function (r) { status_update( pgt_strings.ERROR_FETCHING_TYPES_AOUT ) },
oncomplete : function (r) {
window._ou_type_list = r.recv().content();
window._ou_type_data = aout.toStoreData( window._ou_type_list );
@@ -174,7 +174,7 @@
}
}).send();
--->
+]]>
</script>
<div
id="group_tree"
@@ -187,7 +187,7 @@
>
<script type="dojo/method" event="onClick" args="item,node">
-<!--
+<![CDATA[
right_pane_toggler.show();
current_group = item;
@@ -229,7 +229,7 @@
editor_pane_application_perm.setValue( this.store.getValue( current_group, 'application_perm' ) );
editor_pane_usergroup.setChecked( this.store.getValue( current_group, 'usergroup' ) == 't' ? true : false );
--->
+]]>
</script>
<script type="dojo/method" event="getLabel" args="item,pI">
@@ -309,11 +309,11 @@
jsId="editor_pane_application_perm"
>
<script type="dojo/connect" event="onChange">
-<!--
+<![CDATA[
if (current_group && this.getValue()) {
group_store.setValue( current_group, "application_perm", this.getValue() );
}
--->
+]]>
</script>
</div>
</td>
@@ -331,11 +331,11 @@
required="true"
>
<script type="dojo/connect" event="onChange">
-<!--
+<![CDATA[
if (current_group && this.getValue()) {
this.store.setValue( current_group, "parent", this.getValue() );
}
--->
+]]>
</script>
</div>
</td>
@@ -367,7 +367,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
if (group_store.getValue( current_group, '_trueRoot' ) == 'true') {
highlighter.editor_pane.red.play();
@@ -442,7 +442,7 @@
}).send();
}
--->
+]]>
</script>
</button>
@@ -453,7 +453,7 @@
this.disabled = true;
</script>
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var new_fm_obj = new pgt().fromHash({
isnew : 1,
@@ -469,7 +469,7 @@
params : [ ses, new_fm_obj ],
onerror : function (r) {
highlighter.editor_pane.red.play();
- status_update( pgt_strings.ERROR_CALLING_METHOD );
+ status_update( pgt_strings.ERROR_CALLING_METHOD_PGT );
err = true;
},
oncomplete : function (r) {
@@ -492,7 +492,7 @@
highlighter.group_tree.green.play();
status_update( dojo.string.substitute( pgt_strings.SUCCESS_NEW_CHILD_GROUP, [group_store.getValue( current_group, 'name' )]) );
}
--->
+]]>
</script>
</button>
@@ -510,7 +510,7 @@
<div id="perm_grid" dojoType="dojox.Grid" model="perm_map_model" jsId="perm_grid">
<script type="dojo/connect" event="startup">
-<!--
+<![CDATA[
function get_item_part(model_field, item_search_field, item_part, model, store, datum, row) {
var formatter = true;
@@ -567,7 +567,7 @@
];
perm_grid.setStructure(window.current_perm_grid_layout);
--->
+]]>
</script>
</div>
</div>
@@ -619,7 +619,7 @@
<button dojoType="dijit.form.Button" jsId="new_mapping_add" label="&conify.grp_tree.add_mapping_button.label;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var new_perm = new_perm_select.getValue();
alert(new_perm);
if (!new_perm) return;
@@ -677,7 +677,7 @@
}).send();
new_popup._closeDropDown();
--->
+]]>
</script>
</button>
@@ -688,7 +688,7 @@
<button jsId="delete_pgpm_button" dojoType="dijit.form.Button" label="&conify.grp_tree.remove_selected.label;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var selected_rows = perm_grid.selection.getSelected();
var selected_items = [];
@@ -738,7 +738,7 @@
}).send();
}
--->
+]]>
</script>
</button>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/permission/grp_tree.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -37,7 +37,7 @@
dojo.require('dojox.widget.Toaster');
dojo.require('dojox.fx');
dojo.require('dojox.grid.Grid');
-dojo.requireLocalization("openils.conify", "pgt");
+dojo.requireLocalization("openils.conify", "conify");
// some handy globals
var cgi = new CGI();
@@ -47,7 +47,7 @@
server.pCRUD = new OpenSRF.ClientSession('open-ils.permacrud');
server.actor = new OpenSRF.ClientSession('open-ils.actor');
-var pgt_strings = dojo.i18n.getLocalization('openils.conify', 'pgt');
+var pgt_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
var current_group;
var virgin_out_id = -1;
Modified: branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.html
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.html 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.html 2008-11-07 20:59:34 UTC (rev 11097)
@@ -67,7 +67,7 @@
<div dojoType="dijit.layout.LayoutContainer" id="grid_container" jsId="grid_container" orientation="vertical">
<script type="dojo/method">
-<!--
+<![CDATA[
window.highlighter= {};
window.highlighter.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'grid_container', duration : 500 } );
window.highlighter.red = dojox.fx.highlight( { color : '#FF2018', node : 'grid_container', duration : 500 } );
@@ -134,7 +134,7 @@
});
if (dirtyStore.length > 0) {
- var confirmation = confirm(ppl_strings.CONFIRM_EXIT);
+ var confirmation = confirm(ppl_strings.CONFIRM_EXIT_PPL);
if (confirmation) {
for (var i in window.dirtyStore) {
@@ -147,7 +147,7 @@
});
}
}).send();
--->
+]]>
</script>
<div dojoType="dijit.layout.LayoutContainer" orientation="horizontal" style="margin-top: 5px;" layoutAlign="top">
@@ -155,7 +155,7 @@
<div dojoType="dijit.form.TextBox" id="new_perm_code" jsId="new_perm_code" label="&conify.perm_list.new_code.label;"></div>
<button dojoType="dijit.form.Button" id="save_new_perm_code" jsId="save_new_perm_code" label="&conify.perm_list.add_button.label;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var new_code = new_perm_code.getValue();
if (!new_code) return;
@@ -171,7 +171,7 @@
params : [ ses, new_fm_obj ],
onerror : function (r) {
highlighter.red.play();
- status_update( ppl_strings.ERROR_CALLING_METHOD );
+ status_update( ppl_strings.ERROR_CALLING_METHOD_PPL );
err = true;
},
oncomplete : function (r) {
@@ -189,7 +189,7 @@
}
}
}).send();
--->
+]]>
</script>
</button>
</div>
@@ -210,7 +210,7 @@
<button jsId="delete_ppl_button" dojoType="dijit.form.Button" label="&conify.perm_list.delete_selected.label;">
<script type="dojo/connect" event="onClick">
-<!--
+<![CDATA[
var selected_rows = perm_grid.selection.getSelected();
var selected_items = [];
@@ -265,7 +265,7 @@
}
}
--->
+]]>
</script>
</button>
Modified: branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/conify/global/permission/perm_list.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -29,7 +29,7 @@
dojo.require('dojox.widget.Toaster');
dojo.require('dojox.fx');
dojo.require('dojox.grid.Grid');
-dojo.requireLocalization("openils.conify", "ppl");
+dojo.requireLocalization("openils.conify", "conify");
// some handy globals
var cgi = new CGI();
@@ -37,7 +37,7 @@
var ses = cookieManager.read('ses') || cgi.param('ses');
var pCRUD = new OpenSRF.ClientSession('open-ils.permacrud');
-var ppl_strings = dojo.i18n.getLocalization('openils.conify', 'ppl');
+var ppl_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
var current_perm;
var virgin_out_id = -1;
@@ -89,7 +89,7 @@
if (event && dirtyStore.length > 0) {
- confirmation = confirm( ppl_strings.CONFIRM_EXIT );
+ confirmation = confirm( ppl_strings.CONFIRM_EXIT_PPL );
}
if (confirmation) {
Deleted: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aou.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aou.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aou.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,31 +0,0 @@
-{
- "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
- "CONFIRM_EXIT": "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them.",
- "ERROR_CREATING_CHILD": "Problem creating child Organizational Unit",
- "ERROR_DELETING": "Problem deleting ${0}",
- "ERROR_DELETING_LAST": "Cannot delete ${0}, you need at least one.",
- "ERROR_FETCHING_HOLDS": "Problem fetching Holds Address for ${0}",
- "ERROR_FETCHING_HOURS": "Problem fetching hours of operation for ${0}",
- "ERROR_FETCHING_ILL": "Problem fetching ILL Address for ${0}",
- "ERROR_FETCHING_MAILING": "Problem fetching Mailing Address for ${0}",
- "ERROR_FETCHING_ORGS": "Problem fetching organizational unit data",
- "ERROR_FETCHING_PHYSICAL": "Problem fetching Physical Address for ${0}",
- "ERROR_FETCHING_TYPES": "Problem fetching organizational unit type data",
- "ERROR_ORPHANS": "Cannot delete ${0}, ${1} subordinates still exist.",
- "ERROR_SAVING_HOO": "Problem saving Hours of Operation data for ${0}",
- "ERROR_SAVING_DATA": "Problem saving data for ${0}",
- "ERROR_SAVING_HOLDS": "Problem saving Holds Address data for ${0}",
- "ERROR_SAVING_ILL": "Problem saving ILL Address data for ${0}",
- "ERROR_SAVING_MAILING": "Problem saving Mailing Address data for ${0}",
- "ERROR_SAVING_PHYSICAL": "Problem saving Physical Address data for ${0}",
- "LABEL_NEW_BRANCH": "New Branch",
- "STATUS_DELETED": "${0} deleted",
- "STATUS_EDITING": "Now editing ${0}",
- "SUCCESS_CREATING_CHILD": "New child Organizational Unit created for ${0}",
- "SUCCESS_SAVE": "Saved changes to ${0}",
- "SUCCESS_SAVING_HOO": "Hours of Operation updated for ${0}",
- "SUCCESS_SAVING_HOLDS": "Saved changes to the Holds Address of ${0}",
- "SUCCESS_SAVING_ILL": "Saved changes to the ILL Address of ${0}",
- "SUCCESS_SAVING_MAILING": "Saved changes to the Mailing Address of ${0}",
- "SUCCESS_SAVING_PHYSICAL": "Saved changes to the Physical Address of ${0}"
-}
Deleted: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aout.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aout.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/aout.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,16 +0,0 @@
-{
- "CONFIRM_UNSAVED_CHANGES": "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them.",
- "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
- "ERROR_CREATING_CHILD": "Problem creating child Organization Type",
- "ERROR_CREATING_CHILD_METHOD": "Problem calling method to create child Organization Type",
- "ERROR_DELETING": "Problem deleting ${0}",
- "ERROR_DELETING_LAST": "Cannot delete ${0}. You need at least one organization type.",
- "ERROR_ORPHANS": "Cannot delete ${0}; ${1} subordinates still exist.",
- "ERROR_SAVING_DATA": "Problem saving data for ${0}",
- "ERROR_FETCHING_TYPES": "Problem fetching organization types",
- "LABEL_NEW_TYPE": "New Type",
- "STATUS_DELETED": "${0} deleted",
- "STATUS_EDITING": "Now editing ${0}",
- "SUCCESS_CREATING_CHILD": "New child Organization Type created for ${0}",
- "SUCCESS_SAVING_DATA": "Saved changes to ${0}"
-}
Deleted: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/cam.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/cam.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/cam.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,15 +0,0 @@
-{
- "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
- "CONFIRM_EXIT": "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them.",
- "ERROR_CALLING_METHOD": "Problem calling method to create new ${0}",
- "ERROR_CREATING_PERMISSION": "Problem creating new Permission",
- "ERROR_DELETING": "Problem deleting ${0}",
- "ERROR_SAVING_DATA": "Problem saving data for ${0} ${1}",
- "LABEL_CODE": "Code",
- "LABEL_DESCRIPTION": "Description",
- "LABEL_TRANSLATION": "Translation",
- "LABEL_VALUE": "Value",
- "STATUS_DELETED": "${0} deleted",
- "SUCCESS_CREATING_CODE": "New ${0} ${1} created",
- "SUCCESS_SAVE": "Saved changes to ${0}"
-}
Deleted: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ccs.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ccs.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ccs.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,17 +0,0 @@
-{
- "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
- "CONFIRM_EXIT": "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them.",
- "ERROR_CALLING_METHOD": "Problem calling method to create new copy status",
- "ERROR_CREATING_STATUS": "Problem creating new Status",
- "ERROR_DELETING": "Problem deleting ${0}",
- "ERROR_FETCHING_STATUSES": "Problem fetching statuses",
- "ERROR_SAVING_STATUS": "Problem saving ${0}",
- "HOLDABLE": "Holdable",
- "ID": "ID",
- "NAME": "Name",
- "OPAC_VISIBLE": "OPAC Visible",
- "STATUS_DELETED": "${0} deleted",
- "SUCCESS_CREATING_STATUS": "New ${0} status created",
- "SUCCESS_SAVE": "Saved changes to ${0}",
- "TRANSLATION": "Translation"
-}
Copied: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/conify.js (from rev 11096, trunk/Open-ILS/web/js/dojo/openils/conify/nls/conify.js)
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/conify.js (rev 0)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/conify.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,78 @@
+{
+ "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
+ "CONFIRM_EXIT_AOU": "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them.",
+ "CONFIRM_EXIT_CAM": "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them.",
+ "CONFIRM_EXIT_CCS": "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them.",
+ "CONFIRM_EXIT_PGT": "There are unsaved modified permission maps. Click OK to save these changes, or Cancel to abandon them.",
+ "CONFIRM_EXIT_PPL": "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them.",
+ "CONFIRM_UNSAVED_CHANGES": "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them.",
+ "ERROR_CALLING_METHOD_AOUT": "Problem calling method to create child organization type",
+ "ERROR_CALLING_METHOD_CAM": "Problem calling method to create new ${0}",
+ "ERROR_CALLING_METHOD_CCS": "Problem calling method to create new copy status",
+ "ERROR_CALLING_METHOD_PERM_MAP": "Problem calling method to create new permission map",
+ "ERROR_CALLING_METHOD_PGT": "Problem calling method to create child Group",
+ "ERROR_CALLING_METHOD_PPL": "Problem calling method to create new permission",
+ "ERROR_CREATING_CHILD_AOU": "Problem creating child organizational unit",
+ "ERROR_CREATING_CHILD_AOUT": "Problem creating child organization type",
+ "ERROR_CREATING_CHILD_GROUP": "Problem creating child Group",
+ "ERROR_CREATING_PERMISSION": "Problem creating new Permission",
+ "ERROR_CREATING_PERM_MAP": "Problem creating new Permission Map",
+ "ERROR_CREATING_STATUS": "Problem creating new Status",
+ "ERROR_DELETING_LAST_AOU": "Cannot delete ${0}, you need at least one organization unit.",
+ "ERROR_DELETING_LAST_AOUT": "Cannot delete ${0}. You need at least one organization type.",
+ "ERROR_DELETING_PERM_MAPPING": "Problem deleting permission mapping ${0}",
+ "ERROR_DELETING": "Problem deleting ${0}",
+ "ERROR_FETCHING_GROUPS": "Problem fetching groups",
+ "ERROR_FETCHING_HOLDS": "Problem fetching Holds Address for ${0}",
+ "ERROR_FETCHING_HOURS": "Problem fetching hours of operation for ${0}",
+ "ERROR_FETCHING_ILL": "Problem fetching ILL Address for ${0}",
+ "ERROR_FETCHING_MAILING": "Problem fetching Mailing Address for ${0}",
+ "ERROR_FETCHING_ORGS": "Problem fetching organizational unit data",
+ "ERROR_FETCHING_PERM_MAPS": "Problem fetching perm maps",
+ "ERROR_FETCHING_PERMS": "Problem fetching perms",
+ "ERROR_FETCHING_PHYSICAL": "Problem fetching Physical Address for ${0}",
+ "ERROR_FETCHING_STATUSES": "Problem fetching statuses",
+ "ERROR_FETCHING_TYPES_AOUT": "Problem fetching organizational unit types",
+ "ERROR_ORPHANS": "Cannot delete ${0}, ${1} subordinates still exist.",
+ "ERROR_SAVING_DATA": "Problem saving data for ${0}",
+ "ERROR_SAVING_DATA_CAM": "Problem saving data for ${0} ${1}",
+ "ERROR_SAVING_HOLDS": "Problem saving Holds Address data for ${0}",
+ "ERROR_SAVING_HOO": "Problem saving Hours of Operation data for ${0}",
+ "ERROR_SAVING_ILL": "Problem saving ILL Address data for ${0}",
+ "ERROR_SAVING_MAILING": "Problem saving Mailing Address data for ${0}",
+ "ERROR_SAVING_PERM_DATA": "Problem saving permission data for ${0}",
+ "ERROR_SAVING_PHYSICAL": "Problem saving Physical Address data for ${0}",
+ "ERROR_SAVING_STATUS": "Problem saving ${0}",
+ "HOLDABLE": "Holdable",
+ "ID": "ID",
+ "LABEL_CODE": "Code",
+ "LABEL_DEPTH": "Depth",
+ "LABEL_DESCRIPTION": "Description",
+ "LABEL_GRANTABLE": "Grantable",
+ "LABEL_NEW_BRANCH": "New Branch",
+ "LABEL_NEW_GROUP": "New Group",
+ "LABEL_NEW_TYPE": "New Type",
+ "LABEL_TRANSLATION": "Translation",
+ "LABEL_VALUE": "Value",
+ "NAME": "Name",
+ "OPAC_VISIBLE": "OPAC Visible",
+ "STATUS_DELETED": "${0} deleted",
+ "STATUS_EDITING": "Now editing ${0}",
+ "SUCCESS_CREATING_CHILD_AOU": "New child Organizational Unit created for ${0}",
+ "SUCCESS_CREATING_CHILD_AOUT": "New child Organization Type created for ${0}",
+ "SUCCESS_CREATING_CODE": "New ${0} ${1} created",
+ "SUCCESS_CREATING_PERMISSION": "New ${0} permission created",
+ "SUCCESS_CREATING_STATUS": "New ${0} status created",
+ "SUCCESS_DELETED_PERM_MAP": "Permission mapping deleted",
+ "SUCCESS_NEW_CHILD_GROUP": "New child Group created for ${0}",
+ "SUCCESS_NEW_PERM_MAP": "New permission map created",
+ "SUCCESS_SAVE_PERM": "Saved permission changes to ${0}",
+ "SUCCESS_SAVE": "Saved changes to ${0}",
+ "SUCCESS_SAVING_DATA": "Saved changes to ${0}",
+ "SUCCESS_SAVING_HOLDS": "Saved changes to the Holds Address of ${0}",
+ "SUCCESS_SAVING_HOO": "Hours of Operation updated for ${0}",
+ "SUCCESS_SAVING_ILL": "Saved changes to the ILL Address of ${0}",
+ "SUCCESS_SAVING_MAILING": "Saved changes to the Mailing Address of ${0}",
+ "SUCCESS_SAVING_PHYSICAL": "Saved changes to the Physical Address of ${0}",
+ "TRANSLATION": "Translation"
+}
Deleted: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/pgt.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/pgt.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/pgt.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,28 +0,0 @@
-{
- "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
- "CONFIRM_EXIT": "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them.",
- "ERROR_CALLING_METHOD": "Problem calling method to create child Group",
- "ERROR_CALLING_METHOD_PERM_MAP": "Problem calling method to create new Permission Map",
- "ERROR_CREATING_CHILD_GROUP": "Problem creating child Group",
- "ERROR_CREATING_PERMISSION": "Problem creating new Permission",
- "ERROR_CREATING_PERM_MAP": "Problem creating new Permission Map",
- "ERROR_DELETING": "Problem deleting ${0}",
- "ERROR_DELETING_PERM_MAPPING": "Problem deleting permission mapping ${0}",
- "ERROR_FETCHING_GROUPS": "Problem fetching groups",
- "ERROR_FETCHING_PERMS": "Problem fetching perms",
- "ERROR_FETCHING_PERM_MAPS": "Problem fetching perm maps",
- "ERROR_FETCHING_TYPES": "Problem fetching types",
- "ERROR_SAVING_DATA": "Problem saving data for ${0}",
- "ERROR_SAVING_PERM_DATA": "Problem saving permission data for ${0}",
- "LABEL_CODE ": "Code",
- "LABEL_DEPTH": "Depth",
- "LABEL_GRANTABLE": "Grantable",
- "LABEL_NEW_GROUP": "New Group",
- "STATUS_DELETED": "${0} deleted",
- "STATUS_EDITING": "Now editing ${0}",
- "SUCCESS_DELETED_PERM_MAP": "Permission mapping deleted",
- "SUCCESS_NEW_CHILD_GROUP": "New child Group created for ${0}",
- "SUCCESS_NEW_PERM_MAP": "New permission map created",
- "SUCCESS_SAVE": "Saved changes to ${0}",
- "SUCCESS_SAVE_PERM": "Saved permission changes to ${0}"
-}
Deleted: branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ppl.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ppl.js 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/Open-ILS/web/js/dojo/openils/conify/nls/ppl.js 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,15 +0,0 @@
-{
- "CONFIRM_DELETE": "Are you sure you want to delete ${0}?",
- "CONFIRM_EXIT": "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them.",
- "ERROR_CALLING_METHOD": "Problem calling method to create new Permission",
- "ERROR_CREATING_PERMISSION": "Problem creating new Permission",
- "ERROR_DELETING": "Problem deleting ${0}",
- "ERROR_FETCHING_PERMS": "Problem fetching perms",
- "ERROR_SAVING_DATA": "Problem saving data for ${0}",
- "LABEL_CODE": "Code",
- "LABEL_DESCRIPTION": "Description",
- "LABEL_TRANSLATION": "Translation",
- "STATUS_DELETED": "${0} deleted",
- "SUCCESS_CREATING_PERMISSION": "New ${0} permission created",
- "SUCCESS_SAVE": "Saved changes to ${0}"
-}
Modified: branches/rel_1_4/build/i18n/Makefile
===================================================================
--- branches/rel_1_4/build/i18n/Makefile 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/Makefile 2008-11-07 20:59:34 UTC (rev 11097)
@@ -7,7 +7,8 @@
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:]/')
-DOJOSRC=../../Open-ILS/web/js/dojo/openils/conify/nls
+DOJO_CON_SRC=../../Open-ILS/web/js/dojo/openils/conify/nls
+DOJO_RPT_SRC=../../Open-ILS/web/js/dojo/openils/reports/nls
FMIDLSRC=../../Open-ILS/examples/fm_IDL.xml
FMIDLOUT=fm_IDL.pot
FMIDLENT=fm_IDL.xml
@@ -81,20 +82,14 @@
@moz2po -P $(PROGRESS) -o $(POTSRC) -i $(DTDDIR)/en-US/ 2>&1
dojo2pot:
- @scripts/dojo_resource.py --pot $(DOJOSRC)/aou.js --output $(POTSRC)/conify.aou.pot
- @scripts/dojo_resource.py --pot $(DOJOSRC)/aout.js --output $(POTSRC)/conify.aout.pot
- @scripts/dojo_resource.py --pot $(DOJOSRC)/cam.js --output $(POTSRC)/conify.cam.pot
- @scripts/dojo_resource.py --pot $(DOJOSRC)/ccs.js --output $(POTSRC)/conify.ccs.pot
- @scripts/dojo_resource.py --pot $(DOJOSRC)/pgt.js --output $(POTSRC)/conify.pgt.pot
- @scripts/dojo_resource.py --pot $(DOJOSRC)/ppl.js --output $(POTSRC)/conify.ppl.pot
+ @scripts/dojo_resource.py --pot $(DOJO_CON_SRC)/conify.js --output $(POTSRC)/conify.js.pot
+ @msghack --empty -o $(POTSRC)/conify.js.pot $(POTSRC)/conify.js.pot
+ @scripts/dojo_resource.py --pot $(DOJO_RPT_SRC)/reports.js --output $(POTSRC)/reports.js.pot
+ @msghack --empty -o $(POTSRC)/reports.js.pot $(POTSRC)/reports.js.pot
po2dojo:
- @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.aou.po --output $(PROJECT)/$(LOCALE)/conify.aou.js
- @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.aout.po --output $(PROJECT)/$(LOCALE)/conify.aout.js
- @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.cam.po --output $(PROJECT)/$(LOCALE)/conify.cam.js
- @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.ccs.po --output $(PROJECT)/$(LOCALE)/conify.ccs.js
- @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.pgt.po --output $(PROJECT)/$(LOCALE)/conify.pgt.js
- @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.ppl.po --output $(PROJECT)/$(LOCALE)/conify.ppl.js
+ @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/conify.js.po --output $(PROJECT)/$(LOCALE)/conify.js
+ @scripts/dojo_resource.py --create $(POINDIR)/$(LOCALE)/reports.js.po --output $(PROJECT)/$(LOCALE)/reports.js
ils2pot:
@scripts/ils_events.py --pot $(EVTSRC) --output $(POTSRC)/$(EVTOUT)
@@ -115,6 +110,7 @@
sql2pot:
@scripts/db-seed-i18n.py --pot $(SQLSRCDIR)/$(SQLSRCFILE) --output $(POTSRC)/$(SQLPOT)
+ @msghack --empty -o $(POTSRC)/$(SQLPOT) $(POTSRC)/$(SQLPOT)
po2sql:
scripts/db-seed-i18n.py --sql $(POINDIR)/$(LOCALE)/$(SQLPO) --locale $(LOCALE) --output $(PROJECT)/$(LOCALE)/$(SQLOUT).sql
@@ -159,10 +155,7 @@
@scripts/merge_ils_events.py --master $(EVTSRC) --localization $(PROJECT)/$(LOCALE)/$(EVTXML) --output $(EVTSRC)
cp $(PROJECT)/$(LOCALE)/$(SQLOUT).sql $(SQLSRCDIR)/$(SQLOUT)-$(LOCALE).sql
cp $(POOUTDIR)/$(FMIDLENT) $(REPORTDIR)/$(FMIDLENT)
- mkdir -p $(DOJOSRC)/$(DOJO_LOCALE)
- cp $(PROJECT)/$(LOCALE)/conify.aou.js $(DOJOSRC)/$(DOJO_LOCALE)/aou.js
- cp $(PROJECT)/$(LOCALE)/conify.aout.js $(DOJOSRC)/$(DOJO_LOCALE)/aout.js
- cp $(PROJECT)/$(LOCALE)/conify.cam.js $(DOJOSRC)/$(DOJO_LOCALE)/cam.js
- cp $(PROJECT)/$(LOCALE)/conify.ccs.js $(DOJOSRC)/$(DOJO_LOCALE)/ccs.js
- cp $(PROJECT)/$(LOCALE)/conify.pgt.js $(DOJOSRC)/$(DOJO_LOCALE)/pgt.js
- cp $(PROJECT)/$(LOCALE)/conify.ppl.js $(DOJOSRC)/$(DOJO_LOCALE)/ppl.js
+ mkdir -p $(DOJO_CON_SRC)/$(DOJO_LOCALE)
+ cp $(PROJECT)/$(LOCALE)/conify.js $(DOJO_CON_SRC)/$(DOJO_LOCALE)/conify.js
+ mkdir -p $(DOJO_RPT_SRC)/$(DOJO_LOCALE)
+ cp $(PROJECT)/$(LOCALE)/reports.js $(DOJO_RPT_SRC)/$(DOJO_LOCALE)/reports.js
Deleted: branches/rel_1_4/build/i18n/po/en-US/conify.aou.pot
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.aou.pot 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.aou.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,128 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: aou.js:SUCCESS_SAVING_PHYSICAL
-msgid "Saved changes to the Physical Address of ${0}"
-msgstr "Saved changes to the Physical Address of ${0}"
-
-#: aou.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching organizational unit type data"
-msgstr "Problem fetching organizational unit type data"
-
-#: aou.js:ERROR_FETCHING_PHYSICAL
-msgid "Problem fetching Physical Address for ${0}"
-msgstr "Problem fetching Physical Address for ${0}"
-
-#: aou.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: aou.js:LABEL_NEW_BRANCH
-msgid "New Branch"
-msgstr "New Branch"
-
-#: aou.js:ERROR_FETCHING_HOURS
-msgid "Problem fetching hours of operation for ${0}"
-msgstr "Problem fetching hours of operation for ${0}"
-
-#: aou.js:ERROR_FETCHING_ILL
-msgid "Problem fetching ILL Address for ${0}"
-msgstr "Problem fetching ILL Address for ${0}"
-
-#: aou.js:SUCCESS_CREATING_CHILD
-msgid "New child Organizational Unit created for ${0}"
-msgstr "New child Organizational Unit created for ${0}"
-
-#: aou.js:SUCCESS_SAVING_HOO
-msgid "Hours of Operation updated for ${0}"
-msgstr "Hours of Operation updated for ${0}"
-
-#: aou.js:ERROR_DELETING_LAST
-msgid "Cannot delete ${0}, you need at least one."
-msgstr "Cannot delete ${0}, you need at least one."
-
-#: aou.js:ERROR_SAVING_HOO
-msgid "Problem saving Hours of Operation data for ${0}"
-msgstr "Problem saving Hours of Operation data for ${0}"
-
-#: aou.js:ERROR_SAVING_PHYSICAL
-msgid "Problem saving Physical Address data for ${0}"
-msgstr "Problem saving Physical Address data for ${0}"
-
-#: aou.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
-
-#: aou.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: aou.js:SUCCESS_SAVING_MAILING
-msgid "Saved changes to the Mailing Address of ${0}"
-msgstr "Saved changes to the Mailing Address of ${0}"
-
-#: aou.js:ERROR_FETCHING_MAILING
-msgid "Problem fetching Mailing Address for ${0}"
-msgstr "Problem fetching Mailing Address for ${0}"
-
-#: aou.js:ERROR_FETCHING_ORGS
-msgid "Problem fetching organizational unit data"
-msgstr "Problem fetching organizational unit data"
-
-#: aou.js:SUCCESS_SAVING_HOLDS
-msgid "Saved changes to the Holds Address of ${0}"
-msgstr "Saved changes to the Holds Address of ${0}"
-
-#: aou.js:SUCCESS_SAVING_ILL
-msgid "Saved changes to the ILL Address of ${0}"
-msgstr "Saved changes to the ILL Address of ${0}"
-
-#: aou.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: aou.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: aou.js:ERROR_CREATING_CHILD
-msgid "Problem creating child Organizational Unit"
-msgstr "Problem creating child Organizational Unit"
-
-#: aou.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: aou.js:ERROR_ORPHANS
-msgid "Cannot delete ${0}, ${1} subordinates still exist."
-msgstr "Cannot delete ${0}, ${1} subordinates still exist."
-
-#: aou.js:ERROR_SAVING_HOLDS
-msgid "Problem saving Holds Address data for ${0}"
-msgstr "Problem saving Holds Address data for ${0}"
-
-#: aou.js:ERROR_FETCHING_HOLDS
-msgid "Problem fetching Holds Address for ${0}"
-msgstr "Problem fetching Holds Address for ${0}"
-
-#: aou.js:ERROR_SAVING_MAILING
-msgid "Problem saving Mailing Address data for ${0}"
-msgstr "Problem saving Mailing Address data for ${0}"
-
-#: aou.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: aou.js:ERROR_SAVING_ILL
-msgid "Problem saving ILL Address data for ${0}"
-msgstr "Problem saving ILL Address data for ${0}"
Deleted: branches/rel_1_4/build/i18n/po/en-US/conify.aout.pot
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.aout.pot 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.aout.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,68 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: aout.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching organization types"
-msgstr "Problem fetching organization types"
-
-#: aout.js:SUCCESS_SAVING_DATA
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: aout.js:LABEL_NEW_TYPE
-msgid "New Type"
-msgstr "New Type"
-
-#: aout.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: aout.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: aout.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: aout.js:SUCCESS_CREATING_CHILD
-msgid "New child Organization Type created for ${0}"
-msgstr "New child Organization Type created for ${0}"
-
-#: aout.js:ERROR_CREATING_CHILD
-msgid "Problem creating child Organization Type"
-msgstr "Problem creating child Organization Type"
-
-#: aout.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: aout.js:CONFIRM_UNSAVED_CHANGES
-msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
-
-#: aout.js:ERROR_ORPHANS
-msgid "Cannot delete ${0}; ${1} subordinates still exist."
-msgstr "Cannot delete ${0}; ${1} subordinates still exist."
-
-#: aout.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: aout.js:ERROR_CREATING_CHILD_METHOD
-msgid "Problem calling method to create child Organization Type"
-msgstr "Problem calling method to create child Organization Type"
-
-#: aout.js:ERROR_DELETING_LAST
-msgid "Cannot delete ${0}. You need at least one organization type."
-msgstr "Cannot delete ${0}. You need at least one organization type."
Deleted: branches/rel_1_4/build/i18n/po/en-US/conify.cam.pot
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.cam.pot 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.cam.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,64 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: cam.js:SUCCESS_CREATING_CODE
-msgid "New ${0} ${1} created"
-msgstr "New ${0} ${1} created"
-
-#: cam.js:LABEL_VALUE
-msgid "Value"
-msgstr "Value"
-
-#: cam.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new ${0}"
-msgstr "Problem calling method to create new ${0}"
-
-#: cam.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: cam.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0} ${1}"
-msgstr "Problem saving data for ${0} ${1}"
-
-#: cam.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
-
-#: cam.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: cam.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: cam.js:LABEL_TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: cam.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: cam.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: cam.js:LABEL_DESCRIPTION
-msgid "Description"
-msgstr "Description"
-
-#: cam.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
Deleted: branches/rel_1_4/build/i18n/po/en-US/conify.ccs.pot
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.ccs.pot 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.ccs.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,72 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: ccs.js:NAME
-msgid "Name"
-msgstr "Name"
-
-#: ccs.js:HOLDABLE
-msgid "Holdable"
-msgstr "Holdable"
-
-#: ccs.js:ERROR_FETCHING_STATUSES
-msgid "Problem fetching statuses"
-msgstr "Problem fetching statuses"
-
-#: ccs.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: ccs.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new copy status"
-msgstr "Problem calling method to create new copy status"
-
-#: ccs.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
-
-#: ccs.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: ccs.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: ccs.js:SUCCESS_CREATING_STATUS
-msgid "New ${0} status created"
-msgstr "New ${0} status created"
-
-#: ccs.js:TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: ccs.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: ccs.js:ERROR_CREATING_STATUS
-msgid "Problem creating new Status"
-msgstr "Problem creating new Status"
-
-#: ccs.js:ID
-msgid "ID"
-msgstr "ID"
-
-#: ccs.js:OPAC_VISIBLE
-msgid "OPAC Visible"
-msgstr "OPAC Visible"
-
-#: ccs.js:ERROR_SAVING_STATUS
-msgid "Problem saving ${0}"
-msgstr "Problem saving ${0}"
Copied: branches/rel_1_4/build/i18n/po/en-US/conify.js.pot (from rev 11096, trunk/build/i18n/po/en-US/conify.js.pot)
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.js.pot (rev 0)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.js.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,316 @@
+#
+msgid ""
+msgstr "Project-Id-Version: Evergreen 1.4\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-11-07 15:35:55-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+
+#: conify.js:SUCCESS_SAVING_PHYSICAL
+msgid "Saved changes to the Physical Address of ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_AOU
+msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PHYSICAL
+msgid "Problem fetching Physical Address for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_PERM_MAP
+msgid "Problem creating new Permission Map"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CODE
+msgid "New ${0} ${1} created"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_CCS
+msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_HOO
+msgid "Hours of Operation updated for ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_PPL
+msgid "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_ILL
+msgid "Problem fetching ILL Address for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_TRANSLATION
+msgid "Translation"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PERMS
+msgid "Problem fetching perms"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_DATA
+msgid "Problem saving data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_GROUP
+msgid "New Group"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_LAST_AOUT
+msgid "Cannot delete ${0}. You need at least one organization type."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_HOURS
+msgid "Problem fetching hours of operation for ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_CAM
+msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_AOUT
+msgid "Problem creating child organization type"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_PERMISSION
+msgid "Problem creating new Permission"
+msgstr ""
+
+#: conify.js:LABEL_DESCRIPTION
+msgid "Description"
+msgstr ""
+
+#: conify.js:LABEL_DEPTH
+msgid "Depth"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_AOU
+msgid "Problem creating child organizational unit"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVE_PERM
+msgid "Saved permission changes to ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_HOO
+msgid "Problem saving Hours of Operation data for ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CHILD_AOUT
+msgid "New child Organization Type created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PPL
+msgid "Problem calling method to create new permission"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_PGT
+msgid "There are unsaved modified permission maps. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ID
+msgid "ID"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_PERM_MAPPING
+msgid "Problem deleting permission mapping ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PERM_MAPS
+msgid "Problem fetching perm maps"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_DATA_CAM
+msgid "Problem saving data for ${0} ${1}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PERM_MAP
+msgid "Problem calling method to create new permission map"
+msgstr ""
+
+#: conify.js:CONFIRM_UNSAVED_CHANGES
+msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_SAVING_STATUS
+msgid "Problem saving ${0}"
+msgstr ""
+
+#: conify.js:OPAC_VISIBLE
+msgid "OPAC Visible"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_MAILING
+msgid "Problem fetching Mailing Address for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_ORGS
+msgid "Problem fetching organizational unit data"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PGT
+msgid "Problem calling method to create child Group"
+msgstr ""
+
+#: conify.js:SUCCESS_DELETED_PERM_MAP
+msgid "Permission mapping deleted"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_HOLDS
+msgid "Saved changes to the Holds Address of ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVE
+msgid "Saved changes to ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_ILL
+msgid "Saved changes to the ILL Address of ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_STATUSES
+msgid "Problem fetching statuses"
+msgstr ""
+
+#: conify.js:ERROR_DELETING
+msgid "Problem deleting ${0}"
+msgstr ""
+
+#: conify.js:STATUS_EDITING
+msgid "Now editing ${0}"
+msgstr ""
+
+#: conify.js:TRANSLATION
+msgid "Translation"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_TYPES_AOUT
+msgid "Problem fetching organizational unit types"
+msgstr ""
+
+#: conify.js:NAME
+msgid "Name"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_DATA
+msgid "Saved changes to ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_DELETE
+msgid "Are you sure you want to delete ${0}?"
+msgstr ""
+
+#: conify.js:ERROR_ORPHANS
+msgid "Cannot delete ${0}, ${1} subordinates still exist."
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_GROUP
+msgid "Problem creating child Group"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_STATUS
+msgid "New ${0} status created"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_LAST_AOU
+msgid "Cannot delete ${0}, you need at least one organization unit."
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_CAM
+msgid "Problem calling method to create new ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_HOLDS
+msgid "Problem saving Holds Address data for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_PERM_DATA
+msgid "Problem saving permission data for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_HOLDS
+msgid "Problem fetching Holds Address for ${0}"
+msgstr ""
+
+#: conify.js:HOLDABLE
+msgid "Holdable"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_MAILING
+msgid "Problem saving Mailing Address data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_TYPE
+msgid "New Type"
+msgstr ""
+
+#: conify.js:LABEL_VALUE
+msgid "Value"
+msgstr ""
+
+#: conify.js:SUCCESS_NEW_PERM_MAP
+msgid "New permission map created"
+msgstr ""
+
+#: conify.js:STATUS_DELETED
+msgid "${0} deleted"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CHILD_AOU
+msgid "New child Organizational Unit created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_CCS
+msgid "Problem calling method to create new copy status"
+msgstr ""
+
+#: conify.js:LABEL_GRANTABLE
+msgid "Grantable"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_ILL
+msgid "Problem saving ILL Address data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_CODE
+msgid "Code"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_MAILING
+msgid "Saved changes to the Mailing Address of ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_BRANCH
+msgid "New Branch"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_GROUPS
+msgid "Problem fetching groups"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_AOUT
+msgid "Problem calling method to create child organization type"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_STATUS
+msgid "Problem creating new Status"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_PERMISSION
+msgid "New ${0} permission created"
+msgstr ""
+
+#: conify.js:SUCCESS_NEW_CHILD_GROUP
+msgid "New child Group created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_PHYSICAL
+msgid "Problem saving Physical Address data for ${0}"
+msgstr ""
+
Deleted: branches/rel_1_4/build/i18n/po/en-US/conify.pgt.pot
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.pgt.pot 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.pgt.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,116 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: pgt.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching types"
-msgstr "Problem fetching types"
-
-#: pgt.js:ERROR_CREATING_PERM_MAP
-msgid "Problem creating new Permission Map"
-msgstr "Problem creating new Permission Map"
-
-#: pgt.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create child Group"
-msgstr "Problem calling method to create child Group"
-
-#: pgt.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: pgt.js:LABEL_NEW_GROUP
-msgid "New Group"
-msgstr "New Group"
-
-#: pgt.js:ERROR_FETCHING_PERMS
-msgid "Problem fetching perms"
-msgstr "Problem fetching perms"
-
-#: pgt.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: pgt.js:SUCCESS_NEW_PERM_MAP
-msgid "New permission map created"
-msgstr "New permission map created"
-
-#: pgt.js:ERROR_DELETING_PERM_MAPPING
-msgid "Problem deleting permission mapping ${0}"
-msgstr "Problem deleting permission mapping ${0}"
-
-#: pgt.js:CONFIRM_EXIT
-msgid "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them."
-msgstr "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them."
-
-#: pgt.js:ERROR_FETCHING_PERM_MAPS
-msgid "Problem fetching perm maps"
-msgstr "Problem fetching perm maps"
-
-#: pgt.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: pgt.js:ERROR_CALLING_METHOD_PERM_MAP
-msgid "Problem calling method to create new Permission Map"
-msgstr "Problem calling method to create new Permission Map"
-
-#: pgt.js:LABEL_DEPTH
-msgid "Depth"
-msgstr "Depth"
-
-#: pgt.js:SUCCESS_SAVE_PERM
-msgid "Saved permission changes to ${0}"
-msgstr "Saved permission changes to ${0}"
-
-#: pgt.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: pgt.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: pgt.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: pgt.js:ERROR_CREATING_CHILD_GROUP
-msgid "Problem creating child Group"
-msgstr "Problem creating child Group"
-
-#: pgt.js:SUCCESS_DELETED_PERM_MAP
-msgid "Permission mapping deleted"
-msgstr "Permission mapping deleted"
-
-#: pgt.js:ERROR_SAVING_PERM_DATA
-msgid "Problem saving permission data for ${0}"
-msgstr "Problem saving permission data for ${0}"
-
-#: pgt.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: pgt.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: pgt.js:LABEL_GRANTABLE
-msgid "Grantable"
-msgstr "Grantable"
-
-#: pgt.js:ERROR_FETCHING_GROUPS
-msgid "Problem fetching groups"
-msgstr "Problem fetching groups"
-
-#: pgt.js:SUCCESS_NEW_CHILD_GROUP
-msgid "New child Group created for ${0}"
-msgstr "New child Group created for ${0}"
Deleted: branches/rel_1_4/build/i18n/po/en-US/conify.ppl.pot
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/conify.ppl.pot 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/en-US/conify.ppl.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,64 +0,0 @@
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: ppl.js:LABEL_DESCRIPTION
-msgid "Description"
-msgstr "Description"
-
-#: ppl.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: ppl.js:ERROR_FETCHING_PERMS
-msgid "Problem fetching perms"
-msgstr "Problem fetching perms"
-
-#: ppl.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: ppl.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new Permission"
-msgstr "Problem calling method to create new Permission"
-
-#: ppl.js:CONFIRM_EXIT
-msgid "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them."
-msgstr "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them."
-
-#: ppl.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: ppl.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: ppl.js:LABEL_TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: ppl.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: ppl.js:SUCCESS_CREATING_PERMISSION
-msgid "New ${0} permission created"
-msgstr "New ${0} permission created"
-
-#: ppl.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: ppl.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
Copied: branches/rel_1_4/build/i18n/po/en-US/reports.js.pot (from rev 11096, trunk/build/i18n/po/en-US/reports.js.pot)
===================================================================
--- branches/rel_1_4/build/i18n/po/en-US/reports.js.pot (rev 0)
+++ branches/rel_1_4/build/i18n/po/en-US/reports.js.pot 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,310 @@
+#
+msgid ""
+msgstr "Project-Id-Version: Evergreen 1.4\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-11-07 15:35:55-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+
+#: reports.js:RPT_BUILDER_CONFIRM_SAVE
+msgid "Name : ${0}\n"
+"Description: ${1}\n"
+"Save Template?"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOY
+msgid "Day of Year"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_ENTER_NAME_ALERT
+msgid "Please enter a report name"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_BETWEEN
+msgid "Between"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST5
+msgid "First 5 characters (for US ZIP code)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NULL_BLANK
+msgid "Is NULL or Blank"
+msgstr ""
+
+#: reports.js:FOLDERS_REPORT
+msgid "Report"
+msgstr ""
+
+#: reports.js:WIDGET_YEARS
+msgid "Year(s)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOW
+msgid "Day of Week"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LT_EQUAL
+msgid "Less than or equal to"
+msgstr ""
+
+#: reports.js:WIDGET_MONTHS
+msgid "Month(s)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_COUNT
+msgid "Count"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_INVALID_DATE_ALERT
+msgid "invalid start date - YYYY-MM-DD"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LT_TIME
+msgid "Before (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOM
+msgid "Day of Month"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_NONE
+msgid "None"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTH_NAME
+msgid "Month Name'"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MAX
+msgid "Max"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_IN
+msgid "Not in list"
+msgstr ""
+
+#: reports.js:FOLDERS_OUTPUT
+msgid "Output"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_LAST
+msgid "Last Value"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GT_TIME
+msgid "After (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTHS_AGO
+msgid "Months ago"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_EQUALS
+msgid "Equals"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST_WORD
+msgid "First contiguous non-space string"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_ALL
+msgid "All"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_RAW_DATA
+msgid "Raw Data"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_COUNT_DISTINCT
+msgid "Count Distinct"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_REPORT_OUTPUT
+msgid "Report Output: ${0}"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DATE
+msgid "Date"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_AVERAGE
+msgid "Average"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MIN
+msgid "Min"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_REPORT_FOLDERS
+msgid "Report Folders"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LSE_TIME
+msgid "On or Before (Date/Time)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GTE_TIME
+msgid "On or After (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST
+msgid "First Value"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NULL
+msgid "Is NULL"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_YEAR_TRUNC
+msgid "Year"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LIKE
+msgid "Contains Matching substring"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_ROUND
+msgid "Round"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_SUM
+msgid "Sum"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_PROVIDE_FOLDER_ALERT
+msgid "Please provide a report folder"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_ILIKE
+msgid "Contains Matching substring (ignore case)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_QUARTERS_AGO
+msgid "Quarters ago"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_NULL
+msgid "Is not NULL"
+msgstr ""
+
+#: reports.js:WIDGET_QUARTERS
+msgid "Quarter(s)"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_PROVIDE_OUTPUT_ALERT
+msgid "Please provide an output folder"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GREATER_THAN
+msgid "Greater than"
+msgstr ""
+
+#: reports.js:FOLDERS_REPORTS
+msgid "Reports"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_UPPER
+msgid "Upper case"
+msgstr ""
+
+#: reports.js:WIDGET_DAYS
+msgid "Day(s)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GT_EQUAL
+msgid "Greater than or equal to"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_SELECT
+msgid "Select"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_SELECT_ITEM
+msgid "Please select an item from the list"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_HOD
+msgid "Hour of day"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_NULL_BLANK
+msgid "Is not NULL or Blank"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_WOY
+msgid "Week of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_LOWER
+msgid "Lower case"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_INT
+msgid "Drop trailing decimals"
+msgstr ""
+
+#: reports.js:FOLDERS_TEMPLATES
+msgid "Templates"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_IN
+msgid "In list"
+msgstr ""
+
+#: reports.js:WIDGET_RELATIVE_DATE
+msgid "Relative Date"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LESS_THAN
+msgid "Less than"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DAY_NAME
+msgid "Day Name"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_BETWEEN
+msgid "Not between"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MOY
+msgid "Month of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_AGE
+msgid "Age"
+msgstr ""
+
+#: reports.js:WIDGET_REAL_DATE
+msgid "Real Date"
+msgstr ""
+
+#: reports.js:FOLDERS_TEMPLATE
+msgid "Template"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTH_TRUNC
+msgid "Year + Month"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_OUTPUT_FOLDERS
+msgid "Output Folders"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_QOY
+msgid "Quarter of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_HOUR_TRUNC
+msgid "Hour"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_CHANGE_FOLDERS
+msgid "Change Folders"
+msgstr ""
+
Deleted: branches/rel_1_4/build/i18n/po/fr-CA/conify.aou.po
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.aou.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.aou.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,129 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: aou.js:SUCCESS_SAVING_PHYSICAL
-msgid "Saved changes to the Physical Address of ${0}"
-msgstr "Saved changes to the Physical Address of ${0}"
-
-#: aou.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching organizational unit type data"
-msgstr "Problem fetching organizational unit type data"
-
-#: aou.js:ERROR_FETCHING_PHYSICAL
-msgid "Problem fetching Physical Address for ${0}"
-msgstr "Problem fetching Physical Address for ${0}"
-
-#: aou.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: aou.js:LABEL_NEW_BRANCH
-msgid "New Branch"
-msgstr "New Branch"
-
-#: aou.js:ERROR_FETCHING_HOURS
-msgid "Problem fetching hours of operation for ${0}"
-msgstr "Problem fetching hours of operation for ${0}"
-
-#: aou.js:ERROR_FETCHING_ILL
-msgid "Problem fetching ILL Address for ${0}"
-msgstr "Problem fetching ILL Address for ${0}"
-
-#: aou.js:SUCCESS_CREATING_CHILD
-msgid "New child Organizational Unit created for ${0}"
-msgstr "New child Organizational Unit created for ${0}"
-
-#: aou.js:SUCCESS_SAVING_HOO
-msgid "Hours of Operation updated for ${0}"
-msgstr "Hours of Operation updated for ${0}"
-
-#: aou.js:ERROR_DELETING_LAST
-msgid "Cannot delete ${0}, you need at least one."
-msgstr "Cannot delete ${0}, you need at least one."
-
-#: aou.js:ERROR_SAVING_HOO
-msgid "Problem saving Hours of Operation data for ${0}"
-msgstr "Problem saving Hours of Operation data for ${0}"
-
-#: aou.js:ERROR_SAVING_PHYSICAL
-msgid "Problem saving Physical Address data for ${0}"
-msgstr "Problem saving Physical Address data for ${0}"
-
-#: aou.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
-
-#: aou.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: aou.js:SUCCESS_SAVING_MAILING
-msgid "Saved changes to the Mailing Address of ${0}"
-msgstr "Saved changes to the Mailing Address of ${0}"
-
-#: aou.js:ERROR_FETCHING_MAILING
-msgid "Problem fetching Mailing Address for ${0}"
-msgstr "Problem fetching Mailing Address for ${0}"
-
-#: aou.js:ERROR_FETCHING_ORGS
-msgid "Problem fetching organizational unit data"
-msgstr "Problem fetching organizational unit data"
-
-#: aou.js:SUCCESS_SAVING_HOLDS
-msgid "Saved changes to the Holds Address of ${0}"
-msgstr "Saved changes to the Holds Address of ${0}"
-
-#: aou.js:SUCCESS_SAVING_ILL
-msgid "Saved changes to the ILL Address of ${0}"
-msgstr "Saved changes to the ILL Address of ${0}"
-
-#: aou.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: aou.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: aou.js:ERROR_CREATING_CHILD
-msgid "Problem creating child Organizational Unit"
-msgstr "Problem creating child Organizational Unit"
-
-#: aou.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: aou.js:ERROR_ORPHANS
-msgid "Cannot delete ${0}, ${1} subordinates still exist."
-msgstr "Cannot delete ${0}, ${1} subordinates still exist."
-
-#: aou.js:ERROR_SAVING_HOLDS
-msgid "Problem saving Holds Address data for ${0}"
-msgstr "Problem saving Holds Address data for ${0}"
-
-#: aou.js:ERROR_FETCHING_HOLDS
-msgid "Problem fetching Holds Address for ${0}"
-msgstr "Problem fetching Holds Address for ${0}"
-
-#: aou.js:ERROR_SAVING_MAILING
-msgid "Problem saving Mailing Address data for ${0}"
-msgstr "Problem saving Mailing Address data for ${0}"
-
-#: aou.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: aou.js:ERROR_SAVING_ILL
-msgid "Problem saving ILL Address data for ${0}"
-msgstr "Problem saving ILL Address data for ${0}"
Deleted: branches/rel_1_4/build/i18n/po/fr-CA/conify.aout.po
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.aout.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.aout.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,69 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: aout.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching organization types"
-msgstr "Problem fetching organization types"
-
-#: aout.js:SUCCESS_SAVING_DATA
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: aout.js:LABEL_NEW_TYPE
-msgid "New Type"
-msgstr "New Type"
-
-#: aout.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: aout.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: aout.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: aout.js:SUCCESS_CREATING_CHILD
-msgid "New child Organization Type created for ${0}"
-msgstr "New child Organization Type created for ${0}"
-
-#: aout.js:ERROR_CREATING_CHILD
-msgid "Problem creating child Organization Type"
-msgstr "Problem creating child Organization Type"
-
-#: aout.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: aout.js:CONFIRM_UNSAVED_CHANGES
-msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
-
-#: aout.js:ERROR_ORPHANS
-msgid "Cannot delete ${0}; ${1} subordinates still exist."
-msgstr "Cannot delete ${0}; ${1} subordinates still exist."
-
-#: aout.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: aout.js:ERROR_CREATING_CHILD_METHOD
-msgid "Problem calling method to create child Organization Type"
-msgstr "Problem calling method to create child Organization Type"
-
-#: aout.js:ERROR_DELETING_LAST
-msgid "Cannot delete ${0}. You need at least one organization type."
-msgstr "Cannot delete ${0}. You need at least one organization type."
Deleted: branches/rel_1_4/build/i18n/po/fr-CA/conify.cam.po
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.cam.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.cam.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,65 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: cam.js:SUCCESS_CREATING_CODE
-msgid "New ${0} ${1} created"
-msgstr "New ${0} ${1} created"
-
-#: cam.js:LABEL_VALUE
-msgid "Value"
-msgstr "Value"
-
-#: cam.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new ${0}"
-msgstr "Problem calling method to create new ${0}"
-
-#: cam.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: cam.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0} ${1}"
-msgstr "Problem saving data for ${0} ${1}"
-
-#: cam.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
-
-#: cam.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: cam.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: cam.js:LABEL_TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: cam.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: cam.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: cam.js:LABEL_DESCRIPTION
-msgid "Description"
-msgstr "Description"
-
-#: cam.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
Deleted: branches/rel_1_4/build/i18n/po/fr-CA/conify.ccs.po
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.ccs.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.ccs.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,73 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: ccs.js:NAME
-msgid "Name"
-msgstr "Name"
-
-#: ccs.js:HOLDABLE
-msgid "Holdable"
-msgstr "Holdable"
-
-#: ccs.js:ERROR_FETCHING_STATUSES
-msgid "Problem fetching statuses"
-msgstr "Problem fetching statuses"
-
-#: ccs.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: ccs.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new copy status"
-msgstr "Problem calling method to create new copy status"
-
-#: ccs.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
-
-#: ccs.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: ccs.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: ccs.js:SUCCESS_CREATING_STATUS
-msgid "New ${0} status created"
-msgstr "New ${0} status created"
-
-#: ccs.js:TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: ccs.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: ccs.js:ERROR_CREATING_STATUS
-msgid "Problem creating new Status"
-msgstr "Problem creating new Status"
-
-#: ccs.js:ID
-msgid "ID"
-msgstr "ID"
-
-#: ccs.js:OPAC_VISIBLE
-msgid "OPAC Visible"
-msgstr "OPAC Visible"
-
-#: ccs.js:ERROR_SAVING_STATUS
-msgid "Problem saving ${0}"
-msgstr "Problem saving ${0}"
Copied: branches/rel_1_4/build/i18n/po/fr-CA/conify.js.po (from rev 11096, trunk/build/i18n/po/fr-CA/conify.js.po)
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.js.po (rev 0)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.js.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,317 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-11-07 15:35:55-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+
+#: conify.js:SUCCESS_SAVING_PHYSICAL
+msgid "Saved changes to the Physical Address of ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_AOU
+msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PHYSICAL
+msgid "Problem fetching Physical Address for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_PERM_MAP
+msgid "Problem creating new Permission Map"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CODE
+msgid "New ${0} ${1} created"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_CCS
+msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_HOO
+msgid "Hours of Operation updated for ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_PPL
+msgid "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_ILL
+msgid "Problem fetching ILL Address for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_TRANSLATION
+msgid "Translation"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PERMS
+msgid "Problem fetching perms"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_DATA
+msgid "Problem saving data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_GROUP
+msgid "New Group"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_LAST_AOUT
+msgid "Cannot delete ${0}. You need at least one organization type."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_HOURS
+msgid "Problem fetching hours of operation for ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_CAM
+msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_AOUT
+msgid "Problem creating child organization type"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_PERMISSION
+msgid "Problem creating new Permission"
+msgstr ""
+
+#: conify.js:LABEL_DESCRIPTION
+msgid "Description"
+msgstr ""
+
+#: conify.js:LABEL_DEPTH
+msgid "Depth"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_AOU
+msgid "Problem creating child organizational unit"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVE_PERM
+msgid "Saved permission changes to ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_HOO
+msgid "Problem saving Hours of Operation data for ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CHILD_AOUT
+msgid "New child Organization Type created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PPL
+msgid "Problem calling method to create new permission"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_PGT
+msgid "There are unsaved modified permission maps. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ID
+msgid "ID"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_PERM_MAPPING
+msgid "Problem deleting permission mapping ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PERM_MAPS
+msgid "Problem fetching perm maps"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_DATA_CAM
+msgid "Problem saving data for ${0} ${1}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PERM_MAP
+msgid "Problem calling method to create new permission map"
+msgstr ""
+
+#: conify.js:CONFIRM_UNSAVED_CHANGES
+msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_SAVING_STATUS
+msgid "Problem saving ${0}"
+msgstr ""
+
+#: conify.js:OPAC_VISIBLE
+msgid "OPAC Visible"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_MAILING
+msgid "Problem fetching Mailing Address for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_ORGS
+msgid "Problem fetching organizational unit data"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PGT
+msgid "Problem calling method to create child Group"
+msgstr ""
+
+#: conify.js:SUCCESS_DELETED_PERM_MAP
+msgid "Permission mapping deleted"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_HOLDS
+msgid "Saved changes to the Holds Address of ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVE
+msgid "Saved changes to ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_ILL
+msgid "Saved changes to the ILL Address of ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_STATUSES
+msgid "Problem fetching statuses"
+msgstr ""
+
+#: conify.js:ERROR_DELETING
+msgid "Problem deleting ${0}"
+msgstr ""
+
+#: conify.js:STATUS_EDITING
+msgid "Now editing ${0}"
+msgstr ""
+
+#: conify.js:TRANSLATION
+msgid "Translation"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_TYPES_AOUT
+msgid "Problem fetching organizational unit types"
+msgstr ""
+
+#: conify.js:NAME
+msgid "Name"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_DATA
+msgid "Saved changes to ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_DELETE
+msgid "Are you sure you want to delete ${0}?"
+msgstr ""
+
+#: conify.js:ERROR_ORPHANS
+msgid "Cannot delete ${0}, ${1} subordinates still exist."
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_GROUP
+msgid "Problem creating child Group"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_STATUS
+msgid "New ${0} status created"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_LAST_AOU
+msgid "Cannot delete ${0}, you need at least one organization unit."
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_CAM
+msgid "Problem calling method to create new ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_HOLDS
+msgid "Problem saving Holds Address data for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_PERM_DATA
+msgid "Problem saving permission data for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_HOLDS
+msgid "Problem fetching Holds Address for ${0}"
+msgstr ""
+
+#: conify.js:HOLDABLE
+msgid "Holdable"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_MAILING
+msgid "Problem saving Mailing Address data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_TYPE
+msgid "New Type"
+msgstr ""
+
+#: conify.js:LABEL_VALUE
+msgid "Value"
+msgstr ""
+
+#: conify.js:SUCCESS_NEW_PERM_MAP
+msgid "New permission map created"
+msgstr ""
+
+#: conify.js:STATUS_DELETED
+msgid "${0} deleted"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CHILD_AOU
+msgid "New child Organizational Unit created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_CCS
+msgid "Problem calling method to create new copy status"
+msgstr ""
+
+#: conify.js:LABEL_GRANTABLE
+msgid "Grantable"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_ILL
+msgid "Problem saving ILL Address data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_CODE
+msgid "Code"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_MAILING
+msgid "Saved changes to the Mailing Address of ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_BRANCH
+msgid "New Branch"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_GROUPS
+msgid "Problem fetching groups"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_AOUT
+msgid "Problem calling method to create child organization type"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_STATUS
+msgid "Problem creating new Status"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_PERMISSION
+msgid "New ${0} permission created"
+msgstr ""
+
+#: conify.js:SUCCESS_NEW_CHILD_GROUP
+msgid "New child Group created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_PHYSICAL
+msgid "Problem saving Physical Address data for ${0}"
+msgstr ""
Deleted: branches/rel_1_4/build/i18n/po/fr-CA/conify.pgt.po
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.pgt.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.pgt.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,117 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: pgt.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching types"
-msgstr "Problem fetching types"
-
-#: pgt.js:ERROR_CREATING_PERM_MAP
-msgid "Problem creating new Permission Map"
-msgstr "Problem creating new Permission Map"
-
-#: pgt.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create child Group"
-msgstr "Problem calling method to create child Group"
-
-#: pgt.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: pgt.js:LABEL_NEW_GROUP
-msgid "New Group"
-msgstr "New Group"
-
-#: pgt.js:ERROR_FETCHING_PERMS
-msgid "Problem fetching perms"
-msgstr "Problem fetching perms"
-
-#: pgt.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: pgt.js:SUCCESS_NEW_PERM_MAP
-msgid "New permission map created"
-msgstr "New permission map created"
-
-#: pgt.js:ERROR_DELETING_PERM_MAPPING
-msgid "Problem deleting permission mapping ${0}"
-msgstr "Problem deleting permission mapping ${0}"
-
-#: pgt.js:CONFIRM_EXIT
-msgid "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them."
-msgstr "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them."
-
-#: pgt.js:ERROR_FETCHING_PERM_MAPS
-msgid "Problem fetching perm maps"
-msgstr "Problem fetching perm maps"
-
-#: pgt.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: pgt.js:ERROR_CALLING_METHOD_PERM_MAP
-msgid "Problem calling method to create new Permission Map"
-msgstr "Problem calling method to create new Permission Map"
-
-#: pgt.js:LABEL_DEPTH
-msgid "Depth"
-msgstr "Depth"
-
-#: pgt.js:SUCCESS_SAVE_PERM
-msgid "Saved permission changes to ${0}"
-msgstr "Saved permission changes to ${0}"
-
-#: pgt.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: pgt.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: pgt.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: pgt.js:ERROR_CREATING_CHILD_GROUP
-msgid "Problem creating child Group"
-msgstr "Problem creating child Group"
-
-#: pgt.js:SUCCESS_DELETED_PERM_MAP
-msgid "Permission mapping deleted"
-msgstr "Permission mapping deleted"
-
-#: pgt.js:ERROR_SAVING_PERM_DATA
-msgid "Problem saving permission data for ${0}"
-msgstr "Problem saving permission data for ${0}"
-
-#: pgt.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: pgt.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: pgt.js:LABEL_GRANTABLE
-msgid "Grantable"
-msgstr "Grantable"
-
-#: pgt.js:ERROR_FETCHING_GROUPS
-msgid "Problem fetching groups"
-msgstr "Problem fetching groups"
-
-#: pgt.js:SUCCESS_NEW_CHILD_GROUP
-msgid "New child Group created for ${0}"
-msgstr "New child Group created for ${0}"
Deleted: branches/rel_1_4/build/i18n/po/fr-CA/conify.ppl.po
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/conify.ppl.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/fr-CA/conify.ppl.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,65 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: ppl.js:LABEL_DESCRIPTION
-msgid "Description"
-msgstr "Description"
-
-#: ppl.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: ppl.js:ERROR_FETCHING_PERMS
-msgid "Problem fetching perms"
-msgstr "Problem fetching perms"
-
-#: ppl.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: ppl.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new Permission"
-msgstr "Problem calling method to create new Permission"
-
-#: ppl.js:CONFIRM_EXIT
-msgid "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them."
-msgstr "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them."
-
-#: ppl.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: ppl.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: ppl.js:LABEL_TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: ppl.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: ppl.js:SUCCESS_CREATING_PERMISSION
-msgid "New ${0} permission created"
-msgstr "New ${0} permission created"
-
-#: ppl.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: ppl.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
Copied: branches/rel_1_4/build/i18n/po/fr-CA/reports.js.po (from rev 11096, trunk/build/i18n/po/fr-CA/reports.js.po)
===================================================================
--- branches/rel_1_4/build/i18n/po/fr-CA/reports.js.po (rev 0)
+++ branches/rel_1_4/build/i18n/po/fr-CA/reports.js.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,311 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-11-07 15:35:55-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+
+#: reports.js:RPT_BUILDER_CONFIRM_SAVE
+msgid "Name : ${0}\n"
+"Description: ${1}\n"
+"Save Template?"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOY
+msgid "Day of Year"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_ENTER_NAME_ALERT
+msgid "Please enter a report name"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_BETWEEN
+msgid "Between"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST5
+msgid "First 5 characters (for US ZIP code)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NULL_BLANK
+msgid "Is NULL or Blank"
+msgstr ""
+
+#: reports.js:FOLDERS_REPORT
+msgid "Report"
+msgstr ""
+
+#: reports.js:WIDGET_YEARS
+msgid "Year(s)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOW
+msgid "Day of Week"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LT_EQUAL
+msgid "Less than or equal to"
+msgstr ""
+
+#: reports.js:WIDGET_MONTHS
+msgid "Month(s)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_COUNT
+msgid "Count"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_INVALID_DATE_ALERT
+msgid "invalid start date - YYYY-MM-DD"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LT_TIME
+msgid "Before (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOM
+msgid "Day of Month"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_NONE
+msgid "None"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTH_NAME
+msgid "Month Name'"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MAX
+msgid "Max"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_IN
+msgid "Not in list"
+msgstr ""
+
+#: reports.js:FOLDERS_OUTPUT
+msgid "Output"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_LAST
+msgid "Last Value"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GT_TIME
+msgid "After (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTHS_AGO
+msgid "Months ago"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_EQUALS
+msgid "Equals"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST_WORD
+msgid "First contiguous non-space string"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_ALL
+msgid "All"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_RAW_DATA
+msgid "Raw Data"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_COUNT_DISTINCT
+msgid "Count Distinct"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_REPORT_OUTPUT
+msgid "Report Output: ${0}"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DATE
+msgid "Date"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_AVERAGE
+msgid "Average"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MIN
+msgid "Min"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_REPORT_FOLDERS
+msgid "Report Folders"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LSE_TIME
+msgid "On or Before (Date/Time)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GTE_TIME
+msgid "On or After (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST
+msgid "First Value"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NULL
+msgid "Is NULL"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_YEAR_TRUNC
+msgid "Year"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LIKE
+msgid "Contains Matching substring"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_ROUND
+msgid "Round"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_SUM
+msgid "Sum"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_PROVIDE_FOLDER_ALERT
+msgid "Please provide a report folder"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_ILIKE
+msgid "Contains Matching substring (ignore case)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_QUARTERS_AGO
+msgid "Quarters ago"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_NULL
+msgid "Is not NULL"
+msgstr ""
+
+#: reports.js:WIDGET_QUARTERS
+msgid "Quarter(s)"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_PROVIDE_OUTPUT_ALERT
+msgid "Please provide an output folder"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GREATER_THAN
+msgid "Greater than"
+msgstr ""
+
+#: reports.js:FOLDERS_REPORTS
+msgid "Reports"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_UPPER
+msgid "Upper case"
+msgstr ""
+
+#: reports.js:WIDGET_DAYS
+msgid "Day(s)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GT_EQUAL
+msgid "Greater than or equal to"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_SELECT
+msgid "Select"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_SELECT_ITEM
+msgid "Please select an item from the list"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_HOD
+msgid "Hour of day"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_NULL_BLANK
+msgid "Is not NULL or Blank"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_WOY
+msgid "Week of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_LOWER
+msgid "Lower case"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_INT
+msgid "Drop trailing decimals"
+msgstr ""
+
+#: reports.js:FOLDERS_TEMPLATES
+msgid "Templates"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_IN
+msgid "In list"
+msgstr ""
+
+#: reports.js:WIDGET_RELATIVE_DATE
+msgid "Relative Date"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LESS_THAN
+msgid "Less than"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DAY_NAME
+msgid "Day Name"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_BETWEEN
+msgid "Not between"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MOY
+msgid "Month of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_AGE
+msgid "Age"
+msgstr ""
+
+#: reports.js:WIDGET_REAL_DATE
+msgid "Real Date"
+msgstr ""
+
+#: reports.js:FOLDERS_TEMPLATE
+msgid "Template"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTH_TRUNC
+msgid "Year + Month"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_OUTPUT_FOLDERS
+msgid "Output Folders"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_QOY
+msgid "Quarter of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_HOUR_TRUNC
+msgid "Hour"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_CHANGE_FOLDERS
+msgid "Change Folders"
+msgstr ""
Deleted: branches/rel_1_4/build/i18n/po/hy-AM/conify.aou.po
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.aou.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.aou.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,129 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: aou.js:SUCCESS_SAVING_PHYSICAL
-msgid "Saved changes to the Physical Address of ${0}"
-msgstr "Saved changes to the Physical Address of ${0}"
-
-#: aou.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching organizational unit type data"
-msgstr "Problem fetching organizational unit type data"
-
-#: aou.js:ERROR_FETCHING_PHYSICAL
-msgid "Problem fetching Physical Address for ${0}"
-msgstr "Problem fetching Physical Address for ${0}"
-
-#: aou.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: aou.js:LABEL_NEW_BRANCH
-msgid "New Branch"
-msgstr "New Branch"
-
-#: aou.js:ERROR_FETCHING_HOURS
-msgid "Problem fetching hours of operation for ${0}"
-msgstr "Problem fetching hours of operation for ${0}"
-
-#: aou.js:ERROR_FETCHING_ILL
-msgid "Problem fetching ILL Address for ${0}"
-msgstr "Problem fetching ILL Address for ${0}"
-
-#: aou.js:SUCCESS_CREATING_CHILD
-msgid "New child Organizational Unit created for ${0}"
-msgstr "New child Organizational Unit created for ${0}"
-
-#: aou.js:SUCCESS_SAVING_HOO
-msgid "Hours of Operation updated for ${0}"
-msgstr "Hours of Operation updated for ${0}"
-
-#: aou.js:ERROR_DELETING_LAST
-msgid "Cannot delete ${0}, you need at least one."
-msgstr "Cannot delete ${0}, you need at least one."
-
-#: aou.js:ERROR_SAVING_HOO
-msgid "Problem saving Hours of Operation data for ${0}"
-msgstr "Problem saving Hours of Operation data for ${0}"
-
-#: aou.js:ERROR_SAVING_PHYSICAL
-msgid "Problem saving Physical Address data for ${0}"
-msgstr "Problem saving Physical Address data for ${0}"
-
-#: aou.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
-
-#: aou.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: aou.js:SUCCESS_SAVING_MAILING
-msgid "Saved changes to the Mailing Address of ${0}"
-msgstr "Saved changes to the Mailing Address of ${0}"
-
-#: aou.js:ERROR_FETCHING_MAILING
-msgid "Problem fetching Mailing Address for ${0}"
-msgstr "Problem fetching Mailing Address for ${0}"
-
-#: aou.js:ERROR_FETCHING_ORGS
-msgid "Problem fetching organizational unit data"
-msgstr "Problem fetching organizational unit data"
-
-#: aou.js:SUCCESS_SAVING_HOLDS
-msgid "Saved changes to the Holds Address of ${0}"
-msgstr "Saved changes to the Holds Address of ${0}"
-
-#: aou.js:SUCCESS_SAVING_ILL
-msgid "Saved changes to the ILL Address of ${0}"
-msgstr "Saved changes to the ILL Address of ${0}"
-
-#: aou.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: aou.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: aou.js:ERROR_CREATING_CHILD
-msgid "Problem creating child Organizational Unit"
-msgstr "Problem creating child Organizational Unit"
-
-#: aou.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: aou.js:ERROR_ORPHANS
-msgid "Cannot delete ${0}, ${1} subordinates still exist."
-msgstr "Cannot delete ${0}, ${1} subordinates still exist."
-
-#: aou.js:ERROR_SAVING_HOLDS
-msgid "Problem saving Holds Address data for ${0}"
-msgstr "Problem saving Holds Address data for ${0}"
-
-#: aou.js:ERROR_FETCHING_HOLDS
-msgid "Problem fetching Holds Address for ${0}"
-msgstr "Problem fetching Holds Address for ${0}"
-
-#: aou.js:ERROR_SAVING_MAILING
-msgid "Problem saving Mailing Address data for ${0}"
-msgstr "Problem saving Mailing Address data for ${0}"
-
-#: aou.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: aou.js:ERROR_SAVING_ILL
-msgid "Problem saving ILL Address data for ${0}"
-msgstr "Problem saving ILL Address data for ${0}"
Deleted: branches/rel_1_4/build/i18n/po/hy-AM/conify.aout.po
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.aout.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.aout.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,69 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: aout.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching organization types"
-msgstr "Problem fetching organization types"
-
-#: aout.js:SUCCESS_SAVING_DATA
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: aout.js:LABEL_NEW_TYPE
-msgid "New Type"
-msgstr "New Type"
-
-#: aout.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: aout.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: aout.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: aout.js:SUCCESS_CREATING_CHILD
-msgid "New child Organization Type created for ${0}"
-msgstr "New child Organization Type created for ${0}"
-
-#: aout.js:ERROR_CREATING_CHILD
-msgid "Problem creating child Organization Type"
-msgstr "Problem creating child Organization Type"
-
-#: aout.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: aout.js:CONFIRM_UNSAVED_CHANGES
-msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
-
-#: aout.js:ERROR_ORPHANS
-msgid "Cannot delete ${0}; ${1} subordinates still exist."
-msgstr "Cannot delete ${0}; ${1} subordinates still exist."
-
-#: aout.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: aout.js:ERROR_CREATING_CHILD_METHOD
-msgid "Problem calling method to create child Organization Type"
-msgstr "Problem calling method to create child Organization Type"
-
-#: aout.js:ERROR_DELETING_LAST
-msgid "Cannot delete ${0}. You need at least one organization type."
-msgstr "Cannot delete ${0}. You need at least one organization type."
Deleted: branches/rel_1_4/build/i18n/po/hy-AM/conify.cam.po
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.cam.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.cam.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,65 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: cam.js:SUCCESS_CREATING_CODE
-msgid "New ${0} ${1} created"
-msgstr "New ${0} ${1} created"
-
-#: cam.js:LABEL_VALUE
-msgid "Value"
-msgstr "Value"
-
-#: cam.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new ${0}"
-msgstr "Problem calling method to create new ${0}"
-
-#: cam.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: cam.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0} ${1}"
-msgstr "Problem saving data for ${0} ${1}"
-
-#: cam.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
-
-#: cam.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: cam.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: cam.js:LABEL_TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: cam.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: cam.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: cam.js:LABEL_DESCRIPTION
-msgid "Description"
-msgstr "Description"
-
-#: cam.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
Deleted: branches/rel_1_4/build/i18n/po/hy-AM/conify.ccs.po
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.ccs.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.ccs.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,73 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: ccs.js:NAME
-msgid "Name"
-msgstr "Name"
-
-#: ccs.js:HOLDABLE
-msgid "Holdable"
-msgstr "Holdable"
-
-#: ccs.js:ERROR_FETCHING_STATUSES
-msgid "Problem fetching statuses"
-msgstr "Problem fetching statuses"
-
-#: ccs.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: ccs.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new copy status"
-msgstr "Problem calling method to create new copy status"
-
-#: ccs.js:CONFIRM_EXIT
-msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
-msgstr "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
-
-#: ccs.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: ccs.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: ccs.js:SUCCESS_CREATING_STATUS
-msgid "New ${0} status created"
-msgstr "New ${0} status created"
-
-#: ccs.js:TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: ccs.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: ccs.js:ERROR_CREATING_STATUS
-msgid "Problem creating new Status"
-msgstr "Problem creating new Status"
-
-#: ccs.js:ID
-msgid "ID"
-msgstr "ID"
-
-#: ccs.js:OPAC_VISIBLE
-msgid "OPAC Visible"
-msgstr "OPAC Visible"
-
-#: ccs.js:ERROR_SAVING_STATUS
-msgid "Problem saving ${0}"
-msgstr "Problem saving ${0}"
Copied: branches/rel_1_4/build/i18n/po/hy-AM/conify.js.po (from rev 11096, trunk/build/i18n/po/hy-AM/conify.js.po)
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.js.po (rev 0)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.js.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,317 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-11-07 15:35:55-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+
+#: conify.js:SUCCESS_SAVING_PHYSICAL
+msgid "Saved changes to the Physical Address of ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_AOU
+msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PHYSICAL
+msgid "Problem fetching Physical Address for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_PERM_MAP
+msgid "Problem creating new Permission Map"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CODE
+msgid "New ${0} ${1} created"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_CCS
+msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_HOO
+msgid "Hours of Operation updated for ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_PPL
+msgid "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_ILL
+msgid "Problem fetching ILL Address for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_TRANSLATION
+msgid "Translation"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PERMS
+msgid "Problem fetching perms"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_DATA
+msgid "Problem saving data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_GROUP
+msgid "New Group"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_LAST_AOUT
+msgid "Cannot delete ${0}. You need at least one organization type."
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_HOURS
+msgid "Problem fetching hours of operation for ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_CAM
+msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_AOUT
+msgid "Problem creating child organization type"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_PERMISSION
+msgid "Problem creating new Permission"
+msgstr ""
+
+#: conify.js:LABEL_DESCRIPTION
+msgid "Description"
+msgstr ""
+
+#: conify.js:LABEL_DEPTH
+msgid "Depth"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_AOU
+msgid "Problem creating child organizational unit"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVE_PERM
+msgid "Saved permission changes to ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_HOO
+msgid "Problem saving Hours of Operation data for ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CHILD_AOUT
+msgid "New child Organization Type created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PPL
+msgid "Problem calling method to create new permission"
+msgstr ""
+
+#: conify.js:CONFIRM_EXIT_PGT
+msgid "There are unsaved modified permission maps. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ID
+msgid "ID"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_PERM_MAPPING
+msgid "Problem deleting permission mapping ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_PERM_MAPS
+msgid "Problem fetching perm maps"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_DATA_CAM
+msgid "Problem saving data for ${0} ${1}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PERM_MAP
+msgid "Problem calling method to create new permission map"
+msgstr ""
+
+#: conify.js:CONFIRM_UNSAVED_CHANGES
+msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
+msgstr ""
+
+#: conify.js:ERROR_SAVING_STATUS
+msgid "Problem saving ${0}"
+msgstr ""
+
+#: conify.js:OPAC_VISIBLE
+msgid "OPAC Visible"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_MAILING
+msgid "Problem fetching Mailing Address for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_ORGS
+msgid "Problem fetching organizational unit data"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_PGT
+msgid "Problem calling method to create child Group"
+msgstr ""
+
+#: conify.js:SUCCESS_DELETED_PERM_MAP
+msgid "Permission mapping deleted"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_HOLDS
+msgid "Saved changes to the Holds Address of ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVE
+msgid "Saved changes to ${0}"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_ILL
+msgid "Saved changes to the ILL Address of ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_STATUSES
+msgid "Problem fetching statuses"
+msgstr ""
+
+#: conify.js:ERROR_DELETING
+msgid "Problem deleting ${0}"
+msgstr ""
+
+#: conify.js:STATUS_EDITING
+msgid "Now editing ${0}"
+msgstr ""
+
+#: conify.js:TRANSLATION
+msgid "Translation"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_TYPES_AOUT
+msgid "Problem fetching organizational unit types"
+msgstr ""
+
+#: conify.js:NAME
+msgid "Name"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_DATA
+msgid "Saved changes to ${0}"
+msgstr ""
+
+#: conify.js:CONFIRM_DELETE
+msgid "Are you sure you want to delete ${0}?"
+msgstr ""
+
+#: conify.js:ERROR_ORPHANS
+msgid "Cannot delete ${0}, ${1} subordinates still exist."
+msgstr ""
+
+#: conify.js:ERROR_CREATING_CHILD_GROUP
+msgid "Problem creating child Group"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_STATUS
+msgid "New ${0} status created"
+msgstr ""
+
+#: conify.js:ERROR_DELETING_LAST_AOU
+msgid "Cannot delete ${0}, you need at least one organization unit."
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_CAM
+msgid "Problem calling method to create new ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_HOLDS
+msgid "Problem saving Holds Address data for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_PERM_DATA
+msgid "Problem saving permission data for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_HOLDS
+msgid "Problem fetching Holds Address for ${0}"
+msgstr ""
+
+#: conify.js:HOLDABLE
+msgid "Holdable"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_MAILING
+msgid "Problem saving Mailing Address data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_TYPE
+msgid "New Type"
+msgstr ""
+
+#: conify.js:LABEL_VALUE
+msgid "Value"
+msgstr ""
+
+#: conify.js:SUCCESS_NEW_PERM_MAP
+msgid "New permission map created"
+msgstr ""
+
+#: conify.js:STATUS_DELETED
+msgid "${0} deleted"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_CHILD_AOU
+msgid "New child Organizational Unit created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_CCS
+msgid "Problem calling method to create new copy status"
+msgstr ""
+
+#: conify.js:LABEL_GRANTABLE
+msgid "Grantable"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_ILL
+msgid "Problem saving ILL Address data for ${0}"
+msgstr ""
+
+#: conify.js:LABEL_CODE
+msgid "Code"
+msgstr ""
+
+#: conify.js:SUCCESS_SAVING_MAILING
+msgid "Saved changes to the Mailing Address of ${0}"
+msgstr ""
+
+#: conify.js:LABEL_NEW_BRANCH
+msgid "New Branch"
+msgstr ""
+
+#: conify.js:ERROR_FETCHING_GROUPS
+msgid "Problem fetching groups"
+msgstr ""
+
+#: conify.js:ERROR_CALLING_METHOD_AOUT
+msgid "Problem calling method to create child organization type"
+msgstr ""
+
+#: conify.js:ERROR_CREATING_STATUS
+msgid "Problem creating new Status"
+msgstr ""
+
+#: conify.js:SUCCESS_CREATING_PERMISSION
+msgid "New ${0} permission created"
+msgstr ""
+
+#: conify.js:SUCCESS_NEW_CHILD_GROUP
+msgid "New child Group created for ${0}"
+msgstr ""
+
+#: conify.js:ERROR_SAVING_PHYSICAL
+msgid "Problem saving Physical Address data for ${0}"
+msgstr ""
Deleted: branches/rel_1_4/build/i18n/po/hy-AM/conify.pgt.po
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.pgt.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.pgt.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,117 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: pgt.js:ERROR_FETCHING_TYPES
-msgid "Problem fetching types"
-msgstr "Problem fetching types"
-
-#: pgt.js:ERROR_CREATING_PERM_MAP
-msgid "Problem creating new Permission Map"
-msgstr "Problem creating new Permission Map"
-
-#: pgt.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create child Group"
-msgstr "Problem calling method to create child Group"
-
-#: pgt.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
-
-#: pgt.js:LABEL_NEW_GROUP
-msgid "New Group"
-msgstr "New Group"
-
-#: pgt.js:ERROR_FETCHING_PERMS
-msgid "Problem fetching perms"
-msgstr "Problem fetching perms"
-
-#: pgt.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: pgt.js:SUCCESS_NEW_PERM_MAP
-msgid "New permission map created"
-msgstr "New permission map created"
-
-#: pgt.js:ERROR_DELETING_PERM_MAPPING
-msgid "Problem deleting permission mapping ${0}"
-msgstr "Problem deleting permission mapping ${0}"
-
-#: pgt.js:CONFIRM_EXIT
-msgid "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them."
-msgstr "There are unsaved modified Permission Maps! OK to save these changes, Cancel to abandon them."
-
-#: pgt.js:ERROR_FETCHING_PERM_MAPS
-msgid "Problem fetching perm maps"
-msgstr "Problem fetching perm maps"
-
-#: pgt.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: pgt.js:ERROR_CALLING_METHOD_PERM_MAP
-msgid "Problem calling method to create new Permission Map"
-msgstr "Problem calling method to create new Permission Map"
-
-#: pgt.js:LABEL_DEPTH
-msgid "Depth"
-msgstr "Depth"
-
-#: pgt.js:SUCCESS_SAVE_PERM
-msgid "Saved permission changes to ${0}"
-msgstr "Saved permission changes to ${0}"
-
-#: pgt.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: pgt.js:STATUS_EDITING
-msgid "Now editing ${0}"
-msgstr "Now editing ${0}"
-
-#: pgt.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: pgt.js:ERROR_CREATING_CHILD_GROUP
-msgid "Problem creating child Group"
-msgstr "Problem creating child Group"
-
-#: pgt.js:SUCCESS_DELETED_PERM_MAP
-msgid "Permission mapping deleted"
-msgstr "Permission mapping deleted"
-
-#: pgt.js:ERROR_SAVING_PERM_DATA
-msgid "Problem saving permission data for ${0}"
-msgstr "Problem saving permission data for ${0}"
-
-#: pgt.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: pgt.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: pgt.js:LABEL_GRANTABLE
-msgid "Grantable"
-msgstr "Grantable"
-
-#: pgt.js:ERROR_FETCHING_GROUPS
-msgid "Problem fetching groups"
-msgstr "Problem fetching groups"
-
-#: pgt.js:SUCCESS_NEW_CHILD_GROUP
-msgid "New child Group created for ${0}"
-msgstr "New child Group created for ${0}"
Deleted: branches/rel_1_4/build/i18n/po/hy-AM/conify.ppl.po
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/conify.ppl.po 2008-11-07 20:52:24 UTC (rev 11096)
+++ branches/rel_1_4/build/i18n/po/hy-AM/conify.ppl.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -1,65 +0,0 @@
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-11-05 23:00:19-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.1.1\n"
-
-#: ppl.js:LABEL_DESCRIPTION
-msgid "Description"
-msgstr "Description"
-
-#: ppl.js:SUCCESS_SAVE
-msgid "Saved changes to ${0}"
-msgstr "Saved changes to ${0}"
-
-#: ppl.js:ERROR_FETCHING_PERMS
-msgid "Problem fetching perms"
-msgstr "Problem fetching perms"
-
-#: ppl.js:ERROR_DELETING
-msgid "Problem deleting ${0}"
-msgstr "Problem deleting ${0}"
-
-#: ppl.js:ERROR_CALLING_METHOD
-msgid "Problem calling method to create new Permission"
-msgstr "Problem calling method to create new Permission"
-
-#: ppl.js:CONFIRM_EXIT
-msgid "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them."
-msgstr "There are unsaved modified Permissions! OK to save these changes, Cancel to abandon them."
-
-#: ppl.js:LABEL_CODE
-msgid "Code"
-msgstr "Code"
-
-#: ppl.js:STATUS_DELETED
-msgid "${0} deleted"
-msgstr "${0} deleted"
-
-#: ppl.js:LABEL_TRANSLATION
-msgid "Translation"
-msgstr "Translation"
-
-#: ppl.js:CONFIRM_DELETE
-msgid "Are you sure you want to delete ${0}?"
-msgstr "Are you sure you want to delete ${0}?"
-
-#: ppl.js:SUCCESS_CREATING_PERMISSION
-msgid "New ${0} permission created"
-msgstr "New ${0} permission created"
-
-#: ppl.js:ERROR_CREATING_PERMISSION
-msgid "Problem creating new Permission"
-msgstr "Problem creating new Permission"
-
-#: ppl.js:ERROR_SAVING_DATA
-msgid "Problem saving data for ${0}"
-msgstr "Problem saving data for ${0}"
Copied: branches/rel_1_4/build/i18n/po/hy-AM/reports.js.po (from rev 11096, trunk/build/i18n/po/hy-AM/reports.js.po)
===================================================================
--- branches/rel_1_4/build/i18n/po/hy-AM/reports.js.po (rev 0)
+++ branches/rel_1_4/build/i18n/po/hy-AM/reports.js.po 2008-11-07 20:59:34 UTC (rev 11097)
@@ -0,0 +1,311 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-11-07 15:35:55-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+
+#: reports.js:RPT_BUILDER_CONFIRM_SAVE
+msgid "Name : ${0}\n"
+"Description: ${1}\n"
+"Save Template?"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOY
+msgid "Day of Year"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_ENTER_NAME_ALERT
+msgid "Please enter a report name"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_BETWEEN
+msgid "Between"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST5
+msgid "First 5 characters (for US ZIP code)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NULL_BLANK
+msgid "Is NULL or Blank"
+msgstr ""
+
+#: reports.js:FOLDERS_REPORT
+msgid "Report"
+msgstr ""
+
+#: reports.js:WIDGET_YEARS
+msgid "Year(s)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOW
+msgid "Day of Week"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LT_EQUAL
+msgid "Less than or equal to"
+msgstr ""
+
+#: reports.js:WIDGET_MONTHS
+msgid "Month(s)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_COUNT
+msgid "Count"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_INVALID_DATE_ALERT
+msgid "invalid start date - YYYY-MM-DD"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LT_TIME
+msgid "Before (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DOM
+msgid "Day of Month"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_NONE
+msgid "None"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTH_NAME
+msgid "Month Name'"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MAX
+msgid "Max"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_IN
+msgid "Not in list"
+msgstr ""
+
+#: reports.js:FOLDERS_OUTPUT
+msgid "Output"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_LAST
+msgid "Last Value"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GT_TIME
+msgid "After (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTHS_AGO
+msgid "Months ago"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_EQUALS
+msgid "Equals"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST_WORD
+msgid "First contiguous non-space string"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_ALL
+msgid "All"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_RAW_DATA
+msgid "Raw Data"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_COUNT_DISTINCT
+msgid "Count Distinct"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_REPORT_OUTPUT
+msgid "Report Output: ${0}"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DATE
+msgid "Date"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_AVERAGE
+msgid "Average"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MIN
+msgid "Min"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_REPORT_FOLDERS
+msgid "Report Folders"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LSE_TIME
+msgid "On or Before (Date/Time)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GTE_TIME
+msgid "On or After (Date/Time)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_FIRST
+msgid "First Value"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NULL
+msgid "Is NULL"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_YEAR_TRUNC
+msgid "Year"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LIKE
+msgid "Contains Matching substring"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_ROUND
+msgid "Round"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_SUM
+msgid "Sum"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_PROVIDE_FOLDER_ALERT
+msgid "Please provide a report folder"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_ILIKE
+msgid "Contains Matching substring (ignore case)"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_QUARTERS_AGO
+msgid "Quarters ago"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_NULL
+msgid "Is not NULL"
+msgstr ""
+
+#: reports.js:WIDGET_QUARTERS
+msgid "Quarter(s)"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_PROVIDE_OUTPUT_ALERT
+msgid "Please provide an output folder"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GREATER_THAN
+msgid "Greater than"
+msgstr ""
+
+#: reports.js:FOLDERS_REPORTS
+msgid "Reports"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_UPPER
+msgid "Upper case"
+msgstr ""
+
+#: reports.js:WIDGET_DAYS
+msgid "Day(s)"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_GT_EQUAL
+msgid "Greater than or equal to"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_COLNAME_SELECT
+msgid "Select"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_SELECT_ITEM
+msgid "Please select an item from the list"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_HOD
+msgid "Hour of day"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_NULL_BLANK
+msgid "Is not NULL or Blank"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_WOY
+msgid "Week of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_LOWER
+msgid "Lower case"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_INT
+msgid "Drop trailing decimals"
+msgstr ""
+
+#: reports.js:FOLDERS_TEMPLATES
+msgid "Templates"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_IN
+msgid "In list"
+msgstr ""
+
+#: reports.js:WIDGET_RELATIVE_DATE
+msgid "Relative Date"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_LESS_THAN
+msgid "Less than"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_DAY_NAME
+msgid "Day Name"
+msgstr ""
+
+#: reports.js:FILTERS_LABEL_NOT_BETWEEN
+msgid "Not between"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MOY
+msgid "Month of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_AGE
+msgid "Age"
+msgstr ""
+
+#: reports.js:WIDGET_REAL_DATE
+msgid "Real Date"
+msgstr ""
+
+#: reports.js:FOLDERS_TEMPLATE
+msgid "Template"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_MONTH_TRUNC
+msgid "Year + Month"
+msgstr ""
+
+#: reports.js:REPORT_EDITOR_OUTPUT_FOLDERS
+msgid "Output Folders"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_QOY
+msgid "Quarter of Year"
+msgstr ""
+
+#: reports.js:TFORMS_LABEL_HOUR_TRUNC
+msgid "Hour"
+msgstr ""
+
+#: reports.js:FOLDER_WINDOW_CHANGE_FOLDERS
+msgid "Change Folders"
+msgstr ""
More information about the open-ils-commits
mailing list