"INVOICE_COPY_COUNT_INFO": "Copies received on this invoice: ${0} out of ${1}.",
"INVOICE_IDENT_COLLIDE": "There is already an invoice in the system with the given combination of 'Vendor Invoice ID' and 'Provider,' which is not allowed.",
"NEW_INVOICE": "New Invoice",
+ "ACQ_SEARCH_CLASS_ABBR_jub": "LI",
+ "ACQ_SEARCH_CLASS_ABBR_acqpl": "SL",
+ "ACQ_SEARCH_CLASS_ABBR_acqpo": "PO",
+ "ACQ_SEARCH_CLASS_ABBR_acqinv": "I",
+ "ACQ_SEARCH_CLASS_ABBR_acqlid": "LID",
+ "ACQ_SEARCH_CLASS_ABBR_acqlia": "LIA",
"NO_LI_GENERAL" : "You have not selected any (suitable) line items."
}
/* Create abbreviations for class names to make field categories
* more readable in field selector control. */
- this._abbreviate = function(s) {
+ this._abbreviate = function(t, s) {
+ var ca = "ACQ_SEARCH_CLASS_ABBR_" + t;
+ if (localeStrings[ca]) return localeStrings[ca];
var last, result;
for (var i = 0; i < s.length; i++) {
if (s[i] != " ") {
var optgroup = dojo.create(
"optgroup", {"value": "", "label": this.terms[hint].__label}
);
- var prefix = this._abbreviate(this.terms[hint].__label);
+ var prefix = this._abbreviate(hint, this.terms[hint].__label);
for (var field in this.terms[hint]) {
if (!/^__/.test(field)) {