allow from all
</Location>
-
+# ----------------------------------------------------------------------------------
+# OpenSRF-over-HTTP translator
+# (http://open-ils.org/dokuwiki/doku.php?id=opensrf_over_http)
+# ----------------------------------------------------------------------------------
+<Location /osrf_http_translator>
+ SetHandler osrf_http_translator_module
+ allow from all
+</Location>
+
# ----------------------------------------------------------------------------------
# The exporter lives here
# ----------------------------------------------------------------------------------
<field reporter:label="Max Fine Amount" name="amount" oils_obj:array_position="3" oils_persist:virtual="false" reporter:datatype="money" />
<field reporter:label="Rule ID" name="id" oils_obj:array_position="4" oils_persist:virtual="false" reporter:selector="name" reporter:datatype="id"/>
<field reporter:label="Rule Name" name="name" oils_obj:array_position="5" oils_persist:virtual="false" reporter:datatype="text"/>
+ <field reporter:label="Is Percent" name="is_percent" oils_obj:array_position="6" oils_persist:virtual="false" reporter:datatype="bool"/>
</fields>
<links/>
</class>
@echo "Type control-c to avoid destroying all of the data. Type enter to continue..."
@echo ""
@read X;
- ./extras/import/build-oils-db.sh $(DBDRVR) $(DBHOST) $(DBPORT) $(DBNAME) $(DBUSER) $(DBPW) $(DBVER)
+ ./extras/import/build-oils-db.sh $(DBDRVR) $(DBHOST) $(DBPORT) $(DBNAME) $(DBUSER) $(DBPW)
# -----------------------------------------------------------------------------------
osrfStringArray* classes = osrfHashKeys(idl);
int c_index = 0;
char* classname;
- char* st_tmp;
+ char* st_tmp = NULL;
while ((classname = osrfStringArrayGetString(classes, c_index++))) {
osrfHash* idlClass = oilsIDLFindPath("/%s", classname);
osrfLogDebug(OSRF_LOG_MARK, "Controller list is %s", string_tmp );
if (strlen( controller_list ) > 0) {
- char* st_tmp;
+ char* st_tmp = NULL;
char* _controller_class = strtok_r(controller_list, " ", &st_tmp);
osrfStringArrayAdd(controller, strdup(_controller_class));
osrfLogDebug(OSRF_LOG_MARK, "Link mapping list is %s", string_tmp );
if (strlen( map_list ) > 0) {
- char* st_tmp;
+ char* st_tmp = NULL;
char* _map_class = strtok_r(map_list, " ", &st_tmp);
osrfStringArrayAdd(map, strdup(_map_class));
#!/bin/bash
if [ "_$4" == "_" ]; then
echo "Usage:"
- echo " $0 {Open-ILS-driver} {db-host} {db-port} {db-name} {db-user} {db-password} [db-version]"
+ echo " $0 {Open-ILS-driver} {db-host} {db-port} {db-name} {db-user} {db-password}"
exit 1;
fi
echo "cd $WD/../../sql/$1/;"
cd $WD/../../sql/$1/;
pwd
- ./build-db.sh $2 $3 $4 $5 $6 $7
+ ./build-db.sh $2 $3 $4 $5 $6
)
--- /dev/null
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Getopt::Long;
+use MARC::Record;
+use MARC::Charset;
+use MARC::File::XML;
+use Error qw/:try/;
+
+MARC::Charset->assume_unicode(1);
+MARC::Charset->ignore_errors(1);
+
+binmode(STDIN, ':utf8');
+binmode(STDOUT, ':utf8');
+
+my ($delim, @fields) = (' \| ');
+GetOptions(
+ 'delimiter=s' => \$delim,
+ 'field=s' => \@fields,
+);
+
+my %partmap;
+my $partcount = 0;
+for (@fields) {
+ $partmap{$_} = $partcount;
+ $partcount++;
+}
+
+while (<>) {
+ chomp;
+ my @values = split $delim;
+
+ my %partlist;
+ for my $part (keys %partmap) {
+ ($partlist{tcn_value} = $values[ $partmap{tcn_value}]) =~ s/^\s*//o if ($part eq 'tcn_value');
+ ($partlist{tcn_source} = $values[ $partmap{tcn_source}]) =~ s/^\s*//o if ($part eq 'tcn_source');
+ ($partlist{id} = $values[ $partmap{id}]) =~ s/^\s*//o if ($part eq 'id');
+ $partlist{marc} = $values[ $partmap{marc}] if ($part eq 'marc');
+
+ $partlist{tcn_value} =~ s/\s*$//o if ($part eq 'tcn_value');
+ $partlist{tcn_source} =~ s/\s*$//o if ($part eq 'tcn_source');
+ $partlist{id} =~ s/\s*$//o if ($part eq 'id');
+ }
+
+ next unless ($partlist{marc});
+
+ try {
+ my $r = MARC::Record->new_from_xml($partlist{marc});
+
+ my %sfmap;
+ $sfmap{a} = $partlist{tcn_value} if ($partlist{tcn_value});
+ $sfmap{b} = $partlist{tcn_source} if ($partlist{tcn_source});
+ $sfmap{c} = $partlist{id} if ($partlist{id});
+
+ my $f = MARC::Field->new(901 => ' ' => ' ' => %sfmap);
+ $r->delete_field($_) for ($r->field('901'));
+ $r->append_fields( $f );
+
+ print $r->as_xml_record;
+ } otherwise {
+ warn "failed on record $., $partlist{marc}\n";
+ };
+}
+
+
const char* service;
const char* method;
- char* tmp;
+ char* tmp = NULL;
service = strtok_r(request, " ", &tmp);
method = strtok_r(NULL, " ", &tmp);
# one fine interval to the backdate to ensure that we are not
# voiding fines that were applicable before the backdate.
# ------------------------------------------------------------------
- my $interval = OpenSRF::Utils->interval_to_seconds($circ->fine_interval);
+
+ # if there is a raw time component (e.g. from postgres),
+ # turn it into an interval that interval_to_seconds can parse
+ my $duration = $circ->fine_interval;
+ $duration =~ s/(\d{2}):(\d{2}):(\d{2})/$1 h $2 m $3 s/o;
+ my $interval = OpenSRF::Utils->interval_to_seconds($duration);
+
my $date = DateTime::Format::ISO8601->parse_datetime($backdate);
$backdate = $U->epoch2ISO8601($date->epoch + $interval);
$logger->info("applying backdate $backdate in overdue voiding");
};
}
-
+# {"select":{"acp":["id"],"circ":[{"aggregate":true,"transform":"count","alias":"count","column":"id"}]},"from":{"acp":{"circ":{"field":"target_copy","fkey":"id","type":"left"},"acn"{"field":"id","fkey":"call_number"}}},"where":{"+acn":{"record":200057}}
1;
my %scripts;
my $script_libs;
+sub isTrue {
+ my $v = shift;
+ return 1 if ($v == 1);
+ return 1 if ($v =~ /^t/io);
+ return 1 if ($v =~ /^y/io);
+ return 0;
+}
+
sub initialize {
my $self = shift;
$$args{is_precat} = $$args{precat};
delete $$args{precat};
}
-
}
my $mname = $max->name;
my $rname = $recurring->name;
+ my $max_amount = $max->amount;
+
+ # if is_percent is true then the max->amount is
+ # use as a percentage of the copy price
+ if (isTrue($max->is_percent)) {
+
+ my $cn = $self->editor->retrieve_asset_call_number($copy->call_number);
+
+ my $default_price = $U->ou_ancestor_setting_value(
+ $cn->owning_lib, OILS_SETTING_DEF_ITEM_PRICE, $e) || 0;
+ my $charge_on_0 = $U->ou_ancestor_setting_value(
+ $cn->owning_lib, OILS_SETTING_CHARGE_LOST_ON_ZERO, $e) || 0;
+
+ # Find the most appropriate "price" -- same definition as the
+ # LOST price. See OpenILS::Circ::new_set_circ_lost
+ $max_amount = $copy->price;
+ $max_amount = $default_price unless defined $max_amount;
+ $max_amount = 0 if $max_amount < 0;
+ $max_amount = $default_price if $max_amount == 0 and $charge_on_0;
+
+ $max_amount *= $max->amount / 100;
+
+ }
+
$logger->debug("circulator: building circulation ".
"with duration=$dname, maxfine=$mname, recurring=$rname");
$circ->duration_rule( $duration->name );
$circ->recuring_fine_rule( $recurring->name );
$circ->max_fine_rule( $max->name );
- $circ->max_fine( $max->amount );
+
+ $circ->max_fine( $max_amount );
$circ->fine_interval($recurring->recurance_interval);
$circ->renewal_remaining( $duration->max_renewals );
sub create_due_date {
my( $self, $duration ) = @_;
+ # if there is a raw time component (e.g. from postgres),
+ # turn it into an interval that interval_to_seconds can parse
+ $duration =~ s/(\d{2}):(\d{2}):(\d{2})/$1 h $2 m $3 s/o;
my ($sec,$min,$hour,$mday,$mon,$year) =
gmtime(OpenSRF::Utils->interval_to_seconds($duration) + int(time()));
$year += 1900; $mon += 1;
use base qw/config/;
__PACKAGE__->table('config_rule_max_fine');
__PACKAGE__->columns(Primary => 'id');
-__PACKAGE__->columns(Essential => qw/name amount/);
+__PACKAGE__->columns(Essential => qw/name amount is_percent/);
#-------------------------------------------------------------------------------
package config::rules::recuring_fine;
$fine_interval =~ s/(\d{2}):(\d{2}):(\d{2})/$1 h $2 m $3 s/o;
$fine_interval = interval_to_seconds( $fine_interval );
- if ( interval_to_seconds( $c->fine_interval ) >= interval_to_seconds('1d') ) {
+ if ( $fine_interval >= interval_to_seconds('1d') ) {
my $tz_offset_s = 0;
if ($due_dt->strftime('%z') =~ /(-|\+)(\d{2}):?(\d{2})/) {
$tz_offset_s = $1 . interval_to_seconds( "${2}h ${3}m");
+++ /dev/null
-/*
- * Copyright (C) 2004-2008 Georgia Public Library Service
- * Copyright (C) 2008 Equinox Software, Inc.
- * Mike Rylander <miker@esilibrary.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- */
-
-BEGIN;
-
-CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
-BEGIN
- NEW.index_vector = to_tsvector(TG_ARGV[0], NEW.value);
- RETURN NEW;
-END;
-$$ LANGUAGE PLPGSQL;
-
-INSERT INTO pg_ts_cfg VALUES ('title', 'default','C');
-INSERT INTO pg_ts_cfg VALUES ('author', 'default','C');
-INSERT INTO pg_ts_cfg VALUES ('subject', 'default','C');
-INSERT INTO pg_ts_cfg VALUES ('keyword', 'default','C');
-INSERT INTO pg_ts_cfg VALUES ('series', 'default','C');
-
-INSERT INTO pg_ts_dict VALUES ('en_stem_nostop', 'snb_en_init(internal)', '', 'snb_lexize(internal,internal,integer)', 'English Stemmer. Snowball. No stop words.');
-
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'nlword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'word', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'email', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'url', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'host', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'sfloat', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'version', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'part_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'nlpart_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'nlhword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'uri', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'file', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'float', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'int', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'uint', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'lword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'lpart_hword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('title', 'lhword', '{en_stem_nostop}');
-
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'nlword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'word', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'email', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'url', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'host', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'sfloat', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'version', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'part_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'nlpart_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'nlhword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'uri', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'file', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'float', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'int', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'uint', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'lword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'lpart_hword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('author', 'lhword', '{en_stem_nostop}');
-
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'nlword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'word', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'email', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'url', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'host', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'sfloat', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'version', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'part_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'nlpart_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'nlhword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'uri', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'file', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'float', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'int', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'uint', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'lword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'lpart_hword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('subject', 'lhword', '{en_stem_nostop}');
-
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'nlword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'word', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'email', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'url', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'host', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'sfloat', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'version', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'part_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'nlpart_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'nlhword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'uri', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'file', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'float', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'int', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'uint', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'lword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'lpart_hword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('keyword', 'lhword', '{en_stem_nostop}');
-
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'nlword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'word', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'email', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'url', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'host', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'sfloat', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'version', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'part_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'nlpart_hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'hword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'nlhword', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'uri', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'file', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'float', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'int', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'uint', '{simple}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'lword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'lpart_hword', '{en_stem_nostop}');
-INSERT INTO pg_ts_cfgmap VALUES ('series', 'lhword', '{en_stem_nostop}');
-
-COMMIT;
INSERT INTO pg_ts_cfgmap VALUES ('series', 'lpart_hword', '{en_stem_nostop}');
INSERT INTO pg_ts_cfgmap VALUES ('series', 'lhword', '{en_stem_nostop}');
+SELECT set_curcfg('default');
+
COMMIT;
INSERT INTO pg_ts_cfgmap VALUES ('series', 'lpart_hword', '{en_stem_nostop}');
INSERT INTO pg_ts_cfgmap VALUES ('series', 'lhword', '{en_stem_nostop}');
+SELECT set_curcfg('default');
+
COMMIT;
CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
DECLARE
- locale TEXT := LOWER( REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'-', '_', 'g' ) );
- language TEXT := REGEXP_REPLACE( locale, E'_.+$', '' );
+ locale TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
+ language TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
result config.i18n_core%ROWTYPE;
fallback TEXT;
keyfield TEXT := keyclass || '.' || keycol;
$$;
CREATE TABLE config.rule_max_fine (
- id SERIAL PRIMARY KEY,
- name TEXT NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
- amount NUMERIC(6,2) NOT NULL
+ id SERIAL PRIMARY KEY,
+ name TEXT NOT NULL UNIQUE CHECK ( name ~ E'^\\w+$' ),
+ amount NUMERIC(6,2) NOT NULL,
+ is_percent BOOL NOT NULL DEFAULT FALSE
);
COMMENT ON TABLE config.rule_max_fine IS $$
/*
CREATE TABLE config.i18n_locale (
code TEXT PRIMARY KEY,
- marc_code TEXT NOT NULL REFERENCES config.language_map (code),
+ marc_code TEXT NOT NULL REFERENCES config.language_map (code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
name TEXT UNIQUE NOT NULL,
description TEXT
);
id BIGSERIAL PRIMARY KEY,
fq_field TEXT NOT NULL,
identity_value TEXT NOT NULL,
- translation TEXT NOT NULL REFERENCES config.i18n_locale (code),
+ translation TEXT NOT NULL REFERENCES config.i18n_locale (code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
string TEXT NOT NULL
);
-- available locales
INSERT INTO config.i18n_locale (code,marc_code,name,description)
- VALUES ('en_us','eng',oils_i18n_gettext('American English'),oils_i18n_gettext('American English'));
+ VALUES ('en-US','eng',oils_i18n_gettext('American English'),oils_i18n_gettext('American English'));
INSERT INTO config.i18n_locale (code,marc_code,name,description)
- VALUES ('en_ca','eng',oils_i18n_gettext('Canadian English'),oils_i18n_gettext('Canadian English'));
+ VALUES ('en-CA','eng',oils_i18n_gettext('Canadian English'),oils_i18n_gettext('Canadian English'));
INSERT INTO config.i18n_locale (code,marc_code,name,description)
- VALUES ('fr_ca','fre',oils_i18n_gettext('Canadian Fench'),oils_i18n_gettext('Canadian French'));
+ VALUES ('fr-CA','fre',oils_i18n_gettext('Canadian Fench'),oils_i18n_gettext('Canadian French'));
INSERT INTO config.i18n_locale (code,marc_code,name,description)
- VALUES ('es_us','spa',oils_i18n_gettext('American Spanish'),oils_i18n_gettext('American Spanish'));
+ VALUES ('es-US','spa',oils_i18n_gettext('American Spanish'),oils_i18n_gettext('American Spanish'));
INSERT INTO config.i18n_locale (code,marc_code,name,description)
- VALUES ('es_mx','spa',oils_i18n_gettext('Mexican Spanish'),oils_i18n_gettext('Mexican Spanish'));
+ VALUES ('es-MX','spa',oils_i18n_gettext('Mexican Spanish'),oils_i18n_gettext('Mexican Spanish'));
--005.schema.actors.sql:
#!/bin/sh
-# args: {db-host} {db-port} {db-name} {db-user} {db-password} {db-version}
-
-# echo "You may be prompted several times for your database password..."
-
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 000.english.pg$6.fts-config.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 001.schema.offline.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 002.schema.config.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 002.functions.aggregate.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 002.functions.config.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 005.schema.actors.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 006.schema.permissions.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 010.schema.biblio.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 011.schema.authority.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 020.schema.functions.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 030.schema.metabib.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 040.schema.asset.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 070.schema.container.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 080.schema.money.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 090.schema.action.sql
+
+# ---------------------------------------------------------------------------
+# Store command line args for later use
+# args: {db-host} {db-port} {db-name} {db-user} {db-password}
+# ---------------------------------------------------------------------------
+PGHOST=$1
+PGPORT=$2
+PGDATABASE=$3
+PGUSER=$4
+PGPASSWORD=$5
+export PGHOST PGPORT PGDATABASE PGUSER PGPASSWORD
+
+# ---------------------------------------------------------------------------
+# Lookup the database version from the PostgreSQL server.
+# ---------------------------------------------------------------------------
+DB_VERSION=`psql -qtc 'show server_version;' | xargs | cut -c1,3`
+if [ -z "$DB_VERSION" ] || [ `echo $DB_VERSION | grep -c '[^0-9]'` != 0 ]; then
+ cat <<EOM
+********************************************************************************
+* Could not determine the version of PostgreSQL you have installed. Our best *
+* guess was: *
+* $DB_VERSION
+* which didn't make any sense. For assistance, please email *
+* open-ils-general@list.georgialibraries.org or join #OpenILS-Evergreen on the *
+* freenode IRC network. *
+********************************************************************************
+EOM
+ exit 1
+fi
PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 200.schema.acq.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 100.circ_matrix.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 110.hold_matrix.sql
+# ---------------------------------------------------------------------------
+# Validate fts-config file is available for specified DB_VERSION.
+# ---------------------------------------------------------------------------
+if [ -e "000.english.pg$DB_VERSION.fts-config.sql" ]; then
+ fts_config_file="000.english.pg$DB_VERSION.fts-config.sql"
+else
+ # -------------------------------------------------------------------------
+ # Attempt to auto-detect the latest available config file.
+ # -------------------------------------------------------------------------
+ last_ver=""
+ for i in $(seq 80 99 | sort -rn); do
+ if [ -e "000.english.pg$i.fts-config.sql" ]; then
+ last_ver=$i
+ break
+ fi
+ done
+ if [ -z "$last_ver" ]; then
+ cat <<EOM
+********************************************************************************
+* Cannot locate any configuration files for full text search config. This *
+* may indicate a problem with your copy of the source files. We attempted to *
+* find files like 000.english.pg83.fts-config.sql in this directory: *
+* `pwd`
+* but were unsuccessful. Aborting. *
+********************************************************************************
+EOM
+ exit 1
+ fi
+
+ a=$DB_VERSION # preserves the text alignment below, in a cheap fashion
+ b=$last_ver # assuming of course two character DB_VERSION and last_ver
+cat <<EOM
+********************************************************************************
+* There is no configuration for full text search config, for the database *
+* version you have installed ($a). If you're not really sure why, you should *
+* proabably press 'Control-C' now, and abort. To continue using the latest *
+* available version ($b), press enter. For assistance, please email *
+* open-ils-general@list.georgialibraries.org or join #OpenILS-Evergreen on the *
+* freenode IRC network. *
+********************************************************************************
+EOM
+ read unused
+ fts_config_file="000.english.pg$last_ver.fts-config.sql"
+fi
+
+# ---------------------------------------------------------------------------
+# This describes the order in which the SQL files will be eval'd by psql.
+# ---------------------------------------------------------------------------
+ordered_file_list="
+ $fts_config_file
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 300.schema.staged_search.sql
+ 001.schema.offline.sql
+ 002.functions.aggregate.sql
+ 002.functions.config.sql
+ 002.schema.config.sql
+ 005.schema.actors.sql
+ 006.schema.permissions.sql
+ 010.schema.biblio.sql
+ 011.schema.authority.sql
+ 012.schema.vandelay.sql
+ 020.schema.functions.sql
+ 030.schema.metabib.sql
+ 040.schema.asset.sql
+ 070.schema.container.sql
+ 080.schema.money.sql
+ 090.schema.action.sql
+
+ 100.circ_matrix.sql
+ 110.hold_matrix.sql
+
+ 300.schema.staged_search.sql
+
+ 500.view.cross-schema.sql
+
+ 800.fkeys.sql
+
+ 900.audit-functions.sql
+ 901.audit-tables.sql
+ 950.data.seed-values.sql
+ 951.data.MODS-xsl.sql
+ 952.data.MODS3-xsl.sql
+ 953.data.MODS32-xsl.sql
+
+ extend-reporter.sql
+ reporter-schema.sql
+"
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 500.view.cross-schema.sql
+# ---------------------------------------------------------------------------
+# Import files via psql, warn user on error, suggest abort.
+# ---------------------------------------------------------------------------
+for sql_file in $ordered_file_list; do
+ # It would be wise to turn this on only if confidence is high that errors in
+ # scripts will result in terminal failures. Currently, there are a couple
+ # that seem benign. --asjoyner
+ # export ON_ERROR_STOP=1
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 800.fkeys.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 900.audit-functions.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 901.audit-tables.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 950.data.seed-values.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 951.data.MODS-xsl.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 952.data.MODS3-xsl.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 953.data.MODS32-xsl.sql
+ export PGHOST PGPORT PGDATABASE PGUSER PGPASSWORD
+ psql -f $sql_file
+ if [ $? != 0 ]; then
+ cat <<EOM
+********************************************************************************
+* There was an error with a database configuration file: *
+* $sql_file
+* It is very likely that your installation will be unsuccessful because of *
+* this error. Press Control-C to abort, or press enter to charge ahead. *
+********************************************************************************
+EOM
+ read unused
+ fi
+done
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f reporter-schema.sql
-PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f extend-reporter.sql
CREATE SCHEMA extend_reporter;
CREATE TABLE extend_reporter.legacy_circ_count (
- id BIGSERIAL PRIMARY KEY REFERENCES asset.copy (id),
+ id BIGINT PRIMARY KEY REFERENCES asset.copy (id),
circ_count INT NOT NULL DEFAULT 0
);
var djConfig = { parseOnLoad : true };
if (location.href.match(/^.*conify\/(.+)\/global.*$/, "$1")) {
- var _url_locale = location.href.replace(/^.*conify\/(.+)\/global.*$/, "$1").toLowerCase().replace(/_/,'-','g');
+ var _url_locale = location.href.replace(/^.*conify\/(.+)\/global.*$/, "$1").replace(/_/,'-','g');
if (_url_locale) djConfig.locale = _url_locale;
if(!args.ontransporterror) {
args.ontransporterror = function(xreq) {
- throw new Error('Transport error status=' + xreq.status);
+ throw new Error('Transport error method='+args.method+', status=' + xreq.status);
}
}
getBySession : function(onComplete) {
var _u = this;
- var req = OpenSRF.CachedClientSession('open-ils.auth').request('open-ils.auth.session.retrieve', _u.authtoken);
+ var req = ['open-ils.auth', 'open-ils.auth.session.retrieve'];
+ var params = [_u.authtoken];
+
if(onComplete) {
- req.oncomplete = function(r) {
- var user = r.recv().content();
- _u.user = user;
- if (!openils.User.user) openils.User.user = _u.user;
- if(onComplete)
- onComplete(user);
- }
- req.send();
+ fieldmapper.standardRequest(
+ req, {
+ async: true,
+ params: params,
+ oncomplete : function(r) {
+ var user = r.recv().content();
+ _u.user = user;
+ if (!openils.User.user) openils.User.user = _u.user;
+ if(onComplete)
+ onComplete(user);
+ }
+ }
+ );
} else {
- req.timeout = 10;
- req.send();
- _u.user = req.recv().content();
+ _u.user = fieldmapper.standardRequest(req, params);
if (!openils.User.user) openils.User.user = _u.user;
return _u.user;
}
{ store:openils.I18N.localeStore,
searchAttr:'locale',
labelAttr:'label',
- lowercase:true,
+ lowercase:false,
required:true,
id:'locale_' + trans_id,
value: trans_obj.translation(),
- invalidMessage:'Specify locale as {languageCode}_{countryCode}, like en_us',
+ invalidMessage:'Specify locale as {languageCode}-{countryCode}, as in en-US',
regExp:'[a-z_]+'
}
);
searchAttr:'locale',
labelAttr:'label',
id:'i18n_new_locale_' + this._targetObject.classname + '.' + this.field + this.unique,
- lowercase:true,
+ lowercase:false,
required:true,
- invalidMessage:'Specify locale as {languageCode}_{countryCode}, like en_us',
+ invalidMessage:'Specify locale as {languageCode}_{countryCode}, as in en-US',
regExp:'[a-z_]+'
}
);
CHANGES: --------------------------------------------------------------------------------
+ 2008-07-26 / dscott@laurentian.ca
+ - Comment out Date.parseIso8601 as we move to Dojo
+
2007-02-02 / billserickson@gmail.com
- chopped out some utility methods to trim file size
- changed some formatting for visual ease
comes accross 123456ms and not 123ms + 456 microseconds
*/
-
+/*
Date.parseIso8601 = function(CurDate) {
// Check the input parameters
};
+*/
+
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* "Date" Object Prototype Extensions */
<!ENTITY opac.holds.freeze "Suspend this hold">
<!ENTITY opac.holds.freeze.help "A suspended hold will retain its place in the queue, but will not be fulfilled until it has been activated.">
<!ENTITY opac.holds.freeze.thaw_date "Automatically activate hold on:">
-<!ENTITY opac.holds.freeze.thaw_date.format "YYYY-MM-DD">
<!-- =================================================================
MyOPAC Preferences Page
frozenbox.checked = true;
unHideMe($('hold_frozen_thaw_row'));
if(hold.thaw_date()) {
- $('holds_frozen_thaw_input').value = hold.thaw_date();
+ dijit.byId('holds_frozen_thaw_input').setValue(hold.thaw_date());
} else {
- $('holds_frozen_thaw_input').value = '';
+ dijit.byId('holds_frozen_thaw_input').setValue('');
}
} else {
frozenbox.checked = false;
- $('holds_frozen_thaw_input').value = '';
+ dijit.byId('holds_frozen_thaw_input').setValue('');
hideMe($('hold_frozen_thaw_row'));
}
}
if($('holds_frozen_chkbox').checked) {
hold.frozen('t');
unHideMe($('hold_frozen_thaw_row'));
- thawDate = $('holds_frozen_thaw_input').value;
+ thawDate = dojo.date.stamp.toISOString(dijit.byId('holds_frozen_thaw_input').getValue());
if(thawDate) {
thawDate = holdsVerifyThawDate(thawDate);
if(thawDate)
runEvt('common', 'holdUpdated');
}
-
/* verify that the thaw date is valid and after today */
function holdsVerifyThawDate(dateString) {
- thawDate = Date.parseIso8601(dateString);
- if(thawDate && holdGreaterThanToday(dateString))
- return thawDate.iso8601Format('YMD', false, false, true);
+ thawDate = dojo.date.stamp.fromISOString(dateString);
+ if(thawDate && (dojo.date.compare(thawDate) > 0))
+ return dojo.date.stamp.toISOString(thawDate);
return null;
}
-function holdGreaterThanToday(dateString) {
- thawDate = Date.parseIso8601(dateString);
- var today = new Date();
- today = new Date(today.getFullYear(), today.getMonth(), today.getDate())
- return thawDate > today;
-}
-
-
function holdsVerifyThawDateUI(element) {
- value = $(element).value;
+ value = dojo.date.stamp.toISOString(dijit.byId(element).getValue());
if(!value) {
removeCSSClass($(element), 'invalid_field');
hideMe($n(row, 'myopac_hold_unfrozen_true'))
unHideMe($n(row, 'myopac_hold_unfrozen_false'))
if(h.thaw_date()) {
- var d = Date.parseIso8601(h.thaw_date());
- $n(row, 'myopac_holds_frozen_until').appendChild(text(d.iso8601Format('YMD')));
+ var d = dojo.date.stamp.fromISOString(h.thaw_date());
+ $n(row, 'myopac_holds_frozen_until').appendChild(text(dojo.date.locale.format(d, {.selector: 'date', fullYear: true})));
}
} else {
unHideMe($n(row, 'myopac_hold_unfrozen_true'))
//function _trimTime(time) { if(!time) return ""; return time.replace(/\ .*/,""); }
function _trimTime(time) {
if(!time) return "";
- var d = Date.parseIso8601(time);
+ var d = dojo.date.stamp.fromISOString(time);
if(!d) return ""; /* date parse failed */
return d.iso8601Format('YMD');
}
function _trimSeconds(time) {
if(!time) return "";
- var d = Date.parseIso8601(time);
+ var d = dojo.date.stamp.fromISOString(time);
if(!d) return ""; /* date parse failed */
return d.iso8601Format('YMDHM',null,true,true);
}
fleshedUser = user;
if(!user) return;
- var expireDate = Date.parseIso8601(user.expire_date());
+ var expireDate = dojo.date.stamp.fromISOString(user.expire_date());
if( expireDate < new Date() ) {
appendClear($('myopac.expired.date'), expireDate.iso8601Format('YMD'));
unHideMe($('myopac.expired.alert'));
duration = parseInt(duration + '000');
var dtf = circ.circ_time();
- var start = Date.parseIso8601(circ.circ_time());
+ var start = dojo.date.stamp.fromISOString(circ.circ_time());
var due = new Date( start.getTime() + duration );
appendClear($n(row, 'circ_time'), text(due.iso8601Format('YMDHM', null, true, true)));
}
hideMe($('myopac_holds_main_table'));
unHideMe($('myopac_holds_thaw_date_form'));
$('myopac_holds_thaw_date_input').focus();
- Calendar.setup({
- inputField : "myopac_holds_thaw_date_input",
- ifFormat : "%Y-%m-%d",
- button : "myopac_holds_thaw_date_img",
- align : "Tl",
- singleClick : true
- });
}
function myopacApplyThawDate() {
- var dateString = $('myopac_holds_thaw_date_input').value;
+ var dateString = dojo.date.stamp.toISOString(dijit.byId('myopac_holds_thaw_date_input').getValue());
if(dateString) {
dateString = holdsVerifyThawDate(dateString);
if(!dateString) return;
}
}
+ if(!node && findOrgType(globalOrgTree.ou_type()).can_have_vols())
+ node = globalOrgTree;
+
+
/* don't show hidden orgs */
if(node) {
<!--
<body onload='init();' style='height: 100%; border: 2px solid black;'>
-->
-<body onload='init();'>
+<body class="tundra" onload='init();'>
<table width='100%'>
<tbody>
<tr>
-
<!-- CSS shared across pages goes here -->
<link type='text/css' rel='stylesheet' href="<!--#echo var='OILS_SKIN_BASE'-->/default/css/layout.css"/>
rel='search' title="Evergreen"
href="http://<!--#echo var='SERVER_NAME'-->/opac/extras/opensearch/1.1/-/osd.xml" />
+<!-- enable Dojo date picker -->
+<style type="text/css">
+ @import '/js/dojo/dojo/resources/dojo.css';
+ @import '/js/dojo/dijit/themes/tundra/tundra.css';
+ @import '/js/dojo/dijit/themes/tundra/tundra_rtl.css';
+</style>
-<link rel="stylesheet" type="text/css"
- href='<!--#echo var="OILS_JS_BASE"-->/jscalendar/calendar-brown.css' title="win2k-cold-1" />
-<script language='javascript' type='text/javascript' src='<!--#echo var="OILS_JS_BASE"-->/jscalendar/calendar.js'></script>
-<script language='javascript' type='text/javascript' src='<!--#echo var="OILS_JS_BASE"-->/jscalendar/lang/calendar-en.js'></script>
-<script language='javascript' type='text/javascript' src='<!--#echo var="OILS_JS_BASE"-->/jscalendar/calendar-setup.js'></script>
<script language='javascript' type='text/javascript' src='<!--#echo var="OILS_OPAC_JS_HOST"-->/common/js/DP_DateExtensions.js'></script>
-
<div>
<div id='xulholds_box' class='hide_me canvas' style='margin-top: 6px;'>
<center>
&opac.holds.freeze.thaw_date;
</td>
<td class='holds_cell'>
- <input size='10' maxlength='10' id='holds_frozen_thaw_input' />
- <button style='padding: 0px;' id='holds_frozen_thaw_date_button'>
- <img src='<!--#echo var="OILS_JS_BASE"-->/jscalendar/img.gif'
- style="cursor: pointer; border: 1px solid red; padding: 0px; margin: -3px;"
- title="Date selector"
- onmouseover="this.style.background='red';"
- onmouseout="this.style.background=''" />
- </button>
- (&opac.holds.freeze.thaw_date.format;)
-
- <script language='javascript' type="text/javascript">
- Calendar.setup({
- inputField : "holds_frozen_thaw_input",
- ifFormat : "%Y-%m-%d",
- button : "holds_frozen_thaw_date_button",
- align : "Tl",
- singleClick : true
- });
- </script>
-
+ <input dojoType="dijit.form.DateTextBox" size='10' maxlength='10' id='holds_frozen_thaw_input' />
</td>
</tr>
<span id='holds_invalid_recipient' class='hide_me'>&common.hold.patron.invalid;</span>
</div>
-
-
<!--#endif -->
</script>
+
+ <!-- enable Dojo date picker -->
+ <script language='javascript' type="text/javascript">
+ var djConfig = {parseOnLoad: true, isDebug: false},
+ locale,
+ lang,
+ bidi;
+
+ djConfig.locale = '<!--#echo var="locale"-->';
+ </script>
+
+ <script type="text/javascript" src='/js/dojo/dojo/dojo.js'></script>
+
+ <script language="javascript" type="text/javascript">
+ dojo.require("dijit._Calendar");
+ dojo.require("dijit.form.DateTextBox");
+ dojo.require("dojo.date.locale");
+ dojo.require("dojo.date.stamp");
+ dojo.require("dojo.parser");
+ </script>
<div id='myopac_holds_thaw_date_form' class='hide_me'>
<div id='myopac_holds_freeze_select_thaw'>&myopac.holds.freeze.select_thaw;</div>
<p>
- <input type='text' id='myopac_holds_thaw_date_input'/>
- <img src="<!--#echo var='OILS_OPAC_JS_HOST'-->/common/js/jscalendar/img.gif" id='myopac_holds_thaw_date_img' class='cal_img'/>
- (&opac.holds.freeze.thaw_date.format;)
+ <input dojoType="dijit.form.DateTextBox" size='10' maxlength='10' type='text' id='myopac_holds_thaw_date_input' />
</p>
<p>
<button onclick='myopacApplyThawDate();'>&common.submit;</button>
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/admin.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/admin.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: staff.admin.survey.save_response.label
-msgid "Save this response"
+#: staff.admin.font_settings.sound
+msgid "Sound preference saved to file system."
msgstr ""
-#: staff.admin.survey.save_response.accesskey
-msgid "R"
+#: staff.admin.font_settings.save
+msgid "Global Font saved to file system."
+msgstr ""
+
+#: staff.admin.font_settings.sound.disabled
+msgid "Sound is now disabled."
+msgstr ""
+
+#: staff.admin.font_settings.sound.enabled
+msgid "Sound is now enabled."
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_SMALLER
+msgid "Global Font Adjust set to Smaller than Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_LARGER
+msgid "Global Font Adjust set to Larger than Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_XX_SMALL
+msgid "Global Font set to XX-Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_X_SMALL
+msgid "Global Font set to X-Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_SMALL
+msgid "Global Font set to Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_MEDIUM
+msgid "Global Font set to Medium"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_LARGE
+msgid "Global Font set to Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_X_LARGE
+msgid "Global Font set to X-Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_XX_LARGE
+msgid "Global Font set to XX-Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_5PT
+msgid "Global Font set to 5pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_6PT
+msgid "Global Font set to 6pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_7PT
+msgid "Global Font set to 7pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_8PT
+msgid "Global Font set to 8pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_9PT
+msgid "Global Font set to 9pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_10PT
+msgid "Global Font set to 10pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_11PT
+msgid "Global Font set to 11pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_12PT
+msgid "Global Font set to 12pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_13PT
+msgid "Global Font set to 13pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_14PT
+msgid "Global Font set to 14pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_15PT
+msgid "Global Font set to 15pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_16PT
+msgid "Global Font set to 16pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_17PT
+msgid "Global Font set to 17pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_18PT
+msgid "Global Font set to 18pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.transit_list.missing_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.admin.transit_list.no_match
+msgid "No matching transits."
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date
+msgid "Invalid Date (%1$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date_format
+msgid "Invalid Date (%1$s,%2$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.date_processing.error
+msgid "error processing date"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_transit.error
+msgid "error retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.preretrieving_transit.error
+msgid "error pre-retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_row.error
+msgid "error retrieving row"
+msgstr ""
+
+#: staff.admin.transit_list.empty_array.error
+msgid "Empty array returned by hold retrieve."
+msgstr ""
+
+#: staff.admin.transit_list.retrieve_hold.error
+msgid "retrieving hold id = %1$s for transit id = %2$s"
+msgstr ""
+
+#: staff.admin.transit_list.transit_id.error
+msgid "retrieving transit id = %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.organization
+msgid "Organization"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.description
+msgid "Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_created
+msgid "Date Created"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.created_by
+msgid "Created By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.upload_count
+msgid "Upload Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.transactions_processed
+msgid "Transactions Processed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.processing
+msgid "Processing?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_started
+msgid "Date Started"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_completed
+msgid "Date Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.session
+msgid "Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.date_uploaded
+msgid "Date Uploaded"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.uploaded_by
+msgid "Uploaded By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.time_delta
+msgid "Server/Local Time Delta"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_script_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_error_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.type
+msgid "Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_code
+msgid "Event Code"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_name
+msgid "Event Name"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_description
+msgid "Event Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.count
+msgid "In House Use Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_type
+msgid "Non-Cataloged Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_count
+msgid "Non-Cataloged Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.backdate
+msgid "Check In Backdate"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.check_perm
+msgid "Error checking permissions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.bad_cgi_response
+msgid "Bad response from CGI component"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.execute_error
+msgid "Execute error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_execute_error
+msgid "Error executing session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_retrieval
+msgid "Error retrieving session errors:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.non_existent_file
+msgid "Cannot rename a non-existent file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.renaming_file
+msgid "Error renaming transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.unique_file
+msgid "Taking too long to find a unique filename."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts
+msgid ""
+"Something bad happened. New offline transactions were accumulated during "
+"our attempted upload. Tell your system admin that the file involved is %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.title
+msgid "Transaction conflicts"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.ok
+msgid "Ok"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.reverting_file
+msgid "Error reverting transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.archiving_file
+msgid "Error archiving transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.session_upload
+msgid "Please select a session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.single_session_upload
+msgid "Please select a single session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no_transactions
+msgid "No pending transactions to upload."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_file
+msgid "There was an error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_transactions
+msgid "Error uploading transactions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_session
+msgid "Error retrieving session status"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session.prompt
+msgid "Please enter a description:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session
+msgid "Create an Offline Transaction Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session
+msgid "Error creating session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session.alert
+msgid "Error: %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_sessions
+msgid "Error retrieving offline sessions."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_session
+msgid "Error rendering session list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.upload_status
+msgid "Uploaded Transactions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_script
+msgid "Error rendering script list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_errors
+msgid "Exceptions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_error_list
+msgid "Error rendering error list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.completed
+msgid "Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no
+msgid "No"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.yes
+msgid "Yes"
msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/auth.properties
+#. extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/auth.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: staff.auth.controller.not_configured
+msgid "Not yet configured for the specified server."
+msgstr ""
+
+#: staff.auth.controller.testing_hostname
+msgid "Testing hostname..."
+msgstr ""
+
+#: staff.auth.controller.prompt_hostname
+msgid "Please enter a server hostname."
+msgstr ""
+
+#: staff.auth.controller.error_hostname
+msgid "There was an error testing this hostname."
+msgstr ""
+
+#: staff.auth.controller.status
+msgid "%1$s : %2$s"
+msgstr ""
+
+#: staff.auth.controller.testing_version
+msgid "Testing version..."
+msgstr ""
+
+#: staff.auth.controller.error_version
+msgid "There was an error checking version support."
+msgstr ""
+
+#: staff.auth.controller.version_mismatch
+msgid ""
+"This server does not support your version of the staff client. Please check "
+"with your system administrator."
+msgstr ""
+
+#. # login with <username> and <password> at <server>
+#: staff.auth.controller.error_login
+msgid "login with %1$s and %2$s at %3$s"
+msgstr ""
+
+#: staff.auth.controller.confirm_close
+msgid "Are you sure you would like to exit the program completely?"
+msgstr ""
+
+#: staff.auth.session.unregistered
+msgid "%1$s is not registered with this server."
+msgstr ""
+
+#: staff.auth.session.login_failed
+msgid ""
+"Login failed. Please check your Server Hostname, Username, Password, and "
+"your CAPS LOCK key."
+msgstr ""
+
+#: staff.auth.session.init_false
+msgid "open-ils.auth.authenticate.init returned false"
+msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/cat.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: cat.bib_record
-msgid "Bib Record: %1$s"
+#: cat.barcode_for_item
+msgid "The barcode for the item is %1$s"
msgstr ""
-#: cat.save_record
+#: cat.batch_operation_failed
+msgid "The whole batch operation failed. %1$s"
+msgstr ""
+
+#: cat.copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: cat.total_bucket_items_in_bucket
+msgid "Contains %1$s bucket items"
+msgstr ""
+
+#: cat.results_returned
+msgid "Returning %1$s hits"
+msgstr ""
+
+#: staff.cat.bib_brief.record_id
+msgid "Record ID = %1$s"
+msgstr ""
+
+#: staff.cat.bib_brief.deleted
+msgid "(Deleted)"
+msgstr ""
+
+#: staff.cat.bib_brief.inactive
+msgid "(Inactive)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat
+msgid "(Not Cataloged)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat.alert
+msgid "Item not cataloged."
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.title
+msgid "Add Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.error
+msgid "copy browser -> add copies"
+msgstr ""
+
+#: staff.cat.copy_browser.add_items_bucket.error
+msgid "copy browser -> add copies to bucket"
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.failed
+msgid "Barcode %1$s not likely replaced."
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.error
+msgid "copy browser -> replace barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_items.error
+msgid "Copy Browser -> Edit Items"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm.plural
+msgid "Are you sure you would like to delete these %1$s items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm
+msgid "Are you sure you would like to delete this item?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.title
+msgid "Delete Items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.delete
+msgctxt "staff.cat.copy_browser.delete_items.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.cancel
+msgctxt "staff.cat.copy_browser.delete_items.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.override
+msgctxt "staff.cat.copy_browser.delete_items.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.error
+msgid "copy browser -> delete items"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.tab
+msgctxt "staff.cat.copy_browser.print_spine.tab"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.error
+msgid "copy browser -> Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.permission_error
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.title
+msgid "Add Volume/Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.error
+msgid "copy browser -> add volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.permission_error
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title
+msgid "Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title.plural
+msgctxt "staff.cat.copy_browser.edit_volume.title.plural"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.failed
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.error
+msgid "volume update error:"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.exception
+msgid "Copy Browser -> Volume Edit"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt.plural
+msgid "Are you sure you would like to delete these %1$s volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.delete
+msgctxt "staff.cat.copy_browser.delete_volume.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.cancel
+msgctxt "staff.cat.copy_browser.delete_volume.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.override
+msgctxt "staff.cat.copy_browser.delete_volume.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.copies_remain
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.exception
+msgid "copy browser -> delete volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.alert
+msgid "Library + Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.prompt
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.title
+msgctxt "staff.cat.copy_browser.mark_library.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.alert
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.title
+msgctxt "staff.cat.copy_browser.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_volume.alert
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.prompt
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.submit.label
+msgctxt "staff.cat.copy_browser.transfer.submit.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.label
+msgctxt "staff.cat.copy_browser.transfer.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.accesskey
+msgctxt "staff.cat.copy_browser.transfer.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.incomplete
+msgctxt "staff.cat.copy_browser.transfer.incomplete"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.override.failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.ineligible_destination
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.unexpected_error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.missing_volume
+msgctxt "staff.cat.copy_browser.transfer_items.missing_volume"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.unexpected_error
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.missing_library
+msgid "Missing library list."
+msgstr ""
+
+#: staff.cat.copy_browser.consortial_copy_count.error
+msgid "Error retrieving consortial copy count."
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.tree_location
+msgid "Location/Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.volume_count
+msgctxt "staff.cat.copy_browser.list_init.volume_count"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.copy_count
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.error
+msgid "Copy Browser Actions"
+msgstr ""
+
+#: staff.cat.copy_browser.refresh_list.error
+msgid "Problem refreshing the volume/copy tree."
+msgstr ""
+
+#: staff.cat.copy_buckets.render_pending_copies.complete
+msgctxt "staff.cat.copy_buckets.render_pending_copies.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.retrieve_row.error
+msgid "Error retrieving details for item with copy id = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.choose_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.choose_bucket"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.retrieve_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.retrieve_bucket"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.prompt
+msgctxt "staff.cat.copy_buckets.menulist.change_bucket.prompt"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.undefined
+msgid "Could not find a bucket with ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket id?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_sel_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_sel_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.error
+msgid "Deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_item.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.error
+msgid "Bucket deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.success
+msgid "Bucket \"%1$s\" created."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.batch.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.no_volume
+msgid ""
+"Please mark a volume as the destination from within the copy browser and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.confirm
+msgid ""
+"Transfer the items in bucket \"%1$s\" from their original volumes to the "
+"volume labelled \"%2$s\" for the library \"%3$s\" on the following record?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.error
+msgid "Items not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_buckets.cmd_export_to_copy_status.error
+msgid "Copy Status from Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets.prep_item_for_list.error
+msgid "List building failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt
+msgid "Copy this item into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt.plural
+msgctxt "staff.cat.copy_buckets_quick.bucket_prompt.plural"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.addition.error
+msgid "Addition likely failed for bucket = %1$s and copy ID = %2$s."
+msgstr ""
+
+#: staff.cat.copy_editor.caption
+msgid "Copy Editor"
+msgstr ""
+
+#: staff.cat.copy_editor.create_copies
+msgid "Create Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.status
+msgid "Status"
+msgstr ""
+
+#: staff.cat.copy_editor.retrieve_templates.error
+msgid "Error retrieving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_templates.error
+msgid "Error applying template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.prompt
+msgid "Enter template name:"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.title
+msgid "Save As Template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.success
+msgid "Template \"%1$s\" saved."
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.error
+msgid "Error saving template"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.confirm
+msgid "Delete template \"%1$s\"?"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.success
+msgid "Template \"%1$s\" deleted."
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.error
+msgid "Error deleting template"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.title
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.error
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.title
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.prompt
+msgid "Replace the existing template with the imported template?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.title
+msgid "Template %1$s already exists."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.yes
+msgctxt "staff.cat.copy_editor.import_templates.replace.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.no
+msgctxt "staff.cat.copy_editor.import_templates.replace.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.click_here
+msgctxt "staff.cat.copy_editor.import_templates.replace.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.prompt
+msgid "Save all of these imported templates permanently to this account?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.title
+msgid "Final warning"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.yes
+msgctxt "staff.cat.copy_editor.import_templates.save.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.no
+msgctxt "staff.cat.copy_editor.import_templates.save.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.click_here
+msgctxt "staff.cat.copy_editor.import_templates.save.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.success
+msgid "All templates saved."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.error
+msgid "Error saving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.note
+msgid ""
+"Note: These imported templates will get saved along with any new template "
+"you try to create, but if that does not happen, then these templates will "
+"disappear with the next invocation of the item attribute editor."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.error
+msgid "Error importing templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.undefined_volume.error
+msgid ""
+"Error retrieving Volume information for copy %1$s. The owning library for "
+"this copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.call_number.error
+msgid ""
+"Error changing owning library for copy %1$s. The owning library for this "
+"copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count
+msgid "1 copy"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count.plural
+msgid "%1$s copies"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.label
+msgctxt "staff.cat.copy_editor.apply.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.accesskey
+msgctxt "staff.cat.copy_editor.apply.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+msgctxt "staff.cat.copy_editor.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.success
+msgid "Items were added or modified."
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.error
+msgid "copy update error:"
+msgstr ""
+
+#: staff.cat.copy_editor.add_stat_cat.error
+msgid "Error adding statistical category to display definition"
+msgstr ""
+
+#: staff.cat.copy_editor.populate_stat_cat.error
+msgid "Error populating statistical categories for display"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.accesskey
+msgctxt "staff.cat.copy_notes.render_notes.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.note_id
+msgid "Note ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.creator_id
+msgid "Creator ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.public
+msgid "Public"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.private
+msgid "Private"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.msg
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.yes
+msgctxt "staff.cat.copy_notes.delete_note.prompt.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.no
+msgctxt "staff.cat.copy_notes.delete_note.prompt.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.success
+msgid "Note deleted."
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.close_window
+msgid "Close Window"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.public
+msgid "Public?"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.title
+msgid "Title"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.note
+msgid "Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.label
+msgctxt "staff.cat.copy_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.accesskey
+msgctxt "staff.cat.copy_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.label
+msgid "Add Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.accesskey
+msgctxt "staff.cat.copy_notes.new_note.add_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.success
+msgid "Note added."
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.error
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.cat.copy_summary.copy_id
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circs"
+msgstr ""
+
+#: staff.cat.copy_summary.yes
+msgctxt "staff.cat.copy_summary.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_summary.no
+msgctxt "staff.cat.copy_summary.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_summary.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.cat.copy_summary.not_cataloged
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_row
+msgid "Add Row: CTRL+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.insert_row
+msgid "Insert Row: CTRL+Shift+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_subfield
+msgid "Add Subfield: CTRL+D"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_row
+msgid "Remove Row: CTRL+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_subfield
+msgid "Remove Subfield: SHIFT+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_006
+msgid "Create/Replace 006: CTRL+F6"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_007
+msgid "Create/Replace 007: CTRL+F7"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_008
+msgid "Create/Replace 008: CTRL+F8"
+msgstr ""
+
+#: staff.cat.marcedit.save.label
msgid "Save Record"
msgstr ""
-#: cat.save.success
-msgid "Record successfully saved."
+#: staff.cat.marcedit.marcTag.LDR.label
+msgid "MARC Leader"
+msgstr ""
+
+#: staff.cat.marcedit.add_row.label
+msgid "Add Row"
+msgstr ""
+
+#: staff.cat.marcedit.remove_row.label
+msgid "Remove Row"
+msgstr ""
+
+#: staff.cat.marcedit.replace_006.label
+msgid "Add/Replace 006"
+msgstr ""
+
+#: staff.cat.marcedit.replace_007.label
+msgid "Add/Replace 007"
+msgstr ""
+
+#: staff.cat.marcedit.replace_008.label
+msgid "Add/Replace 008"
+msgstr ""
+
+#: staff.cat.marcedit.not_authority_field.label
+msgid "Not a controlled subfield"
+msgstr ""
+
+#: staff.cat.marcedit.apply_selected.label
+msgid "Apply Selected"
+msgstr ""
+
+#: staff.cat.marcedit.no_authority_match.label
+msgid "No matching authority records found"
+msgstr ""
+
+#: staff.cat.marc_new.create_record.label
+msgid "Create Record"
+msgstr ""
+
+#: staff.cat.marc_new.system_local.label
+msgid "System Local"
+msgstr ""
+
+#: staff.cat.marc_new.record_created.label
+msgid "Record created."
+msgstr ""
+
+#: staff.cat.marc_new.retrieving.label
+msgctxt "staff.cat.marc_new.retrieving.label"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.marc_new.creating_record.error
+msgid "Error creating MARC record."
+msgstr ""
+
+#: staff.cat.marc_new.loading_template.error
+msgid "Error loading MARC template: %1$s"
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.alert
+msgid "Record successfully saved."
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.std_unexpected_error
+msgid "Record not likely updated."
+msgstr ""
+
+#: staff.cat.opac.refresh.function_not_implemented.alert
+msgid "Not yet implemented. Work around: Choose Duplicate in New Tab option"
+msgstr ""
+
+#: staff.cat.opac.set_tab_name
+msgid "Record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.save_file_as
+msgid "Save File As"
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.alert
+msgid "File not downloaded."
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.std_unexpected_error
+msgid "Records could not be exported."
+msgstr ""
+
+#: staff.cat.record_buckets.rednder_pending_records.alert
+msgctxt "staff.cat.record_buckets.rednder_pending_records.alert"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.record_buckets.retrieve_row.std_unexpected_error
+msgid "Error retrieving mvr for record with ID = %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.buckets.std_unexpected_error
+msgid "Could not retrieve your buckets."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item1
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item1"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item2
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item2"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.bucket_id
+msgctxt "staff.cat.record_buckets.change_bucket.bucket_id"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket ID?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_bucket_named
+msgctxt "staff.cat.record_buckets.delete_bucket_named"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt_title
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt_title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.same_name_alert
+msgctxt "staff.cat.record_buckets.new_bucket.same_name_alert"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_created
+msgid "Bucket %1$s created."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.merge_lead
+msgid "Merge these records? (Select the \"lead\" record first)"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.button.label
+msgid "Merge"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead_record_number
+msgid "Lead Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead
+msgid "Lead"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt_title
+msgid "Record Merging"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt.alert
+msgid "Merge Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.success
+msgid "Records were successfully merged."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.catch.std_unex_error
+msgid "Records were not likely merged."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml1
+msgid "Delete these records?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.button.label
+msgctxt "staff.cat.record_buckets.delete_records.button.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml2
+msgid "Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt_title
+msgid "Record Purging"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt.alert
+msgid "Delete Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s1
+msgid "Error deleting these records:\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s2
+msgid "Record #%1$s : %2$s : %3$s\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.delete_success.alert
+msgid "Records deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.catch.std_unex_err
+msgid "Records were not likely deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_broken.alert
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.tab_name
+msgctxt "staff.cat.record_buckets.cmd_sel_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.catch.std_unex_err
+msgid "Showing in OPAC"
+msgstr ""
+
+#: staff.cat.record_buckets.submit.query_status
+msgctxt "staff.cat.record_buckets.submit.query_status"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.record_buckets.prep_record_for_list.std_unex_err
+msgid "Could not retrieve this record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_one_record
+msgid "Copy this record into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_multiple_records
+msgctxt "staff.cat.record_buckets_quick.copy_multiple_records"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.initing_record_buckets_quick_xul
+msgid "Trying to init record_buckets_quick.xul"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket.title
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.bucket_creation_failure
+msgctxt "staff.cat.record_buckets_quick.bucket_creation_failure"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.addition_failed
+msgid "Addition likely failed for bucket = %1$s and record ID = %2$s"
+msgstr ""
+
+#: staff.cat.spine_labels.copy
+msgid "copy"
+msgstr ""
+
+#: staff.cat.spine_labels.copies
+msgid "copies"
+msgstr ""
+
+#: staff.cat.spine_labels.generate.std_unexpeceted_err
+msgid "Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.title
+msgctxt "staff.cat.spine_labels.preview.title"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.std_unexpected_err
+msgid "Preview and Print"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.prompt
+msgid "Enter original barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.old_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.error_alert
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
msgstr ""
-#: cat.save.failure
-msgid "Record not likely updated."
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.prompt
+msgid "Enter the replacement barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.new_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc.failed
+msgid "Rename aborted. Blank barcodes are not allowed."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.testing_error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.insufficient_permission_for_rename
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.item_rename_error
+msgid "Error renaming item."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.rename_error
+msgid "Rename did not likely occur."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.unmarked_volume_alert
+msgctxt "staff.cat.util.transfer_copies.unmarked_volume_alert"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.params_message
+msgid ""
+"Transfer items from their original volumes to %1$s's volume labelled %2$s on "
+"the following record (and change their circulation libs to match)?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer.label
+msgctxt "staff.cat.util.transfer_copies.transfer.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.label
+msgctxt "staff.cat.util.transfer_copies.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.accesskey
+msgctxt "staff.cat.util.transfer_copies.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.window_title
+msgid "Item Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.aborted_transfer
+msgctxt "staff.cat.util.transfer_copies.aborted_transfer"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.override_transfer_failure
+msgid "Override Transfer Failure?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.successful_transfer
+msgid "Items transferred."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer_error
+msgid "All items not likely transferred."
+msgstr ""
+
+#: staff.cat.util.spine_editor.tab_name
+msgctxt "staff.cat.util.spine_editor.tab_name"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.spine_editor.spine_editor_error
+msgctxt "staff.cat.util.spine_editor.spine_editor_error"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.unknown_barcode
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.catalog_error_for_doc_id
+msgid "Error opening catalog for document ID = %1$s"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_in_title
+msgid "Batch"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit_in_title
+msgctxt "staff.cat.util.copy_editor.edit_in_title"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view_in_title
+msgctxt "staff.cat.util.copy_editor.view_in_title"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.copy_attributes_in_title
+msgid "Copy Attributes"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_edit
+msgid "Batch Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_view
+msgid "Batch View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit
+msgctxt "staff.cat.util.copy_editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view
+msgctxt "staff.cat.util.copy_editor.view"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.not_modified
+msgid "Copies not modified."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Damaged status."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_title
+msgctxt "staff.cat.util.mark_item_damaged.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_message
+msgid ""
+"Change the status for these items to Damaged? You will have to manually "
+"retrieve the last circulation if you need to bill a patron. Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_title
+msgid "Mark Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.md_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_cancel_label
+msgctxt "staff.cat.util.mark_item_damaged.md_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.md_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.marking_error
+msgid "Error marking item %1$s damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.one_item_damaged
+msgid "Item marked Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.multiple_item_damaged
+msgid "%1$s items marked Damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Missing status."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_title
+msgctxt "staff.cat.util.mark_item_missing.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_ok_label
+msgctxt "staff.cat.util.mark_item_missing.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_message
+msgid "'Change the status for these items to Missing? Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_title
+msgid "Mark Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_ok_label
+msgctxt "staff.cat.util.mark_item_missing.ms_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_cancel_label
+msgctxt "staff.cat.util.mark_item_missing.ms_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.ms_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.marking_error
+msgid "Error marking item %1$s missing."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.one_item_missing
+msgid "Item marked Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.multiple_item_missing
+msgid "%1$s items marked Missing."
+msgstr ""
+
+#: staff.cat.volume_buckets.window_tab_name
+msgid "Volume Buckets"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.my_init.btn.label
+msgctxt "staff.cat.volume_copy_creator.my_init.btn.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.message
+msgid ""
+"You may not add more than %1$s items at a time for a given volume in this "
+"interface."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.title
+msgid "Maximum items exceeded."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.ok_label
+msgid "Ok"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.call_nums
+msgid "Call Numbers"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.num_of_copies
+msgid "# of Copies"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_message
+msgid "\"%1$s\" is an invalid barcode."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_title
+msgid "Invalid Barcode"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button
+msgctxt "staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.problem_with_volume
+msgid ""
+"Problem finding or creating %1$s. We will skip item creation for this "
+"volume."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err2
+msgid "volume tree update 2"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err3
+msgid "volume tree update 3"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.load_prefs.err_retrieving_prefs
+msgid "Error retrieving stored preferences"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.save_prefs.err_storing_prefs
+msgid "Error storing preferences"
+msgstr ""
+
+#: staff.cat.z3950.obj_list_init.list_construction_error
+msgid "Failure during list construction."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.deck_label
+msgid "Results View"
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_view_error
+msgid "Failure during MARC view."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_error
+msgid "Failure during MARC import."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_overlay_error
+msgid "Failure during MARC import overlay."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.search_fields_error
+msgid "Error setting up search fields."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.z39_service_error
+msgid "Z39.50 services not likely retrieved."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.no_search_selection
+msgid "No services selected to search."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.searching
+msgctxt "staff.cat.z3950.initial_search.searching"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.failed_search
+msgid "Failure during initial search."
+msgstr ""
+
+#: staff.cat.z3950.page_next.more_results
+msgid "Retrieving more results..."
+msgstr ""
+
+#: staff.cat.z3950.page_next.subsequent_search_error
+msgid "Failure during subsequent search."
+msgstr ""
+
+#: staff.cat.z3950.search.search_error
+msgid "Failure during actual search."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.null_server_error
+msgid "Server Error: request returned null"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.server_error
+msgid "Server Error: %1$s : %2$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.raw_query
+msgid "Raw query: %1$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.showing_results
+msgid "Showing %1$s of %2$s for %3$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.num_of_results
+msgid "%1$s records found"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.result_error
+msgid "Error retrieving results."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.search_result_error
+msgid "Failure during search result handling."
+msgstr ""
+
+#: staff.cat.z3950.replace_tab_with_opac.tab_name
+msgctxt "staff.cat.z3950.replace_tab_with_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.title
+msgctxt "staff.cat.z3950.spawn_marc_editor.title"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn1_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn1_overlay"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn2_import
+msgid "Import with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn3_cancel_import
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn3_cancel_import"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.successful_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import_with_new_tcn
+msgid "Record successfully imported with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_cancelled
+msgid "Record import cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import
+msgid "Record successfully imported."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_error
+msgid "Record not likely imported."
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.description
+msgid "Overlay this record?"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.label
+msgctxt "staff.cat.z3950.confirm_overlay.lead.label"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.accesskey
+msgid "O"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.label
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.accesskey
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.title
+msgid "Record Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.aborted
+msgid "Overlay Aborted"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.try_again
+msgid ""
+"Please mark a record for overlay from within the catalog and try this again."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.tab_name
+msgid "MARC Editor"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_record_label
+msgid "Overlay Record"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn1_overlay
+msgid "Overlay with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.successful_overlay_with_new_TCN
+msgid "Record successfully overlaid with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.cancelled_overlay
+msgid "Record overlay cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_error
+msgid "Record not likely overlaid."
msgstr ""
-#: cat.record.counter
-msgid "Record %1$s of %2$s"
+#: staff.cat.z3950.load_creds.z3950_cred_error
+msgid "Error retrieving stored z39.50 credentials"
msgstr ""
-#: cat.preference.error
-msgid "Preference not likely updated."
+#: staff.cat.z3950.save_creds.z3950_cred_error
+msgid "Problem storing z39.50 credentials."
msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/circ.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: circ.bad_checkdigit
-msgid "This barcode has a bad check digit."
+#: staff.circ.alert
+msgid "Alert"
msgstr ""
-#: circ.barcode.enter
-msgid "Please enter a patron barcode first."
+#: staff.circ.item_no_circs
+msgid "Item %1$s has never circulated."
msgstr ""
-#: circ.barcode.warning
-msgid "Barcode Warning"
+#: staff.circ.invalid_date
+msgctxt "staff.circ.invalid_date"
+msgid "Invalid Date"
msgstr ""
-#: circ.standalone
-msgid "Standalone"
+#: staff.circ.future_date
+msgid "Future Date"
msgstr ""
-#: circ.duplicate_scan.msg
-msgid "This barcode has already been scanned."
+#: staff.circ.process_item
+msgid "Check In / Process Item"
msgstr ""
-#: circ.duplicate_scan.field
-msgid "Duplicate Scan"
+#: staff.circ.backdated_checkin
+msgid "Backdated %1$s Check In"
msgstr ""
-#: circ.offline_checkout.nonbarcoded
-msgid "or choose a non-barcoded option..."
+#: staff.circ.backdate.exception
+msgid "Problem setting backdate: %1$s"
msgstr ""
-#: circ.offline_checkout.items
-msgid "Enter the number of items:"
+#: staff.circ.unimplemented
+msgctxt "staff.circ.unimplemented"
+msgid "Not Yet Implemented"
msgstr ""
-#: circ.offline_checkout.download.warning
+#: staff.circ.check_digit.bad
+msgctxt "staff.circ.check_digit.bad"
msgid ""
-"WARNING: The non-barcode types have not been downloaded from the server. "
-"You should log in to retrieve these."
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.lost
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+#: staff.circ.barcode.bad
+msgid "Bad Barcode"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.expired
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+#: staff.circ.cancel
+msgctxt "staff.circ.cancel"
+msgid "Cancel"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.barred
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+#: staff.circ.barcode.accept
+msgid "Accept Barcode"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.blocked
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+#: staff.circ.confirm
+msgid "Check here to confirm this action"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.unknown
+#: staff.circ.confirm.msg
+msgid "Check here to confirm this message."
+msgstr ""
+
+#. # If we know the name of the object, we could parameterize that as well
+#: staff.circ.checkin.exception
+msgid "Something went wrong in circ.util.checkin: %1$s"
+msgstr ""
+
+#: staff.circ.checkin2.exception
+msgid "Something went wrong in circ.util.checkin2: %1$s"
+msgstr ""
+
+#: staff.circ.checkin.exception.external
+msgctxt "staff.circ.checkin.exception.external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.external
+msgid "circ.checkin2: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin.exception.no_external
+msgctxt "staff.circ.checkin.exception.no_external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.no_external
+msgid "circ.util.checkin2: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.external
+msgctxt "staff.circ.util.checkin.exception.external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.no_external
+msgctxt "staff.circ.util.checkin.exception.no_external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkout.sorting.exception
+msgid "error in sorting non-cataloged items: %1$s"
+msgstr ""
+
+#: staff.circ.checkout.date.exception
+msgid "Use this format: YYYY-MM-DD"
+msgstr ""
+
+#: staff.circ.checkout.unimplemented
+msgctxt "staff.circ.checkout.unimplemented"
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.msg
+msgid "Enter the number of %1$s circulating:"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.title
+msgid "Non-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.msg
+msgid "You tried to circulate %1$d %2$s. The maximum is 99 per action."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.too_many.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.ok.btn
+msgctxt "staff.circ.checkout.ok.btn"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.msg
+msgid "Are you sure you want to circulate %1$d %2$s?"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.confirm.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.yes.btn
+msgctxt "staff.circ.checkout.yes.btn"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.checkout.no.btn
+msgctxt "staff.circ.checkout.no.btn"
+msgid "No"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.msg
+msgid "Error with non-cataloged checkout. %1$s is not a valid number."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.non_numeric.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.disable.error
+msgid "Error determining whether to disable checkout."
+msgstr ""
+
+#: staff.circ.checkout.date.too_early.error
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed
+msgid "%1$s failed."
+msgstr ""
+
+#: staff.circ.checkout.non_cataloged.pending
+msgid "Non-cataloged checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.pending
+msgid "%1$s checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed.alert
+msgid "Check Out Failed %1$s"
+msgstr ""
+
+#: staff.circ.checkout.override.confirm
+msgid "Override Checkout Failure?"
+msgstr ""
+
+#: staff.circ.checkout.not_cataloged.confirm
+msgid "Mis-scan or non-cataloged item. Checkout as a pre-cataloged item?"
+msgstr ""
+
+#: staff.circ.pre_cataloged
+msgid "Pre-cataloged"
+msgstr ""
+
+#: staff.circ.non_cataloged
+msgid "Non-cataloged"
+msgstr ""
+
+#: staff.circ.checkout.cancelled
+msgid "Checkout cancelled"
+msgstr ""
+
+#: staff.circ.checkout.card.inactive
+msgid ""
+"The card used to retrieve this account is inactive and may not be used to "
+"circulate items."
+msgstr ""
+
+#: staff.circ.checkout.barcode.check_out_failed
+msgid "Check Out Failed"
+msgstr ""
+
+#: staff.circ.checkout.account.inactive
+msgid "This account is inactive and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.account.expired
+msgid "This account has expired and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.item_due
+msgid "This item was due on %1$s."
+msgstr ""
+
+#: staff.circ.checkout.normal_checkin_then_checkout
+msgid "Normal Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.forgiving_checkin_then_checkout
+msgid "Forgiving Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.abort_transit_then_checkout
+msgid "Abort Transit then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.network_failure
+msgid "There was a network failure."
+msgstr ""
+
+#: staff.circ.checkout.copy_status
+msgid "Copy status = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.alert_message
+msgid "Alert Message = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.permission_denied
+msgid "Permission Denied = %1$s"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkout.suggest_offline
+msgid ""
+"Check Out Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkout.barcode
+msgctxt "staff.circ.checkout.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_out_id
+msgid "Check Out Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_in_id
+msgid "Check In Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.failure
+msgid "Failure rendering circulation."
+msgstr ""
+
+#: staff.circ.copy_details.hold
+msgid "Hold ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.transit
+msgid "Transit ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.circ
+msgid "Circulation ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.last_circ
+msgid "Last Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.current_circ
+msgid "Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.no_circ
+msgid "This item has yet to circulate."
+msgstr ""
+
+#: staff.circ.copy_details.not_transit
+msgid "This item is not in transit."
+msgstr ""
+
+#. # Displays user info: "Family name, First name : Barcode"
+#: staff.circ.copy_details.user_details
+msgid "%1$s, %2$s : %3$s"
+msgstr ""
+
+#: staff.circ.copy_details.bad_hold_status
+msgid ""
+"This item is not captured for a hold, however its status is incorrectly set "
+"to \"On Holds Shelf\". Please check this item in to correct the status."
+msgstr ""
+
+#: staff.circ.copy_details.no_hold
+msgid "This item is not captured for a hold."
+msgstr ""
+
+#: staff.circ.copy_status.tab_name
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status.action.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.circ.copy_status.sel_checkin.error
+msgid "Checkin did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcode.error
+msgid "Barcode %1$s was not likely replaced."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcodes.error
+msgid "Barcode replacements did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.sel_edit.error
+msgid "with copy editor"
+msgstr ""
+
+#: staff.circ.copy_status.sel_renew.not_circulating
+msgid "Item with barcode %1$s is not circulating."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.title
+msgid "Import Barcode File"
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.complete
+msgid "File uploaded."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.no_barcodes
+msgid "No barcodes found in file."
+msgstr ""
+
+#: staff.circ.copy_status.add_items.title
+msgid "Add Item for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.confirm
+msgid "Are you sure sure you want to delete these items? %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.title
+msgctxt "staff.circ.copy_status.del_items.title"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success
+msgid "Items Deleted"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.mark_destination
+msgid "Please mark a volume as the destination and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.problem
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.perm_failure
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.title
+msgid "Add Volume/Item for Record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.perm_failure
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volume.title
+msgid "Volume for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.title
+msgid "Volumes for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.duplicate
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.singular
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.plural
+msgid "Are you sure you would like to delete these volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete
+msgid "Delete"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.cancel
+msgctxt "staff.circ.copy_status.delete_volumes.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.override
+msgctxt "staff.circ.copy_status.delete_volumes.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete_copies
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.status
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.title
+msgctxt "staff.circ.copy_status.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.ok
+msgctxt "staff.circ.copy_status.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library
+msgid "Library and Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one.title
+msgctxt "staff.circ.copy_status.mark_library.limit_one.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.none
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.confirm
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.transfer.label
+msgid "Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.label
+msgctxt "staff.circ.copy_status.transfer_volume.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.accesskey
+msgid "C"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.aborted
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.override_failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cannot_have_vols
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.test_barcode.prompt
+msgctxt "staff.circ.copy_status.test_barcode.prompt"
+msgid ""
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
+msgstr ""
+
+#: staff.circ.copy_status.status.null_result
+msgid "Something weird happened. Result was null."
+msgstr ""
+
+#: staff.circ.copy_status.status.copy_not_found
+msgid "%1$s was either mis-scanned or is not cataloged."
+msgstr ""
+
+#: staff.circ.copy_status.status.not_cataloged
+msgctxt "staff.circ.copy_status.status.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.copy_status.status.pre_cat
+msgid "Item is a pre-cataloged item."
+msgstr ""
+
+#: staff.circ.copy_status.status.hold
+msgid "Item is captured for a Hold."
+msgstr ""
+
+#: staff.circ.copy_status.status.transit
+msgid "Item is in Transit."
+msgstr ""
+
+#: staff.circ.copy_status.status.circ
+msgid "Item is circulating."
+msgstr ""
+
+#: staff.circ.hold_capture.print.to_printer
+msgid "To Printer"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.barcode
+msgctxt "staff.circ.hold_capture.print.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.title
+msgid "Title:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.author
+msgid "Author:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.route_to
+msgid "Route to:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.patron
+msgid "Patron:"
+msgstr ""
+
+#: staff.circ.hold_capture.calling_external
+msgid "circ.hold_capture: Calling external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.no_external
+msgid "circ.hold_capture: No external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.capture_failed
+msgid "Could not capture hold."
+msgstr ""
+
+#: staff.circ.hold_capture.error
+msgid "FIXME: need special alert and error handling"
+msgstr ""
+
+#: staff.circ.in_house_use.tab_name
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.barcode
+msgctxt "staff.circ.in_house_use.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncat_sort_error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncataloged
+msgid "Non-Cataloged"
+msgstr ""
+
+#: staff.circ.in_house_use.items_dump
+msgid "items ="
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple
+msgid "Are you sure you want to mark %1$s as having been used %2$s times?"
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple.title
+msgid "In-House Use Verification"
+msgstr ""
+
+#: staff.circ.in_house_use.yes
+msgctxt "staff.circ.in_house_use.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.in_house_use.no
+msgctxt "staff.circ.in_house_use.no"
+msgid "No"
+msgstr ""
+
+#. # adjust Circulation -> Offline Interface to match your translation in lang.dtd
+#: staff.circ.in_house_use.failed.verbose
+msgid ""
+"In House Use Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.in_house_use.failed
+msgid "In House Use Failed"
+msgstr ""
+
+#: staff.circ.in_house_use.ok
+msgctxt "staff.circ.in_house_use.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.in_house_use.external
+msgid "circ.in_house_use: Calling external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.no_external
+msgid "circ.in_house_use: No external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.external
+msgid "circ.in_house_use: Calling external .on_failure()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.no_external
+msgid "circ.in_house_use: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.print_list_template.window.title
+msgid "Template Macros"
+msgstr ""
+
+#: staff.circ.print_list_template.window.heading
+msgid "General:"
+msgstr ""
+
+#: staff.circ.print_list_template.window.template_type
+msgid "For type: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.window.close
+msgid "Close Window"
+msgstr ""
+
+#: staff.circ.print_list_template.preview
+msgid "preview:"
+msgstr ""
+
+#: staff.circ.print_list_template.save
+msgid "Template Saved"
+msgstr ""
+
+#: staff.circ.print_list_template.save_as
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.circ.print_list_template.export.error
+msgctxt "staff.circ.print_list_template.export.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.import
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.circ.print_list_template.import_results
+msgid "Imported these templates: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.reload
+msgid "Please reload this interface."
+msgstr ""
+
+#: staff.circ.print_list_template.import.error
+msgctxt "staff.circ.print_list_template.import.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.tab_name
+msgid "Receipt Template Editor"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.confirm
+msgid "Are you sure you would like to abort transits for copies: %1$s?"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.title
+msgid "Aborting Transits"
+msgstr ""
+
+#: staff.circ.utils.yes
+msgctxt "staff.circ.utils.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.utils.no
+msgctxt "staff.circ.utils.no"
+msgid "No"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_allowed
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_found
msgid ""
-"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
-"%3$s."
+"This item was no longer in transit at the time of the abort. Perhaps this "
+"happened from a stale display?"
msgstr ""
-#: circ.offline_checkout.date.early
-msgid "Due date needs to be after today."
+#: staff.circ.utils.abort_transits.unexpected_error
+msgid "Transit not likely aborted."
+msgstr ""
+
+#: staff.circ.utils.retrieve_patron.failure
+msgid "Problem retrieving patron."
+msgstr ""
+
+#: staff.circ.utils.retrieve_copy.failure
+msgid "Problem retrieving copy details."
+msgstr ""
+
+#: staff.circ.utils.retrieve_circs.failure
+msgid "Problem retrieving circulations."
+msgstr ""
+
+#: staff.circ.utils.offline.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.circ.utils.offline.checkout_time
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.utils.offline.type
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat_type
+msgid "Non-Cataloged Type ID"
+msgstr ""
+
+#: staff.circ.utils.offline.count
+msgid "Count"
+msgstr ""
+
+#: staff.circ.utils.offline.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.utils.offline.backdate
+msgid "Back Date"
+msgstr ""
+
+#: staff.circ.utils.offline.use_time
+msgid "Use Time"
+msgstr ""
+
+#: staff.circ.utils.not_cataloged
+msgctxt "staff.circ.utils.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.utils.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.circ.utils.owning_lib
+msgid "Owning Library"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.short
+msgid "Short"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.normal
+msgctxt "staff.circ.utils.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.long
+msgid "Long"
+msgstr ""
+
+#: staff.circ.utils.fine_level.low
+msgid "Low"
+msgstr ""
+
+#: staff.circ.utils.fine_level.normal
+msgctxt "staff.circ.utils.fine_level.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.fine_level.high
+msgid "High"
+msgstr ""
+
+#: staff.circ.utils.circulate
+msgid "Circulate?"
+msgstr ""
+
+#: staff.circ.utils.deleted
+msgid "Deleted?"
+msgstr ""
+
+#: staff.circ.utils.holdable
+msgid "Holdable?"
+msgstr ""
+
+#: staff.circ.utils.opac_visible
+msgid "OPAC Visible?"
+msgstr ""
+
+#: staff.circ.utils.reference
+msgid "Reference?"
+msgstr ""
+
+#: staff.circ.utils.deposit
+msgid "Deposit?"
+msgstr ""
+
+#. # The < and > highlight that the value is not set; translate Unset and change the delimiters as needed
+#: staff.circ.utils.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.circ.utils.checkout_lib
+msgid "Checkout Library"
+msgstr ""
+
+#: staff.circ.utils.checkout_timestamp
+msgid "Checkout Timestamp"
+msgstr ""
+
+#: staff.circ.utils.checkin_timestamp
+msgid "Checkin Timestamp"
+msgstr ""
+
+#: staff.circ.utils.xact_start
+msgid "Checkout Date"
+msgstr ""
+
+#: staff.circ.utils.checkin_time
+msgid "Checkin Date"
+msgstr ""
+
+#: staff.circ.utils.xact_finish
+msgid "Transaction Finished"
+msgstr ""
+
+#: staff.circ.utils.create_date
+msgid "Date Created"
+msgstr ""
+
+#: staff.circ.utils.edit_date
+msgid "Date Last Edited"
+msgstr ""
+
+#: staff.circ.utils.edition
+msgid "Edition"
+msgstr ""
+
+#: staff.circ.utils.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.circ.utils.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.circ.utils.publisher
+msgid "Publisher"
+msgstr ""
+
+#. # TCN is an acronym for Title Control Number
+#: staff.circ.utils.tcn
+msgid "TCN"
+msgstr ""
+
+#: staff.circ.utils.stop_fines
+msgid "Fines Stopped"
+msgstr ""
+
+#: staff.circ.utils.stop_fines_time
+msgid "Fines Stopped Time"
+msgstr ""
+
+#: staff.circ.utils.route_to
+msgid "Route To"
+msgstr ""
+
+#: staff.circ.utils.message
+msgid "Message"
+msgstr ""
+
+#: staff.circ.utils.uses
+msgid "# of Uses"
+msgstr ""
+
+#: staff.circ.utils.alert_message
+msgid "Alert Message"
+msgstr ""
+
+#: staff.circ.utils.barcode
+msgid "Barcode"
msgstr ""
-#: circ.offline_checkout.required_field
-msgid "Required Field"
+#: staff.circ.utils.title
+msgid "Title"
msgstr ""
-#: circ.offline_checkout.valid_count
-msgid "Please try again and enter a valid count."
+#: staff.circ.utils.author
+msgid "Author"
msgstr ""
-#: circ.offline_checkout.required_value
-msgid "Required Value"
+#: staff.circ.utils.callnumber
+msgid "Call Number"
msgstr ""
-#: circ.offline_register.future.birth.date
-msgid "Patron needs to be born yesterday."
+#: staff.circ.utils.transit_id
+msgid "Transit ID"
msgstr ""
-#: circ.offline_register.invalid.birth.date
-msgid "Happy birthday! You need to be more than 0 days old."
+#: staff.circ.utils.transit_source
+msgid "Transit Source"
msgstr ""
-#: circ.offline_register.survey.prompt
-msgid "Choose a response..."
+#: staff.circ.utils.transit_source_send_time
+msgid "Transit Send Time"
msgstr ""
-#: circ.offline_register.missing.post_code
-msgid "Missing Address : Postal Code"
+#: staff.circ.utils.transit_dest
+msgid "Transit Destination"
msgstr ""
-#: circ.offline_register.missing.state
-msgid "Missing Address : State"
+#: staff.circ.utils.transit_dest_recv_time
+msgid "Transit Completion Time"
msgstr ""
-#: circ.offline_register.missing.city
-msgid "Missing Address : City"
+#: staff.circ.utils.transit_target_copy
+msgid "Transit Copy ID"
msgstr ""
-#: circ.offline_register.missing.street1
-msgid "Missing Address : Line 1"
+#: staff.circ.utils.request_lib
+msgid "Request Library (Full Name)"
msgstr ""
-#: circ.offline_register.missing.ident_value
-msgid "Missing Identification Value"
+#: staff.circ.utils.request_lib_shortname
+msgid "Request Library"
msgstr ""
-#: circ.offline_register.missing.ident_type
-msgid "Missing Identification Type"
+#: staff.circ.utils.request_timestamp
+msgid "Request Timestamp"
msgstr ""
-#: circ.offline_register.missing.dob
-msgid "Missing Date of Birth"
+#: staff.circ.utils.request_time
+msgid "Request Date"
msgstr ""
-#: circ.offline_register.missing.first_given_name
-msgid "Missing First Name"
+#. # Time the hold became available
+#: staff.circ.utils.available_timestamp
+msgid "Available On (Timestamp)"
+msgstr ""
+
+#. # Date the hold became available
+#: staff.circ.utils.available_time
+msgid "Available On"
+msgstr ""
+
+#. # Time the hold was captured
+#: staff.circ.utils.capture_timestamp
+msgid "Capture Timestamp"
+msgstr ""
+
+#. # Date the hold was captured
+#: staff.circ.utils.capture_time
+msgid "Capture Date"
+msgstr ""
+
+#: staff.circ.utils.hold_status.1
+msgid "Waiting for copy"
+msgstr ""
+
+#: staff.circ.utils.hold_status.2
+msgid "Waiting for capture"
+msgstr ""
+
+#: staff.circ.utils.hold_status.3
+msgid "In-Transit"
+msgstr ""
+
+#: staff.circ.utils.hold_status.4
+msgid "Ready for pickup"
+msgstr ""
+
+#: staff.circ.utils.frozen
+msgid "Frozen?"
+msgstr ""
+
+#: staff.circ.utils.active
+msgid "Active?"
+msgstr ""
+
+#: staff.circ.utils.thaw_date
+msgid "Activation Date"
+msgstr ""
+
+#: staff.circ.utils.thaw_date.none
+msgid "No Date"
+msgstr ""
+
+#: staff.circ.utils.pickup_lib
+msgid "Pickup Library (Full Name)"
+msgstr ""
+
+#: staff.circ.utils.current_copy.none
+msgid "No Copy"
+msgstr ""
+
+#: staff.circ.utils.title.none
+msgid "No Title?"
+msgstr ""
+
+#: staff.circ.utils.author.none
+msgid "No Author?"
+msgstr ""
+
+#: staff.circ.utils.notify_time
+msgid "Last Notify Time"
+msgstr ""
+
+#: staff.circ.utils.notify_count
+msgid "Notices"
+msgstr ""
+
+#: staff.circ.utils.patron_family_name
+msgid "Patron Last Name"
+msgstr ""
+
+#: staff.circ.utils.patron_first_given_name
+msgid "Patron First Name"
+msgstr ""
+
+#: staff.circ.utils.checkin.override
+msgid "Override Checkin Failure?"
+msgstr ""
+
+#: staff.circ.utils.billable.amount
+msgid "Transaction for %1$s billable $%2$s"
+msgstr ""
+
+#: staff.circ.utils.transit_hold_cancelled
+msgid "Original hold for transit cancelled."
+msgstr ""
+
+#: staff.circ.utils.item_checked_in
+msgid "%1$s was already checked in."
+msgstr ""
+
+#: staff.circ.utils.item_not_cataloged
+msgid "ITEM_NOT_CATALOGED event but copy status is %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_to.msg
+msgid "This item needs to be routed to %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_item_error
+msgid "We should have received a ROUTE_ITEM"
+msgstr ""
+
+#: staff.circ.utils.route_item_status_error
+msgid "status of Holds Shelf, but no actual hold found."
+msgstr ""
+
+#: staff.circ.utils.payload.hold.barcode
+msgctxt "staff.circ.utils.payload.hold.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.title
+msgid "Title: %1$s"
+msgstr ""
+
+#. # Hold for patron familyName, firstName secondName
+#: staff.circ.utils.payload.hold.patron
+msgid "Hold for patron %1$s, %2$s %3$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.phone_notify
+msgid "Notify by phone: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.email_notify
+msgid "Notify by email: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.request_date
+msgid "Request Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.slip_date
+msgid "Slip Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.hold_slip
+msgid "Hold Slip"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.yes
+msgid "Print"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.no
+msgid "Do Not Print"
+msgstr ""
+
+#: staff.circ.utils.capture
+msgid "%1$s has been captured for a hold."
+msgstr ""
+
+#: staff.circ.utils.needs_cataloging
+msgid "%1$s needs to be cataloged."
+msgstr ""
+
+#: staff.circ.utils.copy_status.error
+msgid "FIXME -- this case \"%1$s\" is unhandled."
+msgstr ""
+
+#: staff.circ.utils.msg.ok
+msgctxt "staff.circ.utils.msg.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.utils.route_to.destination
+msgid "Destination: %1$s."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address
+msgid "We do not have a holds address for this library."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address.error
+msgid "Unable to retrieve mailing address."
+msgstr ""
+
+#: staff.circ.utils.payload.author
+msgid "Author: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.in_transit
+msgid "%1$s is in transit."
+msgstr ""
+
+#: staff.circ.checkin.hold_capture
+msgid "Hold Capture"
+msgstr ""
+
+#: staff.circ.checkin.check_in.tab
+msgid "Item Check In"
+msgstr ""
+
+#: staff.circ.checkin.error
+msgid "Check In Failed (in circ.util.checkin) (%1$s):"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkin.suggest_offline
+msgid ""
+"Check In Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.error
+msgid "Renew Failed for %1$s"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.override
+msgid "Override Renew Failure?"
+msgstr ""
+
+#: staff.circ.renew.barcode
+msgctxt "staff.circ.renew.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.status
+msgid "Barcode: %1$s Status: %2$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.msg
+msgid "Barcode: %1$s Message: %2$s"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt
+msgid "Are you sure you would like to activate hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt.plural
+msgid "Are you sure you would like to activate holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt
+msgid "Are you sure you would like to suspend hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt.plural
+msgid "Are you sure you would like to suspend holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for hold %1$s. "
+"This will also Suspend the hold."
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt.plural
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for holds %1$s. "
+"This will also Suspend the holds."
+msgstr ""
+
+#: staff.circ.holds.activation_date.too_early.error
+msgid ""
+"Activation Date needs to be either unset or set to fall on a future date."
msgstr ""
-#: circ.offline_register.missing.family_name
-msgid "Missing Last Name"
+#: staff.circ.holds.activation_date.invalid_date
+msgctxt "staff.circ.holds.activation_date.invalid_date"
+msgid "Invalid Date"
msgstr ""
-#: circ.offline_register.missing.passwd
-msgid "Missing Password"
+#: staff.circ.holds.modifying_holds
+msgid "Modifying Holds"
msgstr ""
-#: circ.offline_register.missing.barcode
-msgid "Missing Barcode"
+#: staff.circ.holds.modifying_holds.yes
+msgctxt "staff.circ.holds.modifying_holds.yes"
+msgid "Yes"
msgstr ""
-#: circ.offline_register.missing.profile
-msgid "Missing Profile"
+#: staff.circ.holds.modifying_holds.no
+msgctxt "staff.circ.holds.modifying_holds.no"
+msgid "No"
msgstr ""
-#: circ.offline_register.missing.home_ou
-msgid "Missing Home Library"
+#: staff.circ.holds.already_activated
+msgid "Hold %1$s was already activated."
msgstr ""
-#: circ.offline_register.missing.alert
-msgid "Please fix the following:"
+#: staff.circ.holds.already_activated.plural
+msgid "Holds %1$s were already activated."
msgstr ""
-#: circ.offline_register.patron.saved
-msgid "Patron Registration Saved"
+#: staff.circ.holds.already_suspended
+msgid "Hold %1$s was already suspended."
msgstr ""
-#: circ.offline_register.missing.library.list
-msgid "Missing library list."
+#: staff.circ.holds.already_suspended.plural
+msgid "Holds %1$s were already suspended."
msgstr ""
-#: circ.offline_register.missing.profile.list
-msgid "Missing profile list."
+#: staff.circ.holds.unexpected_error.not_likely_modified
+msgid "Holds not likely modified."
msgstr ""
-#: circ.offline_register.missing.id.type.list
-msgid "Missing identification type list."
+#: staff.circ.holds.unexpected_error.not_likely_activated
+msgid "Holds not likely activated."
msgstr ""
-#: circ.offline_register.missing.required.surveys
-msgid "Missing required surveys."
+#: staff.circ.holds.unexpected_error.not_likely_suspended
+msgid "Holds not likely suspended."
msgstr ""
-#: circ.offline_register.missing.files.error
+#: staff.circ.holds.error.may_not_edit_pickup_lib_for_hold_intransit
msgid ""
-"ERROR: Offline patron registration requires some server-generated files. "
-"Please login periodically to retrieve these files."
+"You may not edit the pickup library for holds that are in-transit or ready "
+"for pickup."
msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/common.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/common.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: common.exception
msgid "The JSAN library object is missing."
msgstr ""
+#: common.error
+msgid "Please inform your help desk or developers of this error:"
+msgstr ""
+
#: common.ok
msgid "Ok"
msgstr ""
msgstr ""
#: common.barcode.status.warning
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3$s."
msgstr ""
#: common.barcode.status.warning.lost
msgstr ""
#: common.barcode.status.warning.barred
+msgctxt "common.barcode.status.warning.barred"
msgid "Barred"
msgstr ""
#: common.date.invalid
msgid "Invalid Date"
msgstr ""
+
+#: common.action_complete
+msgid "Action completed."
+msgstr ""
+
+#. # common.grouping_string = the string that should be inserted between elements of a grouped list
+#: common.grouping_string
+msgid ","
+msgstr ""
+
+#: common.unimplemented
+msgid "Not yet implemented"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.check_to_confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
+
+#: staff.acp_label_barcode
+msgctxt "staff.acp_label_barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.acp_label_call_number
+msgid "Call Number"
+msgstr ""
+
+#: staff.acp_label_circ_as_type
+msgid "Circulate As Type"
+msgstr ""
+
+#: staff.acp_label_circ_lib
+msgid "Circulation Library"
+msgstr ""
+
+#: staff.acp_label_circ_modifier
+msgid "Circulation Modifier"
+msgstr ""
+
+#: staff.acp_label_copy_number
+msgid "Copy Number"
+msgstr ""
+
+#: staff.acp_label_deposit_amount
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.acp_label_fine_level
+msgid "Fine Level"
+msgstr ""
+
+#: staff.acp_label_id
+msgid "Copy ID"
+msgstr ""
+
+#: staff.acp_label_loan_duration
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.acp_label_location
+msgid "Location"
+msgstr ""
+
+#: staff.acp_label_price
+msgid "Price"
+msgstr ""
+
+#: staff.acp_label_status
+msgctxt "staff.acp_label_status"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_current_copy_label
+msgid "Current Copy"
+msgstr ""
+
+#: staff.ahr_email_notify_label
+msgid "Email Notify"
+msgstr ""
+
+#: staff.ahr_expire_time_label
+msgid "Expire Time"
+msgstr ""
+
+#: staff.ahr_fulfillment_time_label
+msgid "Fulfillment Time"
+msgstr ""
+
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.ahr_holdable_formats_label
+msgid "Holdable Formats"
+msgstr ""
+
+#: staff.ahr_id_label
+msgid "Hold ID"
+msgstr ""
+
+#: staff.ahr_phone_notify_label
+msgid "Phone Notify"
+msgstr ""
+
+#: staff.ahr_pickup_lib_label
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.ahr_prev_check_time_label
+msgid "Previous Check Time"
+msgstr ""
+
+#: staff.ahr_requestor_label
+msgid "Requestor"
+msgstr ""
+
+#: staff.ahr_selection_depth_label
+msgid "Selection Depth"
+msgstr ""
+
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_target_label
+msgid "Target"
+msgstr ""
+
+#: staff.ahr_usr_label
+msgctxt "staff.ahr_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.circ_label_due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ_label_id
+msgid "Circulation ID"
+msgstr ""
+
+#: staff.circ_label_renewal_remaining
+msgid "Remaining Renewals"
+msgstr ""
+
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr ""
+
+#: staff.bills_xact_dates_label
+msgid "Record / Dates"
+msgstr ""
+
+#: staff.bills_information
+msgid "Information"
+msgstr ""
+
+#: staff.bills_current_payment_label
+msgid "Current Payment"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill #"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgid "Start"
+msgstr ""
+
+#: staff.mbts_xact_finish_label
+msgid "Finish"
+msgstr ""
+
+#: staff.mbts_xact_type_label
+msgctxt "staff.mbts_xact_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_usr_label
+msgctxt "staff.mbts_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.mbts_last_billing_note_label
+msgid "Last Billing Note"
+msgstr ""
+
+#: staff.mbts_last_billing_type_label
+msgid "Last Billing Type"
+msgstr ""
+
+#: staff.mbts_last_billing_timestamp_label
+msgid "Last Billed"
+msgstr ""
+
+#: staff.mbts_last_payment_note_label
+msgid "Last Payment Note"
+msgstr ""
+
+#: staff.mbts_last_payment_type_label
+msgid "Last Payment Type"
+msgstr ""
+
+#: staff.mbts_last_payment_timestamp_label
+msgid "Last Payment"
+msgstr ""
+
+#: staff.mb_billing_type_label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.mb_xact_label
+msgctxt "staff.mb_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mb_billing_ts_label
+msgctxt "staff.mb_billing_ts_label"
+msgid "When"
+msgstr ""
+
+#: staff.mb_void_time_label
+msgid "Void Time"
+msgstr ""
+
+#: staff.mb_note_label
+msgctxt "staff.mb_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mb_amount_label
+msgctxt "staff.mb_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mb_voider_label
+msgid "Voider"
+msgstr ""
+
+#: staff.mb_voided_label
+msgctxt "staff.mb_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mb_id_label
+msgid "Billing ID"
+msgstr ""
+
+#: staff.mp_credit_card_payment_label
+msgid "Credit Card Payment"
+msgstr ""
+
+#: staff.mp_forgive_payment_label
+msgid "Forgive Payment"
+msgstr ""
+
+#: staff.mp_payment_timestamp_label
+msgctxt "staff.mp_payment_timestamp_label"
+msgid "When"
+msgstr ""
+
+#: staff.mp_payment_type_label
+msgid "Payment Type"
+msgstr ""
+
+#: staff.mp_voided_label
+msgctxt "staff.mp_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mp_id_label
+msgid "Payment ID"
+msgstr ""
+
+#: staff.mp_goods_payment_label
+msgid "Goods Payment"
+msgstr ""
+
+#: staff.mp_xact_label
+msgctxt "staff.mp_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mp_credit_payment_label
+msgid "Credit Payment"
+msgstr ""
+
+#: staff.mp_work_payment_label
+msgid "Work Payment"
+msgstr ""
+
+#: staff.mp_note_label
+msgctxt "staff.mp_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mp_cash_payment_label
+msgid "Cash Payment"
+msgstr ""
+
+#: staff.mp_amount_label
+msgctxt "staff.mp_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mp_check_payment_label
+msgid "Check Payment"
+msgstr ""
+
+#: staff.mp_cash_drawer_label
+msgid "Workstation"
+msgstr ""
+
+#: staff.mp_accepting_usr_label
+msgid "Staff"
+msgstr ""
+
+#: staff.card_barcode_label
+msgctxt "staff.card_barcode_label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.au_active_label
+msgid "Active"
+msgstr ""
+
+#: staff.au_usrname_label
+msgid "Login Name"
+msgstr ""
+
+#: staff.au_profile_label
+msgid "Profile"
+msgstr ""
+
+#: staff.au_barred_label
+msgctxt "staff.au_barred_label"
+msgid "Barred"
+msgstr ""
+
+#: staff.au_alert_message_label
+msgid "Alert"
+msgstr ""
+
+#: staff.au_claims_returned_count_label
+msgid "Returns Claimed"
+msgstr ""
+
+#: staff.au_create_date_label
+msgid "Created On"
+msgstr ""
+
+#: staff.au_expire_date_label
+msgid "Expires On"
+msgstr ""
+
+#: staff.au_home_library_label
+msgid "Home Library"
+msgstr ""
+
+#: staff.au_home_library_fullname_label
+msgid "Home Library (Full Name)"
+msgstr ""
+
+#: staff.au_credit_forward_balance_label
+msgid "Credit"
+msgstr ""
+
+#: staff.au_day_phone_label
+msgid "Day Phone"
+msgstr ""
+
+#: staff.au_evening_phone_label
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.au_other_phone_label
+msgid "Other Phone"
+msgstr ""
+
+#: staff.au_email_label
+msgid "Email"
+msgstr ""
+
+#: staff.au_birth_date_label
+msgid "Birth Date"
+msgstr ""
+
+#: staff.au_ident_type_label
+msgid "Identification Type"
+msgstr ""
+
+#: staff.au_ident_value_label
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ident_type2_label
+msgid "Identification Type 2"
+msgstr ""
+
+#: staff.au_ident_value2_label
+msgid "Identification Value 2"
+msgstr ""
+
+#: staff.au_net_access_level_label
+msgid "Internet Access"
+msgstr ""
+
+#: staff.au_master_account_label
+msgid "Group Lead"
+msgstr ""
+
+#: staff.au_group_id_label
+msgid "Group ID"
+msgstr ""
+
+#: staff.au_id_label
+msgid "User ID"
+msgstr ""
+
+#: staff.au_name_prefix_label
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_family_name_label
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_first_given_name_label
+msgid "First Name"
+msgstr ""
+
+#: staff.au_second_given_name_label
+msgid "Middle Name"
+msgstr ""
+
+#: staff.au_name_suffix_label
+msgid "Suffix"
+msgstr ""
+
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgid "ISSN"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers/Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.ser
+msgid "Serials"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.z39_50.search_class.publisher
+msgid "Publisher"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.main.data.loaded
+msgid "Data loaded."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.synced
+msgid "Offline interface synchronized with server."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.noncat_sort.error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.please_wait
+msgid "Please wait"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.workstation_registration_denied
+msgid "You do not have permission to register a workstation."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.override
+msgid "Override Registration Failure?"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.error
+msgid "Workstation Registration error (%1$s)"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.success
+msgid "Registration successful"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:45-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+
+#: config.bib_source:3
+msgid "oclc"
+msgstr ""
+
+#: config.bib_source:5
+msgid "System Local"
+msgstr ""
+
+#: config.bib_source:7
+msgid "Project Gutenberg"
+msgstr ""
+
+#: config.standing:9
+msgid "Good"
+msgstr ""
+
+#: config.standing:10
+msgid "Barred"
+msgstr ""
+
+#: config.non_cataloged_type:43
+msgid "Paperback Book"
+msgstr ""
+
+#: config.identification_type:46
+msgid "Drivers License"
+msgstr ""
+
+#: config.identification_type:48
+msgid "SSN"
+msgstr ""
+
+#: config.identification_type:50
+msgid "Other"
+msgstr ""
+
+#: config.rule_circ_duration:53
+msgid "7_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:55
+msgid "28_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:57
+msgid "3_months_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:59
+msgid "3_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:61
+msgid "2_months_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:63
+msgid "35_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:65
+msgid "7_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:67
+msgid "1_hour_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:69
+msgid "28_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:71
+msgid "14_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:73
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:76
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:78
+msgid "overdue_min"
+msgstr ""
+
+#: config.rule_max_fine:80
+msgid "overdue_mid"
+msgstr ""
+
+#: config.rule_max_fine:82
+msgid "overdue_max"
+msgstr ""
+
+#: config.rule_max_fine:84
+msgid "overdue_equip_min"
+msgstr ""
+
+#: config.rule_max_fine:86
+msgid "overdue_equip_mid"
+msgstr ""
+
+#: config.rule_max_fine:88
+msgid "overdue_equip_max"
+msgstr ""
+
+#: config.rule_recuring_fine:91
+msgid "default"
+msgstr ""
+
+#: config.rule_recuring_fine:93
+msgid "10_cent_per_day"
+msgstr ""
+
+#: config.rule_recuring_fine:95
+msgid "50_cent_per_day"
+msgstr ""
+
+#: config.rule_age_hold_protect:97
+msgid "3month"
+msgstr ""
+
+#: config.rule_age_hold_protect:98
+msgid "6month"
+msgstr ""
+
+#: config.copy_status:100
+msgid "Available"
+msgstr ""
+
+#: config.copy_status:102
+msgid "Checked out"
+msgstr ""
+
+#: config.copy_status:104
+msgid "Bindery"
+msgstr ""
+
+#: config.copy_status:105
+msgid "Lost"
+msgstr ""
+
+#: config.copy_status:106
+msgid "Missing"
+msgstr ""
+
+#: config.copy_status:108
+msgid "In process"
+msgstr ""
+
+#: config.copy_status:109
+msgid "In transit"
+msgstr ""
+
+#: config.copy_status:110
+msgid "Reshelving"
+msgstr ""
+
+#: config.copy_status:111
+msgid "On holds shelf"
+msgstr ""
+
+#: config.copy_status:112
+msgid "On order"
+msgstr ""
+
+#: config.copy_status:114
+msgid "ILL"
+msgstr ""
+
+#: config.copy_status:115
+msgid "Cataloging"
+msgstr ""
+
+#: config.copy_status:116
+msgid "Reserves"
+msgstr ""
+
+#: config.copy_status:117
+msgid "Discard/Weed"
+msgstr ""
+
+#: config.copy_status:118
+msgid "Damaged"
+msgstr ""
+
+#: config.net_access_level:123
+msgid "Filtered"
+msgstr ""
+
+#: config.net_access_level:125
+msgid "Unfiltered"
+msgstr ""
+
+#: config.net_access_level:127
+msgid "No Access"
+msgstr ""
+
+#: config.audience_map:130
+msgid "Unknown or unspecified"
+msgstr ""
+
+#: config.audience_map:132
+msgid "Preschool"
+msgstr ""
+
+#: config.audience_map:134
+msgid "Primary"
+msgstr ""
+
+#: config.audience_map:136
+msgid "Pre-adolescent"
+msgstr ""
+
+#: config.audience_map:138
+msgid "Adolescent"
+msgstr ""
+
+#: config.audience_map:140
+msgid "Adult"
+msgstr ""
+
+#: config.audience_map:142
+msgid "Specialized"
+msgstr ""
+
+#: config.audience_map:144
+msgid "General"
+msgstr ""
+
+#: config.audience_map:146
+msgid "Juvenile"
+msgstr ""
+
+#: config.lit_form_map:149
+msgid "Not fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:151
+msgid "Fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:153
+msgid "Comic strips"
+msgstr ""
+
+#: config.lit_form_map:155
+msgid "Dramas"
+msgstr ""
+
+#: config.lit_form_map:157
+msgid "Essays"
+msgstr ""
+
+#: config.lit_form_map:159
+msgid "Novels"
+msgstr ""
+
+#: config.lit_form_map:161
+msgid "Humor, satires, etc."
+msgstr ""
+
+#: config.lit_form_map:163
+msgid "Letters"
+msgstr ""
+
+#: config.lit_form_map:165
+msgid "Short stories"
+msgstr ""
+
+#: config.lit_form_map:167
+msgid "Mixed forms"
+msgstr ""
+
+#: config.lit_form_map:169
+msgid "Poetry"
+msgstr ""
+
+#: config.lit_form_map:171
+msgid "Speeches"
+msgstr ""
+
+#: config.lit_form_map:173
+msgid "Unknown"
+msgstr ""
+
+#: config.language_map:177
+msgid "Afar"
+msgstr ""
+
+#: config.language_map:178
+msgid "Abkhaz"
+msgstr ""
+
+#: config.language_map:179
+msgid "Achinese"
+msgstr ""
+
+#: config.language_map:180
+msgid "Acoli"
+msgstr ""
+
+#: config.language_map:181
+msgid "Adangme"
+msgstr ""
+
+#: config.language_map:182
+msgid "Adygei"
+msgstr ""
+
+#: config.language_map:183
+msgid "Afroasiatic (Other)"
+msgstr ""
+
+#: config.language_map:184
+msgid "Afrihili (Artificial language)"
+msgstr ""
+
+#: config.language_map:185
+msgid "Afrikaans"
+msgstr ""
+
+#: config.language_map:186
+msgid "Aljamía"
+msgstr ""
+
+#: config.language_map:187
+msgid "Akan"
+msgstr ""
+
+#: config.language_map:188
+msgid "Akkadian"
+msgstr ""
+
+#: config.language_map:189
+msgid "Albanian"
+msgstr ""
+
+#: config.language_map:190
+msgid "Aleut"
+msgstr ""
+
+#: config.language_map:191
+msgid "Algonquian (Other)"
+msgstr ""
+
+#: config.language_map:192
+msgid "Amharic"
+msgstr ""
+
+#: config.language_map:193
+msgid "English, Old (ca. 450-1100)"
+msgstr ""
+
+#: config.language_map:194
+msgid "Apache languages"
+msgstr ""
+
+#: config.language_map:195
+msgid "Arabic"
+msgstr ""
+
+#: config.language_map:196
+msgid "Aramaic"
+msgstr ""
+
+#: config.language_map:197
+msgid "Aragonese Spanish"
+msgstr ""
+
+#: config.language_map:198
+msgid "Armenian"
+msgstr ""
+
+#: config.language_map:199
+msgid "Mapuche"
+msgstr ""
+
+#: config.language_map:200
+msgid "Arapaho"
+msgstr ""
+
+#: config.language_map:201
+msgid "Artificial (Other)"
+msgstr ""
+
+#: config.language_map:202
+msgid "Arawak"
+msgstr ""
+
+#: config.language_map:203
+msgid "Assamese"
+msgstr ""
+
+#: config.language_map:204
+msgid "Bable"
+msgstr ""
+
+#: config.language_map:205
+msgid "Athapascan (Other)"
+msgstr ""
+
+#: config.language_map:206
+msgid "Australian languages"
+msgstr ""
+
+#: config.language_map:207
+msgid "Avaric"
+msgstr ""
+
+#: config.language_map:208
+msgid "Avestan"
+msgstr ""
+
+#: config.language_map:209
+msgid "Awadhi"
+msgstr ""
+
+#: config.language_map:210
+msgid "Aymara"
+msgstr ""
+
+#: config.language_map:211
+msgid "Azerbaijani"
+msgstr ""
+
+#: config.language_map:212
+msgid "Banda"
+msgstr ""
+
+#: config.language_map:213
+msgid "Bamileke languages"
+msgstr ""
+
+#: config.language_map:214
+msgid "Bashkir"
+msgstr ""
+
+#: config.language_map:215
+msgid "Baluchi"
+msgstr ""
+
+#: config.language_map:216
+msgid "Bambara"
+msgstr ""
+
+#: config.language_map:217
+msgid "Balinese"
+msgstr ""
+
+#: config.language_map:218
+msgid "Basque"
+msgstr ""
+
+#: config.language_map:219
+msgid "Basa"
+msgstr ""
+
+#: config.language_map:220
+msgid "Baltic (Other)"
+msgstr ""
+
+#: config.language_map:221
+msgid "Beja"
+msgstr ""
+
+#: config.language_map:222
+msgid "Belarusian"
+msgstr ""
+
+#: config.language_map:223
+msgid "Bemba"
+msgstr ""
+
+#: config.language_map:224
+msgid "Bengali"
+msgstr ""
+
+#: config.language_map:225
+msgid "Berber (Other)"
+msgstr ""
+
+#: config.language_map:226
+msgid "Bhojpuri"
+msgstr ""
+
+#: config.language_map:227
+msgid "Bihari"
+msgstr ""
+
+#: config.language_map:228
+msgid "Bikol"
+msgstr ""
+
+#: config.language_map:229
+msgid "Edo"
+msgstr ""
+
+#: config.language_map:230
+msgid "Bislama"
+msgstr ""
+
+#: config.language_map:231
+msgid "Siksika"
+msgstr ""
+
+#: config.language_map:232
+msgid "Bantu (Other)"
+msgstr ""
+
+#: config.language_map:233
+msgid "Bosnian"
+msgstr ""
+
+#: config.language_map:234
+msgid "Braj"
+msgstr ""
+
+#: config.language_map:235
+msgid "Breton"
+msgstr ""
+
+#: config.language_map:236
+msgid "Batak"
+msgstr ""
+
+#: config.language_map:237
+msgid "Buriat"
+msgstr ""
+
+#: config.language_map:238
+msgid "Bugis"
+msgstr ""
+
+#: config.language_map:239
+msgid "Bulgarian"
+msgstr ""
+
+#: config.language_map:240
+msgid "Burmese"
+msgstr ""
+
+#: config.language_map:241
+msgid "Caddo"
+msgstr ""
+
+#: config.language_map:242
+msgid "Central American Indian (Other)"
+msgstr ""
+
+#: config.language_map:243
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:244
+msgid "Carib"
+msgstr ""
+
+#: config.language_map:245
+msgid "Catalan"
+msgstr ""
+
+#: config.language_map:246
+msgid "Caucasian (Other)"
+msgstr ""
+
+#: config.language_map:247
+msgid "Cebuano"
+msgstr ""
+
+#: config.language_map:248
+msgid "Celtic (Other)"
+msgstr ""
+
+#: config.language_map:249
+msgid "Chamorro"
+msgstr ""
+
+#: config.language_map:250
+msgid "Chibcha"
+msgstr ""
+
+#: config.language_map:251
+msgid "Chechen"
+msgstr ""
+
+#: config.language_map:252
+msgid "Chagatai"
+msgstr ""
+
+#: config.language_map:253
+msgid "Chinese"
+msgstr ""
+
+#: config.language_map:254
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:255
+msgid "Mari"
+msgstr ""
+
+#: config.language_map:256
+msgid "Chinook jargon"
+msgstr ""
+
+#: config.language_map:257
+msgid "Choctaw"
+msgstr ""
+
+#: config.language_map:258
+msgid "Chipewyan"
+msgstr ""
+
+#: config.language_map:259
+msgid "Cherokee"
+msgstr ""
+
+#: config.language_map:260
+msgid "Church Slavic"
+msgstr ""
+
+#: config.language_map:261
+msgid "Chuvash"
+msgstr ""
+
+#: config.language_map:262
+msgid "Cheyenne"
+msgstr ""
+
+#: config.language_map:263
+msgid "Chamic languages"
+msgstr ""
+
+#: config.language_map:264
+msgid "Coptic"
+msgstr ""
+
+#: config.language_map:265
+msgid "Cornish"
+msgstr ""
+
+#: config.language_map:266
+msgid "Corsican"
+msgstr ""
+
+#: config.language_map:267
+msgid "Creoles and Pidgins, English-based (Other)"
+msgstr ""
+
+#: config.language_map:268
+msgid "Creoles and Pidgins, French-based (Other)"
+msgstr ""
+
+#: config.language_map:269
+msgid "Creoles and Pidgins, Portuguese-based (Other)"
+msgstr ""
+
+#: config.language_map:270
+msgid "Cree"
+msgstr ""
+
+#: config.language_map:271
+msgid "Crimean Tatar"
+msgstr ""
+
+#: config.language_map:272
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
+
+#: config.language_map:273
+msgid "Cushitic (Other)"
+msgstr ""
+
+#: config.language_map:274
+msgid "Czech"
+msgstr ""
+
+#: config.language_map:275
+msgid "Dakota"
+msgstr ""
+
+#: config.language_map:276
+msgid "Danish"
+msgstr ""
+
+#: config.language_map:277
+msgid "Dargwa"
+msgstr ""
+
+#: config.language_map:278
+msgid "Dayak"
+msgstr ""
+
+#: config.language_map:279
+msgid "Delaware"
+msgstr ""
+
+#: config.language_map:280
+msgid "Slave"
+msgstr ""
+
+#: config.language_map:281
+msgid "Dogrib"
+msgstr ""
+
+#: config.language_map:282
+msgid "Dinka"
+msgstr ""
+
+#: config.language_map:283
+msgid "Divehi"
+msgstr ""
+
+#: config.language_map:284
+msgid "Dogri"
+msgstr ""
+
+#: config.language_map:285
+msgid "Dravidian (Other)"
+msgstr ""
+
+#: config.language_map:286
+msgid "Duala"
+msgstr ""
+
+#: config.language_map:287
+msgid "Dutch, Middle (ca. 1050-1350)"
+msgstr ""
+
+#: config.language_map:288
+msgid "Dutch"
+msgstr ""
+
+#: config.language_map:289
+msgid "Dyula"
+msgstr ""
+
+#: config.language_map:290
+msgid "Dzongkha"
+msgstr ""
+
+#: config.language_map:291
+msgid "Efik"
+msgstr ""
+
+#: config.language_map:292
+msgid "Egyptian"
+msgstr ""
+
+#: config.language_map:293
+msgid "Ekajuk"
+msgstr ""
+
+#: config.language_map:294
+msgid "Elamite"
+msgstr ""
+
+#: config.language_map:295
+msgid "English"
+msgstr ""
+
+#: config.language_map:296
+msgid "English, Middle (1100-1500)"
+msgstr ""
+
+#: config.language_map:297
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:298
+msgid "Eskimo languages"
+msgstr ""
+
+#: config.language_map:299
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:300
+msgid "Estonian"
+msgstr ""
+
+#: config.language_map:301
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:302
+msgid "Ewe"
+msgstr ""
+
+#: config.language_map:303
+msgid "Ewondo"
+msgstr ""
+
+#: config.language_map:304
+msgid "Fang"
+msgstr ""
+
+#: config.language_map:305
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:306
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:307
+msgid "Fanti"
+msgstr ""
+
+#: config.language_map:308
+msgid "Fijian"
+msgstr ""
+
+#: config.language_map:309
+msgid "Finnish"
+msgstr ""
+
+#: config.language_map:310
+msgid "Finno-Ugrian (Other)"
+msgstr ""
+
+#: config.language_map:311
+msgid "Fon"
+msgstr ""
+
+#: config.language_map:312
+msgid "French"
+msgstr ""
+
+#: config.language_map:313
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:314
+msgid "French, Middle (ca. 1400-1600)"
+msgstr ""
+
+#: config.language_map:315
+msgid "French, Old (ca. 842-1400)"
+msgstr ""
+
+#: config.language_map:316
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:317
+msgid "Fula"
+msgstr ""
+
+#: config.language_map:318
+msgid "Friulian"
+msgstr ""
+
+#: config.language_map:319
+msgid "Gã"
+msgstr ""
+
+#: config.language_map:320
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:321
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:322
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:323
+msgid "Gayo"
+msgstr ""
+
+#: config.language_map:324
+msgid "Gbaya"
+msgstr ""
+
+#: config.language_map:325
+msgid "Germanic (Other)"
+msgstr ""
+
+#: config.language_map:326
+msgid "Georgian"
+msgstr ""
+
+#: config.language_map:327
+msgid "German"
+msgstr ""
+
+#: config.language_map:328
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:329
+msgid "Gilbertese"
+msgstr ""
+
+#: config.language_map:330
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:331
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:332
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:333
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:334
+msgid "German, Middle High (ca. 1050-1500)"
+msgstr ""
+
+#: config.language_map:335
+msgid "German, Old High (ca. 750-1050)"
+msgstr ""
+
+#: config.language_map:336
+msgid "Gondi"
+msgstr ""
+
+#: config.language_map:337
+msgid "Gorontalo"
+msgstr ""
+
+#: config.language_map:338
+msgid "Gothic"
+msgstr ""
+
+#: config.language_map:339
+msgid "Grebo"
+msgstr ""
+
+#: config.language_map:340
+msgid "Greek, Ancient (to 1453)"
+msgstr ""
+
+#: config.language_map:341
+msgid "Greek, Modern (1453- )"
+msgstr ""
+
+#: config.language_map:342
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:343
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:344
+msgid "Gujarati"
+msgstr ""
+
+#: config.language_map:345
+msgid "Gwich'in"
+msgstr ""
+
+#: config.language_map:346
+msgid "Haida"
+msgstr ""
+
+#: config.language_map:347
+msgid "Haitian French Creole"
+msgstr ""
+
+#: config.language_map:348
+msgid "Hausa"
+msgstr ""
+
+#: config.language_map:349
+msgid "Hawaiian"
+msgstr ""
+
+#: config.language_map:350
+msgid "Hebrew"
+msgstr ""
+
+#: config.language_map:351
+msgid "Herero"
+msgstr ""
+
+#: config.language_map:352
+msgid "Hiligaynon"
+msgstr ""
+
+#: config.language_map:353
+msgid "Himachali"
+msgstr ""
+
+#: config.language_map:354
+msgid "Hindi"
+msgstr ""
+
+#: config.language_map:355
+msgid "Hittite"
+msgstr ""
+
+#: config.language_map:356
+msgid "Hmong"
+msgstr ""
+
+#: config.language_map:357
+msgid "Hiri Motu"
+msgstr ""
+
+#: config.language_map:358
+msgid "Hungarian"
+msgstr ""
+
+#: config.language_map:359
+msgid "Hupa"
+msgstr ""
+
+#: config.language_map:360
+msgid "Iban"
+msgstr ""
+
+#: config.language_map:361
+msgid "Igbo"
+msgstr ""
+
+#: config.language_map:362
+msgid "Icelandic"
+msgstr ""
+
+#: config.language_map:363
+msgid "Ido"
+msgstr ""
+
+#: config.language_map:364
+msgid "Sichuan Yi"
+msgstr ""
+
+#: config.language_map:365
+msgid "Ijo"
+msgstr ""
+
+#: config.language_map:366
+msgid "Inuktitut"
+msgstr ""
+
+#: config.language_map:367
+msgid "Interlingue"
+msgstr ""
+
+#: config.language_map:368
+msgid "Iloko"
+msgstr ""
+
+#: config.language_map:369
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:370
+msgid "Indic (Other)"
+msgstr ""
+
+#: config.language_map:371
+msgid "Indonesian"
+msgstr ""
+
+#: config.language_map:372
+msgid "Indo-European (Other)"
+msgstr ""
+
+#: config.language_map:373
+msgid "Ingush"
+msgstr ""
+
+#: config.language_map:374
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:375
+msgid "Inupiaq"
+msgstr ""
+
+#: config.language_map:376
+msgid "Iranian (Other)"
+msgstr ""
+
+#: config.language_map:377
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:378
+msgid "Iroquoian (Other)"
+msgstr ""
+
+#: config.language_map:379
+msgid "Italian"
+msgstr ""
+
+#: config.language_map:380
+msgid "Javanese"
+msgstr ""
+
+#: config.language_map:381
+msgid "Japanese"
+msgstr ""
+
+#: config.language_map:382
+msgid "Judeo-Persian"
+msgstr ""
+
+#: config.language_map:383
+msgid "Judeo-Arabic"
+msgstr ""
+
+#: config.language_map:384
+msgid "Kara-Kalpak"
+msgstr ""
+
+#: config.language_map:385
+msgid "Kabyle"
+msgstr ""
+
+#: config.language_map:386
+msgid "Kachin"
+msgstr ""
+
+#: config.language_map:387
+msgid "Kalâtdlisut"
+msgstr ""
+
+#: config.language_map:388
+msgid "Kamba"
+msgstr ""
+
+#: config.language_map:389
+msgid "Kannada"
+msgstr ""
+
+#: config.language_map:390
+msgid "Karen"
+msgstr ""
+
+#: config.language_map:391
+msgid "Kashmiri"
+msgstr ""
+
+#: config.language_map:392
+msgid "Kanuri"
+msgstr ""
+
+#: config.language_map:393
+msgid "Kawi"
+msgstr ""
+
+#: config.language_map:394
+msgid "Kazakh"
+msgstr ""
+
+#: config.language_map:395
+msgid "Kabardian"
+msgstr ""
+
+#: config.language_map:396
+msgid "Khasi"
+msgstr ""
+
+#: config.language_map:397
+msgid "Khoisan (Other)"
+msgstr ""
+
+#: config.language_map:398
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:399
+msgid "Khotanese"
+msgstr ""
+
+#: config.language_map:400
+msgid "Kikuyu"
+msgstr ""
+
+#: config.language_map:401
+msgid "Kinyarwanda"
+msgstr ""
+
+#: config.language_map:402
+msgid "Kyrgyz"
+msgstr ""
+
+#: config.language_map:403
+msgid "Kimbundu"
+msgstr ""
+
+#: config.language_map:404
+msgid "Konkani"
+msgstr ""
+
+#: config.language_map:405
+msgid "Komi"
+msgstr ""
+
+#: config.language_map:406
+msgid "Kongo"
+msgstr ""
+
+#: config.language_map:407
+msgid "Korean"
+msgstr ""
+
+#: config.language_map:408
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:409
+msgid "Kpelle"
+msgstr ""
+
+#: config.language_map:410
+msgid "Kru"
+msgstr ""
+
+#: config.language_map:411
+msgid "Kurukh"
+msgstr ""
+
+#: config.language_map:412
+msgid "Kuanyama"
+msgstr ""
+
+#: config.language_map:413
+msgid "Kumyk"
+msgstr ""
+
+#: config.language_map:414
+msgid "Kurdish"
+msgstr ""
+
+#: config.language_map:415
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:416
+msgid "Kutenai"
+msgstr ""
+
+#: config.language_map:417
+msgid "Ladino"
+msgstr ""
+
+#: config.language_map:418
+msgid "Lahnda"
+msgstr ""
+
+#: config.language_map:419
+msgid "Lamba"
+msgstr ""
+
+#: config.language_map:420
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:421
+msgid "Lao"
+msgstr ""
+
+#: config.language_map:422
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:423
+msgid "Latin"
+msgstr ""
+
+#: config.language_map:424
+msgid "Latvian"
+msgstr ""
+
+#: config.language_map:425
+msgid "Lezgian"
+msgstr ""
+
+#: config.language_map:426
+msgid "Limburgish"
+msgstr ""
+
+#: config.language_map:427
+msgid "Lingala"
+msgstr ""
+
+#: config.language_map:428
+msgid "Lithuanian"
+msgstr ""
+
+#: config.language_map:429
+msgid "Mongo-Nkundu"
+msgstr ""
+
+#: config.language_map:430
+msgid "Lozi"
+msgstr ""
+
+#: config.language_map:431
+msgid "Letzeburgesch"
+msgstr ""
+
+#: config.language_map:432
+msgid "Luba-Lulua"
+msgstr ""
+
+#: config.language_map:433
+msgid "Luba-Katanga"
+msgstr ""
+
+#: config.language_map:434
+msgid "Ganda"
+msgstr ""
+
+#: config.language_map:435
+msgid "Luiseño"
+msgstr ""
+
+#: config.language_map:436
+msgid "Lunda"
+msgstr ""
+
+#: config.language_map:437
+msgid "Luo (Kenya and Tanzania)"
+msgstr ""
+
+#: config.language_map:438
+msgid "Lushai"
+msgstr ""
+
+#: config.language_map:439
+msgid "Macedonian"
+msgstr ""
+
+#: config.language_map:440
+msgid "Madurese"
+msgstr ""
+
+#: config.language_map:441
+msgid "Magahi"
+msgstr ""
+
+#: config.language_map:442
+msgid "Marshallese"
+msgstr ""
+
+#: config.language_map:443
+msgid "Maithili"
+msgstr ""
+
+#: config.language_map:444
+msgid "Makasar"
+msgstr ""
+
+#: config.language_map:445
+msgid "Malayalam"
+msgstr ""
+
+#: config.language_map:446
+msgid "Mandingo"
+msgstr ""
+
+#: config.language_map:447
+msgid "Maori"
+msgstr ""
+
+#: config.language_map:448
+msgid "Austronesian (Other)"
+msgstr ""
+
+#: config.language_map:449
+msgid "Marathi"
+msgstr ""
+
+#: config.language_map:450
+msgid "Masai"
+msgstr ""
+
+#: config.language_map:451
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:452
+msgid "Malay"
+msgstr ""
+
+#: config.language_map:453
+msgid "Mandar"
+msgstr ""
+
+#: config.language_map:454
+msgid "Mende"
+msgstr ""
+
+#: config.language_map:455
+msgid "Irish, Middle (ca. 1100-1550)"
+msgstr ""
+
+#: config.language_map:456
+msgid "Micmac"
+msgstr ""
+
+#: config.language_map:457
+msgid "Minangkabau"
+msgstr ""
+
+#: config.language_map:458
+msgid "Miscellaneous languages"
+msgstr ""
+
+#: config.language_map:459
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+#: config.language_map:460
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:461
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:462
+msgid "Maltese"
+msgstr ""
+
+#: config.language_map:463
+msgid "Manchu"
+msgstr ""
+
+#: config.language_map:464
+msgid "Manipuri"
+msgstr ""
+
+#: config.language_map:465
+msgid "Manobo languages"
+msgstr ""
+
+#: config.language_map:466
+msgid "Mohawk"
+msgstr ""
+
+#: config.language_map:467
+msgid "Moldavian"
+msgstr ""
+
+#: config.language_map:468
+msgid "Mongolian"
+msgstr ""
+
+#: config.language_map:469
+msgid "Mooré"
+msgstr ""
+
+#: config.language_map:470
+msgid "Multiple languages"
+msgstr ""
+
+#: config.language_map:471
+msgid "Munda (Other)"
+msgstr ""
+
+#: config.language_map:472
+msgid "Creek"
+msgstr ""
+
+#: config.language_map:473
+msgid "Marwari"
+msgstr ""
+
+#: config.language_map:474
+msgid "Mayan languages"
+msgstr ""
+
+#: config.language_map:475
+msgid "Nahuatl"
+msgstr ""
+
+#: config.language_map:476
+msgid "North American Indian (Other)"
+msgstr ""
+
+#: config.language_map:477
+msgid "Neapolitan Italian"
+msgstr ""
+
+#: config.language_map:478
+msgid "Nauru"
+msgstr ""
+
+#: config.language_map:479
+msgid "Navajo"
+msgstr ""
+
+#: config.language_map:480
+msgid "Ndebele (South Africa)"
+msgstr ""
+
+#: config.language_map:481
+msgid "Ndebele (Zimbabwe) "
+msgstr ""
+
+#: config.language_map:482
+msgid "Ndonga"
+msgstr ""
+
+#: config.language_map:483
+msgid "Low German"
+msgstr ""
+
+#: config.language_map:484
+msgid "Nepali"
+msgstr ""
+
+#: config.language_map:485
+msgid "Newari"
+msgstr ""
+
+#: config.language_map:486
+msgid "Nias"
+msgstr ""
+
+#: config.language_map:487
+msgid "Niger-Kordofanian (Other)"
+msgstr ""
+
+#: config.language_map:488
+msgid "Niuean"
+msgstr ""
+
+#: config.language_map:489
+msgid "Norwegian (Nynorsk)"
+msgstr ""
+
+#: config.language_map:490
+msgid "Norwegian (Bokmål)"
+msgstr ""
+
+#: config.language_map:491
+msgid "Nogai"
+msgstr ""
+
+#: config.language_map:492
+msgid "Old Norse"
+msgstr ""
+
+#: config.language_map:493
+msgid "Norwegian"
+msgstr ""
+
+#: config.language_map:494
+msgid "Northern Sotho"
+msgstr ""
+
+#: config.language_map:495
+msgid "Nubian languages"
+msgstr ""
+
+#: config.language_map:496
+msgid "Nyanja"
+msgstr ""
+
+#: config.language_map:497
+msgid "Nyamwezi"
+msgstr ""
+
+#: config.language_map:498
+msgid "Nyankole"
+msgstr ""
+
+#: config.language_map:499
+msgid "Nyoro"
+msgstr ""
+
+#: config.language_map:500
+msgid "Nzima"
+msgstr ""
+
+#: config.language_map:501
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:502
+msgid "Ojibwa"
+msgstr ""
+
+#: config.language_map:503
+msgid "Oriya"
+msgstr ""
+
+#: config.language_map:504
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:505
+msgid "Osage"
+msgstr ""
+
+#: config.language_map:506
+msgid "Ossetic"
+msgstr ""
+
+#: config.language_map:507
+msgid "Turkish, Ottoman"
+msgstr ""
+
+#: config.language_map:508
+msgid "Otomian languages"
+msgstr ""
+
+#: config.language_map:509
+msgid "Papuan (Other)"
+msgstr ""
+
+#: config.language_map:510
+msgid "Pangasinan"
+msgstr ""
+
+#: config.language_map:511
+msgid "Pahlavi"
+msgstr ""
+
+#: config.language_map:512
+msgid "Pampanga"
+msgstr ""
+
+#: config.language_map:513
+msgid "Panjabi"
+msgstr ""
+
+#: config.language_map:514
+msgid "Papiamento"
+msgstr ""
+
+#: config.language_map:515
+msgid "Palauan"
+msgstr ""
+
+#: config.language_map:516
+msgid "Old Persian (ca. 600-400 B.C.)"
+msgstr ""
+
+#: config.language_map:517
+msgid "Persian"
+msgstr ""
+
+#: config.language_map:518
+msgid "Philippine (Other)"
+msgstr ""
+
+#: config.language_map:519
+msgid "Phoenician"
+msgstr ""
+
+#: config.language_map:520
+msgid "Pali"
+msgstr ""
+
+#: config.language_map:521
+msgid "Polish"
+msgstr ""
+
+#: config.language_map:522
+msgid "Ponape"
+msgstr ""
+
+#: config.language_map:523
+msgid "Portuguese"
+msgstr ""
+
+#: config.language_map:524
+msgid "Prakrit languages"
+msgstr ""
+
+#: config.language_map:525
+msgid "Provençal (to 1500)"
+msgstr ""
+
+#: config.language_map:526
+msgid "Pushto"
+msgstr ""
+
+#: config.language_map:527
+msgid "Quechua"
+msgstr ""
+
+#: config.language_map:528
+msgid "Rajasthani"
+msgstr ""
+
+#: config.language_map:529
+msgid "Rapanui"
+msgstr ""
+
+#: config.language_map:530
+msgid "Rarotongan"
+msgstr ""
+
+#: config.language_map:531
+msgid "Romance (Other)"
+msgstr ""
+
+#: config.language_map:532
+msgid "Raeto-Romance"
+msgstr ""
+
+#: config.language_map:533
+msgid "Romani"
+msgstr ""
+
+#: config.language_map:534
+msgid "Romanian"
+msgstr ""
+
+#: config.language_map:535
+msgid "Rundi"
+msgstr ""
+
+#: config.language_map:536
+msgid "Russian"
+msgstr ""
+
+#: config.language_map:537
+msgid "Sandawe"
+msgstr ""
+
+#: config.language_map:538
+msgid "Sango (Ubangi Creole)"
+msgstr ""
+
+#: config.language_map:539
+msgid "Yakut"
+msgstr ""
+
+#: config.language_map:540
+msgid "South American Indian (Other)"
+msgstr ""
+
+#: config.language_map:541
+msgid "Salishan languages"
+msgstr ""
+
+#: config.language_map:542
+msgid "Samaritan Aramaic"
+msgstr ""
+
+#: config.language_map:543
+msgid "Sanskrit"
+msgstr ""
+
+#: config.language_map:544
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:545
+msgid "Sasak"
+msgstr ""
+
+#: config.language_map:546
+msgid "Santali"
+msgstr ""
+
+#: config.language_map:547
+msgid "Serbian"
+msgstr ""
+
+#: config.language_map:548
+msgid "Scots"
+msgstr ""
+
+#: config.language_map:549
+msgid "Croatian"
+msgstr ""
+
+#: config.language_map:550
+msgid "Selkup"
+msgstr ""
+
+#: config.language_map:551
+msgid "Semitic (Other)"
+msgstr ""
+
+#: config.language_map:552
+msgid "Irish, Old (to 1100)"
+msgstr ""
+
+#: config.language_map:553
+msgid "Sign languages"
+msgstr ""
+
+#: config.language_map:554
+msgid "Shan"
+msgstr ""
+
+#: config.language_map:555
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:556
+msgid "Sidamo"
+msgstr ""
+
+#: config.language_map:557
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:558
+msgid "Siouan (Other)"
+msgstr ""
+
+#: config.language_map:559
+msgid "Sino-Tibetan (Other)"
+msgstr ""
+
+#: config.language_map:560
+msgid "Slavic (Other)"
+msgstr ""
+
+#: config.language_map:561
+msgid "Slovak"
+msgstr ""
+
+#: config.language_map:562
+msgid "Slovenian"
+msgstr ""
+
+#: config.language_map:563
+msgid "Southern Sami"
+msgstr ""
+
+#: config.language_map:564
+msgid "Northern Sami"
+msgstr ""
+
+#: config.language_map:565
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:566
+msgid "Lule Sami"
+msgstr ""
+
+#: config.language_map:567
+msgid "Inari Sami"
+msgstr ""
+
+#: config.language_map:568
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:569
+msgid "Skolt Sami"
+msgstr ""
+
+#: config.language_map:570
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:571
+msgid "Sindhi"
+msgstr ""
+
+#: config.language_map:572
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:573
+msgid "Soninke"
+msgstr ""
+
+#: config.language_map:574
+msgid "Sogdian"
+msgstr ""
+
+#: config.language_map:575
+msgid "Somali"
+msgstr ""
+
+#: config.language_map:576
+msgid "Songhai"
+msgstr ""
+
+#: config.language_map:577
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:578
+msgid "Spanish"
+msgstr ""
+
+#: config.language_map:579
+msgid "Sardinian"
+msgstr ""
+
+#: config.language_map:580
+msgid "Serer"
+msgstr ""
+
+#: config.language_map:581
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#: config.language_map:582
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:583
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:584
+msgid "Sukuma"
+msgstr ""
+
+#: config.language_map:585
+msgid "Sundanese"
+msgstr ""
+
+#: config.language_map:586
+msgid "Susu"
+msgstr ""
+
+#: config.language_map:587
+msgid "Sumerian"
+msgstr ""
+
+#: config.language_map:588
+msgid "Swahili"
+msgstr ""
+
+#: config.language_map:589
+msgid "Swedish"
+msgstr ""
+
+#: config.language_map:590
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:591
+msgid "Syriac"
+msgstr ""
+
+#: config.language_map:592
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:593
+msgid "Tahitian"
+msgstr ""
+
+#: config.language_map:594
+msgid "Tai (Other)"
+msgstr ""
+
+#: config.language_map:595
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:596
+msgid "Tamil"
+msgstr ""
+
+#: config.language_map:597
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:598
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:599
+msgid "Telugu"
+msgstr ""
+
+#: config.language_map:600
+msgid "Temne"
+msgstr ""
+
+#: config.language_map:601
+msgid "Terena"
+msgstr ""
+
+#: config.language_map:602
+msgid "Tetum"
+msgstr ""
+
+#: config.language_map:603
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:604
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:605
+msgid "Thai"
+msgstr ""
+
+#: config.language_map:606
+msgid "Tibetan"
+msgstr ""
+
+#: config.language_map:607
+msgid "Tigré"
+msgstr ""
+
+#: config.language_map:608
+msgid "Tigrinya"
+msgstr ""
+
+#: config.language_map:609
+msgid "Tiv"
+msgstr ""
+
+#: config.language_map:610
+msgid "Tokelauan"
+msgstr ""
+
+#: config.language_map:611
+msgid "Tlingit"
+msgstr ""
+
+#: config.language_map:612
+msgid "Tamashek"
+msgstr ""
+
+#: config.language_map:613
+msgid "Tonga (Nyasa)"
+msgstr ""
+
+#: config.language_map:614
+msgid "Tongan"
+msgstr ""
+
+#: config.language_map:615
+msgid "Tok Pisin"
+msgstr ""
+
+#: config.language_map:616
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:617
+msgid "Tsimshian"
+msgstr ""
+
+#: config.language_map:618
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:619
+msgid "Tsonga"
+msgstr ""
+
+#: config.language_map:620
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:621
+msgid "Turkmen"
+msgstr ""
+
+#: config.language_map:622
+msgid "Tumbuka"
+msgstr ""
+
+#: config.language_map:623
+msgid "Tupi languages"
+msgstr ""
+
+#: config.language_map:624
+msgid "Turkish"
+msgstr ""
+
+#: config.language_map:625
+msgid "Altaic (Other)"
+msgstr ""
+
+#: config.language_map:626
+msgid "Tuvaluan"
+msgstr ""
+
+#: config.language_map:627
+msgid "Twi"
+msgstr ""
+
+#: config.language_map:628
+msgid "Tuvinian"
+msgstr ""
+
+#: config.language_map:629
+msgid "Udmurt"
+msgstr ""
+
+#: config.language_map:630
+msgid "Ugaritic"
+msgstr ""
+
+#: config.language_map:631
+msgid "Uighur"
+msgstr ""
+
+#: config.language_map:632
+msgid "Ukrainian"
+msgstr ""
+
+#: config.language_map:633
+msgid "Umbundu"
+msgstr ""
+
+#: config.language_map:634
+msgid "Undetermined"
+msgstr ""
+
+#: config.language_map:635
+msgid "Urdu"
+msgstr ""
+
+#: config.language_map:636
+msgid "Uzbek"
+msgstr ""
+
+#: config.language_map:637
+msgid "Vai"
+msgstr ""
+
+#: config.language_map:638
+msgid "Venda"
+msgstr ""
+
+#: config.language_map:639
+msgid "Vietnamese"
+msgstr ""
+
+#: config.language_map:640
+msgid "Volapük"
+msgstr ""
+
+#: config.language_map:641
+msgid "Votic"
+msgstr ""
+
+#: config.language_map:642
+msgid "Wakashan languages"
+msgstr ""
+
+#: config.language_map:643
+msgid "Walamo"
+msgstr ""
+
+#: config.language_map:644
+msgid "Waray"
+msgstr ""
+
+#: config.language_map:645
+msgid "Washo"
+msgstr ""
+
+#: config.language_map:646
+msgid "Welsh"
+msgstr ""
+
+#: config.language_map:647
+msgid "Sorbian languages"
+msgstr ""
+
+#: config.language_map:648
+msgid "Walloon"
+msgstr ""
+
+#: config.language_map:649
+msgid "Wolof"
+msgstr ""
+
+#: config.language_map:650
+msgid "Kalmyk"
+msgstr ""
+
+#: config.language_map:651
+msgid "Xhosa"
+msgstr ""
+
+#: config.language_map:652
+msgid "Yao (Africa)"
+msgstr ""
+
+#: config.language_map:653
+msgid "Yapese"
+msgstr ""
+
+#: config.language_map:654
+msgid "Yiddish"
+msgstr ""
+
+#: config.language_map:655
+msgid "Yoruba"
+msgstr ""
+
+#: config.language_map:656
+msgid "Yupik languages"
+msgstr ""
+
+#: config.language_map:657
+msgid "Zapotec"
+msgstr ""
+
+#: config.language_map:658
+msgid "Zenaga"
+msgstr ""
+
+#: config.language_map:659
+msgid "Zhuang"
+msgstr ""
+
+#: config.language_map:660
+msgid "Zande"
+msgstr ""
+
+#: config.language_map:661
+msgid "Zulu"
+msgstr ""
+
+#: config.language_map:662
+msgid "Zuni"
+msgstr ""
+
+#: config.item_form_map:664
+msgid "Microfilm"
+msgstr ""
+
+#: config.item_form_map:665
+msgid "Microfiche"
+msgstr ""
+
+#: config.item_form_map:666
+msgid "Microopaque"
+msgstr ""
+
+#: config.item_form_map:667
+msgid "Large print"
+msgstr ""
+
+#: config.item_form_map:668
+msgid "Braille"
+msgstr ""
+
+#: config.item_form_map:669
+msgid "Regular print reproduction"
+msgstr ""
+
+#: config.item_form_map:670
+msgid "Electronic"
+msgstr ""
+
+#: config.item_type_map:672
+msgid "Language material"
+msgstr ""
+
+#: config.item_type_map:673
+msgid "Manuscript language material"
+msgstr ""
+
+#: config.item_type_map:674
+msgid "Projected medium"
+msgstr ""
+
+#: config.item_type_map:675
+msgid "Two-dimensional nonprojectable graphic"
+msgstr ""
+
+#: config.item_type_map:676
+msgid "Three-dimensional artifact or naturally occurring object"
+msgstr ""
+
+#: config.item_type_map:677
+msgid "Kit"
+msgstr ""
+
+#: config.item_type_map:678
+msgid "Mixed materials"
+msgstr ""
+
+#: config.item_type_map:679
+msgid "Cartographic material"
+msgstr ""
+
+#: config.item_type_map:680
+msgid "Manuscript cartographic material"
+msgstr ""
+
+#: config.item_type_map:681
+msgid "Notated music"
+msgstr ""
+
+#: config.item_type_map:682
+msgid "Manuscript notated music"
+msgstr ""
+
+#: config.item_type_map:683
+msgid "Nonmusical sound recording"
+msgstr ""
+
+#: config.item_type_map:684
+msgid "Musical sound recording"
+msgstr ""
+
+#: config.item_type_map:685
+msgid "Computer file"
+msgstr ""
+
+#: config.bib_level_map:687
+msgid "Monographic component part"
+msgstr ""
+
+#: config.bib_level_map:688
+msgid "Serial component part"
+msgstr ""
+
+#: config.bib_level_map:689
+msgid "Collection"
+msgstr ""
+
+#: config.bib_level_map:690
+msgid "Subunit"
+msgstr ""
+
+#: config.bib_level_map:691
+msgid "Integrating resource"
+msgstr ""
+
+#: config.bib_level_map:692
+msgid "Monograph/Item"
+msgstr ""
+
+#: config.bib_level_map:693
+msgid "Serial"
+msgstr ""
+
+#: config.i18n_locale:698
+msgid "American English"
+msgstr ""
+
+#: config.i18n_locale:700
+msgid "Canadian English"
+msgstr ""
+
+#: config.i18n_locale:702
+msgid "Canadian Fench"
+msgstr ""
+
+#: config.i18n_locale:704
+msgid "American Spanish"
+msgstr ""
+
+#: config.i18n_locale:706
+msgid "Mexican Spanish"
+msgstr ""
+
+#: actor.org_unit_type:713
+msgid "Consortium"
+msgstr ""
+
+#: actor.org_unit_type:715
+msgid "System"
+msgstr ""
+
+#: actor.org_unit_type:717
+msgid "Branch"
+msgstr ""
+
+#: actor.org_unit_type:719
+msgid "Sub-lib"
+msgstr ""
+
+#: actor.org_unit_type:721
+msgid "Bookmobile"
+msgstr ""
+
+#: actor.org_unit:724
+msgid "Example Consortium"
+msgstr ""
+
+#: actor.org_unit:726
+msgid "Example System 1"
+msgstr ""
+
+#: actor.org_unit:728
+msgid "Example System 2"
+msgstr ""
+
+#: actor.org_unit:730
+msgid "Example Branch 1"
+msgstr ""
+
+#: actor.org_unit:732
+msgid "Example Branch 2"
+msgstr ""
+
+#: actor.org_unit:734
+msgid "Example Branch 3"
+msgstr ""
+
+#: actor.org_unit:736
+msgid "Example Branch 4"
+msgstr ""
+
+#: actor.org_unit:738
+msgid "Example Sub-lib 1"
+msgstr ""
+
+#: actor.org_unit:740
+msgid "Example Bookmobile 1"
+msgstr ""
+
+#: actor.org_address:742
+msgid "123 Main St."
+msgstr ""
+
+#: permission.perm_list:760
+msgid "User is allowed to place a hold on a specific copy"
+msgstr ""
+
+#: permission.perm_list:766
+msgid "Allows a user to view another user's holds"
+msgstr ""
+
+#: permission.perm_list:770
+msgid "Allows a user to update another user's hold"
+msgstr ""
+
+#: permission.perm_list:780
+msgid "User is allowed to create new MARC records"
+msgstr ""
+
+#: permission.perm_list:820
+msgid "User may create new billable transactions"
+msgstr ""
+
+#: permission.perm_list:822
+msgid "Allows a user to create a new bill on a transaction"
+msgstr ""
+
+#: permission.perm_list:824
+msgid "Allows a user to view another user's containers (buckets)"
+msgstr ""
+
+#: permission.perm_list:826
+msgid "Allows a user to create a new container for another user"
+msgstr ""
+
+#: permission.perm_list:828
+msgid "User is allowed to create a new copy object"
+msgstr ""
+
+#: permission.perm_list:830
+msgid "Allows a user to change org unit settings"
+msgstr ""
+
+#: permission.perm_list:832
+msgid "Allows a user to see what another use has checked out"
+msgstr ""
+
+#: permission.perm_list:834
+msgid "User may view another user's transactions"
+msgstr ""
+
+#: permission.perm_list:836
+msgid "Allows a user to delete another user container"
+msgstr ""
+
+#: permission.perm_list:838
+msgid "Create a container item for another user"
+msgstr ""
+
+#: permission.perm_list:840
+msgid "User can add other users to permission groups"
+msgstr ""
+
+#: permission.perm_list:842
+msgid "User can remove other users from permission groups"
+msgstr ""
+
+#: permission.perm_list:844
+msgid "Allow user to view others' permission groups"
+msgstr ""
+
+#: permission.perm_list:846
+msgid "Allows a user to determine of another user can checkout an item"
+msgstr ""
+
+#: permission.perm_list:848
+msgid "Allows a user to edit copies in batch"
+msgstr ""
+
+#: permission.perm_list:850
+msgid "User may create a new patron statistical category"
+msgstr ""
+
+#: permission.perm_list:852
+msgid "User may create a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:854
+msgid "User may create a new patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:856
+msgid "User may create a new copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:858
+msgid "User may update a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:860
+msgid "User may update a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:862
+msgid "User may update a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:864
+msgid "User may update a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:866
+msgid "User may link a copy to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:868
+msgid "User may link another user to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:870
+msgid "User may delete a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:872
+msgid "User may delete a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:874
+msgid "User may delete a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:876
+msgid "User may delete a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:878
+msgid "User may delete a patron stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:880
+msgid "User may delete a copy stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:882
+msgid "Allows a user to create a new non-cataloged item type"
+msgstr ""
+
+#: permission.perm_list:884
+msgid "Allows a user to update a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:886
+msgid "Allows a user to create a new in-house-use "
+msgstr ""
+
+#: permission.perm_list:888
+msgid "Allows a user to check out a copy"
+msgstr ""
+
+#: permission.perm_list:890
+msgid "Allows a user to create a new copy location"
+msgstr ""
+
+#: permission.perm_list:892
+msgid "Allows a user to update a copy location"
+msgstr ""
+
+#: permission.perm_list:894
+msgid "Allows a user to delete a copy location"
+msgstr ""
+
+#: permission.perm_list:896
+msgid "Allows a user to create a transit_copy object for transiting a copy"
+msgstr ""
+
+#: permission.perm_list:898
+msgid "Allows a user to close out a transit on a copy"
+msgstr ""
+
+#: permission.perm_list:900
+msgid "Allows a user to see if another user has permission to place a hold on a given copy"
+msgstr ""
+
+#: permission.perm_list:902
+msgid "Allows a user to view which users have checked out a given copy"
+msgstr ""
+
+#: permission.perm_list:904
+msgid "Allows a user to perform z3950 queries against remote servers"
+msgstr ""
+
+#: permission.perm_list:906
+msgid "Allows a user to register a new workstation"
+msgstr ""
+
+#: permission.perm_list:908
+msgid "Allows a user to view all notes attached to a copy"
+msgstr ""
+
+#: permission.perm_list:910
+msgid "Allows a user to view all notes attached to a volume"
+msgstr ""
+
+#: permission.perm_list:912
+msgid "Allows a user to view all notes attached to a title"
+msgstr ""
+
+#: permission.perm_list:914
+msgid "Allows a user to create a new volume note"
+msgstr ""
+
+#: permission.perm_list:916
+msgid "Allows a user to create a new copy note"
+msgstr ""
+
+#: permission.perm_list:918
+msgid "Allows a user to create a new title note"
+msgstr ""
+
+#: permission.perm_list:920
+msgid "Allows a user to delete someone elses copy notes"
+msgstr ""
+
+#: permission.perm_list:922
+msgid "Allows a user to delete someone elses volume note"
+msgstr ""
+
+#: permission.perm_list:924
+msgid "Allows a user to delete someone elses title note"
+msgstr ""
+
+#: permission.perm_list:926
+msgid "Allows a user to update another users container"
+msgstr ""
+
+#: permission.perm_list:928
+msgid "Allows a user to create a container for themselves"
+msgstr ""
+
+#: permission.perm_list:930
+msgid "Allows a user to view notifications attached to a hold"
+msgstr ""
+
+#: permission.perm_list:932
+msgid "Allows a user to create new hold notifications"
+msgstr ""
+
+#: permission.perm_list:934
+msgid "Allows a user to update an org unit setting"
+msgstr ""
+
+#: permission.perm_list:936
+msgid "Allows a user to upload an offline script"
+msgstr ""
+
+#: permission.perm_list:938
+msgid "Allows a user to view uploaded offline script information"
+msgstr ""
+
+#: permission.perm_list:940
+msgid "Allows a user to execute an offline script batch"
+msgstr ""
+
+#: permission.perm_list:942
+msgid "Allows a user to change set the due date on an item to any date"
+msgstr ""
+
+#: permission.perm_list:944
+msgid "Allows a user to bypass the circ permit call for checkout"
+msgstr ""
+
+#: permission.perm_list:946
+msgid "Allows a user to override the copy_is_reference event"
+msgstr ""
+
+#: permission.perm_list:948
+msgid "Allows a user to void a bill"
+msgstr ""
+
+#: permission.perm_list:950
+msgid "Allows a person to check in/out an item that is claims returned"
+msgstr ""
+
+#: permission.perm_list:952
+msgid "Allows a user to check out an item in a non-circulatable status"
+msgstr ""
+
+#: permission.perm_list:954
+msgid "Allows a user to check in/out an item that has an alert message"
+msgstr ""
+
+#: permission.perm_list:956
+msgid "Allows a user to remove the lost status from a copy"
+msgstr ""
+
+#: permission.perm_list:958
+msgid "Allows a user to change the missing status on a copy"
+msgstr ""
+
+#: permission.perm_list:960
+msgid "Allows a user to abort a copy transit if the user is at the transit destination or source"
+msgstr ""
+
+#: permission.perm_list:962
+msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest"
+msgstr ""
+
+#: permission.perm_list:964
+msgid "Allowsa user to query the zip code data method"
+msgstr ""
+
+#: permission.perm_list:968
+msgid "Allows a user to create duplicate holds (e.g. two holds on the same title)"
+msgstr ""
+
+#: permission.perm_list:970
+msgid "Allows a user to update a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:972
+msgid "Allows a user to remove a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:974
+msgid "Allows a user to create a new closed date for a location"
+msgstr ""
+
+#: permission.perm_list:976
+msgid "Allows a user to delete a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:978
+msgid "Allows a user to put someone into collections"
+msgstr ""
+
+#: permission.perm_list:980
+msgid "Allows a user to remove someone from collections"
+msgstr ""
+
+#: permission.perm_list:982
+msgid "Allows a user to bar a patron"
+msgstr ""
+
+#: permission.perm_list:984
+msgid "Allows a user to un-bar a patron"
+msgstr ""
+
+#: permission.perm_list:986
+msgid "Allows a user to remove an existing workstation so a new one can replace it"
+msgstr ""
+
+#: permission.perm_list:988
+msgid "Allows a user to add/remove users to/from the \"User\" group"
+msgstr ""
+
+#: permission.perm_list:990
+msgid "Allows a user to add/remove users to/from the \"Patron\" group"
+msgstr ""
+
+#: permission.perm_list:992
+msgid "Allows a user to add/remove users to/from the \"Staff\" group"
+msgstr ""
+
+#: permission.perm_list:994
+msgid "Allows a user to add/remove users to/from the \"Circulator\" group"
+msgstr ""
+
+#: permission.perm_list:996
+msgid "Allows a user to add/remove users to/from the \"Cataloger\" group"
+msgstr ""
+
+#: permission.perm_list:998
+msgid "Allows a user to add/remove users to/from the \"GlobalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:1000
+msgid "Allows a user to add/remove users to/from the \"LocalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:1002
+msgid "Allows a user to add/remove users to/from the \"LibraryManager\" group"
+msgstr ""
+
+#: permission.perm_list:1004
+msgid "Allows a user to add/remove users to/from the \"Cat1\" group"
+msgstr ""
+
+#: permission.perm_list:1006
+msgid "Allows a user to add/remove users to/from the \"Supercat\" group"
+msgstr ""
+
+#: permission.perm_list:1008
+msgid "Allows a user to add/remove users to/from the \"SIP-Client\" group"
+msgstr ""
+
+#: permission.perm_list:1010
+msgid "Allows a user to add/remove users to/from the \"Vendor\" group"
+msgstr ""
+
+#: permission.perm_list:1012
+msgid "Allows a user to place a hold on an age-protected item"
+msgstr ""
+
+#: permission.perm_list:1014
+msgid "Allows a user to renew an item past the maximun renewal count"
+msgstr ""
+
+#: permission.perm_list:1016
+msgid "Allow staff to override checkout count failure"
+msgstr ""
+
+#: permission.perm_list:1018
+msgid "Allow staff to override overdue count failure"
+msgstr ""
+
+#: permission.perm_list:1020
+msgid "Allow staff to override fine amount checkout failure"
+msgstr ""
+
+#: permission.perm_list:1026
+msgid "Allow staff to force checkout of Missing/Lost type items"
+msgstr ""
+
+#: permission.perm_list:1028
+msgid "allows users to place multiple holds on a single title"
+msgstr ""
+
+#: permission.perm_list:1030
+msgid "Allows a users to run reports"
+msgstr ""
+
+#: permission.perm_list:1032
+msgid "Allows a user to share report his own folders"
+msgstr ""
+
+#: permission.perm_list:1034
+msgid "Allow user to view report output"
+msgstr ""
+
+#: permission.perm_list:1036
+msgid "Allows a user to checkout an item that is marked as non-circ"
+msgstr ""
+
+#: permission.perm_list:1038
+msgid "Allows a user to delete an item out of another user's container"
+msgstr ""
+
+#: permission.perm_list:1040
+msgid "Allow a staff member to define where another staff member has their permissions"
+msgstr ""
+
+#: permission.perm_list:1042
+msgid "Allow a staff member to directly remove a bibliographic record"
+msgstr ""
+
+#: actor.usr:1254
+msgid "Administrator"
+msgstr ""
+
+#: asset.copy_location:1267
+msgid "Stacks"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:28-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+
+#: field.aihu.org_unit.label:705 field.ancihu.org_unit.label:722
+msgid "Using Library"
+msgstr ""
+
+#: field.rxbt.voided.label:3519
+msgid "Voided Billing Amount"
+msgstr ""
+
+#: field.bre.source.label:1067
+msgid "Record Source"
+msgstr ""
+
+#: field.bre.marc.label:1065
+msgid "MARC21Slim"
+msgstr ""
+
+#: field.rocit.title.label:3779
+msgid "Title"
+msgstr ""
+
+#: field.mbts.xact_start.label:644
+msgid "Transaction Start Time"
+msgstr ""
+
+#: field.mrd.vr_format.label:1515
+msgid "Video Recording Format"
+msgstr ""
+
+#: field.vqbr.bib_source.label:173
+msgid "Bib Source"
+msgstr ""
+
+#: field.aua.within_city_limits.label:1576
+msgid "Within City Limits?"
+msgstr ""
+
+#: field.rhrr.hold_type.label:3504
+msgid "Hold Request Type"
+msgstr ""
+
+#: field.au.demographic.label:1272
+msgid "Demographic Info"
+msgstr ""
+
+#: class.mwp.label:2562
+msgid "Work Payment"
+msgstr ""
+
+#: field.au.ident_value2.label:1253
+msgid "Secondary Identification"
+msgstr ""
+
+#: class.acirc.label:1754
+msgid "Aged (patronless) Circulation"
+msgstr ""
+
+#: field.mbts.last_payment_note.label:637
+#: field.rccbs.last_payment_note.label:3661
+msgid "Last Payment Note"
+msgstr ""
+
+#: field.au.expire_date.label:1245
+msgid "Privilege Expiration Date"
+msgstr ""
+
+#: field.ac.id.label:2262
+msgid "Card ID"
+msgstr ""
+
+#: field.mp.credit_card_payment.label:3011
+#: field.mbp.credit_card_payment.label:3042
+msgid "Credit Card Payment Detail"
+msgstr ""
+
+#: class.rssr.label:3416
+msgid "Simple Record Extracts"
+msgstr ""
+
+#: field.au.id.label:1249 field.rud.id.label:3477
+msgid "User ID"
+msgstr ""
+
+#: field.asc.entries.label:2244 field.actsc.entries.label:2274
+msgid "Entries"
+msgstr ""
+
+#: field.acp.dummy_title.label:2716
+msgid "Precat Dummy Title"
+msgstr ""
+
+#: field.acpn.create_date.label:1324
+msgid "Note Creation Date/Time"
+msgstr ""
+
+#: field.aua.street2.label:1573
+msgid "Street (2)"
+msgstr ""
+
+#: field.au.barred.label:1235
+msgid "Barred"
+msgstr ""
+
+#: field.mcrp.id.label:2326
+msgid "Pyament ID"
+msgstr ""
+
+#: field.au.claims_returned_count.label:1238
+msgid "Claims-returned Count"
+msgstr ""
+
+#: field.bre.series_field_entries.label:1077
+msgid "Indexed Series Field Entries"
+msgstr ""
+
+#: field.rccbs.demographic_general_division.label:3668
+msgid "User Age Demographic"
+msgstr ""
+
+#: field.rccc.dewey.label:3579
+msgid "Call Number Dewey/Prefix"
+msgstr ""
+
+#: field.crahp.name.label:2771 field.crmf.name.label:2783
+msgid "Rule Name"
+msgstr ""
+
+#: field.clfm.code.label:2548
+msgid "LitF Code"
+msgstr ""
+
+#: field.mrd.type_mat.label:1514
+msgid "TMat"
+msgstr ""
+
+#: field.mb.billing_type.label:3183 field.rmocbbol.billing_type.label:3830
+#: field.rmocbbcol.billing_type.label:3861
+#: field.rmocbbhol.billing_type.label:3895
+msgid "Billing Type"
+msgstr ""
+
+#: class.mckp.label:2671 field.mdp.check_payment.label:3099
+msgid "Check Payment"
+msgstr ""
+
+#: field.rccc.stat_cat_1.label:3586
+msgid "Legacy CAT1 Link"
+msgstr ""
+
+#: field.mfr.tag.label:1363
+msgid "Tag"
+msgstr ""
+
+#: field.aout.org_units.label:2384
+msgid "Org Units"
+msgstr ""
+
+#: field.rccbs.profile_group.label:3674
+msgid "User Profile Group"
+msgstr ""
+
+#: field.vbm.field.label:246 field.vam.field.label:371
+msgid "Matched Attribute"
+msgstr ""
+
+#: field.ahn.method.label:1875
+msgid "Notification Method"
+msgstr ""
+
+#: field.vqbrad.xpath.label:200 field.vqarad.xpath.label:325
+msgid "XPath"
+msgstr ""
+
+#: field.au.groups.label:1269
+msgid "Additional Permission Groups"
+msgstr ""
+
+#: field.ccm.magnetic_media.label:433
+msgid "Magnetic Media"
+msgstr ""
+
+#: field.ahr.request_lib.label:2136
+msgid "Requesting Library"
+msgstr ""
+
+#: field.ahtc.source.label:3152
+msgid "Sending Library"
+msgstr ""
+
+#: field.rccc.call_number.label:3577
+msgid "Call Number Link"
+msgstr ""
+
+#: field.ahr.target.label:2141
+msgid "Target Object ID"
+msgstr ""
+
+#: field.circ.checkin_lib.label:1637 field.combcirc.checkin_lib.label:1692
+#: field.acirc.checkin_lib.label:1759 field.rodcirc.checkin_lib.label:3724
+msgid "Check In Library"
+msgstr ""
+
+#: field.aua.state.label:1571
+msgid "State"
+msgstr ""
+
+#: field.mp.voided.label:3009 field.mbp.voided.label:3040
+#: field.mndp.voided.label:3071 field.mdp.voided.label:3096
+#: field.mb.voided.label:3187
+msgid "Voided?"
+msgstr ""
+
+#: class.citm.label:1925
+msgid "Item Type Map"
+msgstr ""
+
+#: field.rccbs.billing_location_shortname.label:3642
+msgid "Billing Location Short (Policy) Name"
+msgstr ""
+
+#: field.rud.general_division.label:3479
+msgid "General Demographic Division"
+msgstr ""
+
+#: field.asvq.responses.label:616 field.asv.responses.label:2061
+msgid "Responses"
+msgstr ""
+
+#: field.mrd.item_form.label:1508
+msgid "Form"
+msgstr ""
+
+#: field.ssr.deleted.label:2050 field.rocit.deleted.label:3806
+msgid "Deleted"
+msgstr ""
+
+#: field.aou.ou_type.label:2179 class.aout.label:2371
+msgid "Organizational Unit Type"
+msgstr ""
+
+#: field.mcrp.payment_ts.label:2328 field.mwp.payment_ts.label:2572
+#: field.mgp.payment_ts.label:2593 field.mckp.payment_ts.label:2683
+msgid "Payment Timestamp"
+msgstr ""
+
+#: field.mfr.ind1.label:1359
+msgid "Indicator 1"
+msgstr ""
+
+#: field.mfr.ind2.label:1360
+msgid "Indicator 2"
+msgstr ""
+
+#: field.au.checkins.label:1274 field.aou.checkins.label:2190
+msgid "Checkins"
+msgstr ""
+
+#: field.cblvl.code.label:1948
+msgid "Bib Level Code"
+msgstr ""
+
+#: field.bre.call_numbers.label:1054
+msgid "Call Numbers"
+msgstr ""
+
+#: field.mp.payment_ts.label:3006 field.mbp.payment_ts.label:3037
+#: field.mndp.payment_ts.label:3068 field.mdp.payment_ts.label:3091
+msgid "Payment Date/Time"
+msgstr ""
+
+#: field.clm.value.label:847
+msgid "Language"
+msgstr ""
+
+#: None:1300
+msgid "Check-ins Performed as Staff"
+msgstr ""
+
+#: field.au.other_phone.label:1258
+msgid "Other Phone"
+msgstr ""
+
+#: field.bre.simple_record.label:1079
+msgid "Simple Record Extracts "
+msgstr ""
+
+#: class.actsce.label:2499
+msgid "User Stat Cat Entry"
+msgstr ""
+
+#: field.rccc.stat_cat_2_value.label:3593
+msgid "Legacy CAT2 Value"
+msgstr ""
+
+#: class.acn.label:969 field.acp.call_number.label:2704
+msgid "Call Number/Volume"
+msgstr ""
+
+#: field.mrd.control_type.label:1505
+msgid "Ctrl"
+msgstr ""
+
+#: field.au.family_name.label:1246
+msgid "Last Name"
+msgstr ""
+
+#: field.rccc.stat_cat_2.label:3587
+msgid "Legacy CAT2 Link"
+msgstr ""
+
+#: field.au.stat_cat_entries.label:1229
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: field.vbq.owner.label:145 field.vaq.owner.label:271
+msgid "Owner"
+msgstr ""
+
+#: class.ancihu.label:715
+msgid "Non-cataloged In House Use"
+msgstr ""
+
+#: field.ahr.holdable_formats.label:2131
+msgid "Holdable Formats (for M-type hold)"
+msgstr ""
+
+#: field.acp.notes.label:2728
+msgid "Copy Notes"
+msgstr ""
+
+#: field.vbm.eg_record.label:247 field.vam.eg_record.label:372
+msgid "Evergreen Record"
+msgstr ""
+
+#: field.vbm.id.label:244 field.vam.id.label:369
+msgid "Match ID"
+msgstr ""
+
+#: field.mbts.total_owed.label:640
+msgid "Total Owed"
+msgstr ""
+
+#: field.pgt.application_perm.label:2798
+msgid "Required Permission"
+msgstr ""
+
+#: field.au.ident_type2.label:1251
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: field.actscecm.stat_cat.label:2900
+msgid "Statistical Category"
+msgstr ""
+
+#: field.mbts.last_payment_ts.label:638
+msgid "Last Payment Timestamp"
+msgstr ""
+
+#: class.rmobbcol.label:3871
+msgid "Open Circulation Balance by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.ahr.usr.label:2142
+msgid "Hold User"
+msgstr ""
+
+#: class.mdp.label:3083
+msgid "Payments: Desk"
+msgstr ""
+
+#: field.asvr.answer.label:769
+msgid "Answer"
+msgstr ""
+
+#: field.rocit.status.label:3808
+msgid "Status"
+msgstr ""
+
+#: field.aun.pub.label:659 field.acpn.pub.label:1328
+#: field.acpl.opac_visible.label:1894
+msgid "Is OPAC Visible?"
+msgstr ""
+
+#: field.ahr.notifications.label:2146
+msgid "Notifications"
+msgstr ""
+
+#: field.aou.shortname.label:2181
+msgid "Short (Policy) Name"
+msgstr ""
+
+#: field.asvr.answer_date.label:770
+msgid "Answer Date/Time"
+msgstr ""
+
+#: field.rccc.dewey_block_hundreds.label:3591
+msgid "Dewey Block -- Hundreds"
+msgstr ""
+
+#: field.acn.deleted.label:977 field.au.deleted.label:1270
+#: field.acp.deleted.label:2712
+msgid "Is Deleted"
+msgstr ""
+
+#: field.acn.edit_date.label:978 field.acp.edit_date.label:2717
+msgid "Last Edit Date/Time"
+msgstr ""
+
+#: field.mbts.xact_type.label:645 field.rccbs.xact_type.label:3655
+msgid "Transaction Type"
+msgstr ""
+
+#: field.mbt.xact_start.label:2481 field.rccbs.xact_start.label:3653
+msgid "Transaction Start Date/Time"
+msgstr ""
+
+#: class.mbts.label:627
+msgid "Billable Transaction Summary"
+msgstr ""
+
+#: field.mb.billing_ts.label:3182
+msgid "Billing Timestamp"
+msgstr ""
+
+#: field.au.billing_address.label:1236
+msgid "Physical Address"
+msgstr ""
+
+#: field.mrd.item_lang.label:1509
+msgid "Lang"
+msgstr ""
+
+#: field.cblvl.value.label:1949
+msgid "Bib Level"
+msgstr ""
+
+#: field.actsce.stat_cat.label:2506 field.asce.stat_cat.label:3132
+msgid "Stat Cat"
+msgstr ""
+
+#: field.mrd.id.label:1507
+msgid "Descriptor ID"
+msgstr ""
+
+#: field.cit.name.label:605
+msgid "Identification Name"
+msgstr ""
+
+#: field.rccc.dewey_range_tens.label:3588
+msgid "Dewey Range -- Tens"
+msgstr ""
+
+#: field.rocit.dewey_block_hundreds.label:3787
+msgid "Dewy Hundreds"
+msgstr ""
+
+#: class.rocit.label:3774
+msgid "Classic Item List"
+msgstr ""
+
+#: field.mdp.accepting_usr.label:3094
+msgid "Accepting User"
+msgstr ""
+
+#: class.vqbrad.label:192
+msgid "Queued Bib Record Attribute Definition"
+msgstr ""
+
+#: field.rmsr.biblio_record.label:3410 field.rssr.biblio_record.label:3432
+#: field.rsr.biblio_record.label:3465
+msgid "Full Bibliographic record"
+msgstr ""
+
+#: field.vqbr.marc.label:171 field.vqar.marc.label:298
+msgid "MARC"
+msgstr ""
+
+#: class.iatc.label:3685
+msgid "Inter-system Copy Transit"
+msgstr ""
+
+#: class.aihu.label:698
+msgid "In House Use"
+msgstr ""
+
+#: field.circ.circ_type.label:1665 field.combcirc.circ_type.label:1720
+#: field.acirc.circ_type.label:1787 class.rcirct.label:3485
+#: field.rcirct.type.label:3491 field.rccc.circ_type.label:3566
+#: field.rodcirc.circ_type.label:3751
+msgid "Circulation Type"
+msgstr ""
+
+#: field.ahtc.hold.label:3148
+msgid "Hold requiring Transit"
+msgstr ""
+
+#: field.bre.notes.label:1072
+msgid "Non-MARC Record Notes"
+msgstr ""
+
+#: field.aou.ill_address.label:2176
+msgid "ILL Receiving Address"
+msgstr ""
+
+#: field.aout.name.label:2381
+msgid "Type Name"
+msgstr ""
+
+#: field.rmsr.author.label:3405 field.rssr.author.label:3427
+#: field.rsr.author.label:3451
+msgid "Author (normalized)"
+msgstr ""
+
+#: field.ssr.excluded.label:2051
+msgid "Excluded"
+msgstr ""
+
+#: field.circ.stop_fines_time.label:1656
+#: field.combcirc.stop_fines_time.label:1711
+#: field.acirc.stop_fines_time.label:1778
+#: field.rodcirc.stop_fines_time.label:3743
+msgid "Fine Stop Date/Time"
+msgstr ""
+
+#: field.au.settings.label:1227
+msgid "All User Settings"
+msgstr ""
+
+#: field.acn.copies.label:974
+msgid "Copies"
+msgstr ""
+
+#: field.ahr.cancel_time.label:2143
+msgid "Hold Cancel Date/Time"
+msgstr ""
+
+#: field.pgt.perm_interval.label:2797
+msgid "User Expiration Interval"
+msgstr ""
+
+#: field.circ.fine_interval.label:1646 field.combcirc.fine_interval.label:1701
+#: field.acirc.fine_interval.label:1768 field.rodcirc.fine_interval.label:3733
+msgid "Fine Interval"
+msgstr ""
+
+#: class.mrd.label:1496
+msgid "Basic Record Descriptor"
+msgstr ""
+
+#: field.circ.billing_total.label:1666 field.combcirc.billing_total.label:1721
+#: field.acirc.billing_total.label:1788 field.mg.billing_total.label:2448
+#: field.mbt.billing_total.label:2486 field.rodcirc.billing_total.label:3752
+msgid "Billing Totals"
+msgstr ""
+
+#: field.chmt.transit_range.label:537
+msgid "Transit Range"
+msgstr ""
+
+#: class.aua.label:1560
+msgid "User Address"
+msgstr ""
+
+#: class.aou.label:2167
+msgid "Organizational Unit"
+msgstr ""
+
+#: field.ancc.circ_time.label:2835 field.rccc.xact_start.label:3565
+msgid "Circulation Date/Time"
+msgstr ""
+
+#: field.cvrfm.value.label:452
+msgid "Format"
+msgstr ""
+
+#: field.rmsr.issn.label:3409 field.rssr.issn.label:3431
+#: field.rsr.issn.label:3458
+msgid "ISSN"
+msgstr ""
+
+#: class.cifm.label:951
+msgid "Item Form Map"
+msgstr ""
+
+#: field.rmsr.title.label:3404 field.rssr.title.label:3426
+#: field.rsr.title.label:3449
+msgid "Title Proper (normalized)"
+msgstr ""
+
+#: field.ahr.selection_depth.label:2139
+msgid "Item Selection Depth"
+msgstr ""
+
+#: field.circ.circ_lib.label:1640 field.combcirc.circ_lib.label:1695
+#: field.acirc.circ_lib.label:1762 field.acp.circ_lib.label:2706
+#: field.ancc.circ_lib.label:2834 field.rodcirc.circ_lib.label:3727
+#: field.rmocbbcol.circ_lib.label:3859 field.rmobbcol.circ_lib.label:3876
+msgid "Circulating Library"
+msgstr ""
+
+#: field.rxpt.unvoided.label:3532
+msgid "Unvoided Paid Amount"
+msgstr ""
+
+#: field.aou.opac_visible.label:2184 field.asc.opac_visible.label:2247
+#: field.actsc.opac_visible.label:2277 field.acp.opac_visible.label:2724
+#: field.rocit.opac_visible.label:3803
+msgid "OPAC Visible"
+msgstr ""
+
+#: field.asc.id.label:2245 field.actsc.id.label:2275
+msgid "Stat Cat ID"
+msgstr ""
+
+#: field.cam.code.label:937
+msgid "Audience Code"
+msgstr ""
+
+#: field.rsr.genre.label:3461
+msgid "Genres (normalized)"
+msgstr ""
+
+#: field.rmsr.publisher.label:3406 field.rssr.publisher.label:3428
+#: field.rsr.publisher.label:3452
+msgid "Publisher (normalized)"
+msgstr ""
+
+#: field.mbts.usr.label:642
+msgid "Billed User"
+msgstr ""
+
+#: field.ccmrs.max_fine_rule.label:589 field.circ.max_fine_rule.label:1649
+#: field.combcirc.max_fine_rule.label:1704
+#: field.acirc.max_fine_rule.label:1771 class.crmf.label:2776
+#: field.rodcirc.max_fine_rule.label:3736
+msgid "Max Fine Rule"
+msgstr ""
+
+#: field.ssr.total.label:2047
+msgid "Total Results"
+msgstr ""
+
+#: field.rccc.circ_lib_id.label:3564
+msgid "Library Circulation Location Link"
+msgstr ""
+
+#: field.au.alert_message.label:1234 field.acp.alert_message.label:2702
+msgid "Alert Message"
+msgstr ""
+
+#: field.rccbs.last_payment_ts.label:3660
+msgid "Last Payment Date/Time"
+msgstr ""
+
+#: field.mbts.id.label:633 field.mg.id.label:2440 field.mbt.id.label:2478
+#: field.mwp.xact.label:2573 field.mgp.xact.label:2594
+#: field.rxbt.xact.label:3517 field.rxpt.xact.label:3531
+#: field.rccbs.id.label:3640
+msgid "Transaction ID"
+msgstr ""
+
+#: field.mwp.id.label:2570 field.mgp.id.label:2591 field.mckp.id.label:2681
+#: field.mp.id.label:3004 field.mbp.id.label:3035 field.mndp.id.label:3066
+#: field.mdp.id.label:3089
+msgid "Payment ID"
+msgstr ""
+
+#: field.mcrp.amount.label:2324 field.mwp.amount.label:2568
+#: field.mgp.amount.label:2589 field.mckp.amount.label:2677
+#: field.mp.amount.label:3003 field.mbp.amount.label:3034
+#: field.mndp.amount.label:3065 field.mdp.amount.label:3088
+#: field.mb.amount.label:3181
+msgid "Amount"
+msgstr ""
+
+#: field.ahn.notify_time.label:1878
+msgid "Notification Date/Time"
+msgstr ""
+
+#: class.chmt.label:529
+msgid "Hold Matrix Test Set"
+msgstr ""
+
+#: class.chmm.label:465
+msgid "Hold Matrix Matchpoint"
+msgstr ""
+
+#: field.bre.subject_field_entries.label:1074
+msgid "Indexed Subject Field Entries"
+msgstr ""
+
+#: field.ccmrs.duration_rule.label:587
+msgid "Duration Rule"
+msgstr ""
+
+#: class.acpl.label:1885
+msgid "Copy/Shelving Location"
+msgstr ""
+
+#: field.auoi.org_unit.label:399
+msgid "Allowed Org Unit"
+msgstr ""
+
+#: class.clfm.label:2543 field.rccc.lit_form.label:3571
+msgid "Literary Form"
+msgstr ""
+
+#: field.ahr.prev_check_time.label:2135
+msgid "Last Targeting Date/Time"
+msgstr ""
+
+#: field.asvr.response_group_id.label:774
+msgid "Response Group ID"
+msgstr ""
+
+#: field.chmm.active.label:471 field.ccmm.active.label:507
+msgid "Active?"
+msgstr ""
+
+#: field.au.usrname.label:1268
+msgid "OPAC/Staff Client User Name"
+msgstr ""
+
+#: field.ssr.rel.label:2045
+msgid "Relevance"
+msgstr ""
+
+#: class.aus.label:669
+msgid "User Setting"
+msgstr ""
+
+#: field.circ.duration.label:1644 field.combcirc.duration.label:1699
+#: field.acirc.duration.label:1766 field.cnct.circ_duration.label:2361
+#: field.rodcirc.duration.label:3731
+msgid "Circulation Duration"
+msgstr ""
+
+#: field.rccc.language.label:3570
+msgid "Item Language"
+msgstr ""
+
+#: class.mbp.label:3029
+msgid "Payments: Brick-and-mortar"
+msgstr ""
+
+#: class.actscecm.label:2894
+msgid "User Statistical Category Entry"
+msgstr ""
+
+#: class.vqarad.label:317
+msgid "Queued Authority Record Attribute Definition"
+msgstr ""
+
+#: field.ahn.note.label:1876
+msgid "Notification Note"
+msgstr ""
+
+#: field.ccmrs.recurring_fine_rule.label:588
+#: field.circ.recuring_fine_rule.label:1653
+#: field.combcirc.recuring_fine_rule.label:1708
+#: field.acirc.recuring_fine_rule.label:1775
+#: field.rodcirc.recuring_fine_rule.label:3740
+msgid "Recurring Fine Rule"
+msgstr ""
+
+#: field.circ.duration_rule.label:1645 field.combcirc.duration_rule.label:1700
+#: field.acirc.duration_rule.label:1767 field.rodcirc.duration_rule.label:3732
+msgid "Circ Duration Rule"
+msgstr ""
+
+#: field.ccmt.max_overdue.label:556
+msgid "Max Overdue"
+msgstr ""
+
+#: field.ccmt.max_items_out.label:555
+msgid "Max Items Out"
+msgstr ""
+
+#: class.asc.label:2239
+msgid "Asset Statistical Category"
+msgstr ""
+
+#: field.asv.required.label:2069
+msgid "Is Required?"
+msgstr ""
+
+#: field.au.survey_responses.label:1230
+msgid "Survey Responses"
+msgstr ""
+
+#: field.atc.id.label:740 field.ahtc.id.label:3149 field.iatc.id.label:3702
+msgid "Transit ID"
+msgstr ""
+
+#: field.acp.total_circ_count.label:2731
+msgid "Total Circulations"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_name.label:3647
+msgid "User Home Library Name"
+msgstr ""
+
+#: field.au.credit_forward_balance.label:1240
+msgid "User Credit Balance"
+msgstr ""
+
+#: class.vqbra.label:215
+msgid "Queued Bib Record Attribute"
+msgstr ""
+
+#: field.aun.create_date.label:656 field.acp.create_date.label:2710
+msgid "Creation Date/Time"
+msgstr ""
+
+#: field.rocit.due_date.label:3810
+msgid "Due Date"
+msgstr ""
+
+#: field.aout.id.label:2380
+msgid "Type ID"
+msgstr ""
+
+#: field.circ.payments.label:1663 field.combcirc.payments.label:1718
+#: field.acirc.payments.label:1785 field.rodcirc.payments.label:3749
+msgid "Transaction Payments"
+msgstr ""
+
+#: class.bre.label:1049
+msgid "Bibliographic Record"
+msgstr ""
+
+#: field.ahr.eligible_copies.label:2148
+msgid "Eligible Copies"
+msgstr ""
+
+#: field.mp.cash_payment.label:3010 field.mbp.cash_payment.label:3041
+msgid "Cash Payment Detail"
+msgstr ""
+
+#: field.mfr.id.label:1358
+msgid "Field ID"
+msgstr ""
+
+#: field.rocit.ref.label:3804
+msgid "Reference"
+msgstr ""
+
+#: field.ancc.item_type.label:2837
+msgid "Non-cat Item Type"
+msgstr ""
+
+#: field.chmm.user_home_ou.label:472 field.rmocbbhol.home_ou.label:3893
+#: field.rmobbhol.home_ou.label:3910
+msgid "User Home Library"
+msgstr ""
+
+#: class.vam.label:364
+msgid "Queued Authority Record Match"
+msgstr ""
+
+#: field.rccbs.total_owed.label:3658 field.rmocbbol.billed.label:3831
+#: field.rmocbbcol.billed.label:3862 field.rmocbbhol.billed.label:3896
+msgid "Total Billed"
+msgstr ""
+
+#: class.aun.label:651
+msgid "User Note"
+msgstr ""
+
+#: class.actsc.label:2269
+msgid "User Statistical Category"
+msgstr ""
+
+#: field.ccmm.grp.label:509 class.pgt.label:2787
+msgid "Permission Group"
+msgstr ""
+
+#: field.mp.forgive_payment.label:3015 field.mbp.forgive_payment.label:3046
+#: field.mndp.forgive_payment.label:3073
+msgid "Forgive Payment Detail"
+msgstr ""
+
+#: field.rhrr.target.label:3503
+msgid "Hold Target"
+msgstr ""
+
+#: field.au.suffix.label:1265
+msgid "Suffix/Title"
+msgstr ""
+
+#: field.asvr.effective_date.label:771
+msgid "Effective Answer Date/Time"
+msgstr ""
+
+#: field.acp.deposit.label:2713
+msgid "Is Deposit Required"
+msgstr ""
+
+#: field.ahr.capture_time.label:2123
+msgid "Capture Date/Time"
+msgstr ""
+
+#: field.mbts.balance_owed.label:632 field.rccbs.balance_owed.label:3673
+msgid "Balance Owed"
+msgstr ""
+
+#: field.chmt.max_holds.label:538
+msgid "Max Holds"
+msgstr ""
+
+#: field.rhrr.bib_record.label:3505
+msgid "Target Bib Record"
+msgstr ""
+
+#: class.ac.label:2255
+msgid "Library Card"
+msgstr ""
+
+#: field.au.second_given_name.label:1263
+msgid "Middle Name"
+msgstr ""
+
+#: field.aihu.staff.label:706 field.ancihu.staff.label:723
+msgid "Recording Staff"
+msgstr ""
+
+#: field.aou.billing_address.label:2173
+msgid "Billing Address"
+msgstr ""
+
+#: field.acp.stat_cat_entries.label:2700
+msgid "Statistical Catagory Entries"
+msgstr ""
+
+#: field.crahp.id.label:2770 field.crmf.id.label:2782
+msgid "Rule ID"
+msgstr ""
+
+#: field.acp.loan_duration.label:2722
+msgid "Loan Duration"
+msgstr ""
+
+#: field.vbq.queue_type.label:148 field.vaq.queue_type.label:274
+#: field.mrd.item_type.label:1510 field.aua.address_type.label:1565
+msgid "Type"
+msgstr ""
+
+#: field.ahr.expire_time.label:2126
+msgid "Hold Expire Date/Time"
+msgstr ""
+
+#: field.bre.full_record_entries.label:1078
+msgid "Flattened MARC Fields "
+msgstr ""
+
+#: field.rmsr.quality.label:3401 field.rssr.quality.label:3423
+#: field.rsr.quality.label:3446
+msgid "Overall Record Quality"
+msgstr ""
+
+#: class.mg.label:2434
+msgid "Grocery Transaction"
+msgstr ""
+
+#: field.rocit.age_protect.label:3802
+msgid "Age Protection"
+msgstr ""
+
+#: field.acn.record.label:983 field.combcirc.copy_bib_record.label:1730
+#: field.acirc.copy_bib_record.label:1797
+msgid "Bib Record"
+msgstr ""
+
+#: field.rccbs.patron_city.label:3670
+msgid "User City"
+msgstr ""
+
+#: field.ahn.hold.label:1873 field.aufh.hold.label:2870
+msgid "Hold"
+msgstr ""
+
+#: field.cifm.value.label:957
+msgid "Item Form"
+msgstr ""
+
+#: class.cit.label:599
+msgid "Identification Type"
+msgstr ""
+
+#: field.ahr.requestor.label:2138
+msgid "Requesting User"
+msgstr ""
+
+#: field.auoi.opt_in_ws.label:396 class.aws.label:410
+msgid "Workstation"
+msgstr ""
+
+#: field.mcrp.xact.label:2329 field.mb.xact.label:3189
+msgid "Transaction"
+msgstr ""
+
+#: field.rocit.owning_lib_name.label:3797
+msgid "Owning Lib Name"
+msgstr ""
+
+#: field.rccc.circ_lib.label:3563
+msgid "Library Circulation Location Short (Policy) Name"
+msgstr ""
+
+#: field.acp.fine_level.label:2719
+msgid "Fine Level"
+msgstr ""
+
+#: field.vqbra.record.label:221 field.vqara.record.label:346
+#: field.ssr.record.label:2046
+msgid "Record"
+msgstr ""
+
+#: field.aun.id.label:658 field.acpn.id.label:1326
+msgid "Note ID"
+msgstr ""
+
+#: field.ahr.bib_rec.label:2147
+msgid "Bib Record link"
+msgstr ""
+
+#: field.rsr.uniform_title.label:3450
+msgid "Uniform Title (normalized)"
+msgstr ""
+
+#: field.mg.xact_finish.label:2443
+msgid "Transaction Finish Timestamp"
+msgstr ""
+
+#: class.ahr.label:2116
+msgid "Hold Request"
+msgstr ""
+
+#: field.aihu.item.label:704 class.acp.label:2695
+msgid "Item"
+msgstr ""
+
+#: field.chmm.marc_form.label:481 field.ccmm.marc_form.label:512
+#: field.rccc.item_form.label:3572
+msgid "MARC Form"
+msgstr ""
+
+#: class.ccmt.label:548
+msgid "Circulation Matrix Test Set"
+msgstr ""
+
+#: field.chmm.usr_grp.label:477
+msgid "User Permission Group"
+msgstr ""
+
+#: field.ancihu.item_type.label:721 field.citm.value.label:1931
+msgid "Item Type"
+msgstr ""
+
+#: field.ssr.visible.label:2049
+msgid "Visible"
+msgstr ""
+
+#: class.rmocbbol.label:3823
+msgid "Open Circulation Billing by Owning Library"
+msgstr ""
+
+#: field.ahr.phone_notify.label:2133
+msgid "Notifications Phone Number"
+msgstr ""
+
+#: field.mg.billable_transaction.label:2447
+msgid "Billable Transaction link"
+msgstr ""
+
+#: field.circ.id.label:1647 field.combcirc.id.label:1702
+#: field.acirc.id.label:1769 field.rodcirc.id.label:3734
+msgid "Circ ID"
+msgstr ""
+
+#: field.bre.deleted.label:1059
+msgid "Is Deleted?"
+msgstr ""
+
+#: class.vaq.label:265
+msgid "Import/Overlay Authority Queue"
+msgstr ""
+
+#: field.mbt.billings.label:2484
+msgid "Billing Line Items"
+msgstr ""
+
+#: field.acp.circulate.label:2708
+msgid "Can Circulate"
+msgstr ""
+
+#: field.rocit.call_number_label.label:3785
+msgid "Callnumber Label"
+msgstr ""
+
+#: field.aou.parent_ou.label:2180
+msgid "Parent Organizational Unit"
+msgstr ""
+
+#: class.erfcc.label:3541
+msgid "Total Circulation Count, Including Legacy"
+msgstr ""
+
+#: field.bre.last_xact_id.label:1064
+msgid "Last Transaction ID"
+msgstr ""
+
+#: field.mp.check_payment.label:3013 field.mbp.check_payment.label:3044
+msgid "Check Payment Detail"
+msgstr ""
+
+#: field.ahr.id.label:2132 field.rhrr.id.label:3502
+msgid "Hold ID"
+msgstr ""
+
+#: field.mbts.last_billing_ts.label:635
+msgid "Last Billing Timestamp"
+msgstr ""
+
+#: field.rocit.dewey_block_tens.label:3786
+msgid "Dewy Tens"
+msgstr ""
+
+#: field.rocit.stat_cat_1_value.label:3793
+msgid "Legacy Stat Cat 1 Value"
+msgstr ""
+
+#: field.pgt.usergroup.label:2799
+msgid "Is User Group"
+msgstr ""
+
+#: field.rccbs.usr.label:3651
+msgid "User Link"
+msgstr ""
+
+#: field.acpl.circulate.label:1890
+msgid "Can Circulate?"
+msgstr ""
+
+#: field.acp.stat_cat_entry_copy_maps.label:2729
+msgid "Stat-Cat entry maps"
+msgstr ""
+
+#: field.aout.children.label:2376
+msgid "Subordinate Types"
+msgstr ""
+
+#: field.bre.fixed_fields.label:1055
+msgid "Fixed Field Entry"
+msgstr ""
+
+#: field.bre.fingerprint.label:1062 field.rmsr.fingerprint.label:3400
+#: field.rssr.fingerprint.label:3422 field.rsr.fingerprint.label:3445
+msgid "Fingerprint"
+msgstr ""
+
+#: field.chmm.ref_flag.label:483 field.ccmm.ref_flag.label:514
+msgid "Reference?"
+msgstr ""
+
+#: field.pgt.children.label:2792
+msgid "Child Groups"
+msgstr ""
+
+#: field.rccc.dewey_block_tens.label:3590
+msgid "Dewey Block -- Tens"
+msgstr ""
+
+#: field.aws.owning_lib.label:417 field.chmm.item_owning_ou.label:475
+#: field.acn.owning_lib.label:982 field.asv.owner.label:2067
+#: field.asc.owner.label:2248 field.actsc.owner.label:2278
+#: field.cnct.owning_lib.label:2365 field.rmocbbol.owning_lib.label:3829
+#: field.rmobbol.owning_lib.label:3844 field.rmocbbcol.owning_lib.label:3860
+#: field.rmobbcol.owning_lib.label:3877 field.rmocbbhol.owning_lib.label:3894
+#: field.rmobbhol.owning_lib.label:3911
+msgid "Owning Library"
+msgstr ""
+
+#: field.rocit.circ_lib_name.label:3798
+msgid "Circ Lib Name"
+msgstr ""
+
+#: field.vqbr.create_time.label:169 field.vqar.create_time.label:296
+msgid "Create Time"
+msgstr ""
+
+#: field.amtr.success.label:129
+msgid "Success"
+msgstr ""
+
+#: field.circ.circ_staff.label:1641 field.combcirc.circ_staff.label:1696
+#: field.acirc.circ_staff.label:1763 field.ancc.staff.label:2839
+#: field.rodcirc.circ_staff.label:3728
+msgid "Circulating Staff"
+msgstr ""
+
+#: class.asce.label:3125
+msgid "Item Stat Cat Entry"
+msgstr ""
+
+#: field.combcirc.usr_birth_year.label:1725
+#: field.acirc.usr_birth_year.label:1792
+msgid "Patron Birth Year"
+msgstr ""
+
+#: field.atc.hold_transit_copy.label:746 class.ahtc.label:3140
+#: field.iatc.hold_transit_copy.label:3708
+msgid "Hold Transit"
+msgstr ""
+
+#: field.asv.opac.label:2066
+msgid "OPAC Surevey?"
+msgstr ""
+
+#: field.vqbra.id.label:220 field.vqara.id.label:345
+msgid "Attribute ID"
+msgstr ""
+
+#: field.aun.creator.label:657
+msgid "Creating Staff"
+msgstr ""
+
+#: class.ccmrs.label:581
+msgid "Circulation Matrix Rule Set"
+msgstr ""
+
+#: field.ccm.sip2_media_type.label:432
+msgid "SIP2 Media Type"
+msgstr ""
+
+#: field.vqbrad.code.label:198 field.vqarad.code.label:323
+#: field.ccm.code.label:429 field.cvrfm.code.label:451
+msgid "Code"
+msgstr ""
+
+#: field.rocit.patron_name.label:3812
+msgid "Patron Name"
+msgstr ""
+
+#: class.cvrfm.label:446 field.chmm.marc_vr_format.label:482
+#: field.ccmm.marc_vr_format.label:513
+msgid "Videorecording Format"
+msgstr ""
+
+#: field.circ.due_date.label:1643 field.combcirc.due_date.label:1698
+#: field.acirc.due_date.label:1765 field.rodcirc.due_date.label:3730
+msgid "Due Date/Time"
+msgstr ""
+
+#: field.asvq.id.label:617
+msgid "Question ID"
+msgstr ""
+
+#: class.mb.label:3176
+msgid "Billing Line Item"
+msgstr ""
+
+#: field.rsr.external_uri.label:3464
+msgid "External URI List (normalized)"
+msgstr ""
+
+#: field.actsce.id.label:2504 field.actscecm.id.label:2899
+#: field.asce.id.label:3130 field.rsce1.id.label:3612
+#: field.rsce2.id.label:3626
+msgid "Entry ID"
+msgstr ""
+
+#: field.acp.age_protect.label:2701
+msgid "Age Hold Protection"
+msgstr ""
+
+#: field.amtr.fail_part.label:130
+msgid "Failure Part"
+msgstr ""
+
+#: field.acp.copy_number.label:2709
+msgid "Copy Number on Volume"
+msgstr ""
+
+#: field.mbts.last_payment_type.label:639
+#: field.rccbs.last_payment_type.label:3662
+msgid "Last Payment Type"
+msgstr ""
+
+#: class.mgp.label:2583
+msgid "Goods Payment"
+msgstr ""
+
+#: field.rmsr.isbn.label:3408 field.rssr.isbn.label:3430
+#: field.rsr.isbn.label:3457
+msgid "ISBN"
+msgstr ""
+
+#: field.circ.checkin_staff.label:1638 field.combcirc.checkin_staff.label:1693
+#: field.acirc.checkin_staff.label:1760 field.rodcirc.checkin_staff.label:3725
+msgid "Check In Staff"
+msgstr ""
+
+#: field.ccmt.script_test.label:558
+msgid "Test Script"
+msgstr ""
+
+#: field.mdp.cash_drawer.label:3095
+msgid "Cash Drawer"
+msgstr ""
+
+#: class.asvr.label:764
+msgid "Survey Response"
+msgstr ""
+
+#: class.crahp.label:2764
+msgid "Age Hold Protection Rule"
+msgstr ""
+
+#: field.au.first_given_name.label:1247
+msgid "First Name"
+msgstr ""
+
+#: field.acpl.owning_lib.label:1895
+msgid "Owning Org Unit"
+msgstr ""
+
+#: field.au.permissions.label:1226
+msgid "All Permissions"
+msgstr ""
+
+#: field.mbts.xact_finish.label:643
+msgid "Transaction Finish Time"
+msgstr ""
+
+#: field.cit.id.label:604
+msgid "Identification ID"
+msgstr ""
+
+#: field.atc.source_send_time.label:744 field.ahtc.source_send_time.label:3153
+#: field.iatc.source_send_time.label:3706
+msgid "Send Date/Time"
+msgstr ""
+
+#: class.circ.label:1632 field.rccc.id.label:3562
+msgid "Circulation"
+msgstr ""
+
+#: field.acp.price.label:2725 field.rocit.price.label:3783
+msgid "Price"
+msgstr ""
+
+#: field.ac.barcode.label:2261 field.acp.barcode.label:2703
+#: field.rocit.barcode.label:3784
+msgid "Barcode"
+msgstr ""
+
+#: field.pgt.id.label:2794
+msgid "Group ID"
+msgstr ""
+
+#: field.mrd.pub_status.label:1512
+msgid "Pub Status"
+msgstr ""
+
+#: field.rocit.create_date.label:3796
+msgid "Create Date"
+msgstr ""
+
+#: field.acp.deposit_amount.label:2714 field.rocit.deposit_amount.label:3805
+msgid "Deposit Amount"
+msgstr ""
+
+#: field.rxbt.total.label:3520
+msgid "Total Billing Amount"
+msgstr ""
+
+#: field.circ.xact_finish.label:1659 field.combcirc.xact_finish.label:1714
+#: field.acirc.xact_finish.label:1781 field.mbt.xact_finish.label:2480
+#: field.rodcirc.xact_finish.label:3746
+msgid "Transaction Finish Date/Time"
+msgstr ""
+
+#: field.acp.ref.label:2726
+msgid "Is Reference"
+msgstr ""
+
+#: field.vbq.name.label:146 field.vaq.name.label:272 field.ccm.name.label:430
+#: field.aus.name.label:675 field.cxt.name.label:893
+#: field.acpl.name.label:1893 field.asv.name.label:2065
+#: field.aou.name.label:2178 field.asc.name.label:2246
+#: field.actsc.name.label:2276 field.cnct.name.label:2364
+msgid "Name"
+msgstr ""
+
+#: field.mckp.cash_drawer.label:2679
+msgid "Workstation link"
+msgstr ""
+
+#: field.chmm.marc_type.label:480 field.ccmm.marc_type.label:511
+#: field.rccc.item_type.label:3573
+msgid "MARC Type"
+msgstr ""
+
+#: field.bre.edit_date.label:1060
+msgid "Last Edit Data/Time"
+msgstr ""
+
+#: field.clm.code.label:846 field.bre.language.label:1071
+msgid "Language Code"
+msgstr ""
+
+#: field.pgt.parent.label:2796
+msgid "Parent Group"
+msgstr ""
+
+#: field.combcirc.usr_post_code.label:1713
+#: field.acirc.usr_post_code.label:1780
+msgid "Patron ZIP"
+msgstr ""
+
+#: field.circ.xact_start.label:1660 field.combcirc.xact_start.label:1715
+#: field.acirc.xact_start.label:1782 field.rodcirc.xact_start.label:3747
+msgid "Check Out Date/Time"
+msgstr ""
+
+#: field.rxbt.unvoided.label:3518
+msgid "Unvoided Billing Amount"
+msgstr ""
+
+#: field.rxpt.total.label:3534
+msgid "Total Paid Amount"
+msgstr ""
+
+#: field.circ.billable_transaction.label:1664
+#: field.combcirc.billable_transaction.label:1719
+#: field.acirc.billable_transaction.label:1786
+#: field.rodcirc.billable_transaction.label:3750
+msgid "Base Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib_shortname.label:3582
+msgid "Patron Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.ac.active.label:2260
+msgid "IsActive?"
+msgstr ""
+
+#: field.cnct.in_house.label:2363
+msgid "In House?"
+msgstr ""
+
+#: field.rsr.geographic_subject.label:3460
+msgid "Geographic Subjects (normalized)"
+msgstr ""
+
+#: field.combcirc.copy_call_number.label:1726
+#: field.acirc.copy_call_number.label:1793
+msgid "Call Number"
+msgstr ""
+
+#: field.au.card.label:1237
+msgid "Current Library Card"
+msgstr ""
+
+#: field.atc.target_copy.label:745 field.ahtc.target_copy.label:3154
+#: field.iatc.target_copy.label:3707
+msgid "Transited Copy"
+msgstr ""
+
+#: field.actsce.value.label:2507 field.rsce1.value.label:3614
+#: field.rsce2.value.label:3628
+msgid "Entry Value"
+msgstr ""
+
+#: field.acpn.creator.label:1325
+msgid "Note Creator"
+msgstr ""
+
+#: field.combcirc.copy_circ_lib.label:1729
+#: field.acirc.copy_circ_lib.label:1796
+msgid "Copy Circulating Library"
+msgstr ""
+
+#: class.vbm.label:239
+msgid "Queued Bib Record Match"
+msgstr ""
+
+#: field.ssr.checked.label:2048
+msgid "Checked"
+msgstr ""
+
+#: field.mfr.record.label:1361 field.mrd.record.label:1513
+msgid "Bib Record Entry"
+msgstr ""
+
+#: field.rccbs.usr_home_ou.label:3648
+msgid "User Home Library Link"
+msgstr ""
+
+#: field.ccmm.usr_age_lower_bound.label:515
+msgid "User Age: Lower Bound"
+msgstr ""
+
+#: field.acp.id.label:2721 field.erfcc.id.label:3546 field.rocit.id.label:3782
+msgid "Copy ID"
+msgstr ""
+
+#: field.au.day_phone.label:1241
+msgid "Daytime Phone"
+msgstr ""
+
+#: field.circ.target_copy.label:1657 field.combcirc.target_copy.label:1712
+#: field.acirc.target_copy.label:1779 field.rodcirc.target_copy.label:3744
+msgid "Circulating Item"
+msgstr ""
+
+#: field.rocit.author.label:3780
+msgid "Author"
+msgstr ""
+
+#: field.ahr.email_notify.label:2125
+msgid "Notify by Email?"
+msgstr ""
+
+#: field.circ.payment_total.label:1667 field.combcirc.payment_total.label:1722
+#: field.acirc.payment_total.label:1789 field.mg.payment_total.label:2449
+#: field.mbt.payment_total.label:2487 field.rodcirc.payment_total.label:3753
+msgid "Payment Totals"
+msgstr ""
+
+#: field.rccc.patron_id.label:3580
+msgid "Patron Link"
+msgstr ""
+
+#: field.ccmcmt.id.label:570
+msgid "Test ID"
+msgstr ""
+
+#: field.mp.goods_payment.label:3016 field.mbp.goods_payment.label:3047
+#: field.mndp.goods_payment.label:3074
+msgid "Goods Payment Detail"
+msgstr ""
+
+#: field.au.notes.label:1271
+msgid "User Notes"
+msgstr ""
+
+#: field.acn.notes.label:984
+msgid "Notes"
+msgstr ""
+
+#: class.rmsr.label:3394
+msgid "Fast Simple Record Extracts"
+msgstr ""
+
+#: field.vqbra.attr_value.label:223 field.vqara.attr_value.label:348
+#: field.aus.value.label:677 field.asce.value.label:3133
+msgid "Value"
+msgstr ""
+
+#: field.bre.tcn_source.label:1068 field.rmsr.tcn_source.label:3402
+#: field.rssr.tcn_source.label:3424 field.rsr.tcn_source.label:3447
+msgid "TCN Source"
+msgstr ""
+
+#: class.rsce1.label:3607
+msgid "CAT1 Entry"
+msgstr ""
+
+#: field.mrd.enc_level.label:1506
+msgid "ELvl"
+msgstr ""
+
+#: field.ahtc.dest.label:3146
+msgid "Destination Library"
+msgstr ""
+
+#: class.aufh.label:2862
+msgid "Unfulfilled Hold Targets"
+msgstr ""
+
+#: field.rocit.creator.label:3801
+msgid "Creator"
+msgstr ""
+
+#: field.rccc.dewey_range_hundreds.label:3589
+msgid "Dewey Range -- Hundreds"
+msgstr ""
+
+#: field.rccc.copy_id.label:3567
+msgid "Copy Link"
+msgstr ""
+
+#: field.ahr.selection_ou.label:2140
+msgid "Selection Locus"
+msgstr ""
+
+#: field.rsr.series_statement.label:3455
+msgid "Series Statement (normalized)"
+msgstr ""
+
+#: class.rccbs.label:3635
+msgid "Classic Open Transaction Summary"
+msgstr ""
+
+#: class.cnct.label:2356
+msgid "Non-cataloged Type"
+msgstr ""
+
+#: field.asvq.question.label:618 field.asvr.question.label:773
+#: field.asva.question.label:2822
+msgid "Question"
+msgstr ""
+
+#: field.ahtc.prev_hop.label:3151
+msgid "Previous Stop"
+msgstr ""
+
+#: field.bre.tcn_value.label:1069 field.rmsr.tcn_value.label:3403
+#: field.rssr.tcn_value.label:3425 field.rsr.tcn_value.label:3448
+msgid "TCN Value"
+msgstr ""
+
+#: class.ahn.label:1868
+msgid "Hold Notification"
+msgstr ""
+
+#: field.rcirct.id.label:3490 field.rmocbbol.id.label:3828
+#: field.rmocbbcol.id.label:3858 field.rmocbbhol.id.label:3892
+msgid "Circulation ID"
+msgstr ""
+
+#: field.circ.opac_renewal.label:1650 field.combcirc.opac_renewal.label:1705
+#: field.acirc.opac_renewal.label:1772 field.rodcirc.opac_renewal.label:3737
+msgid "OPAC Renewal"
+msgstr ""
+
+#: field.rsr.topic_subject.label:3459
+msgid "Topic Subjects (normalized)"
+msgstr ""
+
+#: field.rccbs.barcode.label:3650
+msgid "User Barcode"
+msgstr ""
+
+#: field.au.profile.label:1262
+msgid "Main (Profile) Permission Group"
+msgstr ""
+
+#: field.mfr.subfield.label:1362
+msgid "Subfield"
+msgstr ""
+
+#: field.acn.creator.label:976 field.acp.creator.label:2711
+msgid "Creating User"
+msgstr ""
+
+#: field.acp.holdable.label:2720
+msgid "Is Holdable"
+msgstr ""
+
+#: field.rocit.tcn_value.label:3807
+msgid "TCN"
+msgstr ""
+
+#: field.acn.editor.label:979 field.bre.editor.label:1061
+#: field.acp.editor.label:2718
+msgid "Last Editing User"
+msgstr ""
+
+#: field.circ.max_fine.label:1648 field.combcirc.max_fine.label:1703
+#: field.acirc.max_fine.label:1770 field.crmf.amount.label:2781
+#: field.rodcirc.max_fine.label:3735
+msgid "Max Fine Amount"
+msgstr ""
+
+#: field.ahtc.copy_status.label:3145
+msgid "Copy Status at Transit"
+msgstr ""
+
+#: field.aou.settings.label:2188
+msgid "Settings"
+msgstr ""
+
+#: field.ahr.hold_type.label:2130
+msgid "Hold Type"
+msgstr ""
+
+#: field.vqbr.queue.label:172 field.vqar.queue.label:299
+msgid "Queue"
+msgstr ""
+
+#: field.mp.credit_payment.label:3012 field.mbp.credit_payment.label:3043
+msgid "Credit Payment Detail"
+msgstr ""
+
+#: field.ahr.request_time.label:2137
+msgid "Request Date/Time"
+msgstr ""
+
+#: field.vbm.queued_record.label:245 field.vam.queued_record.label:370
+msgid "Queued Record"
+msgstr ""
+
+#: field.rccbs.xact_finish.label:3654
+msgid "Transaction End Date/Time"
+msgstr ""
+
+#: field.mrd.bib_level.label:1502
+msgid "BLvl"
+msgstr ""
+
+#: field.aou.workstations.label:2191
+msgid "Workstations"
+msgstr ""
+
+#: field.au.hold_requests.label:1225
+msgid "All Hold Requests"
+msgstr ""
+
+#: field.au.master_account.label:1256
+msgid "Is Group Lead Account"
+msgstr ""
+
+#: class.ccmm.label:501
+msgid "Circulation Matrix Matchpoint"
+msgstr ""
+
+#: field.aihu.use_time.label:707 field.ancihu.use_time.label:724
+msgid "Use Date/Time"
+msgstr ""
+
+#: field.mfr.value.label:1364
+msgid "Normalized Value"
+msgstr ""
+
+#: field.ccmt.circulate.label:554
+msgid "Circulate?"
+msgstr ""
+
+#: class.cxt.label:887
+msgid "XML/XSLT Transform Definition"
+msgstr ""
+
+#: field.mcrp.accepting_usr.label:2323 field.mwp.accepting_usr.label:2567
+#: field.mgp.accepting_usr.label:2588 field.mckp.accepting_usr.label:2676
+msgid "Accepting Staff Member"
+msgstr ""
+
+#: field.rccc.demographic_general_division.label:3576
+msgid "Patron Age Demographic"
+msgstr ""
+
+#: class.ccmcmt.label:565
+msgid "Circulation Matrix Circulation Modifier Subtest"
+msgstr ""
+
+#: field.rsr.corporate_subject.label:3463
+msgid "Corporate Name Subjects (normalized)"
+msgstr ""
+
+#: field.acp.dummy_author.label:2715
+msgid "Precat Dummy Author"
+msgstr ""
+
+#: class.rodcirc.label:3719
+msgid "Overdue Circulation"
+msgstr ""
+
+#: field.bre.active.label:1056
+msgid "Is Active?"
+msgstr ""
+
+#: field.ccmm.org_unit.label:508
+msgid "Org Unit"
+msgstr ""
+
+#: field.crahp.prox.label:2772
+msgid "Allowed Proximity"
+msgstr ""
+
+#: field.ahr.fulfillment_time.label:2129
+msgid "Fulfillment Date/Time"
+msgstr ""
+
+#: field.mg.note.label:2441 field.mwp.note.label:2571
+#: field.mgp.note.label:2592 field.mckp.note.label:2682
+#: field.mp.note.label:3005 field.mbp.note.label:3036
+#: field.mndp.note.label:3067 field.mdp.note.label:3090
+#: field.mb.note.label:3185
+msgid "Note"
+msgstr ""
+
+#: class.vqbr.label:163
+msgid "Queued Bib Record"
+msgstr ""
+
+#: field.rocit.stat_cat_1.label:3791
+msgid "Legacy Stat Cat 1"
+msgstr ""
+
+#: field.rocit.stat_cat_2.label:3792
+msgid "Legacy Stat Cat 2"
+msgstr ""
+
+#: field.aua.id.label:1569
+msgid "Address ID"
+msgstr ""
+
+#: field.rccbs.patron_county.label:3669
+msgid "User County"
+msgstr ""
+
+#: field.rocit.circ_lib.label:3800
+msgid "Circ Lib"
+msgstr ""
+
+#: field.chmt.include_frozen_holds.label:539
+msgid "Max includes Frozen"
+msgstr ""
+
+#: field.acn.id.label:980
+msgid "Call Number/Volume ID"
+msgstr ""
+
+#: field.aout.opac_label.label:2382
+msgid "OPAC Label"
+msgstr ""
+
+#: class.vqar.label:290
+msgid "Queued Authority Record"
+msgstr ""
+
+#: class.au.label:1217
+msgid "ILS User"
+msgstr ""
+
+#: class.asvq.label:610
+msgid "User Survey Question"
+msgstr ""
+
+#: field.circ.phone_renewal.label:1651 field.combcirc.phone_renewal.label:1706
+#: field.acirc.phone_renewal.label:1773 field.rodcirc.phone_renewal.label:3738
+msgid "Phone Renewal"
+msgstr ""
+
+#: field.combcirc.usr_home_ou.label:1723 field.acirc.usr_home_ou.label:1790
+msgid "Patron Home Library"
+msgstr ""
+
+#: field.chmm.requestor_grp.label:478
+msgid "Requestor Permission Group"
+msgstr ""
+
+#: field.bre.quality.label:1066
+msgid "Overall Quality"
+msgstr ""
+
+#: field.au.active.label:1233 field.sra.active.label:1967
+msgid "Active"
+msgstr ""
+
+#: field.mdp.cash_payment.label:3097
+msgid "Cash Payment"
+msgstr ""
+
+#: class.cblvl.label:1943
+msgid "Bib Level Map"
+msgstr ""
+
+#: field.cxt.xslt.label:896
+msgid "XSLT"
+msgstr ""
+
+#: field.au.addresses.label:1222
+msgid "All Addresses"
+msgstr ""
+
+#: class.sra.label:1961
+msgid "Relevance Adjustment"
+msgstr ""
+
+#: field.ccmm.usr_age_upper_bound.label:516
+msgid "User Age: Upper Bound"
+msgstr ""
+
+#: field.ahr.fulfillment_lib.label:2127
+msgid "Fulfilling Library"
+msgstr ""
+
+#: field.aua.post_code.label:1570
+msgid "Postal Code"
+msgstr ""
+
+#: field.rocit.shelving_location.label:3790
+msgid "Shelving Location Name"
+msgstr ""
+
+#: field.mb.voider.label:3188
+msgid "Voiding Staff Member"
+msgstr ""
+
+#: field.mcrp.note.label:2327
+msgid "Payment Note"
+msgstr ""
+
+#: field.amtr.matchpoint.label:128 field.chmm.id.label:470
+#: field.ccmm.id.label:506 field.chmt.matchpoint.label:534
+#: field.ccmt.matchpoint.label:553 field.ccmcmt.matchpoint.label:571
+#: field.ccmrs.matchpoint.label:586
+msgid "Matchpoint ID"
+msgstr ""
+
+#: field.mbts.total_paid.label:641 field.rccbs.total_paid.label:3657
+msgid "Total Paid"
+msgstr ""
+
+#: field.vqbra.field.label:222 field.vqara.field.label:347
+msgid "Field"
+msgstr ""
+
+#: field.ahtc.transit_copy.label:3155
+msgid "Base Transit"
+msgstr ""
+
+#: field.ccmt.max_fines.label:557
+msgid "Max Fines"
+msgstr ""
+
+#: field.aufh.fail_time.label:2869
+msgid "Retargeting Date/Time"
+msgstr ""
+
+#: field.au.performed_circulations.label:1275 None:1302
+msgid "Circulations Performed as Staff"
+msgstr ""
+
+#: field.asvr.id.label:772 field.asva.id.label:2821
+msgid "Answer ID"
+msgstr ""
+
+#: field.mcrp.payment.label:2331 field.mwp.payment.label:2574
+#: field.mgp.payment.label:2595 field.mckp.payment.label:2685
+msgid "Payment link"
+msgstr ""
+
+#: field.rmobbol.billing_types.label:3845
+#: field.rmobbcol.billing_types.label:3878
+#: field.rmobbhol.billing_types.label:3912
+msgid "Billing Types"
+msgstr ""
+
+#: field.aua.city.label:1566
+msgid "City"
+msgstr ""
+
+#: field.acpl.holdable.label:1891
+msgid "Is Holdable?"
+msgstr ""
+
+#: field.bre.create_date.label:1057 field.au.create_date.label:1239
+#: field.circ.create_time.label:1661 field.combcirc.create_time.label:1716
+#: field.acirc.create_time.label:1783
+msgid "Record Creation Date/Time"
+msgstr ""
+
+#: field.acp.holds.label:2732
+msgid "Holds"
+msgstr ""
+
+#: field.chmm.request_ou.label:473
+msgid "Request Library"
+msgstr ""
+
+#: field.rccc.patron_city.label:3584
+msgid "Patron City"
+msgstr ""
+
+#: field.aou.children.label:2172
+msgid "Subordinate Organizational Units"
+msgstr ""
+
+#: field.asva.responses.label:2819
+msgid "Responses using this Answer"
+msgstr ""
+
+#: field.ahr.thaw_date.label:2150
+msgid "Thaw Date (if frozen)"
+msgstr ""
+
+#: field.asvr.usr.label:776
+msgid "Responding User"
+msgstr ""
+
+#: class.rccc.label:3557
+msgid "Classic Circulation View"
+msgstr ""
+
+#: field.ahr.frozen.label:2149
+msgid "Currently Frozen"
+msgstr ""
+
+#: field.aihu.id.label:703 field.ancihu.id.label:720
+msgid "Use ID"
+msgstr ""
+
+#: field.vbq.complete.label:147 field.vaq.complete.label:273
+msgid "Complete"
+msgstr ""
+
+#: field.atc.dest_recv_time.label:739 field.ahtc.dest_recv_time.label:3147
+#: field.iatc.dest_recv_time.label:3701
+msgid "Receive Date/Time"
+msgstr ""
+
+#: field.asv.poll.label:2068
+msgid "Poll Style?"
+msgstr ""
+
+#: field.rmsr.pubdate.label:3407 field.rssr.pubdate.label:3429
+#: field.rsr.pubdate.label:3453
+msgid "Publication Year (normalized)"
+msgstr ""
+
+#: field.cnct.id.label:2362
+msgid "Non-cat Type ID"
+msgstr ""
+
+#: field.asva.answer.label:2820
+msgid "Answer Text"
+msgstr ""
+
+#: field.aou.holds_address.label:2174
+msgid "Holds Receiving Address"
+msgstr ""
+
+#: field.acpn.owning_copy.label:1327
+msgid "Copy"
+msgstr ""
+
+#: field.aout.can_have_vols.label:2378
+msgid "Can Have Volumes?"
+msgstr ""
+
+#: field.vqbr.id.label:168 field.vqar.id.label:295 field.bre.id.label:1063
+#: field.aufh.id.label:2871 field.rmsr.id.label:3399 field.rssr.id.label:3421
+#: field.rsr.id.label:3443
+msgid "Record ID"
+msgstr ""
+
+#: class.cam.label:932
+msgid "Audience Map"
+msgstr ""
+
+#: field.rocit.stop_fines.label:3809
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: field.au.email.label:1243 field.aou.email.label:2182
+msgid "Email Address"
+msgstr ""
+
+#: field.clfm.description.label:2549
+msgid "LitF Description"
+msgstr ""
+
+#: field.au.passwd.label:1259
+msgid "Password (obfuscated)"
+msgstr ""
+
+#: field.mrd.audience.label:1501
+msgid "Audn"
+msgstr ""
+
+#: field.cam.value.label:939
+msgid "Audience"
+msgstr ""
+
+#: field.aout.parent.label:2383
+msgid "Parent Type"
+msgstr ""
+
+#: class.rud.label:3472
+msgid "User Demographics"
+msgstr ""
+
+#: field.atc.prev_hop.label:742 field.iatc.prev_hop.label:3704
+msgid "Previous Hop (unused)"
+msgstr ""
+
+#: field.vqbrad.id.label:197 field.vqarad.id.label:322 field.sra.id.label:1966
+#: field.ssr.id.label:2044
+msgid "ID"
+msgstr ""
+
+#: field.aou.users.label:2185
+msgid "Users"
+msgstr ""
+
+#: field.circ.usr.label:1658 field.ancc.patron.label:2838
+#: field.rodcirc.usr.label:3745
+msgid "Patron"
+msgstr ""
+
+#: class.mcrp.label:2318
+msgid "House Credit Payment"
+msgstr ""
+
+#: field.atc.source.label:743 field.iatc.source.label:3705
+msgid "Source"
+msgstr ""
+
+#: field.chmt.age_hold_protect_rule.label:540
+msgid "Copy Age Hold Protection Rule"
+msgstr ""
+
+#: field.cxt.prefix.label:895
+msgid "Namespace Prefix"
+msgstr ""
+
+#: field.au.cards.label:1223
+msgid "All Library Cards"
+msgstr ""
+
+#: field.rxpt.voided.label:3533
+msgid "Voided (Returned) Paid Amount"
+msgstr ""
+
+#: class.rmocbbhol.label:3887
+msgid "Open Circulation Billing by User Home Library and Owning Library"
+msgstr ""
+
+#: field.mbts.last_billing_note.label:634
+#: field.rccbs.last_billing_note.label:3665
+msgid "Last Billing Note"
+msgstr ""
+
+#: field.rccbs.billing_location.label:3644
+msgid "Billing Location Link"
+msgstr ""
+
+#: field.mrd.cat_form.label:1503
+msgid "Cat Form"
+msgstr ""
+
+#: class.combcirc.label:1687
+msgid "Combined Aged and Active Circulations"
+msgstr ""
+
+#: field.atc.dest.label:738 field.iatc.dest.label:3700
+msgid "Destination"
+msgstr ""
+
+#: field.au.evening_phone.label:1244
+msgid "Evening Phone"
+msgstr ""
+
+#: field.au.ident_type.label:1250
+msgid "Primary Identification Type"
+msgstr ""
+
+#: class.rmobbol.label:3839
+msgid "Open Circulation Balance by Owning Library"
+msgstr ""
+
+#: field.mg.billing_location.label:2439
+msgid "Billing Location"
+msgstr ""
+
+#: field.vqbr.imported_as.label:174 field.vqar.imported_as.label:300
+msgid "Final Target Record"
+msgstr ""
+
+#: class.mndp.label:3060
+msgid "Payments: Non-drawer Staff"
+msgstr ""
+
+#: field.pgt.name.label:2795
+msgid "Group Name"
+msgstr ""
+
+#: field.aout.can_have_users.label:2377
+msgid "Can Have Users?"
+msgstr ""
+
+#: field.rocit.stat_cat_2_value.label:3794
+msgid "Legacy Stat Cat 2 Value"
+msgstr ""
+
+#: field.chmt.distance_is_from_owner.label:536
+msgid "Range is from Owning Lib?"
+msgstr ""
+
+#: field.rocit.use_count.label:3788
+msgid "Use Count"
+msgstr ""
+
+#: field.chmm.item_circ_ou.label:476
+msgid "Item Circ Library"
+msgstr ""
+
+#: field.mckp.xact.label:2684
+msgid "Transaction link"
+msgstr ""
+
+#: field.mbt.circulation.label:2483
+msgid "Circulation Billing link"
+msgstr ""
+
+#: class.vqara.label:340
+msgid "Queued Authority Record Attribute"
+msgstr ""
+
+#: field.vqbr.purpose.label:175 field.vaq.queue_purpose.label:275
+#: field.vqar.purpose.label:301
+msgid "Purpose"
+msgstr ""
+
+#: field.bre.author_field_entries.label:1076
+msgid "Indexed Author Field Entries"
+msgstr ""
+
+#: field.vqbrad.remove.label:201 field.vqarad.remove.label:326
+msgid "Remove RegExp"
+msgstr ""
+
+#: field.aou.phone.label:2183
+msgid "Phone Number"
+msgstr ""
+
+#: field.acn.create_date.label:975
+msgid "Create Date/Time"
+msgstr ""
+
+#: class.atc.label:732
+msgid "Copy Transit"
+msgstr ""
+
+#: field.au.super_user.label:1266
+msgid "Is Super User"
+msgstr ""
+
+#: class.mfr.label:1353
+msgid "Flattened MARC Fields"
+msgstr ""
+
+#: class.acpn.label:1319
+msgid "Copy Note"
+msgstr ""
+
+#: field.chmt.holdable.label:535
+msgid "Holdable?"
+msgstr ""
+
+#: field.acp.circ_as_type.label:2705
+msgid "Circulation Type (MARC)"
+msgstr ""
+
+#: field.auoi.staff.label:397
+msgid "Staff Member"
+msgstr ""
+
+#: field.aws.id.label:415
+msgid "Workstation ID"
+msgstr ""
+
+#: class.vbq.label:139
+msgid "Import/Overlay Bib Queue"
+msgstr ""
+
+#: field.atc.persistant_transfer.label:741
+#: field.iatc.persistant_transfer.label:3703
+msgid "Is Persistent? (unused)"
+msgstr ""
+
+#: field.rccc.patron_zip.label:3585
+msgid "Patron ZIP Code"
+msgstr ""
+
+#: field.ahtc.persistant_transfer.label:3150
+msgid "Is Persistent?"
+msgstr ""
+
+#: field.au.net_access_level.label:1257
+msgid "Internet Access Level"
+msgstr ""
+
+#: class.rmocbbcol.label:3853
+msgid "Open Circulation Billing by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.rccbs.patron_zip.label:3671
+msgid "User ZIP Code"
+msgstr ""
+
+#: field.mcrp.payment_type.label:2330 field.mwp.payment_type.label:2575
+#: field.mgp.payment_type.label:2596 field.mckp.payment_type.label:2686
+#: field.mp.payment_type.label:3007 field.mbp.payment_type.label:3038
+#: field.mndp.payment_type.label:3069 field.mdp.payment_type.label:3092
+msgid "Payment Type"
+msgstr ""
+
+#: field.mdp.credit_card_payment.label:3098
+msgid "Credit Card Payment"
+msgstr ""
+
+#: field.au.usrgroup.label:1267
+msgid "Family Linkage or other Group"
+msgstr ""
+
+#: field.ahn.id.label:1874
+msgid "Notification ID"
+msgstr ""
+
+#: field.rccbs.last_billing_ts.label:3664
+msgid "Last Billing Date/Time"
+msgstr ""
+
+#: field.mcrp.amount_collected.label:2325
+#: field.mwp.amount_collected.label:2569 field.mgp.amount_collected.label:2590
+#: field.mckp.amount_collected.label:2678
+msgid "Amount Collected"
+msgstr ""
+
+#: field.ahr.current_copy.label:2124
+msgid "Currently Targeted Copy"
+msgstr ""
+
+#: field.aout.depth.label:2379
+msgid "Type Depth"
+msgstr ""
+
+#: field.rccc.stat_cat_1_value.label:3592
+msgid "Legacy CAT1 Value"
+msgstr ""
+
+#: class.auoi.label:390
+msgid "User Sharing Opt-in"
+msgstr ""
+
+#: field.combcirc.usr_profile.label:1724 field.acirc.usr_profile.label:1791
+#: field.rccc.profile_group.label:3575
+msgid "Patron Profile Group"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_shortname.label:3646
+msgid "User Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.au.dob.label:1242 field.rud.dob.label:3478
+msgid "Date of Birth"
+msgstr ""
+
+#: field.aun.title.label:660 field.acpn.title.label:1329
+msgid "Note Title"
+msgstr ""
+
+#: field.auoi.id.label:395
+msgid "Opt-in ID"
+msgstr ""
+
+#: field.asvq.answers.label:615
+msgid "Answers"
+msgstr ""
+
+#: field.combcirc.copy_owning_lib.label:1728
+#: field.acirc.copy_owning_lib.label:1795
+msgid "Copy Owning Library"
+msgstr ""
+
+#: field.ccmcmt.items_out.label:572
+msgid "Items Out"
+msgstr ""
+
+#: field.bre.creator.label:1058
+msgid "Record Creator"
+msgstr ""
+
+#: field.vbm.field_type.label:248
+msgid "Field Type"
+msgstr ""
+
+#: field.acpl.id.label:1892
+msgid "Location ID"
+msgstr ""
+
+#: field.rocit.patron_barcode.label:3811
+msgid "Patron Barcode"
+msgstr ""
+
+#: field.rccc.owning_lib_name.label:3569
+msgid "Owning Library Short (Policy) Name"
+msgstr ""
+
+#: class.ancc.label:2829
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: class.asva.label:2814
+msgid "Survey Answer"
+msgstr ""
+
+#: class.mbt.label:2473 field.mp.xact.label:3008 field.mbp.xact.label:3039
+#: field.mndp.xact.label:3070 field.mdp.xact.label:3093
+msgid "Billable Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib.label:3581
+msgid "Patron Home Library Link"
+msgstr ""
+
+#: field.ahr.transit.label:2122
+msgid "Transit"
+msgstr ""
+
+#: field.circ.billings.label:1662 field.combcirc.billings.label:1717
+#: field.acirc.billings.label:1784 field.rodcirc.billings.label:3748
+msgid "Transaction Billings"
+msgstr ""
+
+#: field.au.photo_url.label:1260
+msgid "Photo URL"
+msgstr ""
+
+#: class.mp.label:2998
+msgid "Payments: All"
+msgstr ""
+
+#: field.asv.questions.label:2060
+msgid "Questions"
+msgstr ""
+
+#: field.cifm.code.label:956
+msgid "Item Form Code"
+msgstr ""
+
+#: field.clfm.value.label:2550
+msgid "LitF Name"
+msgstr ""
+
+#: field.aun.value.label:662 field.acpn.value.label:1330
+msgid "Note Content"
+msgstr ""
+
+#: field.asv.start_date.label:2070
+msgid "Survey Start Date/Time"
+msgstr ""
+
+#: field.au.checkouts.label:1224
+msgid "All Circulations"
+msgstr ""
+
+#: field.aws.name.label:416
+msgid "Workstation Name"
+msgstr ""
+
+#: field.mckp.check_number.label:2680
+msgid "Check Number"
+msgstr ""
+
+#: field.rsr.summary.label:3456
+msgid "Summary (normalized)"
+msgstr ""
+
+#: field.vbq.id.label:144 field.vaq.id.label:270
+msgid "Queue ID"
+msgstr ""
+
+#: field.au.ident_value.label:1252
+msgid "Primary Identification"
+msgstr ""
+
+#: field.sra.bump.label:1969
+msgid "Bump Type"
+msgstr ""
+
+#: field.ahr.fulfillment_staff.label:2128
+msgid "Fulfilling Staff"
+msgstr ""
+
+#: field.mrd.char_encoding.label:1504
+msgid "Character Encoding"
+msgstr ""
+
+#: field.mp.work_payment.label:3014 field.mbp.work_payment.label:3045
+#: field.mndp.work_payment.label:3072
+msgid "Work Payment Detail"
+msgstr ""
+
+#: field.erfcc.circ_count.label:3547
+msgid "Total Circulation Count"
+msgstr ""
+
+#: field.ancc.id.label:2836
+msgid "Non-cat Circulation ID"
+msgstr ""
+
+#: field.auoi.usr.label:398 field.aun.usr.label:661 field.aus.usr.label:676
+#: field.aua.usr.label:1574 field.ac.usr.label:2263 field.mg.usr.label:2442
+#: field.mbt.usr.label:2479 field.actscecm.target_usr.label:2902
+msgid "User"
+msgstr ""
+
+#: field.aua.street1.label:1572
+msgid "Street (1)"
+msgstr ""
+
+#: field.mg.billings.label:2445
+msgid "Billings"
+msgstr ""
+
+#: field.mrd.lit_form.label:1511
+msgid "LitF"
+msgstr ""
+
+#: field.rccbs.billing_location_name.label:3643
+msgid "Billing Location Name"
+msgstr ""
+
+#: field.circ.stop_fines.label:1655 field.combcirc.stop_fines.label:1710
+#: field.acirc.stop_fines.label:1777 field.rodcirc.stop_fines.label:3742
+msgid "Fine Stop Reason"
+msgstr ""
+
+#: field.mbt.payments.label:2485
+msgid "Payment Line Items"
+msgstr ""
+
+#: field.cxt.namespace_uri.label:894
+msgid "Namespace URI"
+msgstr ""
+
+#: field.sra.multiplier.label:1970
+msgid "Multiplier"
+msgstr ""
+
+#: class.rmobbhol.label:3905
+msgid "Open Circulation Balance by User Home Library and Owning Library"
+msgstr ""
+
+#: field.aua.valid.label:1575
+msgid "Valid Address?"
+msgstr ""
+
+#: field.acp.status.label:2727
+msgid "Copy Status"
+msgstr ""
+
+#: field.sra.field.label:1968
+msgid "Index Field"
+msgstr ""
+
+#: field.asvq.survey.label:619 field.asvr.survey.label:775
+#: class.asv.label:2055
+msgid "Survey"
+msgstr ""
+
+#: field.mb.id.label:3184
+msgid "Billing ID"
+msgstr ""
+
+#: field.aou.circulations.label:2187 field.acp.circulations.label:2730
+msgid "Circulations"
+msgstr ""
+
+#: field.aus.id.label:674
+msgid "Setting ID"
+msgstr ""
+
+#: field.rmobbol.balance.label:3846 field.rmobbcol.balance.label:3879
+#: field.rmobbhol.balance.label:3913
+msgid "Balance"
+msgstr ""
+
+#: field.au.mailing_address.label:1255 field.aou.mailing_address.label:2177
+msgid "Mailing Address"
+msgstr ""
+
+#: field.rocit.pubdate.label:3781
+msgid "Pubdate"
+msgstr ""
+
+#: field.acn.label.label:981 field.rccc.call_number_label.label:3578
+msgid "Call Number Label"
+msgstr ""
+
+#: field.au.standing_penalties.label:1228
+msgid "Standing Penalties"
+msgstr ""
+
+#: field.asv.id.label:2064
+msgid "Survey ID"
+msgstr ""
+
+#: field.bre.metarecord.label:1070 field.rsr.metarecord.label:3444
+msgid "Metarecord"
+msgstr ""
+
+#: field.aua.county.label:1568
+msgid "County"
+msgstr ""
+
+#: field.au.prefix.label:1261
+msgid "Prefix"
+msgstr ""
+
+#: field.rccc.patron_county.label:3583
+msgid "Patron County"
+msgstr ""
+
+#: field.actsce.owner.label:2505 field.asce.owner.label:3131
+#: field.rsce1.owner.label:3613 field.rsce2.owner.label:3627
+msgid "Entry Owner"
+msgstr ""
+
+#: field.rccc.circ_modifier.label:3568 field.rocit.circ_modifier.label:3789
+msgid "Circ Modifier"
+msgstr ""
+
+#: field.rsr.series_title.label:3454
+msgid "Series Title (normalized)"
+msgstr ""
+
+#: field.mbt.grocery.label:2482
+msgid "Grocery Billing link"
+msgstr ""
+
+#: field.actscecm.stat_cat_entry.label:2901
+msgid "Entry Text"
+msgstr ""
+
+#: field.aufh.current_copy.label:2868
+msgid "Non-fulfilling Copy"
+msgstr ""
+
+#: field.combcirc.copy_location.label:1727
+#: field.acirc.copy_location.label:1794 field.acp.location.label:2723
+#: field.rccc.shelving_location.label:3574
+msgid "Shelving Location"
+msgstr ""
+
+#: field.aou.id.label:2175
+msgid "Organizational Unit ID"
+msgstr ""
+
+#: field.chmm.pickup_ou.label:474 field.ahr.pickup_lib.label:2134
+msgid "Pickup Library"
+msgstr ""
+
+#: field.vqbrad.description.label:199 field.vqarad.description.label:324
+#: field.ccm.description.label:431 field.cam.description.label:938
+#: field.asv.description.label:2062 field.pgt.description.label:2793
+msgid "Description"
+msgstr ""
+
+#: field.bre.keyword_field_entries.label:1073
+msgid "Indexed Keyword Field Entries"
+msgstr ""
+
+#: field.vqbr.import_time.label:170 field.vqar.import_time.label:297
+msgid "Import Time"
+msgstr ""
+
+#: field.aufh.circ_lib.label:2867
+msgid "Non-fulfilling Library"
+msgstr ""
+
+#: field.au.home_ou.label:1248
+msgid "Home Library"
+msgstr ""
+
+#: field.rocit.edit_date.label:3795
+msgid "Edit Date"
+msgstr ""
+
+#: class.clm.label:841
+msgid "Language Map"
+msgstr ""
+
+#: field.atc.copy_status.label:737 field.iatc.copy_status.label:3699
+msgid "Pretransit Copy Status"
+msgstr ""
+
+#: field.crahp.age.label:2769
+msgid "Item Age"
+msgstr ""
+
+#: field.au.standing.label:1264
+msgid "Standing (unused)"
+msgstr ""
+
+#: field.rsr.name_subject.label:3462
+msgid "Personal Name Subjects (normalized)"
+msgstr ""
+
+#: field.asv.usr_summary.label:2071
+msgid "Display in User Summary"
+msgstr ""
+
+#: field.ahn.notify_staff.label:1877
+msgid "Notifying Staff"
+msgstr ""
+
+#: field.aua.country.label:1567
+msgid "Country"
+msgstr ""
+
+#: field.circ.checkin_time.label:1639 field.combcirc.checkin_time.label:1694
+#: field.acirc.checkin_time.label:1761 field.rodcirc.checkin_time.label:3726
+msgid "Check In Date/Time"
+msgstr ""
+
+#: field.mg.payments.label:2446
+msgid "Payments"
+msgstr ""
+
+#: field.rocit.owning_lib.label:3799
+msgid "Owning Lib"
+msgstr ""
+
+#: class.rsce2.label:3621
+msgid "CAT2 Entry"
+msgstr ""
+
+#: field.mbts.last_billing_type.label:636
+#: field.rccbs.last_billing_type.label:3666
+msgid "Last Billing Type"
+msgstr ""
+
+#: field.circ.recuring_fine.label:1652 field.combcirc.recuring_fine.label:1707
+#: field.acirc.recuring_fine.label:1774 field.rodcirc.recuring_fine.label:3739
+msgid "Recurring Fine Amount"
+msgstr ""
+
+#: field.asv.end_date.label:2063
+msgid "Survey End Date/Time"
+msgstr ""
+
+#: field.mg.xact_start.label:2444
+msgid "Transaction Start Timestamp"
+msgstr ""
+
+#: field.bre.title_field_entries.label:1075
+msgid "Indexed Title Field Entries"
+msgstr ""
+
+#: field.aou.closed_dates.label:2186
+msgid "Closed Dates"
+msgstr ""
+
+#: class.ccm.label:424 field.chmm.circ_modifier.label:479
+#: field.ccmm.circ_modifier.label:510 field.ccmcmt.circ_mod.label:573
+#: field.acp.circ_modifier.label:2707
+msgid "Circulation Modifier"
+msgstr ""
+
+#: field.aou.addresses.label:2189
+msgid "Addresses"
+msgstr ""
+
+#: field.vqbrad.ident.label:202 field.vqarad.ident.label:327
+msgid "Is Identifier?"
+msgstr ""
+
+#: field.auoi.opt_in_ts.label:400
+msgid "Opt-in Date/Time"
+msgstr ""
+
+#: field.circ.desk_renewal.label:1642 field.combcirc.desk_renewal.label:1697
+#: field.acirc.desk_renewal.label:1764 field.rodcirc.desk_renewal.label:3729
+msgid "Desk Renewal"
+msgstr ""
+
+#: field.citm.code.label:1930
+msgid "Item Type Code"
+msgstr ""
+
+#: field.circ.renewal_remaining.label:1654
+#: field.combcirc.renewal_remaining.label:1709
+#: field.acirc.renewal_remaining.label:1776
+#: field.rodcirc.renewal_remaining.label:3741
+msgid "Remaining Renewals"
+msgstr ""
+
+#: field.mb.void_time.label:3186
+msgid "Void Timestamp"
+msgstr ""
+
+#: field.au.billable_transactions.label:1273 None:1295
+msgid "Billable Transactions"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:44-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+
+#: 1208.TITLE_LAST_COPY:66
+msgid "The last copy attached to a title is being removed or deleted"
+msgstr ""
+
+#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:441
+msgid "The requested container_user_bucket_item was not found"
+msgstr ""
+
+#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:426
+msgid "The requested money_user_circulation_summary was not found"
+msgstr ""
+
+#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:494
+msgid "The requested container_copy_bucket was not found"
+msgstr ""
+
+#: 1218.ITEM_AGE_PROTECTED:104
+msgid "This item is too new to have a hold placed on it"
+msgstr ""
+
+#: 1214.PATRON_DUP_IDENT1:87
+msgid "The selected primary identification type and value are in use by another patron"
+msgstr ""
+
+#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:318
+msgid "The requested permission_perm_list was not found"
+msgstr ""
+
+#: 1213.PATRON_BARRED:83
+msgid "The patron is barred"
+msgstr ""
+
+#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:405
+msgid "The requested metabib_series_field_entry was not found"
+msgstr ""
+
+#: 8002.OFFLINE_FILE_ERROR:697
+msgid " An offline file or directory could not be created or accessed "
+msgstr ""
+
+#: 1502.ASSET_COPY_NOT_FOUND:173
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a copy object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1639.REPORTER_SCHEDULE_NOT_FOUND:548
+msgid "The requested reporter_schedule was not found"
+msgstr ""
+
+#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:554
+msgid "The requested action_open_circ_count_by_circ_mod was not found"
+msgstr ""
+
+#: 0.SUCCESS:14
+msgid " "
+msgstr ""
+
+#: 7006.COPY_IS_REFERENCE:641
+msgid " Copy is reference material "
+msgstr ""
+
+#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:459
+msgid "The requested config_rules_recuring_fine was not found"
+msgstr ""
+
+#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:456
+msgid "The requested metabib_subject_field_entry was not found"
+msgstr ""
+
+#: 2001.DATABASE_UPDATE_FAILED:599
+msgid "The attempt to write to the DB failed"
+msgstr ""
+
+#: 1507.CONTAINER_ITEM_NOT_FOUND:196
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container item object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:253
+msgid "The requested action_survey_response was not found"
+msgstr ""
+
+#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:301
+msgid "The requested money_open_billable_transaction_summary was not found"
+msgstr ""
+
+#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:298
+msgid "The requested config_rules_circ_duration was not found"
+msgstr ""
+
+#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:453
+msgid "The requested action_open_circulation was not found"
+msgstr ""
+
+#: 1559.METABIB_FULL_REC_NOT_FOUND:312
+msgid "The requested metabib_full_rec was not found"
+msgstr ""
+
+#: 1527.OPEN_TCN_NOT_FOUND:219
+msgid "No TCN could be found that does not collide with existing records"
+msgstr ""
+
+#: 8000.OFFLINE_SESSION_ACTIVE:691
+msgid " An offline session for this location is currently processing "
+msgstr ""
+
+#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:324
+msgid "The requested metabib_keyword_field_entry was not found"
+msgstr ""
+
+#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:277
+msgid "The requested config_audience_map was not found"
+msgstr ""
+
+#: 1001.NO_SESSION:26
+msgid "User login session has either timed out or does not exist"
+msgstr ""
+
+#: 1525.BILLING_NOT_FOUND:215
+msgid " Requested billing note does not exist "
+msgstr ""
+
+#: 8001.OFFLINE_SESSION_FILE_EXISTS:694
+msgid " An offline file for this workstation exists within this session "
+msgstr ""
+
+#: 1529.ACTOR_WORKSTATION_NOT_FOUND:227
+msgid "The requested actor_workstation was not found"
+msgstr ""
+
+#: 1227.COPY_DELETE_WARNING:140
+msgid "The copy in question is not in an ideal status for deleting"
+msgstr ""
+
+#: 1223.PATRON_NO_PHONE:122
+msgid "The user does not have a valid phone number assigned"
+msgstr ""
+
+#: 1002.ACTOR_USER_NOT_FOUND:29
+msgid "Someone attempted to retrieve a user from the system and the user was not found"
+msgstr ""
+
+#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:539
+msgid "The requested reporter_output_folder was not found"
+msgstr ""
+
+#: 1217.PATRON_INACTIVE:101
+msgid "This account is marked as inactive"
+msgstr ""
+
+#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:542
+msgid "The requested reporter_report_folder was not found"
+msgstr ""
+
+#: 1545.PERM_EX_NOT_FOUND:274
+msgid "The requested perm_ex was not found"
+msgstr ""
+
+#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:295
+msgid "The requested actor_org_unit_closed_date was not found"
+msgstr ""
+
+#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:262
+msgid "The requested authority_record_descriptor was not found"
+msgstr ""
+
+#: 7011.COPY_STATUS_LOST:656
+msgid "Copy has is marked as lost"
+msgstr ""
+
+#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:393
+msgid "The requested container_call_number_bucket was not found"
+msgstr ""
+
+#: 1229.VOLUME_DELETED:147
+msgid "The requested volume is marked as deleted"
+msgstr ""
+
+#: 1635.REPORTER_REPORT_NOT_FOUND:536
+msgid "The requested reporter_report was not found"
+msgstr ""
+
+#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:524
+#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:527
+#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:530
+msgid "The requested money_collections_tracker was not found"
+msgstr ""
+
+#: 5000.PERM_FAILURE:608
+msgid "Permission Denied"
+msgstr ""
+
+#: 7015.NEGATIVE_PATRON_BALANCE:668
+msgid "This requested action would result in a negative patron balance"
+msgstr ""
+
+#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:342
+msgid "The requested actor_user_standing_penalty was not found"
+msgstr ""
+
+#: 1200.USERNAME_EXISTS:39
+msgid "The given username already exists in the database"
+msgstr ""
+
+#: 9000.REPORT_TEMPLATE_EXISTS:725
+msgid " A report template with the given name and folder already exists"
+msgstr ""
+
+#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:438
+msgid "The requested actor_stat_cat_entry was not found"
+msgstr ""
+
+#: 1710.CONTAINER_EXISTS:591
+msgid "User has already created a bucket with the requested name"
+msgstr ""
+
+#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:358
+msgid "The requested container_biblio_record_entry_bucket was not found"
+msgstr ""
+
+#: 1701.COPY_LOCATION_EXISTS:564
+msgid " The copy location object already exists "
+msgstr ""
+
+#: 1703.WORKSTATION_NAME_EXISTS:570
+msgid " A workstation with that name already exists "
+msgstr ""
+
+#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:488
+msgid "The requested actor_stat_cat_entry_user_map was not found"
+msgstr ""
+
+#: 8007.OFFLINE_SESSION_EXISTS:712
+msgid " A session with the given name already exists "
+msgstr ""
+
+#: 1558.ASSET_COPY_NOTE_NOT_FOUND:309
+msgid "The requested asset_copy_note was not found"
+msgstr ""
+
+#: 7017.ROUTE_TO_COPY_LOCATION:677
+msgid ""
+" \n"
+"\t\tA copy needs to be routed to a copy location. The location\n"
+"\t\tshould be specified within the event with a 'location' key\n"
+"\t\t"
+msgstr ""
+
+#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:182
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a transit object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1624.MONEY_PAYMENT_NOT_FOUND:503
+msgid "The requested money_payment was not found"
+msgstr ""
+
+#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:420
+msgid "The requested actor_org_unit_type was not found"
+msgstr ""
+
+#: 1004.Z3950_BAD_QUERY:35
+msgid "The Z query is not formatted correctly"
+msgstr ""
+
+#: 1205.CARD_EXISTS:57
+msgid "The given user barcode already exists"
+msgstr ""
+
+#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:385
+msgid "The requested actor_org_address was not found"
+msgstr ""
+
+#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:167
+msgid "The requested biblio_record_entry was not found"
+msgstr ""
+
+#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:470
+msgid "The requested permission_grp_tree was not found"
+msgstr ""
+
+#: 1523.TITLE_NOTE_NOT_FOUND:212
+msgid " Requested title note does not exist "
+msgstr ""
+
+#: 9001.REPORT_REPORT_EXISTS:729
+msgid " A report with the given name and folder already exists"
+msgstr ""
+
+#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:248
+msgid "The requested action_in_house_use was not found"
+msgstr ""
+
+#: 7016.ITEM_ON_HOLDS_SHELF:671
+msgid "This requested item is currently on the holds shelf"
+msgstr ""
+
+#: 7005.LOCATION_CIRC_NOT_ALLOWED:638
+msgid " Location does not allow materials to circulate "
+msgstr ""
+
+#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:321
+msgid "The requested metabib_metarecord_source_map was not found"
+msgstr ""
+
+#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:233
+msgid "The requested action_survey_question was not found"
+msgstr ""
+
+#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:467
+msgid "The requested config_rules_max_fine was not found"
+msgstr ""
+
+#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:306
+msgid "The requested actor_org_unit_setting was not found"
+msgstr ""
+
+#: 7009.CIRC_CLAIMS_RETURNED:650
+msgid " Requested circulation is marked claims returned "
+msgstr ""
+
+#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:517
+msgid "The requested permission_usr_grp_map was not found"
+msgstr ""
+
+#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:450
+msgid "The requested money_work_payment was not found"
+msgstr ""
+
+#: 2000.BAD_PARAMS:596
+msgid "Invalid parameters were encountered in a method"
+msgstr ""
+
+#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:327
+msgid "The requested money_cash_payment was not found"
+msgstr ""
+
+#: 1221.ORG_CANNOT_HAVE_VOLS:115
+msgid "The selected location cannot have volumes attached"
+msgstr ""
+
+#: 1704.TCN_EXISTS:573
+msgid "A record already exists with the requested TCN value"
+msgstr ""
+
+#: 1.UNKNOWN:17
+msgid "Placeholder event. Used for development only"
+msgstr ""
+
+#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:497
+msgid "The requested biblio_record_node was not found"
+msgstr ""
+
+#: 8003.OFFLINE_PARAM_ERROR:700
+msgid " Missing params in offline upload "
+msgstr ""
+
+#: 1534.ACTOR_USER_SETTING_NOT_FOUND:242
+msgid "The requested actor_user_setting was not found"
+msgstr ""
+
+#: 1211.BILL_ALREADY_VOIDED:76
+msgid "The selecte bill has already been voided"
+msgstr ""
+
+#: 1222.PATRON_NO_EMAIL_ADDRESS:119
+msgid "The user does not have a valid email address assigned"
+msgstr ""
+
+#: 7001.PATRON_BAD_STANDING:625
+msgid ""
+"\n"
+"\t\t\tThe patron in question is not able to check out materials because\n"
+"\t\t\ttheir account is in bad standing\n"
+"\t\t"
+msgstr ""
+
+#: 1215.CIRC_EXCEEDS_COPY_RANGE:94
+msgid ""
+"\n"
+"\t\t\tThe selected copy may not circulate because the recipient's home \n"
+"\t\t\tlocation is not within the copy's circulation range\n"
+"\t\t"
+msgstr ""
+
+#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:447
+msgid "The requested config_lit_form_map was not found"
+msgstr ""
+
+#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:336
+msgid "The requested metabib_record_descriptor was not found"
+msgstr ""
+
+#: 1702.OPEN_CIRCULATION_EXISTS:567
+msgid " There is an open circulation on the requested item "
+msgstr ""
+
+#: 8009.OFFLINE_NO_ORG:718 8010.OFFLINE_SESSION_COMPLETE:721
+msgid " No org id was provided "
+msgstr ""
+
+#: 1630.ACTOR_USER_NOTE_NOT_FOUND:520
+msgid "The requested actor_user_note was not found"
+msgstr ""
+
+#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:199
+msgid "Requested asset_call_number was not found"
+msgstr ""
+
+#: 1209.Z3950_LOGIN_FAILED:69
+msgid "The login failed"
+msgstr ""
+
+#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:268
+msgid "The requested money_credit_card_payment was not found"
+msgstr ""
+
+#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:473
+msgid "The requested action_survey_answer was not found"
+msgstr ""
+
+#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:245
+msgid "The requested metabib_author_field_entry was not found"
+msgstr ""
+
+#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:509
+msgid "The requested asset_stat_cat_entry was not found"
+msgstr ""
+
+#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:417
+msgid "The requested config_non_cataloged_type was not found"
+msgstr ""
+
+#: 1225.TRANSIT_ABORT_NOT_ALLOWED:128
+msgid "The transit on this item may not be aborted due to the state the item is in"
+msgstr ""
+
+#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:265
+msgid "The requested config_language_map was not found"
+msgstr ""
+
+#: 1206.VOLUME_NOT_EMPTY:60
+msgid "The selected volume has copies attached"
+msgstr ""
+
+#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:259
+msgid "The requested authority_record_entry was not found"
+msgstr ""
+
+#: 1203.COPY_BAD_STATUS:48
+msgid "The given copy is not in a standard circulation status"
+msgstr ""
+
+#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:435
+msgid "The requested money_billable_transaction was not found"
+msgstr ""
+
+#: 7004.COPY_NOT_AVAILABLE:635
+msgid " Copy is not available "
+msgstr ""
+
+#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:287
+msgid "The requested money_open_user_summary was not found"
+msgstr ""
+
+#: 1207.REFUND_EXCEEDS_BALANCE:63
+msgid "A refund greater than the negative balance on a transaction was provided"
+msgstr ""
+
+#: 3.NO_CHANGE:20
+msgid "No change occurred"
+msgstr ""
+
+#: 1201.CIRC_PERMIT_BAD_KEY:42
+msgid "A checkout was attempted without a valid checkout permit key"
+msgstr ""
+
+#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:411
+msgid "The requested money_credit_payment was not found"
+msgstr ""
+
+#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:485
+msgid "The requested metabib_title_field_entry was not found"
+msgstr ""
+
+#: 1202.ITEM_NOT_CATALOGED:45
+msgid "The requested item is not cataloged in the database"
+msgstr ""
+
+#: 1628.MONEY_BILLING_NOT_FOUND:514
+msgid "The requested money_billing was not found"
+msgstr ""
+
+#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:271
+msgid "The requested config_metabib_field was not found"
+msgstr ""
+
+#: 2002.DATABASE_QUERY_FAILED:602
+msgid "The attempt to query to the DB failed"
+msgstr ""
+
+#: 1549.CONFIG_STANDING_NOT_FOUND:284
+msgid "The requested config_standing was not found"
+msgstr ""
+
+#: 1210.INCORRECT_PASSWORD:73
+msgid "The provided password is not correct"
+msgstr ""
+
+#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:379
+msgid "The requested config_item_type_map was not found"
+msgstr ""
+
+#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:230
+msgid "The requested config_identification_type was not found"
+msgstr ""
+
+#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:370
+msgid "The requested asset_copy_location was not found"
+msgstr ""
+
+#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:347
+msgid "The requested asset_call_number_note was not found"
+msgstr ""
+
+#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:222
+msgid "Requested address was not found"
+msgstr ""
+
+#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:629
+msgid "The patron in question has the maximum number of items already checked out"
+msgstr ""
+
+#: 1003.Z3950_SEARCH_FAILED:32
+msgid "The Z search did not succeed"
+msgstr ""
+
+#: 1533.ACTOR_USR_NOTE_NOT_FOUND:239
+msgid "The requested actor_usr_note was not found"
+msgstr ""
+
+#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:491
+msgid "The requested permission_grp_perm_map was not found"
+msgstr ""
+
+#: 1204.CIRC_BAD_STATUS:54
+msgid ""
+"\n"
+"\t\t\tThe given circulation is not in a standard status or\n"
+"\t\t\tthe circulation was never fully closed properly\n"
+"\t\t"
+msgstr ""
+
+#: 1709.MAX_HOLDS:588
+msgid "User has reached the maximum number of holds"
+msgstr ""
+
+#: 1706.ITEM_BARCODE_EXISTS:579
+msgid "An item with the same barcode exists"
+msgstr ""
+
+#: 7014.COPY_IN_TRANSIT:665
+msgid "Copy is in transit"
+msgstr ""
+
+#: 1219.COPY_REMOTE_CIRC_LIB:107 1220.ITEM_NOT_HOLDABLE:111
+msgid "A copy with a remote circulating library (circ_lib) was encountered"
+msgstr ""
+
+#: 7000.ROUTE_ITEM:618
+msgid ""
+" \n"
+"\t\t\tA copy needs to be routed to a different location\t\n"
+"\t\t\tThe destination location will be specified by an 'org' key\n"
+"\t\t\twithin the event object\n"
+"\t\t"
+msgstr ""
+
+#: 7007.COPY_NEEDED_FOR_HOLD:644
+msgid " Copy is needed to fulfil a hold "
+msgstr ""
+
+#: 7010.COPY_ALERT_MESSAGE:653
+msgid " The requested copy has an alert message attached "
+msgstr ""
+
+#: 1231.RECORD_NOT_EMPTY:154
+msgid "The selected bib record has volumes attached"
+msgstr ""
+
+#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:176
+msgid "The requested action_hold_request was not found"
+msgstr ""
+
+#: 1212.PATRON_EXCEEDS_OVERDUE_COUNT:79
+msgid "The patron has too many overdue items"
+msgstr ""
+
+#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:367
+msgid "The requested action_hold_notification was not found"
+msgstr ""
+
+#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:462
+msgid "The requested money_check_payment was not found"
+msgstr ""
+
+#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:500
+msgid "The requested permission_usr_perm_map was not found"
+msgstr ""
+
+#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:376
+msgid "The requested asset_stat_cat_entry_copy_map was not found"
+msgstr ""
+
+#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:280
+msgid "The requested config_item_form_map was not found"
+msgstr ""
+
+#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:408
+msgid "The requested container_user_bucket was not found"
+msgstr ""
+
+#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:482
+msgid "The requested action_unfulfilled_hold_list was not found"
+msgstr ""
+
+#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:292
+msgid "The requested actor_org_unit_hours_of_operation was not found"
+msgstr ""
+
+#: 1576.EX_NOT_FOUND:361
+msgid "The requested ex was not found"
+msgstr ""
+
+#: 8004.OFFLINE_CONFIG_ERROR:703 8005.OFFLINE_CHECKSUM_FAILED:706
+#: 8006.OFFLINE_SESSION_NOT_FOUND:709
+msgid " Offline server is not configured properly "
+msgstr ""
+
+#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:339
+msgid "The requested config_copy_status was not found"
+msgstr ""
+
+#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:256
+msgid "The requested container_copy_bucket_item was not found"
+msgstr ""
+
+#: 1590.ACTOR_STAT_CAT_NOT_FOUND:402
+msgid "The requested actor_stat_cat was not found"
+msgstr ""
+
+#: 7003.COPY_CIRC_NOT_ALLOWED:632
+msgid " Target copy is not allowed to circulate "
+msgstr ""
+
+#: 7008.MAX_RENEWALS_REACHED:647
+msgid " Circulation has no more renewals remaining "
+msgstr ""
+
+#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:364
+msgid "The requested action_hold_copy_map was not found"
+msgstr ""
+
+#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:545
+msgid "The requested reporter_template_folder was not found"
+msgstr ""
+
+#: 1500.ACTION_CIRCULATION_NOT_FOUND:164
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a circulation object from the system and \n"
+"\t\t\tthe object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135
+msgid ""
+"\n"
+"\t\t\tThis refund amount is not allowed because it exceeds \n"
+"\t\t\tthe total amount of desk payments for this transaction.\n"
+"\t\t"
+msgstr ""
+
+#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:479
+msgid "The requested money_open_user_circulation_summary was not found"
+msgstr ""
+
+#: 1583.ACTION_SURVEY_NOT_FOUND:382
+msgid "The requested action_survey was not found"
+msgstr ""
+
+#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:506
+msgid "The requested container_biblio_record_entry_bucket_item was not found"
+msgstr ""
+
+#: 1000.LOGIN_FAILED:23
+msgid "User login failed"
+msgstr ""
+
+#: 1599.MONEY_GROCERY_NOT_FOUND:429
+msgid "The requested money_grocery was not found"
+msgstr ""
+
+#: 7012.COPY_STATUS_MISSING:659
+msgid "Copy has is marked as missing"
+msgstr ""
+
+#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:236
+msgid "The requested money_billable_transaction_summary was not found"
+msgstr ""
+
+#: 2003.INTERNAL_SERVER_ERROR:605
+msgid "There was an internal server error"
+msgstr ""
+
+#: 8008.OFFLINE_INVALID_SESSION:715
+msgid " The session name is invalid "
+msgstr ""
+
+#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:423
+msgid "The requested biblio_record_note was not found"
+msgstr ""
+
+#: 1588.ASSET_STAT_CAT_NOT_FOUND:396
+msgid "The requested asset_stat_cat was not found"
+msgstr ""
+
+#: 1224.PATRON_ACCOUNT_EXPIRED:125
+msgid "The patron's account has expired"
+msgstr ""
+
+#: 1560.METABIB_METARECORD_NOT_FOUND:315
+msgid "The requested metabib_metarecord was not found"
+msgstr ""
+
+#: 1707.HOLD_EXISTS:582
+msgid "User already has an open hold on the selected item"
+msgstr ""
+
+#: 1506.CONTAINER_NOT_FOUND:190
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:333
+msgid "The requested money_forgive_payment was not found"
+msgstr ""
+
+#: 1230.XACT_COLLISION:150
+msgid "The saved item has been edited by another user"
+msgstr ""
+
+#: 1700.NON_CAT_TYPE_EXISTS:561
+msgid " The non-cataloged type object already exists "
+msgstr ""
+
+#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:585
+msgid "A duplicate money.collections_tracker object already exists in the database"
+msgstr ""
+
+#: 1634.REPORTER_TEMPLATE_NOT_FOUND:533
+msgid "The requested reporter_template was not found"
+msgstr ""
+
+#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:432
+msgid "The requested config_bib_source was not found"
+msgstr ""
+
+#: 1228.BIB_RECORD_DELETED:144
+msgid "The requested bib record is marked as deleted"
+msgstr ""
+
+#: 7018.COPY_MARKED_LOST:682
+msgid "The requested item is already marked as lost"
+msgstr ""
+
+#: 1705.VOLUME_LABEL_EXISTS:576
+msgid "A volume with the same label, title and owning library exists"
+msgstr ""
+
+#: 1589.ACTOR_CARD_NOT_FOUND:399
+msgid "The requested actor_card was not found"
+msgstr ""
+
+#: 1216.PATRON_CARD_INACTIVE:98
+msgid "The patron's card is not active"
+msgstr ""
+
+#: 7013.PATRON_EXCEEDS_FINES:662
+msgid "The patron in question has reached the maximum fine amount"
+msgstr ""
+
+#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:390
+msgid "The requested actor_org_unit was not found"
+msgstr ""
+
+#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:355
+msgid "The requested container_call_number_bucket_item was not found"
+msgstr ""
+
+#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:204
+msgid "The requested action_hold_transit_copy was not found"
+msgstr ""
+
+#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:414
+msgid "The requested authority_full_rec was not found"
+msgstr ""
+
+#: 1565.ACTOR_PROFILE_NOT_FOUND:330
+msgid "The requested actor_profile was not found"
+msgstr ""
+
+#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:373
+msgid "The requested metabib_virtual_record was not found"
+msgstr ""
+
+#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:551
+msgid "The requested actor_usr_org_unit_opt_in was not found"
+msgstr ""
+
+#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:350
+msgid "The requested authority_record_note was not found"
+msgstr ""
+
+#: 1520.WORKSTATION_NOT_FOUND:209
+msgid " Requested workstation object does not exist "
+msgstr ""
+
+#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:476
+msgid "The requested action_non_cataloged_circulation was not found"
+msgstr ""
+
+#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:444
+msgid "The requested money_user_summary was not found"
+msgstr ""
# extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd, ../../Open-ILS/web/opac/locale/en-CA/lang.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: &\n"
#: lang.version
msgid "remote v1"
msgid "or choose one of these"
msgstr "or choose one of these"
+#: common.date_helper.normal
+msgctxt "common.date_helper.normal"
+msgid "Normal"
+msgstr "Normal"
+
#: common.date_helper.3_days
msgid "Today + 3 days"
msgstr "Today + 3 days"
#: common.enter.label
#: common.enter.accesskey
-#: staff.circ.offline_checkin.step2a.label
-#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "common.enter.label common.enter.accesskey"
msgid "&Enter"
msgstr "&Enter"
msgstr "Enter the item barcode:"
#: common.title
-#: staff.cat.search_title
-#: staff.mvr_label_title
-#: staff.record_list.title
-#: staff.z39_50.search_class.title
+msgctxt "common.title"
msgid "Title"
msgstr "Title"
#: common.author
-#: staff.cat.search_author
-#: staff.mvr_label_author
-#: staff.record_list.author
-#: staff.z39_50.search_class.author
+msgctxt "common.author"
msgid "Author"
msgstr "Author"
#: common.subject
-#: staff.cat.search_subject
+msgctxt "common.subject"
msgid "Subject"
msgstr "Subject"
msgstr "Series"
#: common.keyword
-#: staff.cat.search_all
+msgctxt "common.keyword"
msgid "Keyword"
msgstr "Keyword"
#: common.type
-#: staff.ahr_hold_type_label
-#: staff.cat.search_type
-#: staff.marc.LDR.type.short
+msgctxt "common.type"
msgid "Type"
msgstr "Type"
#: common.isbn
-#: staff.record_list.isbn
-#: staff.z39_50.search_class.isbn
+msgctxt "common.isbn"
msgid "ISBN"
msgstr "ISBN"
#: common.format
-#: staff.cat.search_format
+msgctxt "common.format"
msgid "Format"
msgstr "Format"
#: common.login
-#: staff.auth.login_header
msgid "Login"
msgstr "Login"
msgstr "at"
#: common.of
-#: staff.displaying.of
+msgctxt "common.of"
msgid "of"
msgstr "of"
#: common.cancel
+msgctxt "common.cancel"
msgid "Cancel"
msgstr "Cancel"
#: common.library
+msgctxt "common.library"
msgid "Library"
msgstr "Library"
msgstr "Step 6)"
#: common.username
+msgctxt "common.username"
msgid "Username"
msgstr "Username"
msgstr "&Username:"
#: common.password
-#: staff.au_password_label
+msgctxt "common.password"
msgid "Password"
msgstr "Password"
+#: common.refresh
+msgctxt "common.refresh"
+msgid "Refresh"
+msgstr "Refresh"
+
#: common.submit
-#: staff.auth.submit_prompt
-#: staff.circ.checkin.submit_label
-#: staff.circ.hold_capture.submit_label
-#: staff.patron_display.checkout.submit_label
+msgctxt "common.submit"
msgid "Submit"
msgstr "Submit"
msgstr "User is not allowed to create holds for other users at this location"
#: common.cancel.accesskey
-#: staff.cat.fixed.SCO.key
-#: staff.copy.close.key
-#: staff.main.auth.debug.clear.accesskey
-#: staff.main.menu.circ.checkin.key
-#: staff.main.menu.circ.claimed_returned.key
-#: staff.main.menu.circ.key
-#: staff.main.menu.edit.copy.key
-#: staff.main.menu.file.close.key
-#: staff.marc.display.fixed.SCO.key
-#: staff.marc.file.close.key
-#: staff.patron_navbar.checkout.accesskey
+msgctxt "common.cancel.accesskey"
msgid "C"
msgstr "C"
#: common.login.accesskey
-#: staff.auth.logoff_prompt.key
-#: staff.cat.search_count_copy.key
-#: staff.cat.search_location.key
-#: staff.checkin.reprint_receipt_label.accesskey
-#: staff.hold_capture.reprint_receipt_label.accesskey
-#: staff.main.menu.circ.lost.key
-#: staff.marc.display.legend.key
-#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "common.login.accesskey"
msgid "L"
msgstr "L"
#: common.password.accesskey
-#: staff.auth.password_prompt.accesskey
-#: staff.auth.password_prompt.key
-#: staff.cat.fixed.MAP.key
-#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
-#: staff.main.menu.circ.patron_status.key
-#: staff.main.menu.edit.paste.key
-#: staff.marc.display.fixed.MAP.key
-#: staff.patron_display.items.print_receipt_label.accesskey
-#: staff.previous.range.key
+msgctxt "common.password.accesskey"
msgid "P"
msgstr "P"
msgstr "About"
#: staff.acp_label_barcode
-#: staff.browse_list.barcode
-#: staff.copy.attr.barcode
+msgctxt "staff.acp_label_barcode"
msgid "Barcode"
msgstr "Barcode"
#: staff.acp_label_call_number
-#: staff.browse_list.callnumber
-#: staff.cat.search_callnumber
-#: staff.volume.attr.callnumber
+msgctxt "staff.acp_label_call_number"
msgid "Call Number"
msgstr "Call Number"
#: staff.acp_label_circ_as_type
-msgid "Circ As Type"
-msgstr "Circ As Type"
+msgid "Circulate As Type"
+msgstr ""
#: staff.acp_label_circ_lib
-msgid "Circ Lib"
-msgstr "Circ Lib"
+#, fuzzy
+msgid "Circulation Library"
+msgstr "Circulating Library"
#: staff.acp_label_circ_modifier
-#: staff.browse_list.circ_modifier
-msgid "Circ Modifier"
-msgstr "Circ Modifier"
+msgid "Circulation Modifier"
+msgstr ""
#: staff.acp_label_copy_number
-#: staff.browse_list.copy_number
+msgctxt "staff.acp_label_copy_number"
msgid "Copy Number"
msgstr "Copy Number"
#: staff.acp_label_deposit
-#: staff.browse_list.deposit
+msgctxt "staff.acp_label_deposit"
msgid "Deposit"
msgstr "Deposit"
#: staff.acp_label_deposit_amount
-#: staff.browse_list.deposit_amount
+msgctxt "staff.acp_label_deposit_amount"
msgid "Deposit Amount"
msgstr "Deposit Amount"
#: staff.acp_label_fine_level
-#: staff.browse_list.fine_level
-#: staff.copy.attr.fine_level
+msgctxt "staff.acp_label_fine_level"
msgid "Fine Level"
msgstr "Fine Level"
msgstr "Copy ID"
#: staff.acp_label_loan_duration
-#: staff.browse_list.loan_duration
-#: staff.copy.attr.loan_duration
+msgctxt "staff.acp_label_loan_duration"
msgid "Loan Duration"
msgstr "Loan Duration"
#: staff.acp_label_location
-#: staff.browse_list.location2
-#: staff.cat.search_count_copy
-#: staff.cat.search_location
+msgctxt "staff.acp_label_location"
msgid "Location"
msgstr "Location"
#: staff.acp_label_price
-#: staff.browse_list.price
-#: staff.copy.attr.price
+msgctxt "staff.acp_label_price"
msgid "Price"
msgstr "Price"
#: staff.acp_label_status
-#: staff.ahr_status_label
-#: staff.browse_list.status
-#: staff.checkin_label_status
-#: staff.main.auth.status
-#: staff.patron_display.status.caption
+msgctxt "staff.acp_label_status"
msgid "Status"
msgstr "Status"
msgid "Fulfillment Time"
msgstr "Fulfillment Time"
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr "Type"
+
#: staff.ahr_holdable_formats_label
msgid "Holdable Formats"
msgstr "Holdable Formats"
#: staff.ahr_id_label
-msgid "Hold Id"
+#, fuzzy
+msgid "Hold ID"
msgstr "Hold Id"
#: staff.ahr_ischanged_label
-#: staff.au_ischanged_label
-msgid "Ischanged"
+#, fuzzy
+msgctxt "staff.ahr_ischanged_label"
+msgid "Is changed"
msgstr "Ischanged"
#: staff.ahr_isdeleted_label
-#: staff.au_isdeleted_label
-msgid "Isdeleted"
+#, fuzzy
+msgctxt "staff.ahr_isdeleted_label"
+msgid "Is deleted"
msgstr "Isdeleted"
#: staff.ahr_isnew_label
-#: staff.au_isnew_label
-msgid "Isnew"
+#, fuzzy
+msgctxt "staff.ahr_isnew_label"
+msgid "Is new"
msgstr "Isnew"
#: staff.ahr_phone_notify_label
msgstr "Phone Notify"
#: staff.ahr_pickup_lib_label
-msgid "Pickup Lib"
-msgstr "Pickup Lib"
+msgctxt "staff.ahr_pickup_lib_label"
+msgid "Pickup Library"
+msgstr ""
#: staff.ahr_prev_check_time_label
-msgid "Prev Check Time"
+#, fuzzy
+msgid "Previous Check Time"
msgstr "Prev Check Time"
#: staff.ahr_request_time_label
msgid "Selection Depth"
msgstr "Selection Depth"
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr "Status"
+
#: staff.ahr_target_label
msgid "Target"
msgstr "Target"
#: staff.ahr_usr_label
-msgid "Usr"
+#, fuzzy
+msgid "User"
msgstr "Usr"
#: staff.au_active_label
-#: staff.au_label_active
+msgctxt "staff.au_active_label"
msgid "Active"
msgstr "Active"
#: staff.au_addresses_label
+msgctxt "staff.au_addresses_label"
msgid "Addresses"
msgstr "Addresses"
#: staff.au_alert_message_label
+msgctxt "staff.au_alert_message_label"
msgid "Alert Message"
msgstr "Alert Message"
#: staff.au_billing_address_label
-#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.au_billing_address_label"
msgid "Billing Address"
msgstr "Billing Address"
msgstr "Cards"
#: staff.au_checkouts_label
-msgid "Checkouts"
-msgstr "Checkouts"
+#, fuzzy
+msgid "Check Outs"
+msgstr "Check Outs:"
#: staff.au_claims_returned_count_label
+msgctxt "staff.au_claims_returned_count_label"
msgid "Claims Returned Count"
msgstr "Claims Returned Count"
msgstr "Day Phone"
#: staff.au_dob_label
-msgid "Dob"
-msgstr "Dob"
+#, fuzzy
+msgctxt "staff.au_dob_label"
+msgid "Date of Birth"
+msgstr "Date of Birth:"
#: staff.au_email_label
msgid "Email"
msgstr "Email"
#: staff.au_evening_phone_label
+msgctxt "staff.au_evening_phone_label"
msgid "Evening Phone"
msgstr "Evening Phone"
#: staff.au_expire_date_label
+msgctxt "staff.au_expire_date_label"
msgid "Expire Date"
msgstr "Expire Date"
#: staff.au_family_name_label
-#: staff.au_label_family_name
+msgctxt "staff.au_family_name_label"
msgid "Family Name"
msgstr "Family Name"
msgid "Hold Requests"
msgstr "Hold Requests"
+#. "OU" is an organization unit - typically a library
#: staff.au_home_ou_label
-msgid "Home Ou"
+#, fuzzy
+msgid "Home OU"
msgstr "Home Ou"
#: staff.au_id_label
-msgid "User Id"
+#, fuzzy
+msgid "User ID"
msgstr "User Id"
#: staff.au_ident_type2_label
-msgid "Ident Type2"
-msgstr "Ident Type2"
+msgid "Identification Type2"
+msgstr ""
#: staff.au_ident_type_label
-msgid "Ident Type"
-msgstr "Ident Type"
+msgid "Identification Type"
+msgstr ""
#: staff.au_ident_value2_label
-msgid "Ident Value2"
-msgstr "Ident Value2"
+msgid "Identification Value2"
+msgstr ""
#: staff.au_ident_value_label
-msgid "Ident Value"
-msgstr "Ident Value"
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ischanged_label
+#, fuzzy
+msgctxt "staff.au_ischanged_label"
+msgid "Is changed"
+msgstr "Ischanged"
+
+#: staff.au_isdeleted_label
+#, fuzzy
+msgctxt "staff.au_isdeleted_label"
+msgid "Is deleted"
+msgstr "Isdeleted"
+
+#: staff.au_isnew_label
+#, fuzzy
+msgctxt "staff.au_isnew_label"
+msgid "Is new"
+msgstr "Isnew"
+
+#: staff.au_label_active
+msgctxt "staff.au_label_active"
+msgid "Active"
+msgstr "Active"
+
+#: staff.au_label_family_name
+msgctxt "staff.au_label_family_name"
+msgid "Family Name"
+msgstr "Family Name"
#: staff.au_label_first_given_name
+msgctxt "staff.au_label_first_given_name"
msgid "First Name"
msgstr "First Name"
msgstr "Record ID"
#: staff.au_label_prefix
-#: staff.au_prefix_label
+msgctxt "staff.au_label_prefix"
msgid "Prefix"
msgstr "Prefix"
#: staff.au_label_second_given_name
+msgctxt "staff.au_label_second_given_name"
msgid "Middle Name"
msgstr "Middle Name"
#: staff.au_label_suffix
-#: staff.au_suffix_label
+msgctxt "staff.au_label_suffix"
msgid "Suffix"
msgstr "Suffix"
+#. "xact" is a transaction
#: staff.au_last_xact_id_label
-msgid "Last Xact Id"
+#, fuzzy
+msgid "Last Xact ID"
msgstr "Last Xact Id"
#: staff.au_mailing_address_label
-#: staff.patron_display.mailing_address
+msgctxt "staff.au_mailing_address_label"
msgid "Mailing Address"
msgstr "Mailing Address"
msgstr "Net Access Level"
#: staff.au_other_phone_label
+msgctxt "staff.au_other_phone_label"
msgid "Other Phone"
msgstr "Other Phone"
#: staff.au_passwd_label
-msgid "Passwd"
-msgstr "Passwd"
+msgctxt "staff.au_passwd_label"
+msgid "Password"
+msgstr "Password"
+
+#: staff.au_password_label
+msgctxt "staff.au_password_label"
+msgid "Password"
+msgstr "Password"
#: staff.au_photo_url_label
-msgid "Photo Url"
+#, fuzzy
+msgid "Photo URL"
msgstr "Photo Url"
+#: staff.au_prefix_label
+msgctxt "staff.au_prefix_label"
+msgid "Prefix"
+msgstr "Prefix"
+
#: staff.au_profile_label
+msgctxt "staff.au_profile_label"
msgid "Profile"
msgstr "Profile"
msgstr "Settings"
#: staff.au_standing_label
+msgctxt "staff.au_standing_label"
msgid "Standing"
msgstr "Standing"
#: staff.au_stat_cat_entries_label
-msgid "Stat Cat Entries"
-msgstr "Stat Cat Entries"
+#, fuzzy
+msgid "Statistical Category Entries"
+msgstr "Statistical &Category Editor"
+
+#: staff.au_suffix_label
+msgctxt "staff.au_suffix_label"
+msgid "Suffix"
+msgstr "Suffix"
#: staff.au_super_user_label
msgid "Super User"
msgstr "Survey Responses"
#: staff.au_usrgroup_label
-msgid "Usrgroup"
+#, fuzzy
+msgid "User group"
msgstr "Usrgroup"
#: staff.au_usrname_label
-msgid "Usrname"
-msgstr "Usrname"
+#, fuzzy
+msgid "User name"
+msgstr "Username"
#: staff.admin.survey.available.label
msgid "Available to:"
msgstr "Poll Format:"
#: staff.admin.survey.name.label
-#: staff.auth.name_prompt
+msgctxt "staff.admin.survey.name.label"
msgid "Name:"
msgstr "Name:"
#: staff.admin.survey.opac_visible.label
+msgctxt "staff.admin.survey.opac_visible.label"
msgid "OPAC Visible:"
msgstr "OPAC Visible:"
msgid "Start:"
msgstr "Start:"
+#: staff.auth.login_header
+#, fuzzy
+msgid "Log in"
+msgstr "Login"
+
#: staff.auth.logoff_prompt
-msgid "Log Off"
+#, fuzzy
+msgid "Log off"
msgstr "Log Off"
#: staff.auth.logoff_prompt.accesskey
msgid "f"
msgstr "f"
+#: staff.auth.logoff_prompt.key
+msgctxt "staff.auth.logoff_prompt.key"
+msgid "L"
+msgstr "L"
+
+#: staff.auth.name_prompt
+msgctxt "staff.auth.name_prompt"
+msgid "Name:"
+msgstr "Name:"
+
#: staff.auth.name_prompt.key
-#: staff.main.menu.file.new.key
-#: staff.next.range.key
+msgctxt "staff.auth.name_prompt.key"
msgid "N"
msgstr "N"
msgid "Password:"
msgstr "Password:"
+#: staff.auth.password_prompt.accesskey
+msgctxt "staff.auth.password_prompt.accesskey"
+msgid "P"
+msgstr "P"
+
+#: staff.auth.password_prompt.key
+msgctxt "staff.auth.password_prompt.key"
+msgid "P"
+msgstr "P"
+
#: staff.auth.quit_prompt
msgid "Exit Evergreen"
msgstr "Exit Evergreen"
msgid "x"
msgstr "x"
+#: staff.auth.submit_prompt
+msgctxt "staff.auth.submit_prompt"
+msgid "Submit"
+msgstr "Submit"
+
#: staff.auth.submit_prompt.key
-#: staff.cat.fixed.SER.key
-#: staff.cat.search_submit.key
-#: staff.circ.checkin.submit_label.accesskey
-#: staff.circ.hold_capture.submit_label.accesskey
-#: staff.copy.save.key
-#: staff.main.auth.offline.interface.accesskey
-#: staff.main.menu.cat.bib_search.key
-#: staff.main.menu.circ.special.key
-#: staff.main.menu.file.save.key
-#: staff.marc.display.fixed.SER.key
-#: staff.marc.file.publish.key
-#: staff.patron_display.checkout.submit_label.accesskey
+msgctxt "staff.auth.submit_prompt.key"
msgid "S"
msgstr "S"
msgstr "Information"
#: staff.bills_interface_label
-msgid "BILLS"
-msgstr "BILLS"
+msgctxt "staff.bills_interface_label"
+msgid "Bills"
+msgstr "Bills"
#: staff.bills_money_label
msgid "Money"
msgstr "Bill Patron"
#: staff.bills_xact_dates_label
-msgid "Record / Dates"
+#, fuzzy
+msgid "Record and Dates"
msgstr "Record / Dates"
+#: staff.browse_list.barcode
+msgctxt "staff.browse_list.barcode"
+msgid "Barcode"
+msgstr "Barcode"
+
+#: staff.browse_list.callnumber
+msgctxt "staff.browse_list.callnumber"
+msgid "Call Number"
+msgstr "Call Number"
+
#: staff.browse_list.circ_as_type
msgid "Circulate As"
msgstr "Circulate As"
#: staff.browse_list.circ_lib
-msgid "Circulating Lib"
-msgstr "Circulating Lib"
+msgctxt "staff.browse_list.circ_lib"
+msgid "Circulating Library"
+msgstr "Circulating Library"
+
+#: staff.browse_list.circ_modifier
+msgid "Circ Modifier"
+msgstr "Circ Modifier"
#: staff.browse_list.circulate
+msgctxt "staff.browse_list.circulate"
msgid "Circulate"
msgstr "Circulate"
+#: staff.browse_list.copy_number
+msgctxt "staff.browse_list.copy_number"
+msgid "Copy Number"
+msgstr "Copy Number"
+
#: staff.browse_list.create_date
msgid "Creation Date"
msgstr "Creation Date"
msgid "Creator"
msgstr "Creator"
+#: staff.browse_list.deposit
+msgctxt "staff.browse_list.deposit"
+msgid "Deposit"
+msgstr "Deposit"
+
+#: staff.browse_list.deposit_amount
+msgctxt "staff.browse_list.deposit_amount"
+msgid "Deposit Amount"
+msgstr "Deposit Amount"
+
#: staff.browse_list.edit_date
msgid "Edit Date"
msgstr "Edit Date"
msgid "Editor"
msgstr "Editor"
+#: staff.browse_list.fine_level
+msgctxt "staff.browse_list.fine_level"
+msgid "Fine Level"
+msgstr "Fine Level"
+
#: staff.browse_list.library
msgid "Owning Lib"
msgstr "Owning Lib"
+#: staff.browse_list.loan_duration
+msgctxt "staff.browse_list.loan_duration"
+msgid "Loan Duration"
+msgstr "Loan Duration"
+
#: staff.browse_list.location
-msgid "Location/Barcode"
+#, fuzzy
+msgid "Location and Barcode"
msgstr "Location/Barcode"
+#: staff.browse_list.location2
+msgctxt "staff.browse_list.location2"
+msgid "Location"
+msgstr "Location"
+
#: staff.browse_list.opac_visible
-#: staff.copy.notes.opac
+msgctxt "staff.browse_list.opac_visible"
msgid "OPAC"
msgstr "OPAC"
+#: staff.browse_list.price
+msgctxt "staff.browse_list.price"
+msgid "Price"
+msgstr "Price"
+
#: staff.browse_list.ref
-#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.browse_list.ref"
msgid "Reference"
msgstr "Reference"
#: staff.browse_list.shelving_loc
-#: staff.copy.attr.shelving_location
+msgctxt "staff.browse_list.shelving_loc"
msgid "Shelving Location"
msgstr "Shelving Location"
+#: staff.browse_list.status
+msgctxt "staff.browse_list.status"
+msgid "Status"
+msgstr "Status"
+
#: staff.browse_list.win_title
-#: staff.record_list.win_title
+msgctxt "staff.browse_list.win_title"
msgid "Cataloging"
msgstr "Cataloging"
msgstr "BKS"
#: staff.cat.fixed.BKS.key
-#: staff.copy.bucket.key
-#: staff.main.menu.cat.add_bib.key
-#: staff.main.menu.cat.bib_status.key
-#: staff.main.menu.cat.copy_status.accesskey
-#: staff.main.menu.circ.barcode.show_item.accesskey
-#: staff.main.menu.edit.buckets.copies.accesskey
-#: staff.main.menu.edit.buckets.key
-#: staff.marc.display.fixed.BKS.key
-#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.cat.fixed.BKS.key"
msgid "B"
msgstr "B"
msgstr "COM"
#: staff.cat.fixed.COM.key
-#: staff.cat.search_order.key
-#: staff.main.menu.circ.checkout.key
-#: staff.main.menu.file.open.key
-#: staff.marc.display.fixed.COM.key
+msgctxt "staff.cat.fixed.COM.key"
msgid "O"
msgstr "O"
msgid "MAP"
msgstr "MAP"
+#: staff.cat.fixed.MAP.key
+msgctxt "staff.cat.fixed.MAP.key"
+msgid "P"
+msgstr "P"
+
#: staff.cat.fixed.MIX
msgid "MIX"
msgstr "MIX"
#: staff.cat.fixed.MIX.key
-#: staff.main.menu.cat.dedup.key
-#: staff.main.menu.circ.missing.key
-#: staff.marc.display.fixed.MIX.key
-#: staff.marc.file.key
+msgctxt "staff.cat.fixed.MIX.key"
msgid "M"
msgstr "M"
msgstr "REC"
#: staff.cat.fixed.REC.key
-#: staff.checkin_patron.retrieve.accesskey
-#: staff.copy.reload.key
-#: staff.hold_capture_patron.retrieve.accesskey
-#: staff.main.auth.retest.accesskey
-#: staff.main.menu.circ.patron_registration.key
-#: staff.main.menu.edit.buckets.records.accesskey
-#: staff.main.menu.edit.redo.key
-#: staff.main.menu.entity.patron.register.key
-#: staff.marc.display.fixed.REC.key
-#: staff.marc.file.reload.key
-#: staff.patron_navbar.refresh.accesskey
-#: staff.patron_navbar.retrieve.accesskey
+msgctxt "staff.cat.fixed.REC.key"
msgid "R"
msgstr "R"
msgid "SCO"
msgstr "SCO"
+#: staff.cat.fixed.SCO.key
+msgctxt "staff.cat.fixed.SCO.key"
+msgid "C"
+msgstr "C"
+
#: staff.cat.fixed.SER
msgid "SER"
msgstr "SER"
+#: staff.cat.fixed.SER.key
+msgctxt "staff.cat.fixed.SER.key"
+msgid "S"
+msgstr "S"
+
#: staff.cat.fixed.VIS
msgid "VIS"
msgstr "VIS"
#: staff.cat.fixed.VIS.key
-#: staff.cat.search_advanced.key
-#: staff.main.menu.cat.add_volume.key
-#: staff.main.menu.cat.volume_status.key
-#: staff.main.menu.edit.buckets.volumes.accesskey
-#: staff.marc.display.fixed.VIS.key
-#: staff.marc.file.validate.key
+msgctxt "staff.cat.fixed.VIS.key"
msgid "V"
msgstr "V"
#: staff.cat.opac.add_bucket.label
#: staff.cat.opac.add_bucket.accesskey
+msgctxt "staff.cat.opac.add_bucket.label staff.cat.opac.add_bucket.accesskey"
msgid "Add to &Bucket"
msgstr "Add to &Bucket"
#: staff.cat.opac.bib_in_new_tab.label
+msgctxt "staff.cat.opac.bib_in_new_tab.label"
msgid "Duplicate in New Tab"
msgstr "Duplicate in New Tab"
#: staff.cat.opac.copy_browse.label
#: staff.cat.opac.copy_browse.accesskey
+msgctxt "staff.cat.opac.copy_browse.label staff.cat.opac.copy_browse.accesskey"
msgid "&Holdings Maintenance"
msgstr "&Holdings Maintenance"
#: staff.cat.opac.marc_edit.label
#: staff.cat.opac.marc_edit.accesskey
+msgctxt "staff.cat.opac.marc_edit.label staff.cat.opac.marc_edit.accesskey"
msgid "MARC &Edit"
msgstr "MARC &Edit"
#: staff.cat.opac.marc_view.label
#: staff.cat.opac.marc_view.accesskey
+msgctxt "staff.cat.opac.marc_view.label staff.cat.opac.marc_view.accesskey"
msgid "MARC &View"
msgstr "MARC &View"
msgid "&Delete Record"
msgstr "&Delete Record"
+#: staff.cat.opac.undelete_record.label
+#: staff.cat.opac.undelete_record.accesskey
+#, fuzzy
+msgid "&Undelete Record"
+msgstr "&Delete Record"
+
#: staff.cat.opac.menu.label
#: staff.cat.opac.menu.accesskey
msgid "&Actions for this Record"
#: staff.cat.opac.opac_view.label
#: staff.cat.opac.opac_view.accesskey
+msgctxt "staff.cat.opac.opac_view.label staff.cat.opac.opac_view.accesskey"
msgid "&OPAC View"
msgstr "&OPAC View"
msgstr "Reset Display"
#: staff.cat.opac.remove_me.label
+msgctxt "staff.cat.opac.remove_me.label"
msgid "Remove this Frame"
msgstr "Remove this Frame"
#: staff.cat.opac.view_holds.label
#: staff.cat.opac.view_holds.accesskey
+msgctxt "staff.cat.opac.view_holds.label staff.cat.opac.view_holds.accesskey"
msgid "View Hold&s"
msgstr "View Hold&s"
#: staff.cat.popup.add_to_bucket
-#: staff.copy.bucket
+msgctxt "staff.cat.popup.add_to_bucket"
msgid "Add to Bucket"
msgstr "Add to Bucket"
#: staff.cat.popup.add_to_bucket.key
msgid ""
"_: staff.cat.popup.add_to_bucket.key\n"
+""
msgstr ""
#: staff.cat.popup.browse.record.tab.key
+msgctxt "staff.cat.popup.browse.record.tab.key"
msgid ""
-"_: staff.cat.popup.browse.record.tab.key\n"
msgstr ""
#: staff.cat.popup.browse.record.window.key
+msgctxt "staff.cat.popup.browse.record.window.key"
msgid ""
-"_: staff.cat.popup.browse.record.window.key\n"
msgstr ""
#: staff.cat.popup.browse_record.tab
msgstr "View Copies (Window)"
#: staff.cat.popup.edit.record.tab.key
+msgctxt "staff.cat.popup.edit.record.tab.key"
msgid ""
-"_: staff.cat.popup.edit.record.tab.key\n"
msgstr ""
#: staff.cat.popup.edit.record.window.key
+msgctxt "staff.cat.popup.edit.record.window.key"
msgid ""
-"_: staff.cat.popup.edit.record.window.key\n"
msgstr ""
#: staff.cat.popup.edit_record.tab
msgid "Advanced"
msgstr "Advanced"
+#: staff.cat.search_advanced.key
+msgctxt "staff.cat.search_advanced.key"
+msgid "V"
+msgstr "V"
+
+#: staff.cat.search_all
+msgctxt "staff.cat.search_all"
+msgid "Keyword"
+msgstr "Keyword"
+
+#: staff.cat.search_author
+msgctxt "staff.cat.search_author"
+msgid "Author"
+msgstr "Author"
+
#: staff.cat.search_barcode
+msgctxt "staff.cat.search_barcode"
msgid "Item Barcode"
msgstr "Item Barcode"
+#: staff.cat.search_callnumber
+msgctxt "staff.cat.search_callnumber"
+msgid "Call Number"
+msgstr "Call Number"
+
+#: staff.cat.search_count_copy
+msgctxt "staff.cat.search_count_copy"
+msgid "Location"
+msgstr "Location"
+
+#: staff.cat.search_count_copy.key
+msgctxt "staff.cat.search_count_copy.key"
+msgid "L"
+msgstr "L"
+
#: staff.cat.search_count_copy_show
msgid "Show Only These Records"
msgstr "Show Only These Records"
msgid "Search Criteria"
msgstr "Search Criteria"
+#: staff.cat.search_format
+msgctxt "staff.cat.search_format"
+msgid "Format"
+msgstr "Format"
+
#: staff.cat.search_format.key
-#: staff.main.menu.circ.found.key
-#: staff.main.menu.edit.find.key
-#: staff.main.menu.file.key
-#: staff.marc.display.control_fields.key
+msgctxt "staff.cat.search_format.key"
msgid "F"
msgstr "F"
msgstr "System ID"
#: staff.cat.search_isbn
-msgid "ISBN/ISSN"
-msgstr "ISBN/ISSN"
+msgid "ISBN or ISSN"
+msgstr ""
+
+#: staff.cat.search_location
+msgctxt "staff.cat.search_location"
+msgid "Location"
+msgstr "Location"
+
+#: staff.cat.search_location.key
+msgctxt "staff.cat.search_location.key"
+msgid "L"
+msgstr "L"
#: staff.cat.search_order
msgid "Order"
msgstr "Order"
+#: staff.cat.search_order.key
+msgctxt "staff.cat.search_order.key"
+msgid "O"
+msgstr "O"
+
#: staff.cat.search_pubyear
-#: staff.record_list.pubyear
+msgctxt "staff.cat.search_pubyear"
msgid "Pub Year"
msgstr "Pub Year"
+#: staff.cat.search_subject
+msgctxt "staff.cat.search_subject"
+msgid "Subject"
+msgstr "Subject"
+
#: staff.cat.search_submit
-#: staff.main.menu.search.label
+msgctxt "staff.cat.search_submit"
msgid "Search"
msgstr "Search"
+#: staff.cat.search_submit.key
+msgctxt "staff.cat.search_submit.key"
+msgid "S"
+msgstr "S"
+
#: staff.cat.search_tcn
-#: staff.record_list.tcn
+msgctxt "staff.cat.search_tcn"
msgid "TCN"
msgstr "TCN"
msgid "e"
msgstr "e"
+#: staff.cat.search_title
+msgctxt "staff.cat.search_title"
+msgid "Title"
+msgstr "Title"
+
+#: staff.cat.search_type
+msgctxt "staff.cat.search_type"
+msgid "Type"
+msgstr "Type"
+
#: staff.cat.search_type.key
-#: staff.main.menu.file.new_tab.key
+msgctxt "staff.cat.search_type.key"
msgid "T"
msgstr "T"
msgstr "Test"
#: staff.cat.test.key
-#: staff.main.menu.edit.key
-#: staff.marc.display.meta_data.key
-#: staff.marc.file.export.key
-#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.cat.test.key"
msgid "E"
msgstr "E"
msgstr "Mixed Material"
#: staff.cat.type_of_material.r
-msgid "Three-dimensional Artifact or Naturally Occuring Object"
+#, fuzzy
+msgid "Three-dimensional Artifact or Naturally Occurring Object"
msgstr "Three-dimensional Artifact or Naturally Occuring Object"
#: staff.cat.type_of_material.t
msgstr "Manuscript Language Material"
#: staff.checkin.auto_print_label
-#: staff.hold_capture.auto_print_label
-#: staff.patron_display.checkout.auto_print_label
+msgctxt "staff.checkin.auto_print_label"
msgid "Auto-Print"
msgstr "Auto-Print"
#: staff.checkin.auto_print_label.accesskey
-#: staff.copy.notes.add.key
-#: staff.hold_capture.auto_print_label.accesskey
-#: staff.main.menu.edit.select_all.key
-#: staff.main.menu.tabs.close.accesskey
-#: staff.marc.display.cover_art.key
-#: staff.patron_display.checkout.auto_print_label.accesskey
+msgctxt "staff.checkin.auto_print_label.accesskey"
msgid "A"
msgstr "A"
#: staff.checkin.done_label
-#: staff.hold_capture.done_label
-#: staff.patron_display.checkout.done_label
msgid "Done"
msgstr "Done"
#: staff.checkin.done_label.accesskey
-#: staff.copy.notes.delete.key
-#: staff.hold_capture.done_label.accesskey
-#: staff.main.menu.edit.delete.key
-#: staff.marc.display.key
-#: staff.patron_display.checkout.done_label.accesskey
+msgctxt "staff.checkin.done_label.accesskey"
msgid "D"
msgstr "D"
-#: staff.checkin.print_receipt_label
-#: staff.hold_capture.print_receipt_label
+#: staff.checkin.print_receipt.label
+msgctxt "staff.checkin.print_receipt.label"
msgid "Print List"
msgstr "Print List"
-#: staff.checkin.print_receipt_label.accesskey
+#: staff.checkin.print_receipt.accesskey
+msgctxt "staff.checkin.print_receipt.accesskey"
msgid ""
-"_: staff.checkin.print_receipt_label.accesskey\n"
msgstr ""
#: staff.checkin.reprint_receipt_label
-#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.checkin.reprint_receipt_label"
msgid "Re-Print Last List"
msgstr "Re-Print Last List"
+#: staff.checkin.reprint_receipt_label.accesskey
+msgctxt "staff.checkin.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr "L"
+
#: staff.checkin_interface_label
-msgid "CHECK IN"
-msgstr "CHECK IN"
+msgctxt "staff.checkin_interface_label"
+msgid "Check In"
+msgstr "Check In"
#: staff.checkin_label_route_to
msgid "Route To"
msgstr "Route To"
+#: staff.checkin_label_status
+msgctxt "staff.checkin_label_status"
+msgid "Status"
+msgstr "Status"
+
#: staff.checkin_label_text
msgid "Message"
msgstr "Message"
#: staff.checkin_patron.name.label
-#: staff.hold_capture_patron.name.label
-#: staff.patron_display.name.label
+msgctxt "staff.checkin_patron.name.label"
msgid "Patron Name"
msgstr "Patron Name"
#: staff.checkin_patron.retrieve
-#: staff.hold_capture_patron.retrieve
-#: staff.patron.context_display
-#: staff.patron_navbar.retrieve
+msgctxt "staff.checkin_patron.retrieve"
msgid "Retrieve Patron"
msgstr "Retrieve Patron"
+#: staff.checkin_patron.retrieve.accesskey
+msgctxt "staff.checkin_patron.retrieve.accesskey"
+msgid "R"
+msgstr "R"
+
#: staff.checkout_interface_label
-msgid "CHECK OUT"
-msgstr "CHECK OUT"
+msgctxt "staff.checkout_interface_label"
+msgid "Check Out"
+msgstr "Check Out"
#: staff.circ.offline.main.label
msgid "Evergreen Offline"
#: staff.circ.offline.cmd_exit.label
#: staff.circ.offline.cmd_exit.accesskey
+msgctxt "staff.circ.offline.cmd_exit.label staff.circ.offline.cmd_exit.accesskey"
msgid "E&xit"
msgstr "E&xit"
msgid "Standalone Check In"
msgstr "Standalone Check In"
+#: staff.circ.offline_checkin.step2a.label
+#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "staff.circ.offline_checkin.step2a.label staff.circ.offline_checkin.step2a.accesskey"
+msgid "&Enter"
+msgstr "&Enter"
+
#: staff.circ.offline_checkin.step3.description
msgid "Repeat Steps 2 until done."
msgstr "Repeat Steps 2 until done."
#: staff.circ.offline.finish.description
-#: staff.mbts_xact_finish_label
+msgctxt "staff.circ.offline.finish.description"
msgid "Finish"
msgstr "Finish"
msgstr "Enter the patron's barcode:"
#: staff.circ.offline_checkout.step5.description
-#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_checkout.step5.description"
msgid "Repeat Steps 3 and 4 until done."
msgstr "Repeat Steps 3 and 4 until done."
msgstr "Standalone Patron Registration"
#: staff.circ.offline_register.x_home_ou.label
-#: staff.patron_display.home_ou.label
+msgctxt "staff.circ.offline_register.x_home_ou.label"
msgid "Home Library:"
msgstr "Home Library:"
#: staff.circ.offline_register.x_profile.label
-#: staff.patron_display.profile.label
+msgctxt "staff.circ.offline_register.x_profile.label"
msgid "Profile:"
msgstr "Profile:"
msgstr "New Password:"
#: staff.circ.offline_register.family_name.label
-#: staff.patron_display.family_name.label
+msgctxt "staff.circ.offline_register.family_name.label"
msgid "Last Name:"
msgstr "Last Name:"
#: staff.circ.offline_register.first_given_name.label
-#: staff.patron_display.first_given_name.label
-#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.circ.offline_register.first_given_name.label"
msgid "First Name:"
msgstr "First Name:"
#: staff.circ.offline_register.dob.label
+msgctxt "staff.circ.offline_register.dob.label"
msgid "Date of Birth:"
msgstr "Date of Birth:"
#: staff.circ.offline_register.x_ident_type.label
-msgid "Ident Type:"
-msgstr "Ident Type:"
+msgid "Identification Type:"
+msgstr ""
#: staff.circ.offline_register.ident_value.label
msgid "Ident Value:"
msgstr "Ident Value:"
+#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.circ.offline_register.billing_address.label"
+msgid "Billing Address"
+msgstr "Billing Address"
+
#: staff.circ.offline_register.street1.label
msgid "Line 1"
msgstr "Line 1"
msgstr "Line 2"
#: staff.circ.offline_register.city.label
+msgctxt "staff.circ.offline_register.city.label"
msgid "City"
msgstr "City"
#: staff.circ.offline_register.state.label
+msgctxt "staff.circ.offline_register.state.label"
msgid "State"
msgstr "Province"
msgstr "Postal Code"
#: staff.circ.offline_register.country.label
+msgctxt "staff.circ.offline_register.country.label"
msgid "Country"
msgstr "Country"
msgid "(Optional) Enter the patron's barcode:"
msgstr "(Optional) Enter the patron's barcode:"
+#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_renew.step5.label"
+msgid "Repeat Steps 3 and 4 until done."
+msgstr "Repeat Steps 3 and 4 until done."
+
#: staff.circ.checkin.caption
-#: staff.circ.context_checkin
+msgctxt "staff.circ.checkin.caption"
msgid "Check In"
msgstr "Check In"
-#: staff.circ.checkin.scan_label
-#: staff.circ.hold_capture.scan_label
-#: staff.patron_display.checkout.scan_label
-msgid "Enter Barcode:"
+#: staff.circ.checkin.scan.label
+#: staff.circ.checkin.scan.accesskey
+#, fuzzy
+msgctxt "staff.circ.checkin.scan.label staff.circ.checkin.scan.accesskey"
+msgid "Enter B&arcode:"
msgstr "Enter Barcode:"
-#: staff.circ.checkin.scan_label.accesskey
-#: staff.circ.hold_capture.scan_label.accesskey
-#: staff.main.menu.cat.key
-#: staff.patron_display.checkout.scan_label.accesskey
-msgid "a"
-msgstr "a"
+#: staff.circ.checkin.submit.label
+#: staff.circ.checkin.submit.accesskey
+#, fuzzy
+msgctxt "staff.circ.checkin.submit.label staff.circ.checkin.submit.accesskey"
+msgid "&Submit"
+msgstr "Submit"
#: staff.circ.context_cancel_hold
+msgctxt "staff.circ.context_cancel_hold"
msgid "Cancel Hold"
msgstr "Cancel Hold"
+#: staff.circ.context_checkin
+msgctxt "staff.circ.context_checkin"
+msgid "Check In"
+msgstr "Check In"
+
#: staff.circ.context_edit
msgid "Edit Copy"
msgstr "Edit Copy"
msgstr "Show Title in OPAC"
#: staff.circ.context_renew
-#: staff.main.menu.circ.renew.label
+msgctxt "staff.circ.context_renew"
msgid "Renew"
msgstr "Renew"
msgid "Capture Hold"
msgstr "Capture Hold"
+#: staff.circ.hold_capture.scan_label
+msgid "Enter Barcode:"
+msgstr "Enter Barcode:"
+
+#: staff.circ.hold_capture.scan_label.accesskey
+msgctxt "staff.circ.hold_capture.scan_label.accesskey"
+msgid "a"
+msgstr "a"
+
+#: staff.circ.hold_capture.submit_label
+msgctxt "staff.circ.hold_capture.submit_label"
+msgid "Submit"
+msgstr "Submit"
+
+#: staff.circ.hold_capture.submit_label.accesskey
+msgctxt "staff.circ.hold_capture.submit_label.accesskey"
+msgid "S"
+msgstr "S"
+
#: staff.circ_label_due_date
+msgctxt "staff.circ_label_due_date"
msgid "Due Date"
msgstr "Due Date"
#: staff.circ_label_id
-msgid "Circ Id"
-msgstr "Circ Id"
+#, fuzzy
+msgid "Circulation ID"
+msgstr "Circulation"
#: staff.circ_label_renewal_remaining
msgid "Remaining Renewals"
msgstr "Remaining Renewals"
#: staff.circ_label_xact_finish
-msgid "Checkin Date"
+#, fuzzy
+msgid "Check in Date"
msgstr "Checkin Date"
#: staff.circ_label_xact_start
-msgid "Checkout Date"
+#, fuzzy
+msgid "Check out Date"
msgstr "Checkout Date"
#: staff.copies_editor_interface_label
-msgid "COPIES EDIT"
-msgstr "COPIES EDIT"
+msgid "Copies Edit"
+msgstr ""
+
+#: staff.copy.attr.barcode
+msgctxt "staff.copy.attr.barcode"
+msgid "Barcode"
+msgstr "Barcode"
#: staff.copy.attr.circulate
msgid "Circulate?"
msgstr "Circulate?"
#: staff.copy.attr.circulate.no
-#: staff.copy.attr.deposit.no
-#: staff.copy.attr.notes_viewable.example2
-#: staff.copy.attr.opac_visible.no
-#: staff.copy.attr.reference_material.no
+msgctxt "staff.copy.attr.circulate.no"
msgid "No"
msgstr "No"
#: staff.copy.attr.circulate.yes
-#: staff.copy.attr.deposit.yes
-#: staff.copy.attr.notes_viewable.example1
-#: staff.copy.attr.opac_visible.yes
-#: staff.copy.attr.reference_material.yes
+msgctxt "staff.copy.attr.circulate.yes"
msgid "Yes"
msgstr "Yes"
#: staff.copy.attr.circulating_lib
+msgctxt "staff.copy.attr.circulating_lib"
msgid "Circulating Library"
msgstr "Circulating Library"
msgid "Deposit?"
msgstr "Deposit?"
+#: staff.copy.attr.deposit.no
+msgctxt "staff.copy.attr.deposit.no"
+msgid "No"
+msgstr "No"
+
+#: staff.copy.attr.deposit.yes
+msgctxt "staff.copy.attr.deposit.yes"
+msgid "Yes"
+msgstr "Yes"
+
#: staff.copy.attr.deposit_amount
+msgctxt "staff.copy.attr.deposit_amount"
msgid "Amount"
msgstr "Amount"
msgid "Deposit Notes"
msgstr "Deposit Notes"
+#: staff.copy.attr.fine_level
+msgctxt "staff.copy.attr.fine_level"
+msgid "Fine Level"
+msgstr "Fine Level"
+
#: staff.copy.attr.fine_level.high
msgid "High"
msgstr "High"
msgstr "Low"
#: staff.copy.attr.fine_level.normal
-#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.fine_level.normal"
msgid "Normal"
msgstr "Normal"
msgstr "Not holdable"
#: staff.copy.attr.home_lib
+msgctxt "staff.copy.attr.home_lib"
msgid "Home Library"
msgstr "Home Library"
+#: staff.copy.attr.loan_duration
+msgctxt "staff.copy.attr.loan_duration"
+msgid "Loan Duration"
+msgstr "Loan Duration"
+
#: staff.copy.attr.loan_duration.long
msgid "Long"
msgstr "Long"
+#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.loan_duration.normal"
+msgid "Normal"
+msgstr "Normal"
+
#: staff.copy.attr.loan_duration.short
msgid "Short"
msgstr "Short"
msgid "Copy Notes Patron Viewable?"
msgstr "Copy Notes Patron Viewable?"
+#: staff.copy.attr.notes_viewable.example1
+msgctxt "staff.copy.attr.notes_viewable.example1"
+msgid "Yes"
+msgstr "Yes"
+
+#: staff.copy.attr.notes_viewable.example2
+msgctxt "staff.copy.attr.notes_viewable.example2"
+msgid "No"
+msgstr "No"
+
#: staff.copy.attr.opac_visible
msgid "OPAC Visible?"
msgstr "OPAC Visible?"
+#: staff.copy.attr.opac_visible.no
+msgctxt "staff.copy.attr.opac_visible.no"
+msgid "No"
+msgstr "No"
+
+#: staff.copy.attr.opac_visible.yes
+msgctxt "staff.copy.attr.opac_visible.yes"
+msgid "Yes"
+msgstr "Yes"
+
+#: staff.copy.attr.price
+msgctxt "staff.copy.attr.price"
+msgid "Price"
+msgstr "Price"
+
#: staff.copy.attr.reference_material
msgid "Reference Material?"
msgstr "Reference Material?"
+#: staff.copy.attr.reference_material.no
+msgctxt "staff.copy.attr.reference_material.no"
+msgid "No"
+msgstr "No"
+
+#: staff.copy.attr.reference_material.yes
+msgctxt "staff.copy.attr.reference_material.yes"
+msgid "Yes"
+msgstr "Yes"
+
+#: staff.copy.attr.shelving_location
+msgctxt "staff.copy.attr.shelving_location"
+msgid "Shelving Location"
+msgstr "Shelving Location"
+
#: staff.copy.attr.shelving_location.example1
msgid "Stacks"
msgstr "Stacks"
msgid "Garden Room"
msgstr "Garden Room"
+#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.copy.attr.shelving_location.example5"
+msgid "Reference"
+msgstr "Reference"
+
#: staff.copy.attr.shelving_location.example6
msgid "Ready Reference"
msgstr "Ready Reference"
msgstr "Behind Circulation Desk"
#: staff.copy.attr.shelving_location.example8
-#: staff.marc.display
+msgctxt "staff.copy.attr.shelving_location.example8"
msgid "Display"
msgstr "Display"
msgstr "Shortstory"
#: staff.copy.attr.stat.genre.example16
-#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.copy.attr.stat.genre.example16"
msgid "Biography"
msgstr "Biography"
#: staff.copy.attr.stat.genre.example17
-#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example17"
msgid "Holiday"
msgstr "Holiday"
msgid "Historical"
msgstr "Historical"
+#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example4"
+msgid "Holiday"
+msgstr "Holiday"
+
#: staff.copy.attr.stat.genre.example5
msgid "Horror"
msgstr "Horror"
msgid "Sci-fi"
msgstr "Sci-fi"
+#: staff.copy.bucket
+msgctxt "staff.copy.bucket"
+msgid "Add to Bucket"
+msgstr "Add to Bucket"
+
+#: staff.copy.bucket.key
+msgctxt "staff.copy.bucket.key"
+msgid "B"
+msgstr "B"
+
#: staff.copy.clone
msgid "Clone Copy"
msgstr "Clone Copy"
#: staff.copy.clone.key
+msgctxt "staff.copy.clone.key"
msgid ""
-"_: staff.copy.clone.key\n"
msgstr ""
#: staff.copy.close
msgid "Close Window"
msgstr "Close Window"
+#: staff.copy.close.key
+msgctxt "staff.copy.close.key"
+msgid "C"
+msgstr "C"
+
#: staff.copy.default.attr
msgid "Default Attributes"
msgstr "Default Attributes"
#: staff.copy.default.attr.value
-#: staff.copy.local.attr.value
-#: staff.copy.pines.attr.value
+msgctxt "staff.copy.default.attr.value"
msgid "Value"
msgstr "Value"
msgstr "Delete Copy"
#: staff.copy.delete.key
+msgctxt "staff.copy.delete.key"
msgid ""
-"_: staff.copy.delete.key\n"
msgstr ""
#: staff.copy.edit_categories
msgid "Local Attributes"
msgstr "Local Attributes"
+#: staff.copy.local.attr.value
+msgctxt "staff.copy.local.attr.value"
+msgid "Value"
+msgstr "Value"
+
#: staff.copy.notes
+msgctxt "staff.copy.notes"
msgid "Note"
msgstr "Note"
msgid "Add Note"
msgstr "Add Note"
+#: staff.copy.notes.add.key
+msgctxt "staff.copy.notes.add.key"
+msgid "A"
+msgstr "A"
+
#: staff.copy.notes.date
msgid "Date"
msgstr "Date"
msgid "Delete Note"
msgstr "Delete Note"
+#: staff.copy.notes.delete.key
+msgctxt "staff.copy.notes.delete.key"
+msgid "D"
+msgstr "D"
+
#: staff.copy.notes.from
msgid "From"
msgstr "From"
-#: staff.copy.pines.attr
-msgid "PINES Attributes"
-msgstr "PINES Attributes"
+#: staff.copy.notes.opac
+msgctxt "staff.copy.notes.opac"
+msgid "OPAC"
+msgstr "OPAC"
#: staff.copy.reload
msgid "Reload Copy"
msgstr "Reload Copy"
+#: staff.copy.reload.key
+msgctxt "staff.copy.reload.key"
+msgid "R"
+msgstr "R"
+
#: staff.copy.save
msgid "Save Copy"
msgstr "Save Copy"
+#: staff.copy.save.key
+msgctxt "staff.copy.save.key"
+msgid "S"
+msgstr "S"
+
#: staff.copy.title
msgid "Barcode goes here"
msgstr "Barcode goes here"
msgstr "Transfer Copy"
#: staff.copy.transfer.key
+msgctxt "staff.copy.transfer.key"
msgid ""
-"_: staff.copy.transfer.key\n"
msgstr ""
#: staff.copy.wizard.title
msgstr "Batch Add Copies Wizard"
#: staff.copy_browser_interface_label
-msgid "COPIES"
-msgstr "COPIES"
+msgctxt "staff.copy_browser_interface_label"
+msgid "Copies"
+msgstr ""
#: staff.copy_stat_cat_editor_interface_label
-msgid "COPY STAT-CATS"
-msgstr "COPY STAT-CATS"
+msgid "Copy statistical categories"
+msgstr ""
#: staff.display_patron_interface_label
-msgid "DISPLAY PATRON"
-msgstr "DISPLAY PATRON"
+#, fuzzy
+msgid "Display patron"
+msgstr "Display Patron"
#: staff.displaying.hits_per_page
msgid "Results per page"
msgstr "Results per page"
+#: staff.displaying.of
+msgctxt "staff.displaying.of"
+msgid "of"
+msgstr "of"
+
#: staff.displaying.results
msgid "Displaying results"
msgstr "Displaying results"
#: staff.fieldmapper_label
-msgid "FIELDMAPPER"
-msgstr "FIELDMAPPER"
+#, fuzzy
+msgid "Fieldmapper"
+msgstr "Field&mapper"
#: staff.filter_console_label
-msgid "FCONSOLE"
-msgstr "FCONSOLE"
+msgid "Filter Console"
+msgstr ""
+
+#: staff.hold_capture.auto_print.label
+#: staff.hold_capture.auto_print.accesskey
+#, fuzzy
+msgctxt "staff.hold_capture.auto_print.label staff.hold_capture.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr "Auto-Print"
+
+#: staff.hold_capture.done.label
+#: staff.hold_capture.done.accesskey
+#, fuzzy
+msgctxt "staff.hold_capture.done.label staff.hold_capture.done.accesskey"
+msgid "&Done"
+msgstr "Done"
-#: staff.hold_capture.print_receipt_label.accesskey
+#: staff.hold_capture.print_receipt.label
+msgctxt "staff.hold_capture.print_receipt.label"
+msgid "Print List"
+msgstr "Print List"
+
+#: staff.hold_capture.print_receipt.accesskey
+msgctxt "staff.hold_capture.print_receipt.accesskey"
msgid ""
-"_: staff.hold_capture.print_receipt_label.accesskey\n"
msgstr ""
+#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.hold_capture.reprint_receipt_label"
+msgid "Re-Print Last List"
+msgstr "Re-Print Last List"
+
+#: staff.hold_capture.reprint_receipt_label.accesskey
+msgctxt "staff.hold_capture.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr "L"
+
#: staff.hold_capture_interface_label
-msgid "HOLD CAPTURE"
-msgstr "HOLD CAPTURE"
+msgid "Hold capture"
+msgstr ""
+
+#: staff.hold_capture_patron.name.label
+msgctxt "staff.hold_capture_patron.name.label"
+msgid "Patron Name"
+msgstr "Patron Name"
+
+#: staff.hold_capture_patron.retrieve
+msgctxt "staff.hold_capture_patron.retrieve"
+msgid "Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.hold_capture_patron.retrieve.accesskey
+msgctxt "staff.hold_capture_patron.retrieve.accesskey"
+msgid "R"
+msgstr "R"
#: staff.holds_status_available
msgid "Available"
msgstr "Available"
#: staff.holds_status_in_transit
+msgctxt "staff.holds_status_in_transit"
msgid "In Transit"
msgstr "In Transit"
msgstr "Waiting for available copy"
#: staff.items_out_interface_label
-msgid "ITEMS OUT"
-msgstr "ITEMS OUT"
+#, fuzzy
+msgid "Items out"
+msgstr "Items Out"
#: staff.javascript_console_label
-msgid "CONSOLE"
-msgstr "CONSOLE"
+msgid "Console"
+msgstr ""
#: staff.javascript_shell_label
-msgid "JS SHELL"
-msgstr "JS SHELL"
+#, fuzzy
+msgid "JavaScript Shell"
+msgstr "Javascript S&hell"
#: staff.main.auth.caption
-msgid "Authentication"
+#, fuzzy
+msgid "Startup and Shutdown"
msgstr "Startup / Shutdown"
-#: staff.main.auth.caption
-msgid "Startup / Shutdown"
+#: staff.main.authentication.caption
+msgid "Authentication"
msgstr "Startup / Shutdown"
#: staff.main.auth.debug.caption
msgstr "Debug Options"
#: staff.main.auth.debug.clear
-#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.auth.debug.clear"
msgid "Clear Cache"
msgstr "Clear Cache"
+#: staff.main.auth.debug.clear.accesskey
+msgctxt "staff.main.auth.debug.clear.accesskey"
+msgid "C"
+msgstr "C"
+
#: staff.main.auth.debug.javascript
-msgid "Javascript Console"
+#, fuzzy
+msgid "JavaScript Console"
msgstr "Javascript Console"
#: staff.main.auth.debug.javascript.accesskey
msgstr "Hostname"
#: staff.main.auth.hostname.accesskey
-#: staff.main.menu.circ.hold_capture.key
-#: staff.main.menu.circ.place_hold.key
-#: staff.main.menu.help.key
-#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.main.auth.hostname.accesskey"
msgid "H"
msgstr "H"
msgid "Standalone Interface"
msgstr "Standalone Interface"
+#: staff.main.auth.offline.interface.accesskey
+msgctxt "staff.main.auth.offline.interface.accesskey"
+msgid "S"
+msgstr "S"
+
#: staff.main.auth.retest
msgid "Re-Test Server"
msgstr "Re-Test Server"
+#: staff.main.auth.retest.accesskey
+msgctxt "staff.main.auth.retest.accesskey"
+msgid "R"
+msgstr "R"
+
#: staff.main.auth.server
msgid "Server"
msgstr "Server"
+#: staff.main.auth.status
+msgctxt "staff.main.auth.status"
+msgid "Status"
+msgstr "Status"
+
#: staff.main.auth.version
msgid "Version"
msgstr "Version"
msgstr "Acquisitions"
#: staff.main.menu.admin.accesskey
-#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.accesskey"
msgid "-"
msgstr "-"
msgstr "Operator Change: New"
#: staff.main.menu.admin.clear_cache.accesskey
-#: staff.marc.008.SER.cont.field_size
-#: staff.marc.008.ctry.field_size
-#: staff.marc.008.lang.field_size
+msgctxt "staff.main.menu.admin.clear_cache.accesskey"
msgid "3"
msgstr "3"
+#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.menu.admin.clear_cache.label"
+msgid "Clear Cache"
+msgstr "Clear Cache"
+
#: staff.main.menu.admin.cmd_console.label
#: staff.main.menu.admin.cmd_console.accesskey
-msgid "&Javascript Console"
+#, fuzzy
+msgid "&JavaScript Console"
msgstr "&Javascript Console"
#: staff.main.menu.admin.cmd_shell.label
#: staff.main.menu.admin.cmd_shell.accesskey
-msgid "Javascript S&hell"
+#, fuzzy
+msgid "JavaScript S&hell"
msgstr "Javascript S&hell"
#: staff.main.menu.admin.cmd_test.label
msgid "Copy &Location Editor"
msgstr "Copy &Location Editor"
+#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.developer.accesskey"
+msgid "-"
+msgstr "-"
+
#: staff.main.menu.admin.developer.label
msgid "For developers..."
msgstr "For developers..."
msgid "Catalo&ging"
msgstr "Catalo&ging"
+#: staff.main.menu.cat.add_bib.key
+msgctxt "staff.main.menu.cat.add_bib.key"
+msgid "B"
+msgstr "B"
+
#: staff.main.menu.cat.add_bib.label
msgid "Add Bib Record"
msgstr "Add Bib Record"
#: staff.main.menu.cat.add_copy.key
-#: staff.main.menu.cat.copy_status.key
-#: staff.main.menu.circ.copy_status.key
-#: staff.patron_navbar.items.accesskey
+msgctxt "staff.main.menu.cat.add_copy.key"
msgid "I"
msgstr "I"
msgid "Add Item"
msgstr "Add Item"
+#: staff.main.menu.cat.add_volume.key
+msgctxt "staff.main.menu.cat.add_volume.key"
+msgid "V"
+msgstr "V"
+
#: staff.main.menu.cat.add_volume.label
msgid "Add Volume"
msgstr "Add Volume"
+#: staff.main.menu.cat.bib_search.key
+msgctxt "staff.main.menu.cat.bib_search.key"
+msgid "S"
+msgstr "S"
+
#: staff.main.menu.cat.bib_search.label
msgid "Search the Catalog"
msgstr "Search the Catalog"
+#: staff.main.menu.cat.bib_status.key
+msgctxt "staff.main.menu.cat.bib_status.key"
+msgid "B"
+msgstr "B"
+
#: staff.main.menu.cat.bib_status.label
msgid "Display Bib Record"
msgstr "Display Bib Record"
+#: staff.main.menu.cat.copy_status.accesskey
+msgctxt "staff.main.menu.cat.copy_status.accesskey"
+msgid "B"
+msgstr "B"
+
+#: staff.main.menu.cat.copy_status.key
+msgctxt "staff.main.menu.cat.copy_status.key"
+msgid "I"
+msgstr "I"
+
#: staff.main.menu.cat.copy_status.label
-#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.cat.copy_status.label"
msgid "Display Item"
msgstr "Display Item"
msgid "Create &New Marc Record"
msgstr "Create &New Marc Record"
+#: staff.main.menu.cat.dedup.key
+msgctxt "staff.main.menu.cat.dedup.key"
+msgid "M"
+msgstr "M"
+
#: staff.main.menu.cat.dedup.label
-msgid "Merge/Transfer Interface"
+#, fuzzy
+msgid "Merge and Transfer Interface"
msgstr "Merge/Transfer Interface"
#: staff.main.menu.cat.edit_copy_buckets.label
msgid "Manage &User Buckets"
msgstr "Manage &User Buckets"
+#: staff.main.menu.cat.key
+msgctxt "staff.main.menu.cat.key"
+msgid "a"
+msgstr "a"
+
#: staff.main.menu.cat.retrieve_last_record.label
#: staff.main.menu.cat.retrieve_last_record.accesskey
msgid "Retrieve &Last Record"
msgid "Retrieve record by &TCN"
msgstr "Retrieve record by &TCN"
+#: staff.main.menu.cat.search_bib_id.label
+#: staff.main.menu.cat.search_bib_id.accesskey
+msgid "Retrieve record by Record I&D"
+msgstr ""
+
+#: staff.main.menu.cat.volume_status.key
+msgctxt "staff.main.menu.cat.volume_status.key"
+msgid "V"
+msgstr "V"
+
#: staff.main.menu.cat.volume_status.label
msgid "Display Volume"
msgstr "Display Volume"
msgid "Retrieve Patron by Barcode"
msgstr "Retrieve Patron by Barcode"
+#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
+msgctxt "staff.main.menu.circ.barcode.retrieve_patron.accesskey"
+msgid "P"
+msgstr "P"
+
#: staff.main.menu.circ.barcode.show_item
msgid "Show Item Status by Barcode"
msgstr "Show Item Status by Barcode"
+#: staff.main.menu.circ.barcode.show_item.accesskey
+msgctxt "staff.main.menu.circ.barcode.show_item.accesskey"
+msgid "B"
+msgstr "B"
+
+#: staff.main.menu.circ.checkin.key
+msgctxt "staff.main.menu.circ.checkin.key"
+msgid "C"
+msgstr "C"
+
#: staff.main.menu.circ.checkin.label
msgid "Check In Items"
msgstr "Check In Items"
+#: staff.main.menu.circ.checkout.key
+msgctxt "staff.main.menu.circ.checkout.key"
+msgid "O"
+msgstr "O"
+
#: staff.main.menu.circ.checkout.label
msgid "Check Out Items"
msgstr "Check Out Items"
+#: staff.main.menu.circ.claimed_returned.key
+msgctxt "staff.main.menu.circ.claimed_returned.key"
+msgid "C"
+msgstr "C"
+
#: staff.main.menu.circ.claimed_returned.label
msgid "Mark as \"Claimed Returned\""
msgstr "Mark as \"Claimed Returned\""
+#: staff.main.menu.circ.copy_status.key
+msgctxt "staff.main.menu.circ.copy_status.key"
+msgid "I"
+msgstr "I"
+
+#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.circ.copy_status.label"
+msgid "Display Item"
+msgstr "Display Item"
+
+#: staff.main.menu.circ.found.key
+msgctxt "staff.main.menu.circ.found.key"
+msgid "F"
+msgstr "F"
+
#: staff.main.menu.circ.found.label
msgid "Mark Found"
msgstr "Mark Found"
msgid "&Browse Holds Shelf"
msgstr "&Browse Holds Shelf"
+#: staff.main.menu.circ.hold_capture.key
+msgctxt "staff.main.menu.circ.hold_capture.key"
+msgid "H"
+msgstr "H"
+
#: staff.main.menu.circ.hold_capture.label
msgid "Capture Holds"
msgstr "Capture Holds"
msgid "Record &In-House Use"
msgstr "Record &In-House Use"
+#: staff.main.menu.circ.key
+msgctxt "staff.main.menu.circ.key"
+msgid "C"
+msgstr "C"
+
#: staff.main.menu.circ.label
+msgctxt "staff.main.menu.circ.label"
msgid "Circulation"
msgstr "Circulation"
+#: staff.main.menu.circ.lost.key
+msgctxt "staff.main.menu.circ.lost.key"
+msgid "L"
+msgstr "L"
+
#: staff.main.menu.circ.lost.label
+msgctxt "staff.main.menu.circ.lost.label"
msgid "Mark Lost"
msgstr "Mark Lost"
#: staff.main.menu.circ.mark_used.key
-#: staff.main.menu.edit.buckets.users.accesskey
-#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.circ.mark_used.key"
msgid "U"
msgstr "U"
msgid "Mark Used"
msgstr "Mark Used"
+#: staff.main.menu.circ.missing.key
+msgctxt "staff.main.menu.circ.missing.key"
+msgid "M"
+msgstr "M"
+
#: staff.main.menu.circ.missing.label
msgid "Mark Missing"
msgstr "Mark Missing"
msgid "Enter O&ffline Interface"
msgstr "Enter O&ffline Interface"
+#: staff.main.menu.circ.patron_registration.key
+msgctxt "staff.main.menu.circ.patron_registration.key"
+msgid "R"
+msgstr "R"
+
#: staff.main.menu.circ.patron_registration.label
msgid "Register Patron"
msgstr "Register Patron"
#: staff.main.menu.circ.patron_retrieve.label
#: staff.main.menu.circ.patron_retrieve.accesskey
+msgctxt "staff.main.menu.circ.patron_retrieve.label staff.main.menu.circ.patron_retrieve.accesskey"
msgid "Retrieve &Last Patron"
msgstr "Retrieve &Last Patron"
+#: staff.main.menu.circ.patron_status.key
+msgctxt "staff.main.menu.circ.patron_status.key"
+msgid "P"
+msgstr "P"
+
#: staff.main.menu.circ.patron_status.label
msgid "Display Patron"
msgstr "Display Patron"
msgid "Place &Hold"
msgstr "Place &Hold"
+#: staff.main.menu.circ.place_hold.key
+msgctxt "staff.main.menu.circ.place_hold.key"
+msgid "H"
+msgstr "H"
+
#: staff.main.menu.circ.quick_add.key
-#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.circ.quick_add.key"
msgid "Q"
msgstr "Q"
msgid "n"
msgstr "n"
+#: staff.main.menu.circ.renew.label
+msgctxt "staff.main.menu.circ.renew.label"
+msgid "Renew"
+msgstr "Renew"
+
#: staff.main.menu.circ.reprint.label
#: staff.main.menu.circ.reprint.accesskey
msgid "Re-Print &Last"
msgstr "Re-Print &Last"
-#: staff.main.menu.circ.special.label
+#: staff.main.menu.circ.special.key
+msgctxt "staff.main.menu.circ.special.key"
+msgid "S"
+msgstr "S"
+
+#: staff.main.menu.circ.special.label
msgid "Special Circulation"
msgstr "Special Circulation"
#: staff.main.menu.edit.buckets.copies
+msgctxt "staff.main.menu.edit.buckets.copies"
msgid "Copy Buckets"
msgstr "Copy Buckets"
+#: staff.main.menu.edit.buckets.copies.accesskey
+msgctxt "staff.main.menu.edit.buckets.copies.accesskey"
+msgid "B"
+msgstr "B"
+
+#: staff.main.menu.edit.buckets.key
+msgctxt "staff.main.menu.edit.buckets.key"
+msgid "B"
+msgstr "B"
+
#: staff.main.menu.edit.buckets.label
msgid "Manage Buckets"
msgstr "Manage Buckets"
#: staff.main.menu.edit.buckets.records
+msgctxt "staff.main.menu.edit.buckets.records"
msgid "Record Buckets"
msgstr "Record Buckets"
+#: staff.main.menu.edit.buckets.records.accesskey
+msgctxt "staff.main.menu.edit.buckets.records.accesskey"
+msgid "R"
+msgstr "R"
+
#: staff.main.menu.edit.buckets.volumes
msgid "Volume Buckets"
msgstr "Volume Buckets"
+#: staff.main.menu.edit.buckets.volumes.accesskey
+msgctxt "staff.main.menu.edit.buckets.volumes.accesskey"
+msgid "V"
+msgstr "V"
+
#: staff.main.menu.edit.buckets.users
msgid "User Buckets"
msgstr "User Buckets"
+#: staff.main.menu.edit.buckets.users.accesskey
+msgctxt "staff.main.menu.edit.buckets.users.accesskey"
+msgid "U"
+msgstr "U"
+
+#: staff.main.menu.edit.copy.key
+msgctxt "staff.main.menu.edit.copy.key"
+msgid "C"
+msgstr "C"
+
#: staff.main.menu.edit.copy.label
+msgctxt "staff.main.menu.edit.copy.label"
msgid "Copy"
msgstr "Copy"
#: staff.main.menu.edit.cut.key
+msgctxt "staff.main.menu.edit.cut.key"
msgid "t"
msgstr "t"
msgid "Cut"
msgstr "Cut"
+#: staff.main.menu.edit.delete.key
+msgctxt "staff.main.menu.edit.delete.key"
+msgid "D"
+msgstr "D"
+
#: staff.main.menu.edit.delete.label
+msgctxt "staff.main.menu.edit.delete.label"
msgid "Delete"
msgstr "Delete"
+#: staff.main.menu.edit.find.key
+msgctxt "staff.main.menu.edit.find.key"
+msgid "F"
+msgstr "F"
+
#: staff.main.menu.edit.find.label
msgid "Find"
msgstr "Find"
msgid "Find Again"
msgstr "Find Again"
+#: staff.main.menu.edit.key
+msgctxt "staff.main.menu.edit.key"
+msgid "E"
+msgstr "E"
+
#: staff.main.menu.edit.label
-#: staff.patron_navbar.edit
+msgctxt "staff.main.menu.edit.label"
msgid "Edit"
msgstr "Edit"
+#: staff.main.menu.edit.paste.key
+msgctxt "staff.main.menu.edit.paste.key"
+msgid "P"
+msgstr "P"
+
#: staff.main.menu.edit.paste.label
msgid "Paste"
msgstr "Paste"
+#: staff.main.menu.edit.redo.key
+msgctxt "staff.main.menu.edit.redo.key"
+msgid "R"
+msgstr "R"
+
#: staff.main.menu.edit.redo.label
msgid "Redo"
msgstr "Redo"
+#: staff.main.menu.edit.select_all.key
+msgctxt "staff.main.menu.edit.select_all.key"
+msgid "A"
+msgstr "A"
+
#: staff.main.menu.edit.select_all.label
msgid "Select All"
msgstr "Select All"
+#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.edit.undo.key"
+msgid "U"
+msgstr "U"
+
#: staff.main.menu.edit.undo.label
msgid "Undo"
msgstr "Undo"
#: staff.main.menu.entity.bib.key
+msgctxt "staff.main.menu.entity.bib.key"
msgid ""
-"_: staff.main.menu.entity.bib.key\n"
msgstr ""
#: staff.main.menu.entity.bib.label
msgstr "Bib Records"
#: staff.main.menu.entity.copy.key
+msgctxt "staff.main.menu.entity.copy.key"
msgid ""
-"_: staff.main.menu.entity.copy.key\n"
msgstr ""
#: staff.main.menu.entity.copy.label
msgstr "Items"
#: staff.main.menu.entity.patron.key
+msgctxt "staff.main.menu.entity.patron.key"
msgid ""
-"_: staff.main.menu.entity.patron.key\n"
msgstr ""
#: staff.main.menu.entity.patron.label
msgid "Patrons"
msgstr "Patrons"
+#: staff.main.menu.entity.patron.register.key
+msgctxt "staff.main.menu.entity.patron.register.key"
+msgid "R"
+msgstr "R"
+
#: staff.main.menu.entity.volume.key
+msgctxt "staff.main.menu.entity.volume.key"
msgid ""
-"_: staff.main.menu.entity.volume.key\n"
msgstr ""
#: staff.main.menu.entity.volume.label
msgid "Close &Window"
msgstr "Close &Window"
+#: staff.main.menu.file.close.key
+msgctxt "staff.main.menu.file.close.key"
+msgid "C"
+msgstr "C"
+
#: staff.main.menu.file.close_tab.label
#: staff.main.menu.file.close_tab.accesskey
msgid "&Close Tab"
msgstr "&Close Tab"
#: staff.main.menu.file.close_tab.key
+msgctxt "staff.main.menu.file.close_tab.key"
msgid ""
-"_: staff.main.menu.file.close_tab.key\n"
msgstr ""
+#: staff.main.menu.file.key
+msgctxt "staff.main.menu.file.key"
+msgid "F"
+msgstr "F"
+
#: staff.main.menu.file.label
msgid "File"
msgstr "File"
+#: staff.main.menu.file.new.key
+msgctxt "staff.main.menu.file.new.key"
+msgid "N"
+msgstr "N"
+
#: staff.main.menu.file.new.label
msgid "New Window"
msgstr "New Window"
+#: staff.main.menu.file.new_tab.key
+msgctxt "staff.main.menu.file.new_tab.key"
+msgid "T"
+msgstr "T"
+
#: staff.main.menu.file.new_tab.label
msgid "New Tab"
msgstr "New Tab"
+#: staff.main.menu.file.open.key
+msgctxt "staff.main.menu.file.open.key"
+msgid "O"
+msgstr "O"
+
#: staff.main.menu.file.open.label
msgid "Open Session"
msgstr "Open Session"
+#: staff.main.menu.file.save.key
+msgctxt "staff.main.menu.file.save.key"
+msgid "S"
+msgstr "S"
+
#: staff.main.menu.file.save.label
msgid "Save Session"
msgstr "Save Session"
+#: staff.main.menu.help.key
+msgctxt "staff.main.menu.help.key"
+msgid "H"
+msgstr "H"
+
#: staff.main.menu.help.label
+msgctxt "staff.main.menu.help.label"
msgid "Help"
msgstr "Help"
msgid "Quit Program"
msgstr "Quit Program"
+#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.quit.accesskey"
+msgid "Q"
+msgstr "Q"
+
#: staff.main.menu.replace_barcode.label
+msgctxt "staff.main.menu.replace_barcode.label"
msgid "Replace Barcode"
msgstr "Replace Barcode"
#: staff.main.menu.reports.key
+msgctxt "staff.main.menu.reports.key"
msgid ""
-"_: staff.main.menu.reports.key\n"
msgstr ""
#: staff.main.menu.reports.label
+msgctxt "staff.main.menu.reports.label"
msgid "Reports"
msgstr "Reports"
#: staff.main.menu.search.catalog.label
#: staff.main.menu.search.catalog.accesskey
-msgid "the &Catalog"
-msgstr "the &Catalog"
+#, fuzzy
+msgid "Search the &Catalog"
+msgstr "Search the Catalog"
#: staff.main.menu.search.copies.label
#: staff.main.menu.search.copies.accesskey
-msgid "for copies by &Barcode"
+#, fuzzy
+msgid "Search for copies by &Barcode"
msgstr "for copies by &Barcode"
#: staff.main.menu.search.key
msgid "r"
msgstr "r"
+#: staff.main.menu.search.label
+msgctxt "staff.main.menu.search.label"
+msgid "Search"
+msgstr "Search"
+
#: staff.main.menu.search.patrons.label
#: staff.main.menu.search.patrons.accesskey
-msgid "for &Patrons"
-msgstr "for &Patrons"
+#, fuzzy
+msgid "Search for &Patrons"
+msgstr "Search for Patron"
#: staff.main.menu.search.patrons_barcode.label
#: staff.main.menu.search.patrons_barcode.accesskey
-msgid "for patro&n by Barcode"
+#, fuzzy
+msgid "Search for patro&n by Barcode"
msgstr "for patro&n by Barcode"
#: staff.main.menu.search.record.label
#: staff.main.menu.search.record.accesskey
-msgid "for record by &TCN"
-msgstr "for record by &TCN"
+msgid "Search for record by &TCN"
+msgstr ""
+
+#: staff.main.menu.search.record_via_id.label
+#: staff.main.menu.search.record_via_id.accesskey
+msgid "Search for record by Record I&D"
+msgstr ""
#: staff.main.menu.serials.key
msgid "l"
msgstr "l"
#: staff.main.menu.serials.label
-#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.main.menu.serials.label"
msgid "Serials"
msgstr "Serials"
msgid "Close All Tabs"
msgstr "Close All Tabs"
+#: staff.main.menu.tabs.close.accesskey
+msgctxt "staff.main.menu.tabs.close.accesskey"
+msgid "A"
+msgstr "A"
+
#: staff.main.menu.title
msgid "Evergreen Staff Client"
msgstr "Evergreen Staff Client"
msgstr "Index"
#: staff.marc.008.BKS.MAP.indx.field
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
-#: staff.marc.008.BKS.SER.conf.field
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
-#: staff.marc.008.BKS.biog.field
-#: staff.marc.008.BKS.cont.field
-#: staff.marc.008.BKS.fest.field
-#: staff.marc.008.BKS.ills.field
-#: staff.marc.008.BKS.litf.field
-#: staff.marc.008.MAP.VIS.form.field
-#: staff.marc.008.SER.alph.field
-#: staff.marc.008.SER.cont.field
-#: staff.marc.008.SER.entw.field
-#: staff.marc.008.SER.freq.field
-#: staff.marc.008.SER.issn.field
-#: staff.marc.008.SER.orig.field
-#: staff.marc.008.SER.regl.field
-#: staff.marc.008.SER.srtp.field
-#: staff.marc.008.SER.succ.field
-#: staff.marc.008.ctry.field
-#: staff.marc.008.date1.field
-#: staff.marc.008.date2.field
-#: staff.marc.008.dtst.field
-#: staff.marc.008.entered.field
-#: staff.marc.008.lang.field
-#: staff.marc.008.mrec.field
-#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.BKS.MAP.indx.field"
msgid "008"
msgstr "008"
#: staff.marc.008.BKS.MAP.indx.field_end_pos
-#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_end_pos"
msgid "31"
msgstr "31"
#: staff.marc.008.BKS.MAP.indx.field_size
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
-#: staff.marc.008.BKS.SER.conf.field_size
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
-#: staff.marc.008.BKS.biog.field_size
-#: staff.marc.008.BKS.fest.field_size
-#: staff.marc.008.BKS.litf.field_size
-#: staff.marc.008.MAP.VIS.form.field_size
-#: staff.marc.008.SER.alph.field_size
-#: staff.marc.008.SER.entw.field_size
-#: staff.marc.008.SER.freq.field_size
-#: staff.marc.008.SER.issn.field_size
-#: staff.marc.008.SER.orig.field_size
-#: staff.marc.008.SER.regl.field_size
-#: staff.marc.008.SER.srtp.field_size
-#: staff.marc.008.SER.succ.field_size
-#: staff.marc.008.dtst.field_size
-#: staff.marc.008.mrec.field_size
-#: staff.marc.008.srce.field_size
-#: staff.marc.LDR.blvl.field_size
-#: staff.marc.LDR.ctrl.field_size
-#: staff.marc.LDR.desc.field_size
-#: staff.marc.LDR.elvl.field_size
-#: staff.marc.LDR.rec_stat.field_size
-#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.008.BKS.MAP.indx.field_size"
msgid "1"
msgstr "1"
+#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_start_pos"
+msgid "31"
+msgstr "31"
+
#: staff.marc.008.BKS.MAP.indx.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
msgstr "Indx"
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc
-#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc"
msgid "Form of Item"
msgstr "Form of Item"
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos"
+msgid "23"
+msgstr "23"
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos"
msgid "23"
msgstr "23"
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.help
-#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.help"
msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.short
-#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.short"
msgid "Form"
msgstr "Form"
msgid "Government Publication"
msgstr "Government Publication"
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos"
+msgid "28"
+msgstr "28"
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos"
msgid "28"
msgstr "28"
msgid "Conference Publication"
msgstr "Conference Publication"
+#: staff.marc.008.BKS.SER.conf.field
+msgctxt "staff.marc.008.BKS.SER.conf.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.SER.conf.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_end_pos"
+msgid "29"
+msgstr "29"
+
+#: staff.marc.008.BKS.SER.conf.field_size
+msgctxt "staff.marc.008.BKS.SER.conf.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.BKS.SER.conf.field_start_pos
-#: staff.marc.008.MAP.VIS.form.field_end_pos
-#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_start_pos"
msgid "29"
msgstr "29"
msgid "Target Audience"
msgstr "Target Audience"
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos"
+msgid "22"
+msgstr "22"
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos
-#: staff.marc.008.SER.orig.field_end_pos
-#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos"
msgid "22"
msgstr "22"
msgid "Audn"
msgstr "Audn"
+#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.marc.008.BKS.biog.desc"
+msgid "Biography"
+msgstr "Biography"
+
+#: staff.marc.008.BKS.biog.field
+msgctxt "staff.marc.008.BKS.biog.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.biog.field_end_pos
+msgctxt "staff.marc.008.BKS.biog.field_end_pos"
+msgid "34"
+msgstr "34"
+
+#: staff.marc.008.BKS.biog.field_size
+msgctxt "staff.marc.008.BKS.biog.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.BKS.biog.field_start_pos
-#: staff.marc.008.SER.succ.field_end_pos
-#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.BKS.biog.field_start_pos"
msgid "34"
msgstr "34"
msgstr "Biog"
#: staff.marc.008.BKS.cont.desc
-#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.BKS.cont.desc"
msgid "Nature of Contents"
msgstr "Nature of Contents"
+#: staff.marc.008.BKS.cont.field
+msgctxt "staff.marc.008.BKS.cont.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.cont.field_end_pos
-#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.BKS.cont.field_end_pos"
msgid "27"
msgstr "27"
#: staff.marc.008.BKS.cont.field_size
-#: staff.marc.008.BKS.ills.field_size
-#: staff.marc.008.date1.field_size
-#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.BKS.cont.field_size"
msgid "4"
msgstr "4"
#: staff.marc.008.BKS.cont.field_start_pos
-#: staff.marc.008.SER.entw.field_end_pos
-#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.BKS.cont.field_start_pos"
msgid "24"
msgstr "24"
#: staff.marc.008.BKS.cont.help
-#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.BKS.cont.help"
msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
#: staff.marc.008.BKS.cont.short
-#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.BKS.cont.short"
msgid "Cont"
msgstr "Cont"
msgid "Festschrift"
msgstr "Festschrift"
+#: staff.marc.008.BKS.fest.field
+msgctxt "staff.marc.008.BKS.fest.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.fest.field_end_pos
-#: staff.marc.008.BKS.fest.field_start_pos
+msgctxt "staff.marc.008.BKS.fest.field_end_pos"
msgid "30"
msgstr "30"
-#: staff.marc.008.BKS.fest.help
+#: staff.marc.008.BKS.fest.field_size
+msgctxt "staff.marc.008.BKS.fest.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.BKS.fest.field_start_pos
+msgctxt "staff.marc.008.BKS.fest.field_start_pos"
+msgid "30"
+msgstr "30"
+
+#: staff.marc.008.BKS.fest.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/fest.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/fest.shtm"
msgid "Illustrations"
msgstr "Illustrations"
+#: staff.marc.008.BKS.ills.field
+msgctxt "staff.marc.008.BKS.ills.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.ills.field_end_pos
-#: staff.marc.008.SER.srtp.field_end_pos
-#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_end_pos"
msgid "21"
msgstr "21"
+#: staff.marc.008.BKS.ills.field_size
+msgctxt "staff.marc.008.BKS.ills.field_size"
+msgid "4"
+msgstr "4"
+
#: staff.marc.008.BKS.ills.field_start_pos
-#: staff.marc.008.SER.freq.field_end_pos
-#: staff.marc.008.SER.freq.field_start_pos
-#: staff.marc.LDR.desc.field_end_pos
-#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_start_pos"
msgid "18"
msgstr "18"
msgid "Literary Form"
msgstr "Literary Form"
+#: staff.marc.008.BKS.litf.field
+msgctxt "staff.marc.008.BKS.litf.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.BKS.litf.field_end_pos
+msgctxt "staff.marc.008.BKS.litf.field_end_pos"
+msgid "33"
+msgstr "33"
+
+#: staff.marc.008.BKS.litf.field_size
+msgctxt "staff.marc.008.BKS.litf.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.BKS.litf.field_start_pos
-#: staff.marc.008.SER.alph.field_end_pos
-#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.BKS.litf.field_start_pos"
msgid "33"
msgstr "33"
msgid "LitF"
msgstr "LitF"
+#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.MAP.VIS.form.desc"
+msgid "Form of Item"
+msgstr "Form of Item"
+
+#: staff.marc.008.MAP.VIS.form.field
+msgctxt "staff.marc.008.MAP.VIS.form.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.MAP.VIS.form.field_end_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_end_pos"
+msgid "29"
+msgstr "29"
+
+#: staff.marc.008.MAP.VIS.form.field_size
+msgctxt "staff.marc.008.MAP.VIS.form.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_start_pos"
+msgid "29"
+msgstr "29"
+
+#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.MAP.VIS.form.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
+msgstr "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
+
+#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.MAP.VIS.form.short"
+msgid "Form"
+msgstr "Form"
+
#: staff.marc.008.SER.alph.desc
msgid "Original Alphabet or Script of Title"
msgstr "Original Alphabet or Script of Title"
+#: staff.marc.008.SER.alph.field
+msgctxt "staff.marc.008.SER.alph.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.alph.field_end_pos
+msgctxt "staff.marc.008.SER.alph.field_end_pos"
+msgid "33"
+msgstr "33"
+
+#: staff.marc.008.SER.alph.field_size
+msgctxt "staff.marc.008.SER.alph.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.SER.alph.field_start_pos"
+msgid "33"
+msgstr "33"
+
#: staff.marc.008.SER.alph.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
msgid "Alph"
msgstr "Alph"
+#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.SER.cont.desc"
+msgid "Nature of Contents"
+msgstr "Nature of Contents"
+
+#: staff.marc.008.SER.cont.field
+msgctxt "staff.marc.008.SER.cont.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.SER.cont.field_end_pos"
+msgid "27"
+msgstr "27"
+
+#: staff.marc.008.SER.cont.field_size
+msgctxt "staff.marc.008.SER.cont.field_size"
+msgid "3"
+msgstr "3"
+
#: staff.marc.008.SER.cont.field_start_pos
msgid "25"
msgstr "25"
+#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.SER.cont.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+msgstr "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+
+#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.SER.cont.short"
+msgid "Cont"
+msgstr "Cont"
+
#: staff.marc.008.SER.entw.desc
msgid "Nature of Entire Work"
msgstr "Nature of Entire Work"
+#: staff.marc.008.SER.entw.field
+msgctxt "staff.marc.008.SER.entw.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.entw.field_end_pos
+msgctxt "staff.marc.008.SER.entw.field_end_pos"
+msgid "24"
+msgstr "24"
+
+#: staff.marc.008.SER.entw.field_size
+msgctxt "staff.marc.008.SER.entw.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.SER.entw.field_start_pos"
+msgid "24"
+msgstr "24"
+
#: staff.marc.008.SER.entw.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
msgid "Frequency"
msgstr "Frequency"
+#: staff.marc.008.SER.freq.field
+msgctxt "staff.marc.008.SER.freq.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.freq.field_end_pos
+msgctxt "staff.marc.008.SER.freq.field_end_pos"
+msgid "18"
+msgstr "18"
+
+#: staff.marc.008.SER.freq.field_size
+msgctxt "staff.marc.008.SER.freq.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.SER.freq.field_start_pos
+msgctxt "staff.marc.008.SER.freq.field_start_pos"
+msgid "18"
+msgstr "18"
+
#: staff.marc.008.SER.freq.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
msgid "ISSN Center"
msgstr "ISSN Center"
+#: staff.marc.008.SER.issn.field
+msgctxt "staff.marc.008.SER.issn.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.SER.issn.field_end_pos
+msgctxt "staff.marc.008.SER.issn.field_end_pos"
+msgid "20"
+msgstr "20"
+
+#: staff.marc.008.SER.issn.field_size
+msgctxt "staff.marc.008.SER.issn.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.SER.issn.field_start_pos
+msgctxt "staff.marc.008.SER.issn.field_start_pos"
msgid "20"
msgstr "20"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/issn.shtm"
#: staff.marc.008.SER.issn.short
-#: staff.record_list.issn
-#: staff.z39_50.search_class.issn
+msgctxt "staff.marc.008.SER.issn.short"
msgid "ISSN"
msgstr "ISSN"
msgid "Form of Original Item"
msgstr "Form of Original Item"
+#: staff.marc.008.SER.orig.field
+msgctxt "staff.marc.008.SER.orig.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.orig.field_end_pos
+msgctxt "staff.marc.008.SER.orig.field_end_pos"
+msgid "22"
+msgstr "22"
+
+#: staff.marc.008.SER.orig.field_size
+msgctxt "staff.marc.008.SER.orig.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.SER.orig.field_start_pos"
+msgid "22"
+msgstr "22"
+
#: staff.marc.008.SER.orig.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
msgid "Regularity"
msgstr "Regularity"
+#: staff.marc.008.SER.regl.field
+msgctxt "staff.marc.008.SER.regl.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.SER.regl.field_end_pos
+msgctxt "staff.marc.008.SER.regl.field_end_pos"
+msgid "19"
+msgstr "19"
+
+#: staff.marc.008.SER.regl.field_size
+msgctxt "staff.marc.008.SER.regl.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.SER.regl.field_start_pos
+msgctxt "staff.marc.008.SER.regl.field_start_pos"
msgid "19"
msgstr "19"
msgid "Type of Continuing Resource"
msgstr "Type of Continuing Resource"
+#: staff.marc.008.SER.srtp.field
+msgctxt "staff.marc.008.SER.srtp.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.srtp.field_end_pos
+msgctxt "staff.marc.008.SER.srtp.field_end_pos"
+msgid "21"
+msgstr "21"
+
+#: staff.marc.008.SER.srtp.field_size
+msgctxt "staff.marc.008.SER.srtp.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.SER.srtp.field_start_pos"
+msgid "21"
+msgstr "21"
+
#: staff.marc.008.SER.srtp.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
msgid "Entry Convention"
msgstr "Entry Convention"
+#: staff.marc.008.SER.succ.field
+msgctxt "staff.marc.008.SER.succ.field"
+msgid "008"
+msgstr "008"
+
+#: staff.marc.008.SER.succ.field_end_pos
+msgctxt "staff.marc.008.SER.succ.field_end_pos"
+msgid "34"
+msgstr "34"
+
+#: staff.marc.008.SER.succ.field_size
+msgctxt "staff.marc.008.SER.succ.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.SER.succ.field_start_pos"
+msgid "34"
+msgstr "34"
+
#: staff.marc.008.SER.succ.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
msgid "Country of Publication, etc."
msgstr "Country of Publication, etc."
+#: staff.marc.008.ctry.field
+msgctxt "staff.marc.008.ctry.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.ctry.field_end_pos
-#: staff.marc.LDR.elvl.field_end_pos
-#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.008.ctry.field_end_pos"
msgid "17"
msgstr "17"
+#: staff.marc.008.ctry.field_size
+msgctxt "staff.marc.008.ctry.field_size"
+msgid "3"
+msgstr "3"
+
#: staff.marc.008.ctry.field_start_pos
msgid "15"
msgstr "15"
msgstr "Ctry"
#: staff.marc.008.date1.desc
-#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.desc"
msgid "Date 1"
msgstr "Date 1"
+#: staff.marc.008.date1.field
+msgctxt "staff.marc.008.date1.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.date1.field_end_pos
msgid "10"
msgstr "10"
+#: staff.marc.008.date1.field_size
+msgctxt "staff.marc.008.date1.field_size"
+msgid "4"
+msgstr "4"
+
#: staff.marc.008.date1.field_start_pos
-#: staff.marc.LDR.blvl.field_end_pos
-#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.008.date1.field_start_pos"
msgid "7"
msgstr "7"
+#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.short"
+msgid "Date 1"
+msgstr "Date 1"
+
#: staff.marc.008.date2.desc
-#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.desc"
msgid "Date 2"
msgstr "Date 2"
+#: staff.marc.008.date2.field
+msgctxt "staff.marc.008.date2.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.date2.field_end_pos
msgid "14"
msgstr "14"
+#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.date2.field_size"
+msgid "4"
+msgstr "4"
+
#: staff.marc.008.date2.field_start_pos
msgid "11"
msgstr "11"
+#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.short"
+msgid "Date 2"
+msgstr "Date 2"
+
#: staff.marc.008.dates
msgid "Dates"
msgstr "Dates"
msgid "Type of Date/Publication Status"
msgstr "Type of Date/Publication Status"
+#: staff.marc.008.dtst.field
+msgctxt "staff.marc.008.dtst.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.dtst.field_end_pos
-#: staff.marc.008.dtst.field_start_pos
-#: staff.marc.008.entered.field_size
-#: staff.marc.LDR.type.field_end_pos
-#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.008.dtst.field_end_pos"
msgid "6"
msgstr "6"
-#: staff.marc.008.dtst.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/dtst.shtm"
+#: staff.marc.008.dtst.field_size
+msgctxt "staff.marc.008.dtst.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.008.dtst.field_start_pos
+msgctxt "staff.marc.008.dtst.field_start_pos"
+msgid "6"
+msgstr "6"
+
+#: staff.marc.008.dtst.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/dtst.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/dtst.shtm"
#: staff.marc.008.dtst.short
msgid "Date Entered"
msgstr "Date Entered"
+#: staff.marc.008.entered.field
+msgctxt "staff.marc.008.entered.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.entered.field_end_pos
-#: staff.marc.LDR.rec_stat.field_end_pos
-#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.008.entered.field_end_pos"
msgid "5"
msgstr "5"
+#: staff.marc.008.entered.field_size
+msgctxt "staff.marc.008.entered.field_size"
+msgid "6"
+msgstr "6"
+
#: staff.marc.008.entered.field_start_pos
msgid "0"
msgstr "0"
msgid "Language Code"
msgstr "Language Code"
+#: staff.marc.008.lang.field
+msgctxt "staff.marc.008.lang.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.lang.field_end_pos
msgid "37"
msgstr "37"
+#: staff.marc.008.lang.field_size
+msgctxt "staff.marc.008.lang.field_size"
+msgid "3"
+msgstr "3"
+
#: staff.marc.008.lang.field_start_pos
msgid "35"
msgstr "35"
msgid "Modified Record"
msgstr "Modified Record"
+#: staff.marc.008.mrec.field
+msgctxt "staff.marc.008.mrec.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.mrec.field_end_pos
+msgctxt "staff.marc.008.mrec.field_end_pos"
+msgid "38"
+msgstr "38"
+
+#: staff.marc.008.mrec.field_size
+msgctxt "staff.marc.008.mrec.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.mrec.field_start_pos
+msgctxt "staff.marc.008.mrec.field_start_pos"
msgid "38"
msgstr "38"
msgid "Cataloging Source"
msgstr "Cataloging Source"
+#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.srce.field"
+msgid "008"
+msgstr "008"
+
#: staff.marc.008.srce.field_end_pos
+msgctxt "staff.marc.008.srce.field_end_pos"
+msgid "39"
+msgstr "39"
+
+#: staff.marc.008.srce.field_size
+msgctxt "staff.marc.008.srce.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.008.srce.field_start_pos
+msgctxt "staff.marc.008.srce.field_start_pos"
msgid "39"
msgstr "39"
msgstr "Bibliographic Level"
#: staff.marc.LDR.blvl.field
-#: staff.marc.LDR.ctrl.field
-#: staff.marc.LDR.desc.field
-#: staff.marc.LDR.elvl.field
-#: staff.marc.LDR.rec_stat.field
-#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.blvl.field"
msgid "LDR"
msgstr "LDR"
+#: staff.marc.LDR.blvl.field_end_pos
+msgctxt "staff.marc.LDR.blvl.field_end_pos"
+msgid "7"
+msgstr "7"
+
+#: staff.marc.LDR.blvl.field_size
+msgctxt "staff.marc.LDR.blvl.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.LDR.blvl.field_start_pos"
+msgid "7"
+msgstr "7"
+
#: staff.marc.LDR.blvl.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
msgid "Type of Control"
msgstr "Type of Control"
+#: staff.marc.LDR.ctrl.field
+msgctxt "staff.marc.LDR.ctrl.field"
+msgid "LDR"
+msgstr "LDR"
+
#: staff.marc.LDR.ctrl.field_end_pos
+msgctxt "staff.marc.LDR.ctrl.field_end_pos"
+msgid "8"
+msgstr "8"
+
+#: staff.marc.LDR.ctrl.field_size
+msgctxt "staff.marc.LDR.ctrl.field_size"
+msgid "1"
+msgstr "1"
+
#: staff.marc.LDR.ctrl.field_start_pos
+msgctxt "staff.marc.LDR.ctrl.field_start_pos"
msgid "8"
msgstr "8"
msgid "Descriptive Cataloging Form"
msgstr "Descriptive Cataloging Form"
+#: staff.marc.LDR.desc.field
+msgctxt "staff.marc.LDR.desc.field"
+msgid "LDR"
+msgstr "LDR"
+
+#: staff.marc.LDR.desc.field_end_pos
+msgctxt "staff.marc.LDR.desc.field_end_pos"
+msgid "18"
+msgstr "18"
+
+#: staff.marc.LDR.desc.field_size
+msgctxt "staff.marc.LDR.desc.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.LDR.desc.field_start_pos"
+msgid "18"
+msgstr "18"
+
#: staff.marc.LDR.desc.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
msgid "Encoding Level"
msgstr "Encoding Level"
+#: staff.marc.LDR.elvl.field
+msgctxt "staff.marc.LDR.elvl.field"
+msgid "LDR"
+msgstr "LDR"
+
+#: staff.marc.LDR.elvl.field_end_pos
+msgctxt "staff.marc.LDR.elvl.field_end_pos"
+msgid "17"
+msgstr "17"
+
+#: staff.marc.LDR.elvl.field_size
+msgctxt "staff.marc.LDR.elvl.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.LDR.elvl.field_start_pos"
+msgid "17"
+msgstr "17"
+
#: staff.marc.LDR.elvl.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
msgid "Record Status"
msgstr "Record Status"
+#: staff.marc.LDR.rec_stat.field
+msgctxt "staff.marc.LDR.rec_stat.field"
+msgid "LDR"
+msgstr "LDR"
+
+#: staff.marc.LDR.rec_stat.field_end_pos
+msgctxt "staff.marc.LDR.rec_stat.field_end_pos"
+msgid "5"
+msgstr "5"
+
+#: staff.marc.LDR.rec_stat.field_size
+msgctxt "staff.marc.LDR.rec_stat.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.LDR.rec_stat.field_start_pos"
+msgid "5"
+msgstr "5"
+
#: staff.marc.LDR.rec_stat.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
msgid "Type of Record"
msgstr "Type of Record"
+#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.type.field"
+msgid "LDR"
+msgstr "LDR"
+
+#: staff.marc.LDR.type.field_end_pos
+msgctxt "staff.marc.LDR.type.field_end_pos"
+msgid "6"
+msgstr "6"
+
+#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.LDR.type.field_size"
+msgid "1"
+msgstr "1"
+
+#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.LDR.type.field_start_pos"
+msgid "6"
+msgstr "6"
+
#: staff.marc.LDR.type.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
msgstr "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
+#: staff.marc.LDR.type.short
+msgctxt "staff.marc.LDR.type.short"
+msgid "Type"
+msgstr "Type"
+
#: staff.marc.close.editor.key
msgid "W"
msgstr "W"
+#: staff.marc.display
+msgctxt "staff.marc.display"
+msgid "Display"
+msgstr "Display"
+
#: staff.marc.display.control_fields
-msgid "Toggle Control/Data Fields"
+#, fuzzy
+msgid "Toggle Control and Data Fields"
msgstr "Toggle Control/Data Fields"
+#: staff.marc.display.control_fields.key
+msgctxt "staff.marc.display.control_fields.key"
+msgid "F"
+msgstr "F"
+
#: staff.marc.display.cover_art
msgid "Toggle Cover Art"
msgstr "Toggle Cover Art"
+#: staff.marc.display.cover_art.key
+msgctxt "staff.marc.display.cover_art.key"
+msgid "A"
+msgstr "A"
+
#: staff.marc.display.explain
msgid "Explain Errors"
msgstr "Explain Errors"
msgid "Fixed Fields as BKS"
msgstr "Fixed Fields as BKS"
+#: staff.marc.display.fixed.BKS.key
+msgctxt "staff.marc.display.fixed.BKS.key"
+msgid "B"
+msgstr "B"
+
#: staff.marc.display.fixed.COM
msgid "Fixed Fields as COM"
msgstr "Fixed Fields as COM"
+#: staff.marc.display.fixed.COM.key
+msgctxt "staff.marc.display.fixed.COM.key"
+msgid "O"
+msgstr "O"
+
#: staff.marc.display.fixed.MAP
msgid "Fixed Fields as MAP"
msgstr "Fixed Fields as MAP"
+#: staff.marc.display.fixed.MAP.key
+msgctxt "staff.marc.display.fixed.MAP.key"
+msgid "P"
+msgstr "P"
+
#: staff.marc.display.fixed.MIX
msgid "Fixed Fields as MIX"
msgstr "Fixed Fields as MIX"
+#: staff.marc.display.fixed.MIX.key
+msgctxt "staff.marc.display.fixed.MIX.key"
+msgid "M"
+msgstr "M"
+
#: staff.marc.display.fixed.REC
msgid "Fixed Fields as REC"
msgstr "Fixed Fields as REC"
+#: staff.marc.display.fixed.REC.key
+msgctxt "staff.marc.display.fixed.REC.key"
+msgid "R"
+msgstr "R"
+
#: staff.marc.display.fixed.SCO
msgid "Fixed Fields as SCO"
msgstr "Fixed Fields as SCO"
+#: staff.marc.display.fixed.SCO.key
+msgctxt "staff.marc.display.fixed.SCO.key"
+msgid "C"
+msgstr "C"
+
#: staff.marc.display.fixed.SER
msgid "Fixed Fields as SER"
msgstr "Fixed Fields as SER"
+#: staff.marc.display.fixed.SER.key
+msgctxt "staff.marc.display.fixed.SER.key"
+msgid "S"
+msgstr "S"
+
#: staff.marc.display.fixed.VIS
msgid "Fixed Fields as VIS"
msgstr "Fixed Fields as VIS"
+#: staff.marc.display.fixed.VIS.key
+msgctxt "staff.marc.display.fixed.VIS.key"
+msgid "V"
+msgstr "V"
+
+#: staff.marc.display.key
+msgctxt "staff.marc.display.key"
+msgid "D"
+msgstr "D"
+
#: staff.marc.display.legend
msgid "Legend"
msgstr "Legend"
+#: staff.marc.display.legend.key
+msgctxt "staff.marc.display.legend.key"
+msgid "L"
+msgstr "L"
+
#: staff.marc.display.meta_data
-msgid "Toggle Meta Data"
+#, fuzzy
+msgid "Toggle Metadata"
msgstr "Toggle Meta Data"
+#: staff.marc.display.meta_data.key
+msgctxt "staff.marc.display.meta_data.key"
+msgid "E"
+msgstr "E"
+
#: staff.marc.editor.keys.help
-msgid "Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = Delete Row;"
-msgstr "Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = Delete Row;"
+msgid ""
+"Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = "
+"Delete Row;"
+msgstr ""
+"Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = "
+"Delete Row;"
#: staff.marc.file
-#: staff.marc_editor_interface_label
+msgctxt "staff.marc.file"
msgid "MARC"
msgstr "MARC"
msgid "Close Editor"
msgstr "Close Editor"
+#: staff.marc.file.close.key
+msgctxt "staff.marc.file.close.key"
+msgid "C"
+msgstr "C"
+
#: staff.marc.file.export
+msgctxt "staff.marc.file.export"
msgid "Export"
msgstr "Export"
+#: staff.marc.file.export.key
+msgctxt "staff.marc.file.export.key"
+msgid "E"
+msgstr "E"
+
+#: staff.marc.file.key
+msgctxt "staff.marc.file.key"
+msgid "M"
+msgstr "M"
+
#: staff.marc.file.publish
msgid "Save (to DB)"
msgstr "Save (to DB)"
+#: staff.marc.file.publish.key
+msgctxt "staff.marc.file.publish.key"
+msgid "S"
+msgstr "S"
+
#: staff.marc.file.reload
msgid "Reload"
msgstr "Reload"
+#: staff.marc.file.reload.key
+msgctxt "staff.marc.file.reload.key"
+msgid "R"
+msgstr "R"
+
#: staff.marc.file.validate
msgid "Validate"
msgstr "Validate"
+#: staff.marc.file.validate.key
+msgctxt "staff.marc.file.validate.key"
+msgid "V"
+msgstr "V"
+
#: staff.marc.groupbox.control
msgid "Control Fields"
msgstr "Control Fields"
msgstr "Fixed Fields"
#: staff.marc.groupbox.meta
-msgid "Meta Data (NOT YET IMPLEMENTED)"
+#, fuzzy
+msgid "Metadata (NOT YET IMPLEMENTED)"
msgstr "Meta Data (NOT YET IMPLEMENTED)"
+#: staff.marc_editor_interface_label
+msgctxt "staff.marc_editor_interface_label"
+msgid "MARC"
+msgstr "MARC"
+
#: staff.mbts_balance_owed_label
+msgctxt "staff.mbts_balance_owed_label"
msgid "Balance Owed"
msgstr "Balance Owed"
msgstr "Bill # "
#: staff.mbts_total_owed_label
+msgctxt "staff.mbts_total_owed_label"
msgid "Total Billed"
msgstr "Total Billed"
#: staff.mbts_total_paid_label
+msgctxt "staff.mbts_total_paid_label"
msgid "Total Paid"
msgstr "Total Paid"
+#: staff.mbts_xact_finish_label
+msgctxt "staff.mbts_xact_finish_label"
+msgid "Finish"
+msgstr "Finish"
+
#: staff.mbts_xact_start_label
+msgctxt "staff.mbts_xact_start_label"
msgid "Start"
msgstr "Start"
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr "Author"
+
#: staff.mvr_label_doc_id
-msgid "Doc Id"
-msgstr "Doc Id"
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr "Title"
#: staff.next.range
msgid "Next"
msgstr "Next"
+#: staff.next.range.key
+msgctxt "staff.next.range.key"
+msgid "N"
+msgstr "N"
+
#: staff.opac_navigator_interface_label
-msgid "CATALOG NAVIGATOR"
-msgstr "CATALOG NAVIGATOR"
+msgid "CAtalog Navigator"
+msgstr ""
-#: staff.patron_barcode_entry_interface_label
-#: staff.patron_display_interface_label
-msgid "PATRON"
-msgstr "PATRON"
+#: staff.patron.context_display
+msgctxt "staff.patron.context_display"
+msgid "Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.patron_barcode_entry_interface_label
+#, fuzzy
+msgctxt "staff.patron_barcode_entry_interface_label"
+msgid "Patron"
+msgstr "Patrons"
#: staff.patron_display.bills.label
msgid "Bills:"
msgstr "Bills:"
-#: staff.patron_display.checkout.print_receipt_label
-#: staff.patron_display.items.print_receipt_label
+#: staff.patron_display.checkout.auto_print.label
+#: staff.patron_display.checkout.auto_print.accesskey
+#, fuzzy
+msgctxt "staff.patron_display.checkout.auto_print.label staff.patron_display.checkout.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr "Auto-Print"
+
+#: staff.patron_display.checkout.done.label
+#: staff.patron_display.checkout.done.accesskey
+#, fuzzy
+msgctxt "staff.patron_display.checkout.done.label staff.patron_display.checkout.done.accesskey"
+msgid "&Done"
+msgstr "Done"
+
+#: staff.patron_display.checkout.print_receipt.label
msgid "Print Receipt"
msgstr "Print Receipt"
-#: staff.patron_display.checkout.print_receipt_label.accesskey
+#: staff.patron_display.checkout.print_receipt.accesskey
+msgctxt "staff.patron_display.checkout.print_receipt.accesskey"
msgid ""
-"_: staff.patron_display.checkout.print_receipt_label.accesskey\n"
msgstr ""
#: staff.patron_display.checkout.reprint_receipt_label
msgid "Re-Print Last Receipt"
msgstr "Re-Print Last Receipt"
+#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "staff.patron_display.checkout.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr "L"
+
+#: staff.patron_display.checkout.scan.label
+#: staff.patron_display.checkout.scan.accesskey
+#, fuzzy
+msgctxt "staff.patron_display.checkout.scan.label staff.patron_display.checkout.scan.accesskey"
+msgid "Enter B&arcode:"
+msgstr "Enter Barcode:"
+
+#: staff.patron_display.checkout.submit.label
+#: staff.patron_display.checkout.submit.accesskey
+#, fuzzy
+msgctxt "staff.patron_display.checkout.submit.label staff.patron_display.checkout.submit.accesskey"
+msgid "&Submit"
+msgstr "Submit"
+
#: staff.patron_display.checkouts.label
msgid "Check Outs:"
msgstr "Check Outs:"
msgstr "Credit:"
#: staff.patron_display.date_of_birth.label
-msgid "DOB:"
-msgstr "DOB:"
+msgctxt "staff.patron_display.date_of_birth.label"
+msgid "Date of Birth:"
+msgstr "Date of Birth:"
#: staff.patron_display.day_phone.label
msgid "Day Phone:"
msgstr "Day Phone:"
#: staff.patron_display.email.label
-#: staff.patron_search_form.email.label
+msgctxt "staff.patron_display.email.label"
msgid "Email:"
msgstr "Email:"
msgid "Evening Phone:"
msgstr "Evening Phone:"
+#: staff.patron_display.family_name.label
+msgctxt "staff.patron_display.family_name.label"
+msgid "Last Name:"
+msgstr "Last Name:"
+
+#: staff.patron_display.first_given_name.label
+msgctxt "staff.patron_display.first_given_name.label"
+msgid "First Name:"
+msgstr "First Name:"
+
#: staff.patron_display.holds.label
msgid "Holds:"
msgstr "Holds:"
#: staff.patron_display.holds_available.label
+msgctxt "staff.patron_display.holds_available.label"
msgid "Available:"
msgstr "Available:"
+#: staff.patron_display.home_ou.label
+msgctxt "staff.patron_display.home_ou.label"
+msgid "Home Library:"
+msgstr "Home Library:"
+
#: staff.patron_display.ident1.label
msgid "ID 1:"
msgstr "ID 1:"
msgid "ID 2:"
msgstr "ID 2:"
+#: staff.patron_display.items.print_receipt.label
+#: staff.patron_display.items.print_receipt.accesskey
+#, fuzzy
+msgid "&Print Receipt"
+msgstr "Print Receipt"
+
#: staff.patron_display.items_claimed_returned.label
msgid "Items Claimed Returned:"
msgstr "Items Claimed Returned:"
msgid "Mailing Address 2:"
msgstr "Mailing Address 2:"
+#: staff.patron_display.mailing_address
+msgctxt "staff.patron_display.mailing_address"
+msgid "Mailing Address"
+msgstr "Mailing Address"
+
+#: staff.patron_display.name.label
+msgctxt "staff.patron_display.name.label"
+msgid "Patron Name"
+msgstr "Patron Name"
+
#: staff.patron_display.other_phone.label
msgid "Other Phone:"
msgstr "Other Phone:"
msgstr "Physical Address 2:"
#: staff.patron_display.physical_address
+msgctxt "staff.patron_display.physical_address"
msgid "Physical Address"
msgstr "Physical Address"
+#: staff.patron_display.profile.label
+msgctxt "staff.patron_display.profile.label"
+msgid "Profile:"
+msgstr "Profile:"
+
#: staff.patron_display.second_given_name.label
-#: staff.patron_search_form.second_given_name.label
+msgctxt "staff.patron_display.second_given_name.label"
msgid "Middle Name:"
msgstr "Middle Name:"
msgid "Standing:"
msgstr "Standing:"
+#: staff.patron_display.status.caption
+msgctxt "staff.patron_display.status.caption"
+msgid "Status"
+msgstr "Status"
+
+#: staff.patron_display_interface_label
+#, fuzzy
+msgctxt "staff.patron_display_interface_label"
+msgid "Patron"
+msgstr "Patrons"
+
#: staff.patron_editor_interface_label
-msgid "PATRON EDIT"
-msgstr "PATRON EDIT"
+msgid "Patron Edit"
+msgstr ""
#: staff.patron_interface_label
-msgid "PATRON "
-msgstr "PATRON "
+#, fuzzy
+msgid "Patron "
+msgstr "Patrons"
#: staff.patron_navbar.bills
+msgctxt "staff.patron_navbar.bills"
msgid "Bills"
msgstr "Bills"
+#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.patron_navbar.bills.accesskey"
+msgid "B"
+msgstr "B"
+
#: staff.patron_navbar.checkout
+msgctxt "staff.patron_navbar.checkout"
msgid "Check Out"
msgstr "Check Out"
+#: staff.patron_navbar.checkout.accesskey
+msgctxt "staff.patron_navbar.checkout.accesskey"
+msgid "C"
+msgstr "C"
+
+#: staff.patron_navbar.edit
+msgctxt "staff.patron_navbar.edit"
+msgid "Edit"
+msgstr "Edit"
+
+#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.patron_navbar.edit.accesskey"
+msgid "E"
+msgstr "E"
+
#: staff.patron_navbar.holds
msgid "Holds"
msgstr "Holds"
+#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.patron_navbar.holds.accesskey"
+msgid "H"
+msgstr "H"
+
#: staff.patron_navbar.info
msgid "Info"
msgstr "Info"
msgid "Items Out"
msgstr "Items Out"
+#: staff.patron_navbar.items.accesskey
+msgctxt "staff.patron_navbar.items.accesskey"
+msgid "I"
+msgstr "I"
+
+#: staff.patron_navbar.items.problem_items.caption
+msgid "Lost, Claimed Returned, Long Overdue, Has Unpaid Billings"
+msgstr ""
+
#: staff.patron_navbar.refresh
+msgctxt "staff.patron_navbar.refresh"
msgid "Refresh"
msgstr "Refresh"
+#: staff.patron_navbar.refresh.accesskey
+msgctxt "staff.patron_navbar.refresh.accesskey"
+msgid "R"
+msgstr "R"
+
+#: staff.patron_navbar.retrieve
+msgctxt "staff.patron_navbar.retrieve"
+msgid "Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.patron_navbar.retrieve.accesskey
+msgctxt "staff.patron_navbar.retrieve.accesskey"
+msgid "R"
+msgstr "R"
+
#: staff.patron_register_interface_label
-msgid "NEW PATRON"
-msgstr "NEW PATRON"
+msgid "New Patron"
+msgstr ""
#: staff.patron_search_form.caption
msgid "Search for Patron"
msgstr "Search for Patron"
#: staff.patron_search_form.city.accesskey
+msgctxt "staff.patron_search_form.city.accesskey"
msgid ""
-"_: staff.patron_search_form.city.accesskey\n"
msgstr ""
#: staff.patron_search_form.city.label
#: staff.patron_search_form.clear.label
#: staff.patron_search_form.clear.accesskey
+msgctxt "staff.patron_search_form.clear.label staff.patron_search_form.clear.accesskey"
msgid "&Clear Form"
msgstr "&Clear Form"
#: staff.patron_search_form.email.accesskey
+msgctxt "staff.patron_search_form.email.accesskey"
msgid ""
-"_: staff.patron_search_form.email.accesskey\n"
msgstr ""
+#: staff.patron_search_form.email.label
+msgctxt "staff.patron_search_form.email.label"
+msgid "Email:"
+msgstr "Email:"
+
#: staff.patron_search_form.family_name.label
#: staff.patron_search_form.family_name.accesskey
msgid "&Last Name:"
msgstr "&Last Name:"
#: staff.patron_search_form.first_given_name.accesskey
+msgctxt "staff.patron_search_form.first_given_name.accesskey"
msgid ""
-"_: staff.patron_search_form.first_given_name.accesskey\n"
msgstr ""
+#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.patron_search_form.first_given_name.label"
+msgid "First Name:"
+msgstr "First Name:"
+
#: staff.patron_search_form.ident.accesskey
+msgctxt "staff.patron_search_form.ident.accesskey"
msgid ""
-"_: staff.patron_search_form.ident.accesskey\n"
msgstr ""
#: staff.patron_search_form.ident.label
msgstr "&Phone:"
#: staff.patron_search_form.post_code.accesskey
+msgctxt "staff.patron_search_form.post_code.accesskey"
msgid ""
-"_: staff.patron_search_form.post_code.accesskey\n"
msgstr ""
#: staff.patron_search_form.post_code.label
#: staff.patron_search_form.search.label
#: staff.patron_search_form.search.accesskey
+msgctxt "staff.patron_search_form.search.label staff.patron_search_form.search.accesskey"
msgid "&Search"
msgstr "&Search"
#: staff.patron_search_form.second_given_name.accesskey
+msgctxt "staff.patron_search_form.second_given_name.accesskey"
msgid ""
-"_: staff.patron_search_form.second_given_name.accesskey\n"
msgstr ""
+#: staff.patron_search_form.second_given_name.label
+msgctxt "staff.patron_search_form.second_given_name.label"
+msgid "Middle Name:"
+msgstr "Middle Name:"
+
#: staff.patron_search_form.state.accesskey
+msgctxt "staff.patron_search_form.state.accesskey"
msgid ""
-"_: staff.patron_search_form.state.accesskey\n"
msgstr ""
#: staff.patron_search_form.state.label
msgstr "A&ddress 1:"
#: staff.patron_search_form.street2.accesskey
+msgctxt "staff.patron_search_form.street2.accesskey"
msgid ""
-"_: staff.patron_search_form.street2.accesskey\n"
msgstr ""
#: staff.patron_search_form.street2.label
msgstr "Address 2:"
#: staff.patron_search_interface_label
-msgid "PATRON SEARCH"
-msgstr "PATRON SEARCH"
+msgid "Patron Search"
+msgstr ""
#: staff.patron_stat_cat_editor_interface_label
-msgid "PATRON STAT-CATS"
-msgstr "PATRON STAT-CATS"
+msgctxt "staff.patron_stat_cat_editor_interface_label"
+msgid "Patron Statistical Categories"
+msgstr ""
#: staff.previous.range
msgid "Previous"
msgstr "Previous"
+#: staff.previous.range.key
+msgctxt "staff.previous.range.key"
+msgid "P"
+msgstr "P"
+
#: staff.receipt_template_editor_interface_label
-msgid "RECEIPTS"
-msgstr "RECEIPTS"
+msgid "Receipts"
+msgstr ""
+
+#: staff.record_list.author
+msgctxt "staff.record_list.author"
+msgid "Author"
+msgstr "Author"
#: staff.record_list.copy_count
msgid "Copiesˤ"
msgstr "Copiesˤ"
+#: staff.record_list.isbn
+msgctxt "staff.record_list.isbn"
+msgid "ISBN"
+msgstr "ISBN"
+
+#: staff.record_list.issn
+msgctxt "staff.record_list.issn"
+msgid "ISSN"
+msgstr "ISSN"
+
#: staff.record_list.publisher
-#: staff.z39_50.search_class.publisher
+msgctxt "staff.record_list.publisher"
msgid "Publisher"
msgstr "Publisher"
+#: staff.record_list.pubyear
+msgctxt "staff.record_list.pubyear"
+msgid "Pub Year"
+msgstr "Pub Year"
+
+#: staff.record_list.tcn
+msgctxt "staff.record_list.tcn"
+msgid "TCN"
+msgstr "TCN"
+
+#: staff.record_list.title
+msgctxt "staff.record_list.title"
+msgid "Title"
+msgstr "Title"
+
+#: staff.record_list.win_title
+msgctxt "staff.record_list.win_title"
+msgid "Cataloging"
+msgstr "Cataloging"
+
#: staff.retrieving.record
+msgctxt "staff.retrieving.record"
msgid "Retrieving..."
msgstr "Retrieving..."
msgstr "Add a Survey Wizard"
#: staff.survey_admin_interface_label
-msgid "SURVEY ADMIN"
-msgstr "SURVEY ADMIN"
+msgid "Survey Administration"
+msgstr ""
+
+#: staff.volume.attr.callnumber
+msgctxt "staff.volume.attr.callnumber"
+msgid "Call Number"
+msgstr "Call Number"
#: staff.volume.attr.owning_lib
+msgctxt "staff.volume.attr.owning_lib"
msgid "Owning Library"
msgstr "Owning Library"
msgstr "Entering Copy-Level Attribute Defaults"
#: staff.volume.wizard.title
-msgid "Batch Add Volumes/Copies Wizard"
+#, fuzzy
+msgid "Batch Add Volumes or Copies Wizard"
msgstr "Batch Add Volumes/Copies Wizard"
#: staff.xuleditor_label
msgid "XUL TEST"
msgstr "XUL TEST"
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr "Author"
+
+#: staff.z39_50.search_class.isbn
+msgctxt "staff.z39_50.search_class.isbn"
+msgid "ISBN"
+msgstr "ISBN"
+
+#: staff.z39_50.search_class.issn
+msgctxt "staff.z39_50.search_class.issn"
+msgid "ISSN"
+msgstr "ISSN"
+
#: staff.z39_50.search_class.item_type
msgid "Item Type"
msgstr "Item Type"
msgstr "All Formats"
#: staff.z39_50.search_class.item_type.art
-msgid "Papers/Articles"
+#, fuzzy
+msgid "Papers or Articles"
msgstr "Papers/Articles"
#: staff.z39_50.search_class.item_type.bks
msgid "Musical scores"
msgstr "Musical scores"
+#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.z39_50.search_class.item_type.ser"
+msgid "Serials"
+msgstr "Serials"
+
#: staff.z39_50.search_class.item_type.url
msgid "Internet Resources"
msgstr "Internet Resources"
msgid "PubDate"
msgstr "PubDate"
+#: staff.z39_50.search_class.publisher
+msgctxt "staff.z39_50.search_class.publisher"
+msgid "Publisher"
+msgstr "Publisher"
+
#: staff.z39_50.search_class.tcn
msgid "Accession #"
msgstr "Accession #"
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr "Title"
+
#: staff.z39_50_import_interface_label
-msgid "Z39.50 IMPORT"
-msgstr "Z39.50 IMPORT"
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.caption
+msgid "Offline Sessions"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.refresh.accesskey
+msgctxt "staff.server.admin.offline.xacts.refresh.accesskey"
+msgid "R"
+msgstr "R"
+
+#: staff.server.admin.offline.xacts.create.label
+msgctxt "staff.server.admin.offline.xacts.create.label"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.execute.label
+msgid "Process"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.update.label
+msgid "Update"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.status.label
+msgid "Uploaded Transaction Files"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.status.desc
+msgid ""
+"The transactions from the following workstations have been uploaded, but not "
+"processed. When all expected workstations are present here, use the "
+"Process button above."
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.label
+#, fuzzy
+msgid "Exceptions"
+msgstr "Exception"
+
+#: staff.server.admin.offline.xacts.errors.desc
+msgid ""
+"All transactions from this session have been processed. The errors, if any, "
+"are listed below."
+msgstr ""
+
+#: staff.server.admin.offline.xacts.export.label
+msgid "Export List"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.print.label
+msgctxt "staff.server.admin.offline.xacts.print.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_item.label
+msgid "Retrieve Item"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_patron.label
+msgctxt "staff.server.admin.offline.xacts.get_patron.label"
+msgid "Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.server.admin.offline.xacts.get_details.label
+msgid "Details"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.caption
+msgid "The session is now processing. Hit Refresh to check its status."
+msgstr ""
+
+#: staff.server.admin.font.sound.caption
+msgid "Adjust Sound"
+msgstr ""
+
+#: staff.server.admin.font.sound.checkbox
+msgid "Disable sound?"
+msgstr ""
+
+#: staff.server.admin.save_disk
+msgid "Save to Disk"
+msgstr ""
+
+#: staff.server.admin.font.global.caption
+msgid "Adjust Global Font"
+msgstr ""
+
+#: staff.server.admin.font.smaller
+msgid "Smaller than Default"
+msgstr ""
+
+#: staff.server.admin.font.default
+msgid "Default"
+msgstr ""
+
+#: staff.server.admin.font.larger
+msgid "Larger than Default"
+msgstr ""
+
+#: staff.server.admin.font.xxsmall
+msgid "XX-Small"
+msgstr ""
+
+#: staff.server.admin.font.xsmall
+msgid "X-Small"
+msgstr ""
+
+#: staff.server.admin.font.small
+msgid "Small"
+msgstr ""
+
+#: staff.server.admin.font.medium
+msgid "Medium"
+msgstr ""
+
+#: staff.server.admin.font.large
+msgid "Large"
+msgstr ""
+
+#: staff.server.admin.font.xlarge
+msgid "X-Large"
+msgstr ""
+
+#: staff.server.admin.font.xxlarge
+msgid "XX-Large"
+msgstr ""
+
+#. "5pt" is an abbreviation for "5 point font size"
+#: staff.server.admin.font.5pt
+msgid "5pt"
+msgstr ""
+
+#. "6pt" is an abbreviation for "6 point font size"
+#: staff.server.admin.font.6pt
+msgid "6pt"
+msgstr ""
+
+#. "7pt" is an abbreviation for "7 point font size"
+#: staff.server.admin.font.7pt
+msgid "7pt"
+msgstr ""
+
+#. "8pt" is an abbreviation for "8 point font size"
+#: staff.server.admin.font.8pt
+msgid "8pt"
+msgstr ""
+
+#. "9pt" is an abbreviation for "9 point font size"
+#: staff.server.admin.font.9pt
+msgid "9pt"
+msgstr ""
+
+#. "10pt" is an abbreviation for "10 point font size"
+#: staff.server.admin.font.10pt
+msgid "10pt"
+msgstr ""
+
+#. "11pt" is an abbreviation for "11 point font size"
+#: staff.server.admin.font.11pt
+msgid "11pt"
+msgstr ""
+
+#. "12pt" is an abbreviation for "12 point font size"
+#: staff.server.admin.font.12pt
+msgid "12pt"
+msgstr ""
+
+#. "13pt" is an abbreviation for "13 point font size"
+#: staff.server.admin.font.13pt
+msgid "13pt"
+msgstr ""
+
+#. "14pt" is an abbreviation for "14 point font size"
+#: staff.server.admin.font.14pt
+msgid "14pt"
+msgstr ""
+
+#. "15pt" is an abbreviation for "15 point font size"
+#: staff.server.admin.font.15pt
+msgid "15pt"
+msgstr ""
+
+#. "16pt" is an abbreviation for "16 point font size"
+#: staff.server.admin.font.16pt
+msgid "16pt"
+msgstr ""
+
+#. "17pt" is an abbreviation for "17 point font size"
+#: staff.server.admin.font.17pt
+msgid "17pt"
+msgstr ""
+
+#. "18pt" is an abbreviation for "18 point font size"
+#: staff.server.admin.font.18pt
+msgid "18pt"
+msgstr ""
+
+#: staff.server.admin.font.restore
+msgid "Restore Default"
+msgstr ""
+
+#: staff.server.admin.transit.filter.caption
+msgid "Transit Filter"
+msgstr ""
+
+#: staff.server.admin.transit.library.label
+msgid "Transit Library"
+msgstr ""
+
+#: staff.server.admin.transit.to.label
+msgid "Transit to"
+msgstr ""
+
+#: staff.server.admin.transit.from.label
+msgid "Transit from"
+msgstr ""
+
+#: staff.server.admin.transit.date.label
+msgid "Transit Date falls between"
+msgstr ""
+
+#: staff.server.admin.transit.date.today
+msgid "Today"
+msgstr ""
+
+#: staff.server.admin.transit.date.week
+#, fuzzy
+msgid "Today - 7 days"
+msgstr "Today + 7 days"
+
+#: staff.server.admin.transit.date.2weeks
+#, fuzzy
+msgid "Today - 14 days"
+msgstr "Today + 14 days"
+
+#: staff.server.admin.transit.date.3weeks
+#, fuzzy
+msgid "Today - 21 days"
+msgstr "Today + 3 days"
+
+#: staff.server.admin.transit.date.30days
+#, fuzzy
+msgid "Today - 30 days"
+msgstr "Today + 30 days"
+
+#: staff.server.admin.transit.date.start
+msgid "The Beginning"
+msgstr ""
+
+#: staff.server.admin.transit.retrieve.label
+#: staff.server.admin.transit.retrieve.accesskey
+msgid "Retrieve &Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.label
+msgctxt "staff.server.admin.transit.list.label"
+msgid "Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.print
+msgid "Print Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.actions
+msgid "Actions for Selected Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.actions.accesskey
+msgctxt "staff.server.admin.transit.list.actions.accesskey"
+msgid "S"
+msgstr "S"
+
+#: staff.server.admin.transit.list.copy.label
+#: staff.server.admin.transit.list.copy.accesskey
+msgctxt "staff.server.admin.transit.list.copy.label staff.server.admin.transit.list.copy.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.server.admin.transit.list.add.label
+#: staff.server.admin.transit.list.add.accesskey
+msgctxt "staff.server.admin.transit.list.add.label staff.server.admin.transit.list.add.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.server.admin.transit.list.show.label
+#: staff.server.admin.transit.list.show.accesskey
+msgctxt "staff.server.admin.transit.list.show.label staff.server.admin.transit.list.show.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.server.admin.transit.list.details.label
+#: staff.server.admin.transit.list.details.accesskey
+msgctxt "staff.server.admin.transit.list.details.label staff.server.admin.transit.list.details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.server.admin.transit.list.circs.label
+#: staff.server.admin.transit.list.circs.accesskey
+msgctxt "staff.server.admin.transit.list.circs.label staff.server.admin.transit.list.circs.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.server.admin.transit.list.edit.label
+#: staff.server.admin.transit.list.edit.accesskey
+msgctxt "staff.server.admin.transit.list.edit.label staff.server.admin.transit.list.edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.server.admin.transit.list.abort.label
+msgctxt "staff.server.admin.transit.list.abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.save.label
+msgctxt "staff.server.admin.transit.list.save.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.server.admin.cash.title
+msgid "Evergreen: Cash Reports"
+msgstr ""
+
+#: staff.server.admin.cash.welcome
+msgctxt "staff.server.admin.cash.welcome"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.cash.start_date
+msgid "Start Date:"
+msgstr ""
+
+#: staff.server.admin.cash.date.select
+msgctxt "staff.server.admin.cash.date.select"
+msgid "Date selector"
+msgstr ""
+
+#: staff.server.admin.cash.end_date
+msgid "End Date:"
+msgstr ""
+
+#: staff.server.admin.cash.date_format
+msgid "(YYYY-MM-DD)"
+msgstr ""
+
+#: staff.server.admin.cash.view
+msgid "View reports for : "
+msgstr ""
+
+#: staff.server.admin.cash.submit
+msgctxt "staff.server.admin.cash.submit"
+msgid "Submit"
+msgstr "Submit"
+
+#: staff.server.admin.cash.desk
+msgid "Desk Payments"
+msgstr ""
+
+#: staff.server.admin.cash.user
+msgid "User Payments"
+msgstr ""
+
+#: staff.server.admin.closed_dates.title
+msgid "Evergreen: Library Closed Dates Editor"
+msgstr ""
+
+#: staff.server.admin.closed_dates.welcome
+msgctxt "staff.server.admin.closed_dates.welcome"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.title
+msgid " Closed Dates Editor "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.for
+msgid "Edit Closed Dates for: "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.duration
+msgid "Closed Duration"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.reason
+msgid "Reason for Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.delete
+msgctxt "staff.server.admin.closed_dates.editor.delete"
+msgid "Delete"
+msgstr "Delete"
+
+#: staff.server.admin.closed_dates.editor.allmultiday.delete
+#, fuzzy
+msgid "delete"
+msgstr "Delete"
+
+#. Translators: do not translate "<b>YYYY-MM-DD</b>" or "<b>HH:MM</b>"
+#: staff.server.admin.closed_dates.editor.allmultiday.format
+msgid ""
+"Note: All dates must have the form <b>YYYY-MM-DD</b>. Times must have the "
+"form <b>HH:MM</b>"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.allday
+msgid "Add Single Day Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.multiday
+msgid "Add Multiple Date Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.detailed
+msgid "Add Detailed Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.start
+msgid "Start Date"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.start
+msgid "Start Time"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.end
+msgid "End Date"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.end
+msgid "End Time"
+msgstr ""
+
+#: staff.server.admin.closed_dates.allday.label
+msgid "All Day"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.reason.label
+msgid "Reason for closing: "
+msgstr ""
+
+#: staff.server.admin.closed_dates.apply_all
+msgid "Apply to all of my libraries"
+msgstr ""
+
+#: staff.server.admin.closed_dates.save
+msgctxt "staff.server.admin.closed_dates.save"
+msgid "Save"
+msgstr ""
+
+#: staff.server.admin.closed_dates.cancel
+msgctxt "staff.server.admin.closed_dates.cancel"
+msgid "Cancel"
+msgstr "Cancel"
+
+#: staff.server.admin.closed_dates.confirm_delete
+msgid "Are you sure you wish to delete the selected close date?"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.invalid
+msgid "Invalid date format"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.invalid
+msgid "Invalid time format"
+msgstr ""
+
+#: staff.server.admin.closed_dates.success
+msgid "Closed date successfully updated"
+msgstr ""
+
+#: staff.server.admin.copy_locations.title
+msgid "Evergreen: Copy Locations Editor"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor
+#, fuzzy
+msgid " Copy Locations Editor "
+msgstr "Copy &Location Editor"
+
+#: staff.server.admin.copy_locations.editor.create
+msgid "Create a new copy location"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.name
+#, fuzzy
+msgid "Name: "
+msgstr "Name:"
+
+#: staff.server.admin.copy_locations.editor.holdable.label
+msgid "Holdable: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.yes
+msgctxt "staff.server.admin.copy_locations.editor.yes"
+msgid "Yes"
+msgstr "Yes"
+
+#: staff.server.admin.copy_locations.editor.no
+msgctxt "staff.server.admin.copy_locations.editor.no"
+msgid "No"
+msgstr "No"
+
+#: staff.server.admin.copy_locations.editor.opac_visible.label
+#, fuzzy
+msgid "OPAC Visible: "
+msgstr "OPAC Visible:"
+
+#: staff.server.admin.copy_locations.editor.circulate.label
+#, fuzzy
+msgid "Circulate: "
+msgstr "Circulate"
+
+#: staff.server.admin.copy_locations.editor.library.label
+#, fuzzy
+msgid "Owning Library:"
+msgstr "Owning Library"
+
+#: staff.server.admin.copy_locations.editor.library
+msgctxt "staff.server.admin.copy_locations.editor.library"
+msgid "Owning Library"
+msgstr "Owning Library"
+
+#: staff.server.admin.copy_locations.editor.holdable
+msgid "Holdable"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.help
+msgctxt "staff.server.admin.copy_locations.editor.help"
+msgid "Help"
+msgstr "Help"
+
+#: staff.server.admin.copy_locations.editor.opac_visible
+#, fuzzy
+msgid "OPAC Visible"
+msgstr "OPAC Visible:"
+
+#: staff.server.admin.copy_locations.editor.circulate
+msgctxt "staff.server.admin.copy_locations.editor.circulate"
+msgid "Circulate"
+msgstr "Circulate"
+
+#: staff.server.admin.copy_locations.editor.edit
+msgctxt "staff.server.admin.copy_locations.editor.edit"
+msgid "Edit"
+msgstr "Edit"
+
+#: staff.server.admin.copy_locations.editor.delete
+msgctxt "staff.server.admin.copy_locations.editor.delete"
+msgid "Delete"
+msgstr "Delete"
+
+#: staff.server.admin.copy_locations.editor.help.holdable
+msgid ""
+"If a copy location is 'Holdable', copies in that location may have holds "
+"placed on them."
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.delete.confirm
+msgid ""
+"Are you sure you wish to delete the selected copy location? Note: If copies "
+"are currently attached to this location, the delete operation will fail."
+msgstr ""
+
+#: staff.server.admin.copy_locations.submit
+msgctxt "staff.server.admin.copy_locations.submit"
+msgid "Submit"
+msgstr "Submit"
+
+#: staff.server.admin.copy_locations.cancel
+msgctxt "staff.server.admin.copy_locations.cancel"
+msgid "Cancel"
+msgstr "Cancel"
+
+#: staff.server.admin.copy_locations.update_success
+msgid "Update Succeeded"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title
+msgid "Evergreen Holds Pull List"
+msgstr ""
+
+#. This will be followed by the org_unit name
+#: staff.server.admin.hold_pull.header
+msgid "Evergreen Holds Pull List : "
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.hold_pull.greeting
+msgctxt "staff.server.admin.hold_pull.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.hold_pull.sort.note
+msgid "Note: Click on a column header to sort the column"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title.label
+msgctxt "staff.server.admin.hold_pull.title.label"
+msgid "Title"
+msgstr "Title"
+
+#: staff.server.admin.hold_pull.author
+msgctxt "staff.server.admin.hold_pull.author"
+msgid "Author"
+msgstr "Author"
+
+#: staff.server.admin.hold_pull.copy_location
+msgid "Copy Location"
+msgstr ""
+
+#: staff.server.admin.hold_pull.call_number
+msgctxt "staff.server.admin.hold_pull.call_number"
+msgid "Call Number"
+msgstr "Call Number"
+
+#: staff.server.admin.hold_pull.barcode
+msgctxt "staff.server.admin.hold_pull.barcode"
+msgid "Item Barcode"
+msgstr "Item Barcode"
+
+#: staff.server.admin.hold_pull.copy
+msgctxt "staff.server.admin.hold_pull.copy"
+msgid "Copy Number"
+msgstr "Copy Number"
+
+#: staff.server.admin.hold_pull.format
+msgctxt "staff.server.admin.hold_pull.format"
+msgid "Format"
+msgstr "Format"
+
+#: staff.server.admin.hold_pull.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.server.admin.hold_pull.hold_date
+msgid "Hold Placement Date"
+msgstr ""
+
+#: staff.server.admin.hold_pull.hold_type
+msgid "Hold Type"
+msgstr ""
+
+#: staff.server.admin.hold_pull.book
+#, fuzzy
+msgid "Book"
+msgstr "Books"
+
+#: staff.server.admin.hold_pull.large_book
+msgid "Large Print Book"
+msgstr ""
+
+#: staff.server.admin.hold_pull.audiobook
+msgid "Audiobook"
+msgstr ""
+
+#: staff.server.admin.hold_pull.video
+msgid "Video Recording"
+msgstr ""
+
+#: staff.server.admin.hold_pull.music
+msgid "Music"
+msgstr ""
+
+#: staff.server.admin.hold_pull.eresource
+msgid "Electronic Resource"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy_hold
+msgid "Copy Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.volume_hold
+msgid "Volume Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title_hold
+msgid "Title Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.metarecord_hold
+msgid "Metarecord Hold"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.title
+msgid "Evergreen: Non Cataloged Types Editor"
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.non_cat_types.greeting
+msgctxt "staff.server.admin.non_cat_types.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.title
+#, fuzzy
+msgid " Non Cataloged Types Editor "
+msgstr "&Non-Cataloged Type Editor"
+
+#: staff.server.admin.non_cat_types.editor.header
+msgid "Create a new non-cataloged type"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.minutes
+msgid "Minutes"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.hours
+msgid "Hours"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.days
+msgid "Days"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.weeks
+msgid "Weeks"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.months
+msgid "Months"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house_circ
+msgid "Circulate In-House?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.create
+msgctxt "staff.server.admin.non_cat_types.editor.create"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name
+#, fuzzy
+msgctxt "staff.server.admin.non_cat_types.name"
+msgid "Name"
+msgstr "Name:"
+
+#: staff.server.admin.non_cat_types.owning_location
+msgid "Owning Location"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.duration
+msgid "Duration"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.circulate
+msgid "Circulate In House"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.edit
+msgctxt "staff.server.admin.non_cat_types.edit"
+msgid "Edit"
+msgstr "Edit"
+
+#: staff.server.admin.non_cat_types.delete
+msgctxt "staff.server.admin.non_cat_types.delete"
+msgid "Delete"
+msgstr "Delete"
+
+#: staff.server.admin.non_cat_types.submit
+msgctxt "staff.server.admin.non_cat_types.submit"
+msgid "Submit"
+msgstr "Submit"
+
+#: staff.server.admin.non_cat_types.cancel
+msgctxt "staff.server.admin.non_cat_types.cancel"
+msgid "Cancel"
+msgstr "Cancel"
+
+#: staff.server.admin.non_cat_types.delete.confirm
+msgid "Are you sure you wish to delete the selected non-cataloged type?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.help
+msgid ""
+"If the \"In-House\" flag is set on a non-cataloged type, items that circulate "
+"as that type will create \"In-House\" circulations. This is ideal for "
+"computer use, room \"rentals\", etc."
+msgstr ""
+
+#: staff.server.admin.non_cat_types.update.success
+msgid "Non-cataloged type successfully updated"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name_exists
+msgid "A non-cataloged type with the selected name already exists."
+msgstr ""
+
+#: staff.server.admin.index.title
+#, fuzzy
+msgid "Local System Administration"
+msgstr "&Local System Administration"
+
+#: staff.server.admin.index.workstation_configuration
+msgid "Workstation Configuration"
+msgstr ""
+
+#: staff.server.admin.index.library_configuration
+msgid "Library Configuration"
+msgstr ""
+
+#: staff.server.admin.index.maintenance_reports
+msgid "Maintenance Reports"
+msgstr ""
+
+#: staff.server.admin.index.fonts_and_sounds
+msgid "Global Font and Sound Settings"
+msgstr ""
+
+#: staff.server.admin.index.printer
+msgid "Printer Settings Editor"
+msgstr ""
+
+#: staff.server.admin.index.closed_dates
+msgid "Closed Dates Editor"
+msgstr ""
+
+#: staff.server.admin.index.copy_locations
+#, fuzzy
+msgid "Copy Locations Editor"
+msgstr "Copy &Location Editor"
+
+#: staff.server.admin.index.library_settings
+msgid "Library Settings Editor"
+msgstr ""
+
+#: staff.server.admin.index.non_cataloged_types
+#, fuzzy
+msgid "Non-cataloged Types Editor"
+msgstr "&Non-Cataloged Type Editor"
+
+#: staff.server.admin.index.statistical_categories
+#, fuzzy
+msgid "Statistical Categories Editor"
+msgstr "Statistical &Category Editor"
+
+#: staff.server.admin.index.hold_pull_list
+#, fuzzy
+msgid "Pull List for Hold Requests"
+msgstr "Pull Li&st for Hold Requests"
+
+#: staff.server.admin.index.testing
+msgid "(Testing)"
+msgstr ""
+
+#: staff.server.admin.index.hold_pull_list_classic
+msgid "Pull List for Hold Requests (Classic)"
+msgstr ""
+
+#: staff.server.admin.index.reports
+msgctxt "staff.server.admin.index.reports"
+msgid "Reports"
+msgstr "Reports"
+
+#: staff.server.admin.index.cash_reports
+msgid "Cash Reports"
+msgstr ""
+
+#: staff.server.admin.index.transits
+msgctxt "staff.server.admin.index.transits"
+msgid "Transits"
+msgstr ""
+
+#: staff.server.admin.index.transit_list
+msgid "Transit List"
+msgstr ""
+
+#: staff.server.admin.org_settings.title
+msgid "Evergreen: Library Settings Editor"
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.org_settings.greeting
+msgctxt "staff.server.admin.org_settings.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.org_settings.header
+msgid " Library Settings Editor "
+msgstr ""
+
+#. This will be followed by the library's name
+#: staff.server.admin.org_settings.select_library
+msgid "Edit Settings for : "
+msgstr ""
+
+#. This will be followed by the library's name
+#: staff.server.admin.org_settings.selected_library
+msgid "Library Settings for "
+msgstr ""
+
+#: staff.server.admin.org_settings.opac_timeout
+msgid "OPAC Inactivity Timeout (in seconds)"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply
+msgid "Apply"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all
+msgid "Apply to all Locations"
+msgstr ""
+
+#: staff.server.admin.org_settings.staff_timeout
+msgid "Staff Login Inactivity Timeout (in seconds)"
+msgstr ""
+
+#: staff.server.admin.org_settings.lost_fee
+msgid "Lost Materials Processing Fee"
+msgstr ""
+
+#: staff.server.admin.org_settings.default_price
+msgid "Default Item Price"
+msgstr ""
+
+#: staff.server.admin.org_settings.from_address
+msgid "\"FROM\" email address for patron notices"
+msgstr ""
+
+#: staff.server.admin.org_settings.bounce_note
+msgid "(note: delivery failures will be returned this address)"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all.note
+msgid ""
+"I. \"Apply to all Locations\" will force the new setting to be applied to all "
+"locations in the location dropdown."
+msgstr ""
+
+#: staff.server.admin.org_settings.update_success
+msgid "Update succeeded."
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all.confirm
+msgid ""
+"This will update the setting for all of the locations listed in the dropdown "
+"menu. Are you sure you wish to continue?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.title
+msgid "Evergreen: Statistical Category Editor"
+msgstr ""
+
+#: staff.server.admin.stat_cat.greeting
+msgctxt "staff.server.admin.stat_cat.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.stat_cat.heading
+#, fuzzy
+msgid " Statistical Category Editor"
+msgstr "Statistical &Category Editor"
+
+#: staff.server.admin.stat_cat.create
+msgid "Create a new statistical category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.name
+msgid "Enter the name: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.owning_library
+#, fuzzy
+msgid "Owning Library: "
+msgstr "Owning Library"
+
+#: staff.server.admin.stat_cat.opac_visibility
+msgid "OPAC Visibility: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.on
+msgid "On"
+msgstr ""
+
+#: staff.server.admin.stat_cat.off
+msgid "Off"
+msgstr ""
+
+#: staff.server.admin.stat_cat.type
+msgid "Type: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.patron
+#, fuzzy
+msgctxt "staff.server.admin.stat_cat.patron"
+msgid "Patron"
+msgstr "Patrons"
+
+#: staff.server.admin.stat_cat.copy
+msgctxt "staff.server.admin.stat_cat.copy"
+msgid "Copy"
+msgstr "Copy"
+
+#: staff.server.admin.stat_cat.create.submit
+msgid "Create new statistical category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.loading_status
+msgid "Loading permissions and statistical categories..."
+msgstr ""
+
+#: staff.server.admin.stat_cat.copy_stat_cats
+msgid "Copy Statistical Categories"
+msgstr ""
+
+#: staff.server.admin.stat_cat.patron_stat_cats
+msgctxt "staff.server.admin.stat_cat.patron_stat_cats"
+msgid "Patron Statistical Categories"
+msgstr ""
+
+#: staff.server.admin.stat_cat.info_prompt
+msgid ""
+"* To edit or view information about an entry, click on the entry in the "
+"drop-down menu"
+msgstr ""
+
+#: staff.server.admin.stat_cat.none_defined
+msgid "No statistical categories are defined"
+msgstr ""
+
+#: staff.server.admin.stat_cat.name.label
+#, fuzzy
+msgctxt "staff.server.admin.stat_cat.name.label"
+msgid "Statistical Category Name"
+msgstr "Statistical &Category Editor"
+
+#: staff.server.admin.stat_cat.owning_library.label
+msgctxt "staff.server.admin.stat_cat.owning_library.label"
+msgid "Owning Library"
+msgstr "Owning Library"
+
+#: staff.server.admin.stat_cat.opac_visibility.label
+msgid "OPAC Visibility"
+msgstr ""
+
+#: staff.server.admin.stat_cat.entries.label
+msgid "Entries"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add_entry
+msgid "Add Entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit
+msgctxt "staff.server.admin.stat_cat.edit"
+msgid "Edit"
+msgstr "Edit"
+
+#: staff.server.admin.stat_cat.none
+msgid "(none)"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add.label
+msgid "Add"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add.prompt
+msgid "Enter the value for the new statistical category entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.delete.confirm
+msgid ""
+"This will delete the selected statistical category and all attached entries. "
+"Are you sure you wish to continue?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.entry_delete.confirm
+msgid "Are you sure you wish to remove this statistical category entry?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_submit
+msgid "Update Statistical Category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_delete
+msgid "Delete Statistical Category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.cancel
+msgctxt "staff.server.admin.stat_cat.cancel"
+msgid "Cancel"
+msgstr "Cancel"
+
+#: staff.server.admin.stat_cat.edit_entry_owner
+msgid "Owned By "
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_name_submit
+msgid "Update Entry Value"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_delete
+msgid "Delete Entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.new_entry_name
+msgid "Enter the value of the new entry: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.new_entry_create
+msgid "Create new entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.update_success
+msgid "Update succeeded"
+msgstr ""
+
+#: staff.server.admin.upload_xacts.title
+msgid "Upload Offline Transactions"
+msgstr ""
+
+#: staff.server.admin.upload_xacts.header
+msgid "Uploading transactions..."
+msgstr ""
+
+#: staff.server.admin.upload_xacts.upload
+msgid "Upload"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_clip.label
+#: staff.circ.checkin_overlay.sel_clip.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_clip.label staff.circ.checkin_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_bucket.label
+#: staff.circ.checkin_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_bucket.label staff.circ.checkin_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_opac.label
+#: staff.circ.checkin_overlay.sel_opac.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_opac.label staff.circ.checkin_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_copy_details.label
+#: staff.circ.checkin_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_copy_details.label staff.circ.checkin_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_patron.label
+#: staff.circ.checkin_overlay.sel_patron.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_patron.label staff.circ.checkin_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_last_patron.label
+#: staff.circ.checkin_overlay.sel_last_patron.accesskey
+msgid "&Retrieve Last Patron who circulated item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_edit.label
+#: staff.circ.checkin_overlay.sel_edit.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_edit.label staff.circ.checkin_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.label
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_mark_items_damaged.label staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_transit_abort.label
+msgid "Abort Transit"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_spine.label
+#: staff.circ.checkin_overlay.sel_spine.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_spine.label staff.circ.checkin_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.checkin_overlay.save_columns.label
+msgctxt "staff.circ.checkin_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text
+msgid "Check In or Process Item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text.hold_capture
+msgid "Auto-Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkin_overlay.effective_date.label
+msgid "Effective Date:"
+msgstr ""
+
+#: staff.circ.checkin_overlay.actions.label
+#: staff.circ.checkin_overlay.actions.accesskey
+msgctxt "staff.circ.checkin_overlay.actions.label staff.circ.checkin_overlay.actions.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_export.label
+msgctxt "staff.circ.checkin_overlay.checkin_export.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.circ.checkin_overlay.trim_list.label
+msgctxt "staff.circ.checkin_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.checkin_overlay.strict_barcode.label
+msgctxt "staff.circ.checkin_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.checkin_overlay.do_not_alert_on_precat.label
+msgid "Ignore Pre-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_auto.label
+#: staff.circ.checkin_overlay.checkin_auto.accesskey
+msgid "Auto-&Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.label
+msgctxt "staff.circ.checkout_overlay.duedate_menu.label"
+msgid "Normal"
+msgstr "Normal"
+
+#: staff.circ.checkout_overlay.duedate_menu.accesskey
+msgid "u"
+msgstr ""
+
+#: staff.circ.checkout_overlay.barcode.accesskey
+msgctxt "staff.circ.checkout_overlay.barcode.accesskey"
+msgid "C"
+msgstr "C"
+
+#: staff.circ.checkout_overlay.export.accesskey
+msgctxt "staff.circ.checkout_overlay.export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.label
+msgctxt "staff.circ.checkout_overlay.export.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.circ.checkout_overlay.sel_clip.label
+msgctxt "staff.circ.checkout_overlay.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkout_overlay.save_columns.label
+msgctxt "staff.circ.checkout_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkout_overlay.strict_barcode.label
+msgctxt "staff.circ.checkout_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.circ_brief.patron_id.label
+msgid "Circulation ID: "
+msgstr ""
+
+#: staff.circ.circ_brief.add_billing.label
+msgctxt "staff.circ.circ_brief.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.circ.circ_brief.xact_start.label
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.circ_brief.due_date.label
+msgctxt "staff.circ.circ_brief.due_date.label"
+msgid "Due Date"
+msgstr "Due Date"
+
+#: staff.circ.circ_brief.stop_fines_time.label
+msgid "Stop Fines Time"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_time.label
+msgid "Check In Time"
+msgstr ""
+
+#: staff.circ.circ_brief.circ_lib.label
+msgid "Check Out Library"
+msgstr ""
+
+#: staff.circ.circ_brief.renewal.label
+msgid "Renewal"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines.label
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_lib.label
+msgid "Check In Library"
+msgstr ""
+
+#: staff.circ.circ_summary.caption
+msgid "Last Few Circulations"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_last.label
+#: staff.circ.circ_summary.retrieve_last.accesskey
+msgctxt "staff.circ.circ_summary.retrieve_last.label staff.circ.circ_summary.retrieve_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr "Retrieve &Last Patron"
+
+#: staff.circ.circ_summary.retrieve_all.label
+#: staff.circ.circ_summary.retrieve_all.accesskey
+msgid "Retrieve &All These Patrons"
+msgstr ""
+
+#: staff.circ.circ_summary.done.label
+#: staff.circ.circ_summary.done.accesskey
+#, fuzzy
+msgctxt "staff.circ.circ_summary.done.label staff.circ.circ_summary.done.accesskey"
+msgid "&Done"
+msgstr "Done"
+
+#: staff.circ.copy_details.hold_caption
+msgid "Captured for Hold"
+msgstr ""
+
+#: staff.circ.copy_details.transit_caption
+msgctxt "staff.circ.copy_details.transit_caption"
+msgid "In Transit"
+msgstr "In Transit"
+
+#: staff.circ.copy_details.circ_caption
+msgid "Last or Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.r_last.label
+#: staff.circ.copy_details.r_last.accesskey
+msgctxt "staff.circ.copy_details.r_last.label staff.circ.copy_details.r_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr "Retrieve &Last Patron"
+
+#: staff.circ.copy_details.r_hold.label
+#: staff.circ.copy_details.r_hold.accesskey
+#, fuzzy
+msgid "Retrieve &Hold Patron"
+msgstr "Retrieve &Last Patron"
+
+#: staff.circ.copy_details.done.label
+#: staff.circ.copy_details.done.accesskey
+#, fuzzy
+msgctxt "staff.circ.copy_details.done.label staff.circ.copy_details.done.accesskey"
+msgid "&Done"
+msgstr "Done"
+
+#: staff.circ.copy_status_overlay.sel_clip.label
+#: staff.circ.copy_status_overlay.sel_clip.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_clip.label staff.circ.copy_status_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_bucket.label
+#: staff.circ.copy_status_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_bucket.label staff.circ.copy_status_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_opac.label
+#: staff.circ.copy_status_overlay.sel_opac.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_opac.label staff.circ.copy_status_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_copy_details.label
+#: staff.circ.copy_status_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_copy_details.label staff.circ.copy_status_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_patron.label
+#: staff.circ.copy_status_overlay.sel_patron.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_patron.label staff.circ.copy_status_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_edit.label
+#: staff.circ.copy_status_overlay.sel_edit.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_edit.label staff.circ.copy_status_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_mark_items_damaged.label staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.accesskey
+msgid "&Mark Item Missing"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_transit_abort.label
+msgctxt "staff.circ.copy_status_overlay.sel_transit_abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_checkin.label
+#: staff.circ.copy_status_overlay.sel_checkin.accesskey
+#, fuzzy
+msgid "Check I&n Items"
+msgstr "Check In Items"
+
+#: staff.circ.copy_status_overlay.sel_renew.label
+#: staff.circ.copy_status_overlay.sel_renew.accesskey
+msgid "&Renew Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_spine.label
+#: staff.circ.copy_status_overlay.sel_spine.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_spine.label staff.circ.copy_status_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.label
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr "Replace Barcode"
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.save_columns.label
+msgctxt "staff.circ.copy_status_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_items.label
+#: staff.circ.copy_status_overlay.cmd_transfer_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_items.label staff.circ.copy_status_overlay.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_volumes.label
+#: staff.circ.copy_status_overlay.cmd_add_volumes.accesskey
+#, fuzzy
+msgctxt "staff.circ.copy_status_overlay.cmd_add_volumes.label staff.circ.copy_status_overlay.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr "Add Volume"
+
+#: staff.circ.copy_status_overlay.cmd_mark_library.label
+#: staff.circ.copy_status_overlay.cmd_mark_library.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_library.label staff.circ.copy_status_overlay.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_items.label
+#: staff.circ.copy_status_overlay.cmd_add_items.accesskey
+#, fuzzy
+msgctxt "staff.circ.copy_status_overlay.cmd_add_items.label staff.circ.copy_status_overlay.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr "Add Item"
+
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.label
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_edit_volumes.label staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_volume.label
+#: staff.circ.copy_status_overlay.cmd_mark_volume.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_volume.label staff.circ.copy_status_overlay.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.label
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_volumes.label staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.item_status.label
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.last_scanned.caption
+msgid "Scan Item"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey
+#, fuzzy
+msgctxt "staff.circ.copy_status_overlay.copy_status_scan_barcode.label staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey"
+msgid "&Barcode:"
+msgstr "Barcode"
+
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.accesskey
+#, fuzzy
+msgid "Submi&t"
+msgstr "Submit"
+
+#: staff.circ.copy_status_overlay.copy_status_upload_file.label
+#: staff.circ.copy_status_overlay.copy_status_upload_file.accesskey
+msgid "&Upload From File"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cataloger_actions.label
+#: staff.circ.copy_status_overlay.cataloger_actions.accesskey
+msgid "Actions &for Catalogers"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print.label
+#: staff.circ.copy_status_overlay.copy_status_print.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print.label staff.circ.copy_status_overlay.copy_status_print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.circ.copy_status_overlay.copy_status_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.trim_list.label
+msgctxt "staff.circ.copy_status_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.strict_barcode.label
+msgctxt "staff.circ.copy_status_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab1.label
+#: staff.chrome.menu_frame_overlay.tab1.accesskey
+msgid "Tab &1"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab2.label
+#: staff.chrome.menu_frame_overlay.tab2.accesskey
+msgid "Tab &2"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab3.label
+#: staff.chrome.menu_frame_overlay.tab3.accesskey
+msgid "Tab &3"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab4.label
+#: staff.chrome.menu_frame_overlay.tab4.accesskey
+msgid "Tab &4"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab5.label
+#: staff.chrome.menu_frame_overlay.tab5.accesskey
+msgid "Tab &5"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab6.label
+#: staff.chrome.menu_frame_overlay.tab6.accesskey
+msgid "Tab &6"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab7.label
+#: staff.chrome.menu_frame_overlay.tab7.accesskey
+msgid "Tab &7"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab8.label
+#: staff.chrome.menu_frame_overlay.tab8.accesskey
+msgid "Tab &8"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab9.label
+#: staff.chrome.menu_frame_overlay.tab9.accesskey
+msgid "Tab &9"
+msgstr ""
+
+#: staff.circ.in_house_use.main.label
+#, fuzzy
+msgid "Record In-House Use"
+msgstr "Record &In-House Use"
+
+#: staff.circ.in_house_use.cmgb1.caption
+#, fuzzy
+msgid "In-House Use"
+msgstr "In &House Use"
+
+#: staff.circ.in_house_use.multiplier.label
+#: staff.circ.in_house_use.multiplier.accesskey
+msgid "# of &uses:"
+msgstr ""
+
+#: staff.circ.in_house_use.submit.label
+#: staff.circ.in_house_use.submit.accesskey
+#, fuzzy
+msgctxt "staff.circ.in_house_use.submit.label staff.circ.in_house_use.submit.accesskey"
+msgid "&Submit"
+msgstr "Submit"
+
+#: staff.circ.in_house_use.print.label
+msgctxt "staff.circ.in_house_use.print.label"
+msgid "Print List"
+msgstr "Print List"
+
+#: staff.circ.in_house_use.export.label
+msgctxt "staff.circ.in_house_use.export.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.circ.in_house_use.trim_list.label
+msgctxt "staff.circ.in_house_use.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.in_house_use.strict_barcode.label
+msgctxt "staff.circ.in_house_use.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.in_house_use.sel_clip.label
+msgctxt "staff.circ.in_house_use.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.in_house_use.save_cols_btn.label
+msgctxt "staff.circ.in_house_use.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.pre_cat.window.title
+msgid "Pre-Catalog Fields"
+msgstr ""
+
+#: staff.circ.pre_cat.caption.label
+msgid "Pre-Catalog Field Entry"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_title.value
+msgctxt "staff.circ.pre_cat.dummy_title.value"
+msgid "Title"
+msgstr "Title"
+
+#: staff.circ.pre_cat.dummy_author.value
+msgctxt "staff.circ.pre_cat.dummy_author.value"
+msgid "Author"
+msgstr "Author"
+
+#: staff.circ.pre_cat.cancel.label
+#: staff.circ.pre_cat.cancel.accesskey
+#, fuzzy
+msgctxt "staff.circ.pre_cat.cancel.label staff.circ.pre_cat.cancel.accesskey"
+msgid "&Cancel"
+msgstr "Cancel"
+
+#: staff.circ.pre_cat.checkout.label
+#: staff.circ.pre_cat.checkout.accesskey
+#, fuzzy
+msgid "Check &Out"
+msgstr "Check Out"
+
+#: staff.circ.print_list.main.label
+msgid "Templates"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.label
+msgid "ID"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.name.label
+#: staff.circ.print_list.top_ui.name.accesskey
+msgid "&Name"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.type.label
+msgctxt "staff.circ.print_list.top_ui.type.label"
+msgid "Type"
+msgstr "Type"
+
+#: staff.circ.print_list.top_ui.actions.label
+msgid "Actions"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.preview.label
+#: staff.circ.print_list.top_ui.preview.accesskey
+msgid "&Preview"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.macros.label
+#: staff.circ.print_list.top_ui.macros.accesskey
+msgid "&Macros"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.default.label
+#: staff.circ.print_list.top_ui.default.accesskey
+msgid "&Default"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.save.label
+#: staff.circ.print_list.top_ui.save.accesskey
+msgid "&Save Locally"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description
+msgid "Be sure to 'Save Locally' before export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.export.label
+#: staff.circ.print_list.top_ui.description.export.accesskey
+#, fuzzy
+msgid "&Export"
+msgstr "Export"
+
+#: staff.circ.print_list.top_ui.description.import.label
+#: staff.circ.print_list.top_ui.description.import.accesskey
+msgid "&Import"
+msgstr ""
+
+#: staff.circ.print_list.header.label
+msgid "Header"
+msgstr ""
+
+#: staff.circ.print_list.line_item.label
+msgid "Line Item"
+msgstr ""
+
+#: staff.circ.print_list.footer.label
+msgid "Footer"
+msgstr ""
+
+#: staff.main.data.loading
+msgctxt "staff.main.data.loading"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.main.ws_info.entry
+msgid "Enter a workstation name and library to register this client under:"
+msgstr ""
+
+#: staff.main.ws_info.name
+#, fuzzy
+msgctxt "staff.main.ws_info.name"
+msgid "Name"
+msgstr "Name:"
+
+#: staff.main.ws_info.register_btn.label
+#: staff.main.ws_info.register_btn.accesskey
+msgid "&Register"
+msgstr ""
+
+#: staff.cat.bib_brief.record_summary
+msgid "Record Summary"
+msgstr ""
+
+#: staff.cat.bib_brief.title
+#, fuzzy
+msgid "Title:"
+msgstr "Title"
+
+#: staff.cat.bib_brief.view_marc
+msgid "View MARC"
+msgstr ""
+
+#: staff.cat.bib_brief.author
+#, fuzzy
+msgid "Author:"
+msgstr "Author"
+
+#: staff.cat.bib_brief.edition
+msgid "Edition:"
+msgstr ""
+
+#: staff.cat.bib_brief.pub_date
+msgid "Publication Date:"
+msgstr ""
+
+#. "TCN" is an abbreviation for "title control number"
+#: staff.cat.bib_brief.title_control_number
+#, fuzzy
+msgid "TCN:"
+msgstr "TCN"
+
+#: staff.cat.bib_brief.created_by
+msgid "Created By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_by
+msgid "Last Edited By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_on
+msgid "Last Edited On:"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard
+msgctxt "staff.circ.holds.copy_to_clipboard"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard.accesskey
+msgctxt "staff.circ.holds.copy_to_clipboard.accesskey"
+msgid "C"
+msgstr "C"
+
+#: staff.circ.holds.show_in_catalog
+msgctxt "staff.circ.holds.show_in_catalog"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog.accesskey
+msgctxt "staff.circ.holds.show_in_catalog.accesskey"
+msgid "S"
+msgstr "S"
+
+#: staff.circ.holds.show_item_details
+msgid "Show Item Details"
+msgstr ""
+
+#: staff.circ.holds.show_item_details.accesskey
+msgctxt "staff.circ.holds.show_item_details.accesskey"
+msgid "I"
+msgstr "I"
+
+#: staff.circ.holds.show_last_few_circulations
+msgid "Show Last Few Circulations"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations.accesskey
+msgctxt "staff.circ.holds.show_last_few_circulations.accesskey"
+msgid "L"
+msgstr "L"
+
+#: staff.circ.holds.retrieve_patron
+msgctxt "staff.circ.holds.retrieve_patron"
+msgid "Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.circ.holds.retrieve_patron.accesskey
+msgctxt "staff.circ.holds.retrieve_patron.accesskey"
+msgid "P"
+msgstr "P"
+
+#: staff.circ.holds.show_notices
+msgid "Show Notices"
+msgstr ""
+
+#: staff.circ.holds.show_notices.accesskey
+msgctxt "staff.circ.holds.show_notices.accesskey"
+msgid "N"
+msgstr "N"
+
+#: staff.circ.holds.edit_pickup_library
+msgid "Edit Pickup Library"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library.accesskey
+msgctxt "staff.circ.holds.edit_pickup_library.accesskey"
+msgid "L"
+msgstr "L"
+
+#: staff.circ.holds.edit_phone_notification
+msgid "Edit Phone Notification"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification.accesskey
+msgctxt "staff.circ.holds.edit_phone_notification.accesskey"
+msgid "P"
+msgstr "P"
+
+#: staff.circ.holds.set_email_notification
+msgid "Set Email Notification"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification.accesskey
+msgctxt "staff.circ.holds.set_email_notification.accesskey"
+msgid "E"
+msgstr "E"
+
+#: staff.circ.holds.edit_activation_date
+msgid "Edit Activation Date"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date.accesskey
+msgctxt "staff.circ.holds.edit_activation_date.accesskey"
+msgid "D"
+msgstr "D"
+
+#: staff.circ.holds.activate_hold
+msgid "Activate Hold"
+msgstr ""
+
+#: staff.circ.holds.activate_hold.accesskey
+msgctxt "staff.circ.holds.activate_hold.accesskey"
+msgid "A"
+msgstr "A"
+
+#: staff.circ.holds.suspend_hold
+msgid "Suspend Hold"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold.accesskey
+msgctxt "staff.circ.holds.suspend_hold.accesskey"
+msgid "S"
+msgstr "S"
+
+#: staff.circ.holds.edit_hold_range
+msgid "Edit Hold Range"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range.accesskey
+msgctxt "staff.circ.holds.edit_hold_range.accesskey"
+msgid "R"
+msgstr "R"
+
+#: staff.circ.holds.edit_hold_focus
+msgid "Edit Hold Focus"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus.accesskey
+msgctxt "staff.circ.holds.edit_hold_focus.accesskey"
+msgid "F"
+msgstr "F"
+
+#: staff.circ.holds.mark_item_damaged
+msgid "Mark Item Damaged"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged.accesskey
+msgctxt "staff.circ.holds.mark_item_damaged.accesskey"
+msgid "D"
+msgstr "D"
+
+#: staff.circ.holds.mark_item_missing
+#, fuzzy
+msgid "Mark Item Missing"
+msgstr "Mark as Missing"
+
+#: staff.circ.holds.mark_item_missing.accesskey
+msgctxt "staff.circ.holds.mark_item_missing.accesskey"
+msgid "M"
+msgstr "M"
+
+#: staff.circ.holds.retarget
+msgid "Find Another Target"
+msgstr ""
+
+#: staff.circ.holds.retarget.accesskey
+msgctxt "staff.circ.holds.retarget.accesskey"
+msgid "T"
+msgstr "T"
+
+#: staff.circ.holds.cancel
+msgctxt "staff.circ.holds.cancel"
+msgid "Cancel Hold"
+msgstr "Cancel Hold"
+
+#: staff.circ.holds.cancel.accesskey
+msgctxt "staff.circ.holds.cancel.accesskey"
+msgid "C"
+msgstr "C"
+
+#: staff.circ.holds.save_columns
+msgctxt "staff.circ.holds.save_columns"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.holds.save_columns.accesskey
+msgctxt "staff.circ.holds.save_columns.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_clip.label
+#: staff.cat.copy_browser.actions.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_clip.label staff.cat.copy_browser.actions.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_copy_details.label
+#: staff.cat.copy_browser.actions.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_copy_details.label staff.cat.copy_browser.actions.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_patron.label
+#: staff.cat.copy_browser.actions.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_patron.label staff.cat.copy_browser.actions.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_items.label
+#: staff.cat.copy_browser.actions.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_items.label staff.cat.copy_browser.actions.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_items.label
+#: staff.cat.copy_browser.actions.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_items.label staff.cat.copy_browser.actions.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_volumes.label
+#: staff.cat.copy_browser.actions.cmd_add_volumes.accesskey
+#, fuzzy
+msgctxt "staff.cat.copy_browser.actions.cmd_add_volumes.label staff.cat.copy_browser.actions.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr "Add Volume"
+
+#: staff.cat.copy_browser.actions.cmd_mark_library.label
+#: staff.cat.copy_browser.actions.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_library.label staff.cat.copy_browser.actions.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items.label
+#: staff.cat.copy_browser.actions.cmd_add_items.accesskey
+#, fuzzy
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items.label staff.cat.copy_browser.actions.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr "Add Item"
+
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.label
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_volumes.label staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_volume.label
+#: staff.cat.copy_browser.actions.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_volume.label staff.cat.copy_browser.actions.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.label
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_volume.label staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_damaged.label staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.label
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_missing.label staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_print_spine_labels.label staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.actions.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr "Replace Barcode"
+
+#: staff.cat.copy_browser.actions.save_columns.label
+msgctxt "staff.cat.copy_browser.actions.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_refresh_list.label
+#: staff.cat.copy_browser.actions.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_refresh_list.label staff.cat.copy_browser.actions.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.caption
+#, fuzzy
+msgid "Holdings Maintenance"
+msgstr "&Holdings Maintenance"
+
+#: staff.cat.copy_browser.holdings_maintenance.legend
+msgid "Green in the list below means the library has volumes for this record."
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_total
+msgid "Consortial Total:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_available
+msgctxt "staff.cat.copy_browser.holdings_maintenance.consortial_available"
+msgid "Available:"
+msgstr "Available:"
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acns
+msgid "Show Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acps
+msgid "Show Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.refresh_button.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.refresh_button.label"
+msgid "Refresh"
+msgstr "Refresh"
+
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.label
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.accesskey
+msgid "Show &Libraries With Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.actions.label
+#: staff.cat.copy_browser.holdings_maintenance.actions.accesskey
+msgid "Actions &for Selected Rows"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_clip.label staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_patron.label staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey
+#, fuzzy
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr "Add Volume"
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey
+#, fuzzy
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr "Add Item"
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr "Replace Barcode"
+
+#: staff.cat.copy_browser.holdings_maintenance.save_columns.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_buckets.window_title
+msgctxt "staff.cat.copy_buckets.window_title"
+msgid "Copy Buckets"
+msgstr "Copy Buckets"
+
+#: staff.cat.copy_buckets_overlay.pending_copies
+msgid "Pending Copies"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.bucket_view
+msgid "Bucket View"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.save_columns1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.save_columns1"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1"
+msgid "Export"
+msgstr "Export"
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.label
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.accesskey
+msgid "&Add All"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.refresh.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.refresh.label"
+msgid "Refresh"
+msgstr "Refresh"
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.delete_item.label
+msgid "Remove Selected From Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.export.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.bucket.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.owner.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.label
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print.label staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.batch.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.batch.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_export_to_copy_status.label
+msgid "Show Status"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_transfer_to_volume.label
+msgid "Transfer to Specific Volume"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_edit.label
+msgid "Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_delete.label
+msgid "Delete All from Catalog"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.label
+#, fuzzy
+msgid "Item Buckets"
+msgstr "User Buckets"
+
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey
+#, fuzzy
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.new_bucket.label staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr "Add to &Bucket"
+
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.label
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey
+#, fuzzy
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.cancel.label staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey"
+msgid "&Cancel"
+msgstr "Cancel"
+
+#: staff.cat.copy_editor.window.label
+msgctxt "staff.cat.copy_editor.window.label"
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.groupbox1.label
+msgid "Copy Viewer"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.label
+msgid "Templates:"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.apply_template.label
+#: staff.cat.copy_editor.templates.apply_template.accesskey
+msgid "Appl&y"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.delete_template.label
+msgctxt "staff.cat.copy_editor.templates.delete_template.label"
+msgid "Delete"
+msgstr "Delete"
+
+#: staff.cat.copy_editor.templates.import_template.label
+msgid "Import"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.export_template.label
+msgctxt "staff.cat.copy_editor.templates.export_template.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.cat.copy_editor.templates.save_template.label
+msgctxt "staff.cat.copy_editor.templates.save_template.label"
+msgid "Save"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.reset.label
+#: staff.cat.copy_editor.templates.reset.accesskey
+msgid "&Reset"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.label
+msgid "Identification"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.label
+msgctxt "staff.cat.copy_editor.identification.location.label"
+msgid "Location"
+msgstr "Location"
+
+#: staff.cat.copy_editor.identification.location.accesskey
+msgctxt "staff.cat.copy_editor.identification.location.accesskey"
+msgid "1"
+msgstr "1"
+
+#: staff.cat.copy_editor.identification.circulation.label
+msgctxt "staff.cat.copy_editor.identification.circulation.label"
+msgid "Circulation"
+msgstr "Circulation"
+
+#: staff.cat.copy_editor.identification.circulation.accesskey
+msgid "2"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.label
+msgid "Miscellaneous"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.accesskey
+msgctxt "staff.cat.copy_editor.identification.miscellaneous.accesskey"
+msgid "3"
+msgstr "3"
+
+#: staff.cat.copy_editor.identification.statistics.label
+msgid "Statistics"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.accesskey
+msgctxt "staff.cat.copy_editor.identification.statistics.accesskey"
+msgid "4"
+msgstr "4"
+
+#: staff.cat.copy_editor.stat_cat_lib_filter_menu.label
+msgid "Library Filter"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_notes.label
+#: staff.cat.copy_editor.copy_notes.accesskey
+#, fuzzy
+msgid "Copy &Notes"
+msgstr "Copy Notes"
+
+#: staff.cat.copy_editor.save.label
+#: staff.cat.copy_editor.save.accesskey
+msgid "&Modify Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+#: staff.cat.copy_editor.cancel.accesskey
+msgctxt "staff.cat.copy_editor.cancel.label staff.cat.copy_editor.cancel.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.cat.copy_summary.label
+msgid "Item Summary"
+msgstr ""
+
+#: staff.cat.copy_summary.barcode.label
+#, fuzzy
+msgctxt "staff.cat.copy_summary.barcode.label"
+msgid "Barcode:"
+msgstr "Barcode"
+
+#: staff.cat.copy_summary.location.label
+#, fuzzy
+msgid "Location:"
+msgstr "Location"
+
+#: staff.cat.copy_summary.call_number.label
+#, fuzzy
+msgid "Call Number:"
+msgstr "Call Number"
+
+#: staff.cat.copy_summary.status.label
+#, fuzzy
+msgid "Status:"
+msgstr "Status"
+
+#: staff.cat.copy_summary.circulate.label
+#, fuzzy
+msgid "Circulate:"
+msgstr "Circulate"
+
+#: staff.cat.copy_summary.reference.label
+#, fuzzy
+msgid "Reference:"
+msgstr "Reference"
+
+#: staff.cat.copy_summary.holdable.label
+msgid "Holdable:"
+msgstr ""
+
+#: staff.cat.copy_summary.opac_visible.label
+msgctxt "staff.cat.copy_summary.opac_visible.label"
+msgid "OPAC Visible:"
+msgstr "OPAC Visible:"
+
+#: staff.cat.copy_summary.created.label
+msgid "Created:"
+msgstr ""
+
+#: staff.cat.copy_summary.edited.label
+msgid "Edited:"
+msgstr ""
+
+#: staff.cat.copy_summary.age_protect.label
+msgid "Age Protect:"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circulations:"
+msgstr ""
+
+#: staff.cat.copy_summary.alternate_view.label
+msgid "Alternate View"
+msgstr ""
+
+#: staff.cat.copy_summary.save_columns.label
+msgctxt "staff.cat.copy_summary.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_summary.sel_clip.label
+msgctxt "staff.cat.copy_summary.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_summary.print_export.label
+msgctxt "staff.cat.copy_summary.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.marcedit.options.label
+msgid "Options"
+msgstr ""
+
+#: staff.cat.marcedit.stackSubfields.label
+#: staff.cat.marcedit.stackSubfields.accesskey
+msgid "&Stack subfields"
+msgstr ""
+
+#: staff.cat.marcedit.validate.label
+#: staff.cat.marcedit.validate.accesskey
+#, fuzzy
+msgid "&Validate"
+msgstr "Validate"
+
+#: staff.cat.marcedit.save-button.accesskey
+msgid "d"
+msgstr ""
+
+#: staff.cat.marcedit.help.label
+#: staff.cat.marcedit.help.accesskey
+#, fuzzy
+msgctxt "staff.cat.marcedit.help.label staff.cat.marcedit.help.accesskey"
+msgid "&Help"
+msgstr "Help"
+
+#: staff.cat.marcedit.caption.label
+msgid "MARC Record"
+msgstr ""
+
+#: staff.cat.marcedit.toggleFFE.label
+msgid "Fixed Fields -- Record type: "
+msgstr ""
+
+#: staff.cat.marc_new.load.label
+#: staff.cat.marc_new.load.accesskey
+msgid "&Load"
+msgstr ""
+
+#: staff.cat.marc_view.title
+#, fuzzy
+msgid "MARC View"
+msgstr "MARC &View"
+
+#: staff.cat.opac.menuitem.opacview.label
+#: staff.cat.opac.menuitem.opacview.accesskey
+msgctxt "staff.cat.opac.menuitem.opacview.label staff.cat.opac.menuitem.opacview.accesskey"
+msgid "&OPAC View"
+msgstr "&OPAC View"
+
+#: staff.cat.opac.menuitem.marcview.label
+#: staff.cat.opac.menuitem.marcview.accesskey
+msgctxt "staff.cat.opac.menuitem.marcview.label staff.cat.opac.menuitem.marcview.accesskey"
+msgid "MARC &View"
+msgstr "MARC &View"
+
+#: staff.cat.opac.menuitem.marcedit.label
+#: staff.cat.opac.menuitem.marcedit.accesskey
+msgctxt "staff.cat.opac.menuitem.marcedit.label staff.cat.opac.menuitem.marcedit.accesskey"
+msgid "MARC &Edit"
+msgstr "MARC &Edit"
+
+#: staff.cat.opac.menuitem.holding.label
+#: staff.cat.opac.menuitem.holding.accesskey
+msgctxt "staff.cat.opac.menuitem.holding.label staff.cat.opac.menuitem.holding.accesskey"
+msgid "&Holdings Maintenance"
+msgstr "&Holdings Maintenance"
+
+#: staff.cat.opac.menuitem.viewholds.label
+#: staff.cat.opac.menuitem.viewholds.accesskey
+msgctxt "staff.cat.opac.menuitem.viewholds.label staff.cat.opac.menuitem.viewholds.accesskey"
+msgid "View Hold&s"
+msgstr "View Hold&s"
+
+#: staff.cat.opac.menuitem.addtobucket.label
+#: staff.cat.opac.menuitem.addtobucket.accesskey
+msgctxt "staff.cat.opac.menuitem.addtobucket.label staff.cat.opac.menuitem.addtobucket.accesskey"
+msgid "Add to &Bucket"
+msgstr "Add to &Bucket"
+
+#: staff.cat.opac.menuitem.refreshinterfaces.label
+msgid "Refresh All Interfaces"
+msgstr ""
+
+#: staff.cat.opac.menuitem.dupnewtab.label
+msgctxt "staff.cat.opac.menuitem.dupnewtab.label"
+msgid "Duplicate in New Tab"
+msgstr "Duplicate in New Tab"
+
+#: staff.cat.opac.menuitem.removeframe.label
+msgctxt "staff.cat.opac.menuitem.removeframe.label"
+msgid "Remove this Frame"
+msgstr "Remove this Frame"
+
+#: staff.cat.record_buckets_overlay.record_query_tab.label
+#: staff.cat.record_buckets_overlay.record_query_tab.accesskey
+msgid "Record &Query"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_records_tab.label
+#: staff.cat.record_buckets_overlay.pending_records_tab.accesskey
+msgid "&Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_tab.label
+#: staff.cat.record_buckets_overlay.bucket_view_tab.accesskey
+msgid "Bucket &View"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_panel.label
+msgid "Bucket Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.new_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.delete_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.refresh_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.refresh_bucket.label"
+msgid "Refresh"
+msgstr "Refresh"
+
+#: staff.cat.record_buckets_overlay.record_query.label
+#: staff.cat.record_buckets_overlay.record_query.accesskey
+msgid "Quer&y"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.label
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey
+#, fuzzy
+msgctxt "staff.cat.record_buckets_overlay.cmd_submit_query.button.label staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey"
+msgid "&Submit"
+msgstr "Submit"
+
+#: staff.cat.record_buckets_overlay.query_help.button.label
+#: staff.cat.record_buckets_overlay.query_help.button.accesskey
+#, fuzzy
+msgctxt "staff.cat.record_buckets_overlay.query_help.button.label staff.cat.record_buckets_overlay.query_help.button.accesskey"
+msgid "&Help"
+msgstr "Help"
+
+#: staff.cat.record_buckets_overlay.query_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.query_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip0.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns0.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_query_to_pending.label
+msgid "Add All to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_query_to_pending.label
+msgctxt "staff.cat.record_buckets_overlay.add_sel_query_to_pending.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.pending_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip1.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns1.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.label
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.accesskey
+msgid "&Add All to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_pending_to_record_bucket.label
+msgid "Add Selected to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_del_item.label
+msgid "Remove Selected from Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.info_box.label
+msgctxt "staff.cat.record_buckets_overlay.info_box.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_owner.label
+msgctxt "staff.cat.record_buckets_overlay.bucket_owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip2.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns2.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.box.label
+msgctxt "staff.cat.record_buckets_overlay.box.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.sel_opac.label
+msgid "Show All in Catalog"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.del_records.label
+msgid "Delete All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.merge_records.label
+msgid "Merge All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.export_records.label
+msgid "Export All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_usmarc.label
+msgid "MARC21"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_unimarc.label
+msgid "UNIMARC"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_xml.label
+msgid "XML"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_eg_bre.label
+msgid "Evergreen BRE"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.groupbox.caption
+msgctxt "staff.cat.record_buckets_quick.groupbox.caption"
+msgid "Record Buckets"
+msgstr "Record Buckets"
+
+#: staff.cat.record_buckets_quick.add_to_bucket.title
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+#, fuzzy
+msgid "&Add to Bucket"
+msgstr "Add to Bucket"
+
+#: staff.cat.record_buckets_quick.add_to_bucket.label
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.add_to_bucket.label staff.cat.record_buckets_quick.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.new_bucket.label
+#: staff.cat.record_buckets_quick.new_bucket.accesskey
+#, fuzzy
+msgctxt "staff.cat.record_buckets_quick.new_bucket.label staff.cat.record_buckets_quick.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr "Add to &Bucket"
+
+#: staff.cat.record_buckets_quick.cancel.label
+#: staff.cat.record_buckets_quick.cancel.accesskey
+#, fuzzy
+msgctxt "staff.cat.record_buckets_quick.cancel.label staff.cat.record_buckets_quick.cancel.accesskey"
+msgid "&Cancel"
+msgstr "Cancel"
+
+#: staff.cat.spine_labels.re-generate.label
+#: staff.cat.spine_labels.re-generate.accesskey
+msgid "Re-&Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview_and_print.label
+#: staff.cat.spine_labels.preview_and_print.accesskey
+msgid "&Preview and Print"
+msgstr ""
+
+#: staff.cat.spine_labels.close_window.label
+#: staff.cat.spine_labels.close_window.accesskey
+#, fuzzy
+msgctxt "staff.cat.spine_labels.close_window.label staff.cat.spine_labels.close_window.accesskey"
+msgid "&Close Window"
+msgstr "Close Window"
+
+#: staff.cat.spine_labels.font_size.label
+msgid "Font size (in points):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label
+msgid "Spine Label"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.left_margin.label
+msgid "Left Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_width.label
+msgctxt "staff.cat.spine_labels.spine_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_length.label
+msgctxt "staff.cat.spine_labels.spine_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label
+msgid "Pocket Label"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.middle_margin.label
+msgid "Middle Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_width.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_length.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.title.label
+msgid "Include Title (wraps on word at label width)"
+msgstr ""
+
+#: staff.cat.spine_labels.on_line.label
+msgid "On line:"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.include_title.label
+msgid "Include Title (segment after wrapping)"
+msgstr ""
+
+#: staff.cat.spine_labels.indent_title.label
+msgid "Indent a space?"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_call_number.label
+msgid "Include Call Number"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library_policy_code.label
+msgid "Include Owning Library (policy code)"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library.label
+msgid "Include Owning Library"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_shelving_location.label
+msgid "Include Shelving Location"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_item_barcode.label
+msgid "Include Item Barcode"
+msgstr ""
+
+#: staff.cat.spine_labels.custom.label
+msgid "Custom:"
+msgstr ""
+
+#: staff.cat.spine_labels.available_macros.label
+msgid "Available Macros"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.title
+msgid "Volume and Copy Editor"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.label
+msgid "Volume and Copy Creator"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.check_barcodes.label
+#: staff.cat.volume_copy_creator.check_barcodes.accesskey
+#, fuzzy
+msgid "Check &Barcodes?"
+msgstr "Check barcode?"
+
+#: staff.cat.volume_copy_creator.print_labels.label
+#: staff.cat.volume_copy_creator.print_labels.accesskey
+msgid "&Print Labels?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.create.label
+#: staff.cat.volume_copy_creator.create.accesskey
+msgid "Edit then &Create"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.library_label.value
+msgctxt "staff.cat.volume_copy_creator.library_label.value"
+msgid "Library"
+msgstr "Library"
+
+#: staff.cat.volume_copy_creator.num_of_volumes_label.value
+msgid "# of volumes"
+msgstr ""
+
+#: staff.cat.volume_editor.caption.label
+msgid "Volume Editor"
+msgstr ""
+
+#: staff.cat.volume_editor.modify.label
+msgid "Modify"
+msgstr ""
+
+#: staff.cat.z3950.marc_import.label
+#: staff.cat.z3950.marc_import.accesskey
+msgid "MARC &Import via Z39.50"
+msgstr ""
+
+#: staff.cat.z3950.service_credentials.label
+msgid "Service and Credentials"
+msgstr ""
+
+#: staff.cat.z3950.service.label
+msgid "Service"
+msgstr ""
+
+#: staff.cat.z3950.username.label
+msgctxt "staff.cat.z3950.username.label"
+msgid "Username"
+msgstr "Username"
+
+#: staff.cat.z3950.password.label
+msgctxt "staff.cat.z3950.password.label"
+msgid "Password"
+msgstr "Password"
+
+#: staff.cat.z3950.catalog_service.label
+msgid "Local Catalog"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.tooltiptext
+msgid "Evergreen Native Catalog"
+msgstr ""
+
+#: staff.cat.z3950.save_creds.label
+#: staff.cat.z3950.save_creds.accesskey
+msgid "Save as &Default"
+msgstr ""
+
+#: staff.cat.z3950.query.label
+msgid "Query"
+msgstr ""
+
+#: staff.cat.z3950.query.description
+msgid ""
+"Tip: Click a search field label and then the 'Save as Default' button to "
+"have that field focused by default."
+msgstr ""
+
+#: staff.cat.z3950.clear.label
+#: staff.cat.z3950.clear.accesskey
+msgctxt "staff.cat.z3950.clear.label staff.cat.z3950.clear.accesskey"
+msgid "&Clear Form"
+msgstr "&Clear Form"
+
+#: staff.cat.z3950.search.label
+#: staff.cat.z3950.search.accesskey
+msgctxt "staff.cat.z3950.search.label staff.cat.z3950.search.accesskey"
+msgid "&Search"
+msgstr "&Search"
+
+#: staff.cat.z3950.results_page.label
+#: staff.cat.z3950.results_page.accesskey
+msgid "Results &Page"
+msgstr ""
+
+#: staff.cat.z3950.results_caption.label
+msgid "Results"
+msgstr ""
+
+#: staff.cat.z3950.search_form.label
+#: staff.cat.z3950.search_form.accesskey
+msgctxt "staff.cat.z3950.search_form.label staff.cat.z3950.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.cat.z3950.page_next.label
+#: staff.cat.z3950.page_next.accesskey
+msgid "Fetch &More Results"
+msgstr ""
+
+#: staff.cat.z3950.export.label
+msgid "CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.clip_button.label
+msgctxt "staff.cat.z3950.clip_button.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.save_cols_btn.label
+msgctxt "staff.cat.z3950.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.z3950.marc_view.label
+#: staff.cat.z3950.marc_view.accesskey
+msgctxt "staff.cat.z3950.marc_view.label staff.cat.z3950.marc_view.accesskey"
+msgid "MARC &View"
+msgstr "MARC &View"
+
+#: staff.cat.z3950.marc_import_overlay.label
+#: staff.cat.z3950.marc_import_overlay.accesskey
+msgid "MARC Editor for &Overlay"
+msgstr ""
+
+#: staff.cat.z3950.result_message.marc_import.label
+#: staff.cat.z3950.result_message.marc_import.accesskey
+msgid "MARC Editor for &Import"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieve_patron.label
+msgctxt "staff.pat.barcode_entry.retrieve_patron.label"
+msgid "Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.pat.barcode_entry.barcode.label
+#: staff.pat.barcode_entry.barcode.accesskey
+#, fuzzy
+msgctxt "staff.pat.barcode_entry.barcode.label staff.pat.barcode_entry.barcode.accesskey"
+msgid "&Barcode:"
+msgstr "Barcode"
+
+#: staff.pat.barcode_entry.submit_btn.label
+#: staff.pat.barcode_entry.submit_btn.accesskey
+#, fuzzy
+msgctxt "staff.pat.barcode_entry.submit_btn.label staff.pat.barcode_entry.submit_btn.accesskey"
+msgid "&Submit"
+msgstr "Submit"
+
+#: staff.pat.barcode_entry.retrieving.label
+msgctxt "staff.pat.barcode_entry.retrieving.label"
+msgid "Retrieving..."
+msgstr "Retrieving..."
+
+#: staff.patron.bill_cc_info.visa.label
+msgid "Visa"
+msgstr ""
+
+#: staff.patron.bill_cc_info.mastercard.label
+msgid "Mastercard"
+msgstr ""
+
+#: staff.patron.bill_cc_info.american_express.label
+msgid "American Express"
+msgstr ""
+
+#: staff.patron.bill_cc_info.discover.label
+msgid "Discover"
+msgstr ""
+
+#: staff.patron.bill_cc_info.other.label
+msgid "Other"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cc_number.value
+msgid "Credit Card Number"
+msgstr ""
+
+#: staff.patron.bill_cc_info.month_expire.value
+msgid "Expire Month"
+msgstr ""
+
+#: staff.patron.bill_cc_info.year_expire.value
+msgid "Expire Year"
+msgstr ""
+
+#: staff.patron.bill_cc_info.approval_code.value
+msgid "Approval Code"
+msgstr ""
+
+#: staff.patron.bill_cc_info.note.value
+msgctxt "staff.patron.bill_cc_info.note.value"
+msgid "Note"
+msgstr "Note"
+
+#: staff.patron.bill_cc_info.cancel.label
+#: staff.patron.bill_cc_info.cancel.accesskey
+#, fuzzy
+msgctxt "staff.patron.bill_cc_info.cancel.label staff.patron.bill_cc_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr "Cancel"
+
+#: staff.patron.bill_cc_info.submit.label
+#: staff.patron.bill_cc_info.submit.accesskey
+msgid "&Submit this Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.info.label
+msgid "Credit Card Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.type.label
+msgid "Credit Card Type"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_info.label
+msgid "Check Information"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_number.value
+msgid "Check Number"
+msgstr ""
+
+#: staff.patron.bill_check_info.note.value
+msgctxt "staff.patron.bill_check_info.note.value"
+msgid "Note"
+msgstr "Note"
+
+#: staff.patron.bill_check_info.cancel.label
+#: staff.patron.bill_check_info.cancel.accesskey
+#, fuzzy
+msgctxt "staff.patron.bill_check_info.cancel.label staff.patron.bill_check_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr "Cancel"
+
+#: staff.patron.bill_check_info.submit.label
+#: staff.patron.bill_check_info.submit.accesskey
+msgid "&Submit this Information"
+msgstr ""
+
+#: staff.patron.bill_details.bills.label
+msgctxt "staff.patron.bill_details.bills.label"
+msgid "Bills"
+msgstr "Bills"
+
+#: staff.patron.bill_details.save_columns.label
+msgctxt "staff.patron.bill_details.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.bill_details.copy_to_clipboard.label
+msgctxt "staff.patron.bill_details.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.bill_details.print_export.label
+msgctxt "staff.patron.bill_details.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.patron.bill_details.void_selection.label
+msgid "Void selected billings"
+msgstr ""
+
+#: staff.patron.bill_details.payments.label
+msgid "Payments"
+msgstr ""
+
+#: staff.patron.bill_details.show_in_catalog.label
+#: staff.patron.bill_details.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_details.show_in_catalog.label staff.patron.bill_details.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_details.close_window.label
+#: staff.patron.bill_details.close_window.accesskey
+#, fuzzy
+msgctxt "staff.patron.bill_details.close_window.label staff.patron.bill_details.close_window.accesskey"
+msgid "&Close Window"
+msgstr "Close Window"
+
+#: staff.patron.bill_history.caption.label
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.add_billing.label
+msgctxt "staff.patron.bill_history.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bill_history.full_details.label
+#: staff.patron.bill_history.full_details.accesskey
+msgid "Full &Details"
+msgstr ""
+
+#: staff.patron.bill_history.show_in_catalog.label
+#: staff.patron.bill_history.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_history.show_in_catalog.label staff.patron.bill_history.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_history.print.label
+#: staff.patron.bill_history.print.accesskey
+msgctxt "staff.patron.bill_history.print.label staff.patron.bill_history.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.patron.bill_history.close_window.label
+#: staff.patron.bill_history.close_window.accesskey
+#, fuzzy
+msgctxt "staff.patron.bill_history.close_window.label staff.patron.bill_history.close_window.accesskey"
+msgid "&Close Window"
+msgstr "Close Window"
+
+#: staff.patron.bills_overlay.still_checked_out.label
+msgid "Red Items are still Checked Out"
+msgstr ""
+
+#: staff.patron.bills_overlay.uncheck_all.label
+msgid "Uncheck All"
+msgstr ""
+
+#: staff.patron.bills_overlay.check_all.label
+msgid "Check All"
+msgstr ""
+
+#: staff.patron.bills_overlay.print_bills.label
+msgid "Print Bills"
+msgstr ""
+
+#: staff.patron.bills_overlay.alternate_view.label
+#: staff.patron.bills_overlay.alternate_view.accesskey
+msgid "Alternate &View"
+msgstr ""
+
+#: staff.patron.bills_overlay.summary.label
+msgid "Summary"
+msgstr ""
+
+#: staff.patron.bills_overlay.net_balance.value
+msgid "Net Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.new_balance.value
+msgid "= New Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.pay_bill.label
+msgid "Pay Bill"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.value
+msgid "Payment Type"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.accesskey
+msgctxt "staff.patron.bills_overlay.payment_type.accesskey"
+msgid "t"
+msgstr "t"
+
+#: staff.patron.bills_overlay.cash.label
+msgid "Cash"
+msgstr ""
+
+#: staff.patron.bills_overlay.check.label
+msgid "Check"
+msgstr ""
+
+#: staff.patron.bills_overlay.credit_card.label
+msgid "Credit Card"
+msgstr ""
+
+#: staff.patron.bills_overlay.word.label
+msgid "Work"
+msgstr ""
+
+#: staff.patron.bills_overlay.forgive.label
+msgid "Forgive"
+msgstr ""
+
+#: staff.patron.bills_overlay.goods.label
+msgid "Goods"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.value
+msgid "Payment received"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.accesskey
+msgctxt "staff.patron.bills_overlay.payment_received.accesskey"
+msgid "a"
+msgstr "a"
+
+#: staff.patron.bills_overlay.payment_applied.value
+msgid "- Payment applied"
+msgstr ""
+
+#: staff.patron.bills_overlay.change.value
+msgid "= Change"
+msgstr ""
+
+#: staff.patron.bills_overlay.patron_credit.value
+msgid "or Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.bill_patron.label
+#: staff.patron.bills_overlay.bill_patron.accesskey
+#, fuzzy
+msgid "&Bill Patron"
+msgstr "Bill Patron"
+
+#: staff.patron.bills_overlay.history.label
+#: staff.patron.bills_overlay.history.accesskey
+msgid "&History"
+msgstr ""
+
+#: staff.patron.bills_overlay.annotate_payment.label
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills_overlay.convert_change_to_credit.label
+msgid "Convert Change to Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.apply_payment.label
+#: staff.patron.bills_overlay.apply_payment.accesskey
+msgid "Apply &Payment!"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.bill_number.value
+#, fuzzy
+msgid "Bill #"
+msgstr "Bill # "
+
+#: staff.patron.bill_summary_overlay.total_billed.value
+msgctxt "staff.patron.bill_summary_overlay.total_billed.value"
+msgid "Total Billed"
+msgstr "Total Billed"
+
+#: staff.patron.bill_summary_overlay.title.value
+msgctxt "staff.patron.bill_summary_overlay.title.value"
+msgid "Title"
+msgstr "Title"
+
+#: staff.patron.bill_summary_overlay.type.value
+msgctxt "staff.patron.bill_summary_overlay.type.value"
+msgid "Type"
+msgstr "Type"
+
+#: staff.patron.bill_summary_overlay.total_paid.value
+msgctxt "staff.patron.bill_summary_overlay.total_paid.value"
+msgid "Total Paid"
+msgstr "Total Paid"
+
+#: staff.patron.bill_summary_overlay.checked_out.value
+#, fuzzy
+msgid "Checked Out"
+msgstr "Check Out"
+
+#: staff.patron.bill_summary_overlay.start.value
+msgctxt "staff.patron.bill_summary_overlay.start.value"
+msgid "Start"
+msgstr "Start"
+
+#: staff.patron.bill_summary_overlay.balance_owed.value
+msgctxt "staff.patron.bill_summary_overlay.balance_owed.value"
+msgid "Balance Owed"
+msgstr "Balance Owed"
+
+#: staff.patron.bill_summary_overlay.due_date.value
+msgctxt "staff.patron.bill_summary_overlay.due_date.value"
+msgid "Due Date"
+msgstr "Due Date"
+
+#: staff.patron.bill_summary_overlay.finish.value
+msgctxt "staff.patron.bill_summary_overlay.finish.value"
+msgid "Finish"
+msgstr "Finish"
+
+#: staff.patron.bill_summary_overlay.renewal.value
+msgid "Renewal?"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_in.value
+#, fuzzy
+msgid "Checked In"
+msgstr "Check In"
+
+#: staff.patron.bill_wizard.title
+msgid "Bill Patron Wizard"
+msgstr ""
+
+#: staff.patron.bill_wizard.create_bill.label
+msgid "Create Bill"
+msgstr ""
+
+#: staff.patron.bill_wizard.location.value
+msgctxt "staff.patron.bill_wizard.location.value"
+msgid "Location"
+msgstr "Location"
+
+#: staff.patron.bill_wizard.transaction_type.value
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.grocery.label
+msgid "Grocery"
+msgstr ""
+
+#: staff.patron.bill_wizard.circulation.label
+msgctxt "staff.patron.bill_wizard.circulation.label"
+msgid "Circulation"
+msgstr "Circulation"
+
+#: staff.patron.bill_wizard.billing_type.label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.amount.value
+msgctxt "staff.patron.bill_wizard.amount.value"
+msgid "Amount"
+msgstr "Amount"
+
+#: staff.patron.bill_wizard.note.value
+msgctxt "staff.patron.bill_wizard.note.value"
+msgid "Note"
+msgstr "Note"
+
+#: staff.patron.bill_wizard.cancel.label
+#: staff.patron.bill_wizard.cancel.accesskey
+#, fuzzy
+msgctxt "staff.patron.bill_wizard.cancel.label staff.patron.bill_wizard.cancel.accesskey"
+msgid "&Cancel"
+msgstr "Cancel"
+
+#: staff.patron.bill_wizard.submit.label
+#: staff.patron.bill_wizard.submit.accesskey
+msgid "&Submit this Bill"
+msgstr ""
+
+#: staff.patron.display_overlay.none_selected.value
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display_overlay.barred.value
+msgid "(Barred)"
+msgstr ""
+
+#: staff.patron.display_overlay.expired.value
+msgid "(Expired)"
+msgstr ""
+
+#: staff.patron.display_overlay.inactive.value
+msgid "(In-Active)"
+msgstr ""
+
+#: staff.patron.display_overlay.juvenile.value
+#, fuzzy
+msgid "(Juvenile)"
+msgstr "Juvenile"
+
+#: staff.patron.display_overlay.alert.value
+msgid "(Alert)"
+msgstr ""
+
+#: staff.patron.display_overlay.see_notes.value
+msgid "(See Notes)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_bills.value
+msgid "(Maximum Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_overdues.value
+msgid "(Maximum Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_bills.value
+msgid "(Has Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_overdues.value
+msgid "(Has Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_dob.value
+msgid "(Invalid Date of Birth)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_address.value
+msgid "(Invalid Address)"
+msgstr ""
+
+#: staff.patron.display_overlay.exit.label
+#: staff.patron.display_overlay.exit.accesskey
+msgctxt "staff.patron.display_overlay.exit.label staff.patron.display_overlay.exit.accesskey"
+msgid "E&xit"
+msgstr "E&xit"
+
+#: staff.patron.display_overlay.search_form.label
+#: staff.patron.display_overlay.search_form.accesskey
+msgctxt "staff.patron.display_overlay.search_form.label staff.patron.display_overlay.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.patron.display_overlay.retrieve_patron.label
+#: staff.patron.display_overlay.retrieve_patron.accesskey
+#, fuzzy
+msgid "&Retrieve Patron"
+msgstr "Retrieve Patron"
+
+#: staff.patron.bills_overlay.selected_balance.value
+msgid "Selected Balance:"
+msgstr ""
+
+#: staff.patron.bills_overlay.unselected.value
+msgid "Un-Selected:"
+msgstr ""
+
+#: staff.patron.bills_overlay.voided.value
+msgid "Voided:"
+msgstr ""
+
+#: staff.patron.bills_overlay.auto_print.label
+msgctxt "staff.patron.bills_overlay.auto_print.label"
+msgid "Auto-Print"
+msgstr "Auto-Print"
+
+#: staff.patron.hold_notices.add_record_notification.label
+#: staff.patron.hold_notices.add_record_notification.accesskey
+msgid "&Add Record of Notification"
+msgstr ""
+
+#: staff.patron.hold_notices.close_window.label
+#: staff.patron.hold_notices.close_window.accesskey
+msgctxt "staff.patron.hold_notices.close_window.label staff.patron.hold_notices.close_window.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.patron.hold_notices.method.label
+msgid "Method:"
+msgstr ""
+
+#: staff.patron.holds_overlay.pickup_lib.label
+msgctxt "staff.patron.holds_overlay.pickup_lib.label"
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.request_lib.label
+msgid "Requesting Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.fulfillment_lib.label
+msgid "Fulfilling Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.circ_lib.label
+#, fuzzy
+msgid "Item Circulating Library"
+msgstr "Circulating Library"
+
+#: staff.patron.holds_overlay.owning_lib.label
+msgid "Volume Owning Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.home_lib.label
+msgid "Patron Home Library foo"
+msgstr ""
+
+#: staff.patron.holds_overlay.fetch_more.label
+#: staff.patron.holds_overlay.fetch_more.accesskey
+msgid "Fetch &More Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.lib_filter_checkbox.label
+msgid "Filter:"
+msgstr ""
+
+#: staff.patron.holds_overlay.actions_for_holds.label
+#: staff.patron.holds_overlay.actions_for_holds.accesskey
+msgid "Actions for &Selected Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.holds_export.label
+msgctxt "staff.patron.holds_overlay.holds_export.label"
+msgid "Export"
+msgstr "Export"
+
+#: staff.patron.info_group.clone.label
+#: staff.patron.info_group.clone.accesskey
+msgid "Register a &New Group Member by Cloning Selected Patrons"
+msgstr ""
+
+#: staff.patron.info_group.remove.label
+#: staff.patron.info_group.remove.accesskey
+msgid "&Remove Selected Patrons from the Group"
+msgstr ""
+
+#: staff.patron.info_group.move.label
+#: staff.patron.info_group.move.accesskey
+msgid "&Move Selected Patrons to another patron's group."
+msgstr ""
+
+#: staff.patron.info_group.add.label
+#: staff.patron.info_group.add.accesskey
+msgid "Move &another patron to this patron group."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_p.label
+#: staff.patron.info_group.retrieve_p.accesskey
+msgid "Retrieve Selected &Patrons"
+msgstr ""
+
+#: staff.patron.info_group.group_member.label
+msgid "Group Members"
+msgstr ""
+
+#: staff.patron.info_group.choose_an_action.label
+#: staff.patron.info_group.choose_an_action.accesskey
+msgid "Choose an &Action..."
+msgstr ""
+
+#: staff.patron.info_surveys.survey_number.value
+msgid "Survey #"
+msgstr ""
+
+#: staff.patron.info_surveys.last_answered.value
+msgid "Last Answered on:"
+msgstr ""
+
+#: staff.patron.info_surveys.answer.value
+msgid "Answer:"
+msgstr ""
+
+#: staff.patron.info.notes.label
+#: staff.patron.info.notes.accesskey
+msgid "&Notes"
+msgstr ""
+
+#: staff.patron.info.stat_cats.label
+#: staff.patron.info.stat_cats.accesskey
+msgid "&Statistical Categories"
+msgstr ""
+
+#: staff.patron.info.surveys.label
+#: staff.patron.info.surveys.accesskey
+msgid "Surve&ys"
+msgstr ""
+
+#: staff.patron.info.group.label
+#: staff.patron.info.group.accesskey
+msgid "&Group"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.value
+msgid "Include inactive patrons?"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.accesskey
+msgctxt "staff.patron.search_form_overlay.inactive.accesskey"
+msgid "I"
+msgstr "I"
+
+#: staff.patron.search_form_overlay.search_range_menu.value
+msgid "Limit results to patrons in"
+msgstr ""
+
+#: staff.patron.search_result_overlay.save_cols.label
+msgctxt "staff.patron.search_result_overlay.save_cols.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.search_result_overlay.copy_to_clipboard.label
+msgctxt "staff.patron.search_result_overlay.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.search_result_overlay.print.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.summary_overlay.psagbc.alert.label
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.summary_overlay.pssgbc.standing.label
+msgctxt "staff.patron.summary_overlay.pssgbc.standing.label"
+msgid "Standing"
+msgstr "Standing"
+
+#: staff.patron.summary_overlay.overdue.value
+msgid "Long Overdue:"
+msgstr ""
+
+#: staff.patron.summary_overlay.claimed_returned.value
+msgid "Claimed Returned:"
+msgstr ""
+
+#: staff.patron.summary_overlay.lost_label.value
+msgid "Lost:"
+msgstr ""
+
+#: staff.patron.summary_overlay.noncat_label.value
+msgid "Non Cataloged:"
+msgstr ""
+
+#: staff.patron.summary_overlay.summary_contact.label
+msgid "ID and Contact Information"
+msgstr ""
+
+#: staff.patron.summary_overlay.opac_login.value
+msgid "OPAC Login:"
+msgstr ""
+
+#: staff.patron.user_buckets.stub_not_implemented
+msgid "Just a stub, Not Yet Implemented"
+msgstr ""
+
+#: staff.patron.user_edit.title
+msgctxt "staff.patron.user_edit.title"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.user_edit.user_name.label
+msgid "User Name:"
+msgstr ""
+
+#: staff.patron.user_edit.barcode.label
+#, fuzzy
+msgctxt "staff.patron.user_edit.barcode.label"
+msgid "Barcode:"
+msgstr "Barcode"
+
+#: staff.patron.user_edit.firstname.label
+msgctxt "staff.patron.user_edit.firstname.label"
+msgid "First Name:"
+msgstr "First Name:"
+
+#: staff.patron.user_edit.middlename.label
+msgctxt "staff.patron.user_edit.middlename.label"
+msgid "Middle Name:"
+msgstr "Middle Name:"
+
+#: staff.patron.user_edit.lastname.label
+msgctxt "staff.patron.user_edit.lastname.label"
+msgid "Last Name:"
+msgstr "Last Name:"
+
+#: staff.patron.user_edit.working_location.label
+msgid "Working Location"
+msgstr ""
+
+#: staff.patron.user_edit.permission.label
+msgid "Permission"
+msgstr ""
+
+#: staff.patron.user_edit.applied.label
+msgid "Applied"
+msgstr ""
+
+#: staff.patron.user_edit.depth.label
+msgid "Depth"
+msgstr ""
+
+#: staff.patron.user_edit.grantable.label
+msgid "Grantable"
+msgstr ""
+
+#: staff.patron.user_edit.save.label
+msgctxt "staff.patron.user_edit.save.label"
+msgid "Save"
+msgstr ""
+
+#: staff.patron.ue.ev_user_editor.label
+msgctxt "staff.patron.ue.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.ue.user_greeting.label
+msgctxt "staff.patron.ue.user_greeting.label"
+msgid "Welcome "
+msgstr ""
+
+#: staff.patron.ue.interface_note.label
+msgid ""
+"Note: required or invalid fields are <span style='border-bottom: 2px solid "
+"red;'>marked with color</span>"
+msgstr ""
+
+#: staff.patron.ue.view_errors.label
+msgctxt "staff.patron.ue.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: staff.patron.ue.nav.user_id.label
+msgctxt "staff.patron.ue.nav.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: staff.patron.ue.nav.contact_info.label
+msgctxt "staff.patron.ue.nav.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: staff.patron.ue.nav.addresses.label
+#, fuzzy
+msgctxt "staff.patron.ue.nav.addresses.label"
+msgid "3. Addresses"
+msgstr "Addresses"
+
+#: staff.patron.ue.nav.groups_permissions.label
+msgctxt "staff.patron.ue.nav.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: staff.patron.ue.nav.stat_categories.label
+msgctxt "staff.patron.ue.nav.stat_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.nav.surveys.label
+msgctxt "staff.patron.ue.nav.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: staff.patron.ue.nav.finish.label
+msgctxt "staff.patron.ue.nav.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: staff.patron.ue.loading_data.label
+msgctxt "staff.patron.ue.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.patron.ue.found_duplicate_patron.label
+msgctxt "staff.patron.ue.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: staff.patron.ue.mark_lost.label
+msgctxt "staff.patron.ue.mark_lost.label"
+msgid "Mark Lost"
+msgstr "Mark Lost"
+
+#: staff.patron.ue.username.label
+msgctxt "staff.patron.ue.username.label"
+msgid "Username"
+msgstr "Username"
+
+#: staff.patron.ue.password.label
+msgctxt "staff.patron.ue.password.label"
+msgid "Password"
+msgstr "Password"
+
+#: staff.patron.ue.reset.label
+msgctxt "staff.patron.ue.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: staff.patron.ue.re_password.label
+#, fuzzy
+msgctxt "staff.patron.ue.re_password.label"
+msgid "Password: "
+msgstr "Password:"
+
+#: staff.patron.ue.verify_password.label
+msgctxt "staff.patron.ue.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: staff.patron.ue.first_name.label
+msgctxt "staff.patron.ue.first_name.label"
+msgid "First Name"
+msgstr "First Name"
+
+#: staff.patron.ue.middle_name.label
+msgctxt "staff.patron.ue.middle_name.label"
+msgid "Middle Name"
+msgstr "Middle Name"
+
+#: staff.patron.ue.last_name.label
+#, fuzzy
+msgctxt "staff.patron.ue.last_name.label"
+msgid "Last Name"
+msgstr "Last Name:"
+
+#: staff.patron.ue.suffix.label
+msgctxt "staff.patron.ue.suffix.label"
+msgid "Suffix"
+msgstr "Suffix"
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.choose.label
+msgctxt "staff.patron.ue.choose.label"
+msgid "- Pick -"
+msgstr ""
+
+#: staff.patron.ue.dob.label
+#, fuzzy
+msgctxt "staff.patron.ue.dob.label"
+msgid "Date of Birth"
+msgstr "Date of Birth:"
+
+#: staff.patron.ue.primary_id_type.label
+msgctxt "staff.patron.ue.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.required.label
+msgctxt "staff.patron.ue.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: staff.patron.ue.primary_id.label
+msgctxt "staff.patron.ue.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: staff.patron.ue.secondary_id_type.label
+msgctxt "staff.patron.ue.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.none_selected.label
+msgctxt "staff.patron.ue.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: staff.patron.ue.secondary_id.label
+msgctxt "staff.patron.ue.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: staff.patron.ue.parent_guardian.label
+msgctxt "staff.patron.ue.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: staff.patron.ue.email_address.label
+msgctxt "staff.patron.ue.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: staff.patron.ue.day_phone.label
+msgctxt "staff.patron.ue.day_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: staff.patron.ue.evening_phone.label
+msgctxt "staff.patron.ue.evening_phone.label"
+msgid "Evening Phone"
+msgstr "Evening Phone"
+
+#: staff.patron.ue.other_phone.label
+msgctxt "staff.patron.ue.other_phone.label"
+msgid "Other Phone"
+msgstr "Other Phone"
+
+#: staff.patron.ue.home_library.label
+msgctxt "staff.patron.ue.home_library.label"
+msgid "Home Library"
+msgstr "Home Library"
+
+#: staff.patron.ue.address.label
+#, fuzzy
+msgctxt "staff.patron.ue.address.label"
+msgid "Address"
+msgstr "Addresses"
+
+#: staff.patron.ue.in_city_limits.label
+msgctxt "staff.patron.ue.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: staff.patron.ue.valid.label
+msgctxt "staff.patron.ue.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: staff.patron.ue.mailing_address.label
+msgctxt "staff.patron.ue.mailing_address.label"
+msgid "Mailing Address"
+msgstr "Mailing Address"
+
+#: staff.patron.ue.physical_address.label
+msgctxt "staff.patron.ue.physical_address.label"
+msgid "Physical Address"
+msgstr "Physical Address"
+
+#: staff.patron.ue.owned_address.label
+msgctxt "staff.patron.ue.owned_address.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: staff.patron.ue.edit.label
+msgctxt "staff.patron.ue.edit.label"
+msgid "Edit"
+msgstr "Edit"
+
+#: staff.patron.ue.label.label
+msgctxt "staff.patron.ue.label.label"
+msgid "Label"
+msgstr ""
+
+#: staff.patron.ue.zip_code.label
+msgid "Zip Code"
+msgstr ""
+
+#: staff.patron.ue.street_1.label
+msgctxt "staff.patron.ue.street_1.label"
+msgid "Street 1"
+msgstr ""
+
+#: staff.patron.ue.street_2.label
+msgctxt "staff.patron.ue.street_2.label"
+msgid "Street 2"
+msgstr ""
+
+#: staff.patron.ue.city.label
+msgctxt "staff.patron.ue.city.label"
+msgid "City"
+msgstr "City"
+
+#: staff.patron.ue.county.label
+#, fuzzy
+msgctxt "staff.patron.ue.county.label"
+msgid "County"
+msgstr "Country"
+
+#: staff.patron.ue.state.label
+msgctxt "staff.patron.ue.state.label"
+msgid "State"
+msgstr "Province"
+
+#: staff.patron.ue.country.label
+msgctxt "staff.patron.ue.country.label"
+msgid "Country"
+msgstr "Country"
+
+#: staff.patron.ue.delete_this_address.label
+msgid "Delete this Address"
+msgstr ""
+
+#: staff.patron.ue.detach_this_address.label
+msgid "Detach this Address"
+msgstr ""
+
+#: staff.patron.ue.create_address.label
+msgid "Create a New Address"
+msgstr ""
+
+#: staff.patron.ue.profile_group.label
+msgctxt "staff.patron.ue.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#: staff.patron.ue.accoutn_expire_date.label
+msgctxt "staff.patron.ue.accoutn_expire_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: staff.patron.ue.internet_access_level.label
+msgctxt "staff.patron.ue.internet_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: staff.patron.ue.active.label
+msgctxt "staff.patron.ue.active.label"
+msgid "Active"
+msgstr "Active"
+
+#: staff.patron.ue.barred.label
+msgctxt "staff.patron.ue.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: staff.patron.ue.set_lead_account.label
+msgctxt "staff.patron.ue.set_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: staff.patron.ue.claims_returned_count.label
+msgctxt "staff.patron.ue.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr "Claims Returned Count"
+
+#: staff.patron.ue.alert_message.label
+msgctxt "staff.patron.ue.alert_message.label"
+msgid "Alert Message"
+msgstr "Alert Message"
+
+#: staff.patron.ue.stat_cat_name.label
+#, fuzzy
+msgctxt "staff.patron.ue.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr "Statistical &Category Editor"
+
+#: staff.patron.ue.owner.label
+msgctxt "staff.patron.ue.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: staff.patron.ue.value.label
+msgctxt "staff.patron.ue.value.label"
+msgid "Value"
+msgstr "Value"
+
+#: staff.patron.ue.no_surveys_for_location.label
+msgctxt "staff.patron.ue.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: staff.patron.ue.message1.label
+msgid "You are now ready to save the user to the database."
+msgstr ""
+
+#: staff.patron.ue.message2.label
+msgid ""
+"To view or print a summary of the changes, click on the 'View Summary' link."
+msgstr ""
+
+#: staff.patron.ue.message3.label
+msgid "To save the user, click on the 'Save User' button."
+msgstr ""
+
+#: staff.patron.ue.view_summary.label
+msgid "View Summary"
+msgstr ""
+
+#: staff.patron.ue.back.label
+msgctxt "staff.patron.ue.back.label"
+msgid "Back"
+msgstr ""
+
+#: staff.patron.ue.forward.label
+msgctxt "staff.patron.ue.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: staff.patron.ue.user_summary.label
+msgid ""
+"User Summary Information (Deleted items are marked in <span "
+"class='deleted'>color</span><span>)</span>"
+msgstr ""
+
+#: staff.patron.ue.barcode.label
+msgctxt "staff.patron.ue.barcode.label"
+msgid "Barcode"
+msgstr "Barcode"
+
+#: staff.patron.ue.addresses.label
+msgctxt "staff.patron.ue.addresses.label"
+msgid "Addresses"
+msgstr "Addresses"
+
+#: staff.patron.ue.address_label.label
+msgctxt "staff.patron.ue.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: staff.patron.ue.billing_address.label
+msgctxt "staff.patron.ue.billing_address.label"
+msgid "Billing Address"
+msgstr "Billing Address"
+
+#: staff.patron.ue.profile.label
+msgctxt "staff.patron.ue.profile.label"
+msgid "Profile"
+msgstr "Profile"
+
+#: staff.patron.ue.expire_date.label
+msgctxt "staff.patron.ue.expire_date.label"
+msgid "Expire Date"
+msgstr "Expire Date"
+
+#: staff.patron.ue.family_lead_account.label
+msgctxt "staff.patron.ue.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: staff.patron.ue.stat_categories.label
+msgctxt "staff.patron.ue.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.survey.label
+msgctxt "staff.patron.ue.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: staff.patron.ue.question.label
+msgctxt "staff.patron.ue.question.label"
+msgid "Question"
+msgstr ""
+
+#: staff.patron.ue.answer.label
+msgctxt "staff.patron.ue.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: staff.patron.ue.bad_dob.label
+msgid ""
+"The date of birth field is not formatted correctly. We are expecting YYYY-"
+"MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_username.label
+msgid "Username is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_passwords.label
+msgid "Passwords do not match or are invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_firstname.label
+msgid "First name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_middlename.label
+msgid "Middle name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_lastname.label
+msgid "Last name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_barcode.label
+msgid "Barcode is invalid"
+msgstr ""
+
+#: staff.patron.ue.duplicate_barcode.label
+msgid "The selected barcode already exists in the database"
+msgstr ""
+
+#: staff.patron.ue.new_barcode_warn.label
+msgid ""
+"This will de-activate the existing barcode for this user! If you wish to "
+"continue, enter the new barcode below. Otherwise, click the Cancel button."
+msgstr ""
+
+#: staff.patron.ue.no_ident.label
+msgid "You must select at least one type of identification"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_dl.label
+msgid "Invalid drivers license. Should be STATE-NUMBER"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_ssn.label
+msgid "Invalid social security number. Format should be 111-22-3333"
+msgstr ""
+
+#: staff.patron.ue.bad_email.label
+msgid "The email addresses is not valid"
+msgstr ""
+
+#: staff.patron.ue.bad_phone.label
+msgid "An invalid phone number was entered"
+msgstr ""
+
+#: staff.patron.ue.no_profile.label
+msgctxt "staff.patron.ue.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: staff.patron.ue.bad_expire.label
+msgid "The user expiration date is invalid. We are expecting YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_claims_returned.label
+msgid "The claims returned count is invalid"
+msgstr ""
+
+#: staff.patron.ue.unknown_error.label
+msgid "An unknown formatting error occurred"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_label.label
+msgid "Address label is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_street.label
+msgid "Address street is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_city.label
+msgid "Address city is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_county.label
+msgid "Address county is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_state.label
+msgid "Address state is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_country.label
+msgid "Address country is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_zip.label
+msgid "Address zip is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_survey.label
+msgid "Required survey is unanswered"
+msgstr ""
+
+#: staff.patron.ue.delete_addr_warn.label
+msgid ""
+"This will remove this address from the user. Are you sure you wish to "
+"continue?"
+msgstr ""
+
+#: staff.patron.ue.yes.label
+msgctxt "staff.patron.ue.yes.label"
+msgid "Yes"
+msgstr "Yes"
+
+#: staff.patron.ue.no.label
+msgctxt "staff.patron.ue.no.label"
+msgid "No"
+msgstr "No"
+
+#: staff.patron.ue.summary_window.label
+msgid "Patron Summary"
+msgstr ""
+
+#: staff.patron.ue.success.label
+msgid "User update succeeded"
+msgstr ""
+
+#: staff.patron.ue.dup_ident1.label
+msgid ""
+"A user already exists with the primary identification provided. Do you wish "
+"to view the duplicate record now?"
+msgstr ""
+
+#: staff.patron.ue.dup_username.label
+msgid ""
+"The selected username is in use by another user. Please choose a different "
+"username."
+msgstr ""
+
+#: staff.patron.ue.dup_barcode.label
+msgid ""
+"The selected barcode is in use by another user. Please choose a different "
+"barcode."
+msgstr ""
+
+#: staff.patron.ue.cancel_confirm.label
+msgid ""
+"Are you sure you wish to cancel this editing session? Canceling will destroy "
+"any unsaved changes you have made thus far to the user."
+msgstr ""
+
+#: staff.patron.ue.juv_guardian.label
+msgid ""
+"This patron is under 18 years of age. Please enter the name of the parent "
+"or guardian for this patron."
+msgstr ""
+
+#: staff.patron.ue.bad_date.label
+msgid ""
+"The date provided is either in the future or invalid. We are expecting "
+"YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.made_barred.label
+msgid ""
+"Please add a note to the patron's alert message explaining why the patron is "
+"barred."
+msgstr ""
+
+#: staff.patron.items_overlay.sel_clip.label
+#: staff.patron.items_overlay.sel_clip.accesskey
+msgctxt "staff.patron.items_overlay.sel_clip.label staff.patron.items_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_bucket.label
+#: staff.patron.items_overlay.sel_bucket.accesskey
+msgctxt "staff.patron.items_overlay.sel_bucket.label staff.patron.items_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.patron.items_overlay.show_catalog.label
+msgctxt "staff.patron.items_overlay.show_catalog.label"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_copy_details.label
+#: staff.patron.items_overlay.sel_copy_details.accesskey
+msgctxt "staff.patron.items_overlay.sel_copy_details.label staff.patron.items_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_patron.label
+#: staff.patron.items_overlay.sel_patron.accesskey
+msgctxt "staff.patron.items_overlay.sel_patron.label staff.patron.items_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.patron.items_overlay.items_edit.label
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items_overlay.items_mark_lost.label
+msgid "Mark Lost (by Patron)"
+msgstr ""
+
+#: staff.patron.items_overlay.items_claimed_returned.label
+#, fuzzy
+msgid "Mark Claimed Returned"
+msgstr "Mark as \"Claimed Returned\""
+
+#: staff.patron.items_overlay.items_renew.label
+msgctxt "staff.patron.items_overlay.items_renew.label"
+msgid "Renew"
+msgstr "Renew"
+
+#: staff.patron.items_overlay.items_renew_all.label
+msgid "Renew All"
+msgstr ""
+
+#: staff.patron.items_overlay.items_checkin.label
+msgctxt "staff.patron.items_overlay.items_checkin.label"
+msgid "Check In"
+msgstr "Check In"
+
+#: staff.patron.items_overlay.add_billing.label
+msgctxt "staff.patron.items_overlay.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.items_overlay.save_columns.label
+msgctxt "staff.patron.items_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.items_overlay.actions_for_selected_items.label
+#: staff.patron.items_overlay.actions_for_selected_items.accesskey
+msgctxt "staff.patron.items_overlay.actions_for_selected_items.label staff.patron.items_overlay.actions_for_selected_items.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.patron.items_overlay.show_noncats.label
+#: staff.patron.items_overlay.show_noncats.accesskey
+msgid "Show &Non-Cataloged Circulations in List Above"
+msgstr ""
+
+#: staff.patron.items_overlay.items_export.label
+msgctxt "staff.patron.items_overlay.items_export.label"
+msgid "Export"
+msgstr "Export"
+
+#: ev.staff.patron.ue_xhtml.ev_user_editor.label
+msgctxt "ev.staff.patron.ue_xhtml.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.welcome.label
+msgctxt "ev.staff.patron.ue_xhtml.welcome.label"
+msgid "Welcome "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.view_errors.label
+msgctxt "ev.staff.patron.ue_xhtml.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.user_id.label
+msgctxt "ev.staff.patron.ue_xhtml.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.contact_info.label
+msgctxt "ev.staff.patron.ue_xhtml.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.addresses.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.addresses.label"
+msgid "3. Addresses"
+msgstr "Addresses"
+
+#: ev.staff.patron.ue_xhtml.groups_permissions.label
+msgctxt "ev.staff.patron.ue_xhtml.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.statistical_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.statistical_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.surveys.label
+msgctxt "ev.staff.patron.ue_xhtml.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.finish.label
+msgctxt "ev.staff.patron.ue_xhtml.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.loading_data.label
+msgctxt "ev.staff.patron.ue_xhtml.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.found_duplicate_patron.label
+msgctxt "ev.staff.patron.ue_xhtml.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.barcode.label
+msgctxt "ev.staff.patron.ue_xhtml.barcode.label"
+msgid "Barcode"
+msgstr "Barcode"
+
+#: ev.staff.patron.ue_xhtml.mark_lost.label
+msgctxt "ev.staff.patron.ue_xhtml.mark_lost.label"
+msgid "Mark Lost"
+msgstr "Mark Lost"
+
+#: ev.staff.patron.ue_xhtml.username.label
+msgctxt "ev.staff.patron.ue_xhtml.username.label"
+msgid "Username"
+msgstr "Username"
+
+#: ev.staff.patron.ue_xhtml.password.label
+msgctxt "ev.staff.patron.ue_xhtml.password.label"
+msgid "Password"
+msgstr "Password"
+
+#: ev.staff.patron.ue_xhtml.reset.label
+msgctxt "ev.staff.patron.ue_xhtml.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.re_password.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.re_password.label"
+msgid "Password: "
+msgstr "Password:"
+
+#: ev.staff.patron.ue_xhtml.verify_password.label
+msgctxt "ev.staff.patron.ue_xhtml.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.first_name.label
+msgctxt "ev.staff.patron.ue_xhtml.first_name.label"
+msgid "First Name"
+msgstr "First Name"
+
+#: ev.staff.patron.ue_xhtml.middle_name.label
+msgctxt "ev.staff.patron.ue_xhtml.middle_name.label"
+msgid "Middle Name"
+msgstr "Middle Name"
+
+#: ev.staff.patron.ue_xhtml.last_name.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.last_name.label"
+msgid "Last Name"
+msgstr "Last Name:"
+
+#: ev.staff.patron.ue_xhtml.suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.suffix.label"
+msgid "Suffix"
+msgstr "Suffix"
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.pick_suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.pick_suffix.label"
+msgid "- Pick -"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.dob.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.dob.label"
+msgid "Date of Birth"
+msgstr "Date of Birth:"
+
+#: ev.staff.patron.ue_xhtml.primary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.primary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.parent_guardian.label
+msgctxt "ev.staff.patron.ue_xhtml.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.email_address.label
+msgctxt "ev.staff.patron.ue_xhtml.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.daytime_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.daytime_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.evening_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.evening_phone.label"
+msgid "Evening Phone"
+msgstr "Evening Phone"
+
+#: ev.staff.patron.ue_xhtml.other_phone.label
+msgid "Other (Cell Phone)"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.home_library.label
+msgctxt "ev.staff.patron.ue_xhtml.home_library.label"
+msgid "Home Library"
+msgstr "Home Library"
+
+#: ev.staff.patron.ue_xhtml.address.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.address.label"
+msgid "Address"
+msgstr "Addresses"
+
+#: ev.staff.patron.ue_xhtml.in_city_limits.label
+msgctxt "ev.staff.patron.ue_xhtml.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.valid.label
+msgctxt "ev.staff.patron.ue_xhtml.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mailing_address.label
+msgctxt "ev.staff.patron.ue_xhtml.mailing_address.label"
+msgid "Mailing Address"
+msgstr "Mailing Address"
+
+#: ev.staff.patron.ue_xhtml.physical_address.label
+msgctxt "ev.staff.patron.ue_xhtml.physical_address.label"
+msgid "Physical Address"
+msgstr "Physical Address"
+
+#: ev.staff.patron.ue_xhtml.address_owned_by.label
+msgctxt "ev.staff.patron.ue_xhtml.address_owned_by.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.label.label
+msgctxt "ev.staff.patron.ue_xhtml.label.label"
+msgid "Label"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.zip.label
+msgid "Zip"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.street1.label
+msgctxt "ev.staff.patron.ue_xhtml.street1.label"
+msgid "Street 1"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.street2.label
+msgctxt "ev.staff.patron.ue_xhtml.street2.label"
+msgid "Street 2"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.city.label
+msgctxt "ev.staff.patron.ue_xhtml.city.label"
+msgid "City"
+msgstr "City"
+
+#: ev.staff.patron.ue_xhtml.conuty.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.conuty.label"
+msgid "County"
+msgstr "Country"
+
+#: ev.staff.patron.ue_xhtml.state.label
+msgctxt "ev.staff.patron.ue_xhtml.state.label"
+msgid "State"
+msgstr "Province"
+
+#: ev.staff.patron.ue_xhtml.country.label
+msgctxt "ev.staff.patron.ue_xhtml.country.label"
+msgid "Country"
+msgstr "Country"
+
+#: ev.staff.patron.ue_xhtml.profile_group.label
+msgctxt "ev.staff.patron.ue_xhtml.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.required.label
+msgctxt "ev.staff.patron.ue_xhtml.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.account_expiration_date.label
+msgctxt "ev.staff.patron.ue_xhtml.account_expiration_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.net_access_level.label
+msgctxt "ev.staff.patron.ue_xhtml.net_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.active.label
+msgctxt "ev.staff.patron.ue_xhtml.active.label"
+msgid "Active"
+msgstr "Active"
+
+#: ev.staff.patron.ue_xhtml.barred.label
+msgctxt "ev.staff.patron.ue_xhtml.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.set_family_group_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.set_family_group_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.claims_returned_count.label
+msgctxt "ev.staff.patron.ue_xhtml.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr "Claims Returned Count"
+
+#: ev.staff.patron.ue_xhtml.alert_message.label
+msgctxt "ev.staff.patron.ue_xhtml.alert_message.label"
+msgid "Alert Message"
+msgstr "Alert Message"
+
+#: ev.staff.patron.ue_xhtml.stat_cat_name.label
+#, fuzzy
+msgctxt "ev.staff.patron.ue_xhtml.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr "Statistical &Category Editor"
+
+#: ev.staff.patron.ue_xhtml.owner.label
+msgctxt "ev.staff.patron.ue_xhtml.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.value.label
+msgctxt "ev.staff.patron.ue_xhtml.value.label"
+msgid "Value"
+msgstr "Value"
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.none_selected.label
+msgctxt "ev.staff.patron.ue_xhtml.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.no_surveys_for_location.label
+msgctxt "ev.staff.patron.ue_xhtml.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.finishing_message.label
+msgid ""
+"You are now ready to save the user to the database.<br/>To view or print a "
+"summary of the changes, click on the 'View Summary' link.<br/>To save the "
+"user, click on the 'Save User' button."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.back.label
+msgctxt "ev.staff.patron.ue_xhtml.back.label"
+msgid "Back"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.forward.label
+msgctxt "ev.staff.patron.ue_xhtml.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.secondary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.secondary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address_label.label
+msgctxt "ev.staff.patron.ue_xhtml.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mailing.label
+msgid "Mailing"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.billing.label
+msgid "Billing"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.profile.label
+msgctxt "ev.staff.patron.ue_xhtml.profile.label"
+msgid "Profile"
+msgstr "Profile"
+
+#: ev.staff.patron.ue_xhtml.expire_date.label
+msgctxt "ev.staff.patron.ue_xhtml.expire_date.label"
+msgid "Expire Date"
+msgstr "Expire Date"
+
+#: ev.staff.patron.ue_xhtml.family_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.stat_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.survey.label
+msgctxt "ev.staff.patron.ue_xhtml.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.question.label
+msgctxt "ev.staff.patron.ue_xhtml.question.label"
+msgid "Question"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.answer.label
+msgctxt "ev.staff.patron.ue_xhtml.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.claims_return_confirm.label
+msgid ""
+"This will reset the claims returned count for this user. Are you sure you "
+"wish to perform this action?"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.unsaved_changes.label
+msgid "You have unsaved changes."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.xact_collision.label
+msgid ""
+"It appears that someone else was also editing this user. Saving the user now "
+"will destroy their changes. Click 'OK' to refresh the user and continue "
+"editing. Click 'Cancel' to do nothing. Note that you will not be able to "
+"save the user until this page has been refreshed."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.no_profile.label
+msgctxt "ev.staff.patron.ue_xhtml.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.print_page.label
+msgid "Print Page"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.return_to_editor.label
+msgid "Return to Editor"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.save_user.value
+msgid "Save User"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.save_clone_user.value
+msgid "Save and Clone User"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.cancel.value
+msgctxt "ev.staff.patron.ue_xhtml.cancel.value"
+msgid "Cancel"
+msgstr "Cancel"
+
+#: ev.staff.patron.ue_xhtml.alert_message_reset.value
+msgid "Clear"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.date_selector.label
+msgctxt "ev.staff.patron.ue_xhtml.date_selector.label"
+msgid "Date selector"
+msgstr ""
+
+#: staff.portal.title
+msgid "Evergreen Staff Client Portal Page"
+msgstr ""
+
+#: staff.portal.default.welcome
+msgid ""
+"This is the Evergreen staff client portal page. You can customize this with "
+"the information or functionality your organization needs to support its "
+"operations. For example, you could add links to process and procedure "
+"documents."
+msgstr ""
+
+#~ msgid "Circ As Type"
+#~ msgstr "Circ As Type"
+
+#~ msgid "Circ Lib"
+#~ msgstr "Circ Lib"
+
+#~ msgid "Pickup Lib"
+#~ msgstr "Pickup Lib"
+
+#~ msgid "Checkouts"
+#~ msgstr "Checkouts"
+
+#~ msgid "Dob"
+#~ msgstr "Dob"
+
+#~ msgid "Ident Type2"
+#~ msgstr "Ident Type2"
+
+#~ msgid "Ident Type"
+#~ msgstr "Ident Type"
+
+#~ msgid "Ident Value2"
+#~ msgstr "Ident Value2"
+
+#~ msgid "Ident Value"
+#~ msgstr "Ident Value"
+
+#~ msgid "Passwd"
+#~ msgstr "Passwd"
+
+#~ msgid "Stat Cat Entries"
+#~ msgstr "Stat Cat Entries"
+
+#~ msgid "Usrname"
+#~ msgstr "Usrname"
+
+#~ msgid "BILLS"
+#~ msgstr "BILLS"
+
+#~ msgid "Circulating Lib"
+#~ msgstr "Circulating Lib"
+
+#~ msgid "ISBN/ISSN"
+#~ msgstr "ISBN/ISSN"
+
+#~ msgid "CHECK IN"
+#~ msgstr "CHECK IN"
+
+#~ msgid "CHECK OUT"
+#~ msgstr "CHECK OUT"
+
+#~ msgid "Ident Type:"
+#~ msgstr "Ident Type:"
+
+#~ msgid "Circ Id"
+#~ msgstr "Circ Id"
+
+#~ msgid "COPIES EDIT"
+#~ msgstr "COPIES EDIT"
+
+#~ msgid "PINES Attributes"
+#~ msgstr "PINES Attributes"
+
+#~ msgid "COPIES"
+#~ msgstr "COPIES"
+
+#~ msgid "COPY STAT-CATS"
+#~ msgstr "COPY STAT-CATS"
+
+#~ msgid "DISPLAY PATRON"
+#~ msgstr "DISPLAY PATRON"
+
+#~ msgid "FIELDMAPPER"
+#~ msgstr "FIELDMAPPER"
+
+#~ msgid "FCONSOLE"
+#~ msgstr "FCONSOLE"
+
+#~ msgid "HOLD CAPTURE"
+#~ msgstr "HOLD CAPTURE"
+
+#~ msgid "ITEMS OUT"
+#~ msgstr "ITEMS OUT"
+
+#~ msgid "CONSOLE"
+#~ msgstr "CONSOLE"
+
+#~ msgid "JS SHELL"
+#~ msgstr "JS SHELL"
+
+#~ msgid "the &Catalog"
+#~ msgstr "the &Catalog"
+
+#~ msgid "for &Patrons"
+#~ msgstr "for &Patrons"
+
+#~ msgid "for record by &TCN"
+#~ msgstr "for record by &TCN"
+
+#~ msgid "Doc Id"
+#~ msgstr "Doc Id"
+
+#~ msgid "CATALOG NAVIGATOR"
+#~ msgstr "CATALOG NAVIGATOR"
+
+#~ msgid "PATRON"
+#~ msgstr "PATRON"
+
+#~ msgid "DOB:"
+#~ msgstr "DOB:"
+
+#~ msgid "PATRON EDIT"
+#~ msgstr "PATRON EDIT"
+
+#~ msgid "PATRON "
+#~ msgstr "PATRON "
+
+#~ msgid "NEW PATRON"
+#~ msgstr "NEW PATRON"
+
+#~ msgid "PATRON SEARCH"
+#~ msgstr "PATRON SEARCH"
+
+#~ msgid "PATRON STAT-CATS"
+#~ msgstr "PATRON STAT-CATS"
+
+#~ msgid "RECEIPTS"
+#~ msgstr "RECEIPTS"
+
+#~ msgid "SURVEY ADMIN"
+#~ msgstr "SURVEY ADMIN"
+
+#~ msgid "Z39.50 IMPORT"
+#~ msgstr "Z39.50 IMPORT"
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:3
+msgid "Recognized search keys include:"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:4
+msgid "Search key"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:5
+msgid "Definition"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:6
+msgid ""
+"keyword</strong>, <strong>title</strong>, "
+"<strong>author</strong>, <strong>subject</strong>, and "
+"<strong>series</strong> support additional search subclasses, "
+"specified with a <kbd>|</kbd>. For example: "
+"<kbd>title|proper:gone with the wind"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:7
+msgid "keyword/kw"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:8
+msgid "search keyword(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:9
+msgid "author/au/name"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:10
+msgid "search author(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:11
+msgid "title/ti"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:12
+msgid "search title"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:13
+msgid "subject/su"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:14
+msgid "search subject"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:15
+msgid "series/se"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:16
+msgid "search series"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:17
+msgid "lang"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:18
+msgid "limit by language (specifiy multiple langs with lang:l1 lang:l2 ...)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:19
+msgid "site"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:20
+msgid "search at specified org unit, corresponds to actor.org_unit.shortname"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:21
+msgid "sort"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:22
+msgid "sort type (title, author, pubdate)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:23
+msgid "dir"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:24
+msgid "sort direction (asc, desc)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:25
+msgid "available"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:26
+msgid "if set to anything other than \"false\" or \"0\", limits to available items"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
+#. extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: common.exception
+msgid ""
+"!! This software has encountered an error. Please tell your friendly system "
+"administrator or software developer the following:\n"
+"%1$s\n"
+"%2$s\n"
+msgstr ""
+
+#: common.jsan.missing
+msgid "The JSAN library object is missing."
+msgstr ""
+
+#: common.ok
+msgid "Ok"
+msgstr ""
+
+#: common.clear
+msgid "Clear"
+msgstr ""
+
+#: common.confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: common.error.default
+msgid "Please report that this happened."
+msgstr ""
+
+#: common.barcode.status.warning
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgstr ""
+
+#: common.barcode.status.warning.lost
+msgid "Lost"
+msgstr ""
+
+#: common.barcode.status.warning.expired
+msgid "Expired"
+msgstr ""
+
+#: common.barcode.status.warning.barred
+msgid "Barred"
+msgstr ""
+
+#: common.barcode.status.warning.blocked
+msgid "Blocked"
+msgstr ""
+
+#: common.barcode.status.warning.unknown
+msgid "with an unknown code: %1$s"
+msgstr ""
+
+#: common.date.invalid
+msgid "Invalid Date"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.unimplemented
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: cat.bib_record
+msgid "Bib Record: %1$s"
+msgstr ""
+
+#: cat.opac.delete_record.confirm
+msgid "Are you sure you want to delete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.delete_record
+msgid "Delete Record"
+msgstr ""
+
+#: cat.opac.delete
+msgid "Delete"
+msgstr ""
+
+#: cat.opac.undelete_record.confirm
+msgid "Are you sure you want to undelete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.undelete_record
+msgid "Undelete Record"
+msgstr ""
+
+#: cat.opac.undelete
+msgid "Undelete"
+msgstr ""
+
+#: cat.opac.cancel
+msgid "Cancel"
+msgstr ""
+
+#: cat.opac.record_deleted
+msgid "Record deleted."
+msgstr ""
+
+#: cat.opac.record_deleted.confirm
+msgctxt "cat.opac.record_deleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#: cat.opac.record_undeleted
+msgid "Record undeleted."
+msgstr ""
+
+#: cat.opac.record_undeleted.confirm
+msgctxt "cat.opac.record_undeleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#. # variables: document ID, error code, error description
+#: cat.opac.record_delete.error
+msgid "Error deleting record #%1$s : %2$s : %3$s"
+msgstr ""
+
+#: cat.save_record
+msgid "Save Record"
+msgstr ""
+
+#: cat.save.success
+msgid "Record successfully saved."
+msgstr ""
+
+#: cat.save.failure
+msgid "Record not likely updated."
+msgstr ""
+
+#: cat.record.counter
+msgid "Record %1$s of %2$s"
+msgstr ""
+
+#: cat.preference.error
+msgid "Preference not likely updated."
+msgstr ""
+
+#: staff.admin.survey.save_response.label
+msgid "Save this response"
+msgstr ""
+
+#: staff.admin.survey.save_response.accesskey
+msgid "R"
+msgstr ""
+
+#: circ.bad_checkdigit
+msgid "This barcode has a bad check digit."
+msgstr ""
+
+#: circ.barcode.enter
+msgid "Please enter a patron barcode first."
+msgstr ""
+
+#: circ.barcode.warning
+msgid "Barcode Warning"
+msgstr ""
+
+#: circ.standalone
+msgid "Standalone"
+msgstr ""
+
+#: circ.duplicate_scan.msg
+msgid "This barcode has already been scanned."
+msgstr ""
+
+#: circ.duplicate_scan.field
+msgid "Duplicate Scan"
+msgstr ""
+
+#: circ.offline_checkout.nonbarcoded
+msgid "or choose a non-barcoded option..."
+msgstr ""
+
+#: circ.offline_checkout.items
+msgid "Enter the number of items:"
+msgstr ""
+
+#: circ.offline_checkout.download.warning
+msgid ""
+"WARNING: The non-barcode types have not been downloaded from the server. "
+"You should log in to retrieve these."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.lost
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.expired
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.barred
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.blocked
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.unknown
+msgid ""
+"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
+"%3$s."
+msgstr ""
+
+#: circ.offline_checkout.date.early
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: circ.offline_checkout.required_field
+msgid "Required Field"
+msgstr ""
+
+#: circ.offline_checkout.valid_count
+msgid "Please try again and enter a valid count."
+msgstr ""
+
+#: circ.offline_checkout.required_value
+msgid "Required Value"
+msgstr ""
+
+#: circ.offline_register.future.birth.date
+msgid "Patron needs to be born yesterday."
+msgstr ""
+
+#: circ.offline_register.invalid.birth.date
+msgid "Happy birthday! You need to be more than 0 days old."
+msgstr ""
+
+#: circ.offline_register.survey.prompt
+msgid "Choose a response..."
+msgstr ""
+
+#: circ.offline_register.missing.post_code
+msgid "Missing Address : Postal Code"
+msgstr ""
+
+#: circ.offline_register.missing.state
+msgid "Missing Address : State"
+msgstr ""
+
+#: circ.offline_register.missing.city
+msgid "Missing Address : City"
+msgstr ""
+
+#: circ.offline_register.missing.street1
+msgid "Missing Address : Line 1"
+msgstr ""
+
+#: circ.offline_register.missing.ident_value
+msgid "Missing Identification Value"
+msgstr ""
+
+#: circ.offline_register.missing.ident_type
+msgid "Missing Identification Type"
+msgstr ""
+
+#: circ.offline_register.missing.dob
+msgid "Missing Date of Birth"
+msgstr ""
+
+#: circ.offline_register.missing.first_given_name
+msgid "Missing First Name"
+msgstr ""
+
+#: circ.offline_register.missing.family_name
+msgid "Missing Last Name"
+msgstr ""
+
+#: circ.offline_register.missing.passwd
+msgid "Missing Password"
+msgstr ""
+
+#: circ.offline_register.missing.barcode
+msgid "Missing Barcode"
+msgstr ""
+
+#: circ.offline_register.missing.profile
+msgid "Missing Profile"
+msgstr ""
+
+#: circ.offline_register.missing.home_ou
+msgid "Missing Home Library"
+msgstr ""
+
+#: circ.offline_register.missing.alert
+msgid "Please fix the following:"
+msgstr ""
+
+#: circ.offline_register.patron.saved
+msgid "Patron Registration Saved"
+msgstr ""
+
+#: circ.offline_register.missing.library.list
+msgid "Missing library list."
+msgstr ""
+
+#: circ.offline_register.missing.profile.list
+msgid "Missing profile list."
+msgstr ""
+
+#: circ.offline_register.missing.id.type.list
+msgid "Missing identification type list."
+msgstr ""
+
+#: circ.offline_register.missing.required.surveys
+msgid "Missing required surveys."
+msgstr ""
+
+#: circ.offline_register.missing.files.error
+msgid ""
+"ERROR: Offline patron registration requires some server-generated files. "
+"Please login periodically to retrieve these files."
+msgstr ""
+
+#: jsan.file_not_found.error
+msgid "File not found: %1$s"
+msgstr ""
+
+#: jsan.namespace.creation.error
+msgid "Could not create namespace[%1$s]: %2$s"
+msgstr ""
+
+#: menu.cmd_edit_copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: menu.cmd_edit_volume_buckets.tab
+msgid "Volume Buckets"
+msgstr ""
+
+#: menu.cmd_edit_record_buckets.tab
+msgid "Record Buckets"
+msgstr ""
+
+#: menu.cmd_edit_user_buckets.tab
+msgid "User Buckets"
+msgstr ""
+
+#: menu.cmd_replace_barcode.prompt
+msgid "Enter original barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.label
+msgctxt "menu.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.retrieval.error
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.prompt
+msgid "Enter the replacement barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.label
+msgctxt "menu.cmd_replace_barcode.replacement.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.blank.error
+msgid "Rename aborted. Blank for barcode not allowed."
+msgstr ""
+
+#: menu.cmd_replace_barcode.duplicate.error
+msgid "Rename aborted. Another copy has barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.testing.error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.permission.error
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.error
+msgid "Error renaming item."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.failure
+msgid "The rename operation probably failed."
+msgstr ""
+
+#: menu.cmd_search_opac.tab
+msgid "Catalog"
+msgstr ""
+
+#: menu.cmd_search_bib_id.tab
+msgid "What is the internal ID for the bibliographic record?"
+msgstr ""
+
+#: menu.cmd_search_bib_id.prompt
+msgid "Bib ID Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.tab
+msgid "What is the TCN or accession ID for the record?"
+msgstr ""
+
+#: menu.cmd_search_tcn.prompt
+msgid "TCN Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.not_found.error
+msgid "\"%1$s\" not found"
+msgstr ""
+
+#: menu.cmd_search_tcn.deleted.error
+msgid "\"%1$s\" is deleted. Show the deleted record anyway?"
+msgstr ""
+
+#: menu.cmd_patron_register.related.tab
+msgid "Editing Related Patron"
+msgstr ""
+
+#: menu.cmd_patron_register.tab
+msgid "Register Patron"
+msgstr ""
+
+#: menu.cmd_browse_holds.tab
+msgid "Hold Browser"
+msgstr ""
+
+#: menu.cmd_browse_holds_shelf.tab
+msgid "Holds Shelf"
+msgstr ""
+
+#: menu.cmd_browse_hold_pull_list.tab
+msgid "On Shelf Pull List"
+msgstr ""
+
+#: menu.cmd_local_admin.tab
+msgid "Local Administration"
+msgstr ""
+
+#: menu.cmd_retrieve_last_patron.session.error
+msgid "No patron visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.session.error
+msgid "No record visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.status
+msgid "Retrieving title..."
+msgstr ""
+
+#: menu.cmd_chg_session.label
+msgid "Change Login"
+msgstr ""
+
+#: menu.cmd_chg_session.operator.label
+msgid "Change Operator: %1$s"
+msgstr ""
+
+#: menu.cmd_manage_offline_xacts.tab
+msgid "Offline Transactions"
+msgstr ""
+
+#: menu.cmd_download_patrons.complete.status
+msgid "Download completed"
+msgstr ""
+
+#: menu.cmd_download_patrons.error
+msgid ""
+"There was a problem with the download. The server returned a status %1$s : "
+"%2$s"
+msgstr ""
+
+#: menu.cmd_stat_cat_edit.tab
+msgid "Statistical Category Editor"
+msgstr ""
+
+#: menu.cmd_non_cat_type_edit.tab
+msgid "Non-Cataloged Type Editor"
+msgstr ""
+
+#: menu.cmd_copy_location_edit.tab
+msgid "Copy Location Editor"
+msgstr ""
+
+#: menu.cmd_console.tab
+msgid "JavaScript Console"
+msgstr ""
+
+#: menu.cmd_shell.tab
+msgid "JavaScript Shell"
+msgstr ""
+
+#: menu.cmd_xuleditor.tab
+msgid "XUL Editor"
+msgstr ""
+
+#: menu.cmd_fieldmapper.tab
+msgid "Fieldmapper"
+msgstr ""
+
+#: menu.cmd_public_opac.tab
+msgid "OPAC"
+msgstr ""
+
+#: menu.cmd_extension_manager.tab
+msgid "Extension Manager"
+msgstr ""
+
+#: menu.cmd_theme_manager.tab
+msgid "Theme Manager"
+msgstr ""
+
+#: menu.cmd_shutdown.prompt
+msgid "Exit Evergreen completely?"
+msgstr ""
+
+#: menu.spawn_search.msg
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: menu.close_all_tabs.error
+msgid "Error closing all tabs"
+msgstr ""
+
+#: menu.new_tab.tab
+msgid "Tab"
+msgstr ""
+
+#: menu.set_tab.error
+msgid "pause for error"
+msgstr ""
+
+#: main.testing
+msgid "Testing"
+msgstr ""
+
+#: main.transaction_export.title
+msgid "Save Transaction File As"
+msgstr ""
+
+#: main.transaction_export.prompt
+msgid "Would you like to overwrite the existing file %1$s?"
+msgstr ""
+
+#: main.transaction_export.prompt.title
+msgid "Transaction Export Warning"
+msgstr ""
+
+#: main.transaction_export.success.prompt
+msgid ""
+"Your transactions have been successfully exported to file %1$s. We strongly "
+"recommend that you now purge the transactions from this staff client. Would "
+"you like for us to do this?"
+msgstr ""
+
+#: main.transaction_export.success.title
+msgid "Transaction Export Successful"
+msgstr ""
+
+#: main.transaction_export.filename.error
+msgid ""
+"Error purging transactions: Taking too long to find a unique filename for "
+"archival."
+msgstr ""
+
+#: main.transaction_export.duplicate.warning
+msgid ""
+"Please note that you now have two sets of identical transactions. Unless "
+"the set you just exported is solely for archival purposes, we run the risk "
+"of duplicate transactions being processed on the server."
+msgstr ""
+
+#: main.transaction_export.no_filename.error
+msgid ""
+"Either you did not choose a filename, or you tried to overwrite an existing "
+"file."
+msgstr ""
+
+#: main.transaction_export.no_transactions.error
+msgid "There are no outstanding transactions to export."
+msgstr ""
+
+#: main.transaction_import.outstanding.error
+msgid ""
+"There are already outstanding transactions on this staff client. Upload "
+"these first."
+msgstr ""
+
+#: main.transaction_import.title
+msgid "Import Transaction File"
+msgstr ""
+
+#: main.transaction_import.delete.prompt
+msgid ""
+"Your transactions have been successfully migrated to this staff client.\n"
+"\n"
+"We recommend that you delete the external copy. Would you like for us to "
+"delete %1$s?"
+msgstr ""
+
+#: main.transaction_import.success
+msgid "Transaction Import Successful"
+msgstr ""
+
+#: main.on_debug.clear_cache
+msgid "cache cleared"
+msgstr ""
+
+#: main.on_debug.debug
+msgid "debug the debug :D"
+msgstr ""
+
+#: main.about_btn.label
+msgid "About this client..."
+msgstr ""
+
+#: main.new_window_btn.label
+msgid "Open New Window"
+msgstr ""
+
+#: main.new_window_btn.login_first_warning
+msgid "Please login first!"
+msgstr ""
+
+#: main.settings.migrate
+msgid ""
+"This version of the staff client stores local settings in a different "
+"location than your previous installation. Should we attempt to migrate "
+"these settings?"
+msgstr ""
+
+#: main.settings.migrate.failed
+msgid ""
+"WARNING: Unable to migrate legacy settings. The settings and configuration "
+"files appear to exist in multiple locations. \n"
+"To resolve this problem manually, please consider:\n"
+"\t%1$s\n"
+"which is in the directory where we want to store settings for the current "
+"operating system account, and:\n"
+"\t%2$s\n"
+"which is where we used to store such information.\n"
+msgstr ""
+
+#: main.settings.migrate.confirm
+msgid ""
+"Move the settings and configuration files from\n"
+"%1$s\n"
+"to\n"
+"%2$s?"
+msgstr ""
+
+#: main.settings.migrate.error
+msgid "Error trying to move %1$s to directory %2$s"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd, ../../Open-ILS/web/opac/locale/en-CA/opac.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: &\n"
# =================================================================
# Some generic stuff
-# =================================================================
+#. =================================================================
+#. Some generic stuff
+#. =================================================================
#: lang.version
msgid "remote v1"
msgstr "remote v1"
msgstr "Authors"
#: common.callnumber
-#: opac.advanced.quick.cn
+msgctxt "common.callnumber"
msgid "Call Number"
msgstr "Call Number"
msgstr "Search Type"
#: common.isbn
-#: opac.advanced.quick.isbn
+msgctxt "common.isbn"
msgid "ISBN"
msgstr "ISBN"
msgstr "Format"
# Message displayed while search results are loading
+#. Message displayed while search results are loading
#: common.loading
-#: myopac.fines.status
+msgctxt "common.loading"
msgid "Loading..."
msgstr "Loading..."
#: common.login
-#: opac.login.login
+msgctxt "common.login"
msgid "Login"
msgstr "Login"
msgstr "Yes"
#: common.cancel
-#: common.org.cancel
-#: myopac.holds.cancel
-#: myopac.holds.cancel_selected
+msgctxt "common.cancel"
msgid "Cancel"
msgstr "Cancel"
#: common.library
-#: rdetail.copyInfo.library
+msgctxt "common.library"
msgid "Library"
msgstr "Library"
msgstr "User not found"
#: opac.advanced.wizard.title
-#: opac.navigate.advanced
+msgctxt "opac.advanced.wizard.title"
msgid "Advanced Search"
msgstr "Advanced Search"
msgstr "Now searching "
#: common.ofAtLeast
-msgid " of at least "
-msgstr " of at least "
+msgid " of about "
+msgstr ""
#: common.relevancy
msgid "Match Score: "
msgstr "Click on a folder icon in the sidebar to access related quick searches"
#: common.tips.tip2
-msgid "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
-msgstr "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
+msgid ""
+"If you don't find what you want try expanding your search using the range "
+"selector at the right of the search bar"
+msgstr ""
+"If you don't find what you want try expanding your search using the range "
+"selector at the right of the search bar"
#: common.org.openAll
msgid "Expand All"
msgid "Close All"
msgstr "Close All"
+#: common.org.cancel
+msgctxt "common.org.cancel"
+msgid "Cancel"
+msgstr "Cancel"
+
#: common.org.loading
msgid "Loading library selector..."
msgstr "Loading library selector..."
# ==========================================================
# Tips
#: common.org.note
-#: tips.label
+msgctxt "common.org.note"
msgid "Tip:"
msgstr "Tip:"
#: common.org.notetext
-msgid "Click on a location's name to select it. Click on the folder icons to expand a section."
-msgstr "Click on a location's name to select it. Click on the folder icons to expand a section."
+msgid ""
+"Click on a location's name to select it. Click on the folder icons to "
+"expand a section."
+msgstr ""
+"Click on a location's name to select it. Click on the folder icons to "
+"expand a section."
+
+#: opac.login.login
+msgctxt "opac.login.login"
+msgid "Login"
+msgstr "Login"
# =================================================================
# Footer
#: opac.basic
-#: footer.basic
+msgctxt "opac.basic"
msgid "Basic Catalog (HTML only)"
msgstr "Basic Catalogue (HTML only)"
#: common.password_criteria
-msgid "The password must be at least 7 characters in length, "
-"\tcontain at least one letter (a-z/A-Z), "
-"\tand contain at least one number."
-msgstr "The password must be at least 7 characters in length, "
-"\tcontain at least one letter (a-z/A-Z), "
-"\tand contain at least one number."
+#, fuzzy
+msgid ""
+"The password must be at least 7 characters in length, \n"
+"contain at least one letter (a-z/A-Z), \n"
+"and contain at least one number."
+msgstr ""
+"The password must be at least 7 characters in length, \tcontain at least one "
+"letter (a-z/A-Z), \tand contain at least one number."
#: common.a2z.title
msgid "Title: A to Z"
msgstr "Reddish"
#: holds.where_am_i
-msgid "PINES is a statewide system with both patrons and items "
-"\tassociated with over 250 libraries, holds lists are not as simple as "
-"\t'first come, first served' in PINES. A complex matrix combining "
-"\tconsideration of item ownership, patron home library, and item purchase "
-"\tdate determines priorities for holds; the list is dynamic, changing "
-"\twith every hold placed. Therefore, any indication of a place in the "
-"\tholds list would be inaccurate. The PINES holds system is designed to "
-"\tobtain a requested item in the fastest and most efficient way possible. "
-"\tYour PINES library will contact you when you hold items become "
-"\tavailable."
-msgstr "PINES is a statewide system with both patrons and items "
-"\tassociated with over 250 libraries, holds lists are not as simple as "
-"\t'first come, first served' in PINES. A complex matrix combining "
-"\tconsideration of item ownership, patron home library, and item purchase "
-"\tdate determines priorities for holds; the list is dynamic, changing "
-"\twith every hold placed. Therefore, any indication of a place in the "
-"\tholds list would be inaccurate. The PINES holds system is designed to "
-"\tobtain a requested item in the fastest and most efficient way possible. "
-"\tYour PINES library will contact you when you hold items become "
-"\tavailable."
+#, fuzzy
+msgid ""
+"Holds lists are not as simple as \n"
+"'first come, first served.' A complex matrix combining \n"
+"consideration of item ownership, patron home library, and item purchase \n"
+"date determines priorities for holds; the list is dynamic, changing \n"
+"with every hold placed. Therefore, any indication of a place in the \n"
+"holds list would be inaccurate. The holds system is designed to \n"
+"obtain a requested item in the fastest and most efficient way possible. \n"
+"Your library will contact you when you hold items become \n"
+"available."
+msgstr ""
+"PINES is a statewide system with both patrons and items \tassociated with "
+"over 250 libraries, holds lists are not as simple as \t'first come, first "
+"served' in PINES. A complex matrix combining \tconsideration of item "
+"ownership, patron home library, and item purchase \tdate determines "
+"priorities for holds; the list is dynamic, changing \twith every hold placed. "
+" Therefore, any indication of a place in the \tholds list would be "
+"inaccurate. The PINES holds system is designed to \tobtain a requested item "
+"in the fastest and most efficient way possible. \tYour PINES library will "
+"contact you when you hold items become \tavailable."
#: holds.advanced_options
-msgid "If you wish to broaden the scope of your hold to include other "
-"\tversions of this title, select the formats that would be acceptable. "
-"\tThe first available copy will be sent to you."
-msgstr "If you wish to broaden the scope of your hold to include other "
-"\tversions of this title, select the formats that would be acceptable. "
-"\tThe first available copy will be sent to you."
+#, fuzzy
+msgid ""
+"If you wish to broaden the scope of your hold to include other \n"
+"versions of this title, select the formats that would be acceptable. \n"
+"The first available copy will be sent to you."
+msgstr ""
+"If you wish to broaden the scope of your hold to include other \tversions of "
+"this title, select the formats that would be acceptable. \tThe first "
+"available copy will be sent to you."
# =================================================================
# Events and Permissions
-# =================================================================
+#. =================================================================
+#. Events and Permissions
+#. =================================================================
#: ilsevent.0
msgid "Operation Succeeded"
msgstr "Operation Succeeded"
# =================================================================
# common/pages
-# =================================================================
+#. =================================================================
+#. common/pages
+#. =================================================================
#: common.cn.loading
msgid "Loading Callnumber Page..."
msgstr "Loading Callnumber Page..."
msgstr "<< Previous Page"
#: common.cn.shelf
-#: rdetail.extras.browser
+msgctxt "common.cn.shelf"
msgid "Shelf Browser"
msgstr "Shelf Browser"
msgstr "Regular"
# Regular / Large
+#. Regular / Large
#: common.textsize.separator
msgid "/"
msgstr "/"
msgstr "Large"
#: home.js.disabled
-msgid "JavaScript must be enabled in order for you to use the regular Evergreen Catalog. "
-"However, it seems JavaScript is either disabled or not supported by your browser. "
-"To use the regular Evergreen Catalog, enable JavaScript by changing your browser options, then "
-"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. "
-"<br/><br/>Alternatively, you can use the basic HTML-only catalog "
-"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
-msgstr "JavaScript must be enabled in order for you to use the regular Evergreen Catalogue. "
-"However, it seems JavaScript is either disabled or not supported by your browser. "
-"To use the regular Evergreen Catalogue, enable JavaScript by changing your browser options, then "
-"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. "
-"<br/><br/>Alternatively, you can use the basic HTML-only catalogue "
-"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
+#, fuzzy
+msgid ""
+"JavaScript must be enabled in order for you to use the regular Evergreen "
+"Catalog. \n"
+"However, it seems JavaScript is either disabled or not supported by your "
+"browser. \n"
+"To use the regular Evergreen Catalog, enable JavaScript by changing your "
+"browser options, then \n"
+"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. \n"
+"<br/><br/>Alternatively, you can use the basic HTML-only catalog \n"
+"<a style='color: blue; text-decoration: underline;' "
+"href='/opac/extras/slimpac/start.html'>here</a>."
+msgstr ""
+"JavaScript must be enabled in order for you to use the regular Evergreen "
+"Catalogue. However, it seems JavaScript is either disabled or not supported "
+"by your browser. To use the regular Evergreen Catalogue, enable JavaScript "
+"by changing your browser options, then <a style='color: blue; text-"
+"decoration: underline;' href='/'>try again</a>. <br/><br/>Alternatively, you "
+"can use the basic HTML-only catalogue <a style='color: blue; text-"
+"decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
# =================================================================
# MyOPAC bookbag page
-# =================================================================
+#. =================================================================
+#. MyOPAC bookbag page
+#. =================================================================
#: myopac.delete.bookbag
-msgid "This will remove the selected bookbag and all items contained within the bookbag. "
-"Are you sure you wish to continue?"
-msgstr "This will remove the selected bookbag and all items contained within the bookbag. "
+#, fuzzy
+msgid ""
+"This will remove the selected bookbag and all items contained within the "
+"bookbag. \n"
"Are you sure you wish to continue?"
+msgstr ""
+"This will remove the selected bookbag and all items contained within the "
+"bookbag. Are you sure you wish to continue?"
#: myopac.no.bookbags
msgid "You have not created any bookbags"
msgstr "You have not created any bookbags"
#: myopac.bookbags.title
-#: myopac.bookbags
+msgctxt "myopac.bookbags.title"
msgid "My Bookbags"
msgstr "My Bookbags"
msgid "Hide"
msgstr "Hide"
-#: myopac.bookbag.share
-msgid "Share"
-msgstr "Share this Bookbag"
-
#: myopac.delete
msgid "Delete"
msgstr "Delete"
msgstr "remove"
#: myopac.publish.text
-msgid "Sharing a Bookbag means that the contents of the Bookbag will be visible to others. "
-"To see the public view of a shared Bookbag, click the \"View\" link in the "
-"\"Shared\" column of the Bookbag list at the top of this page."
-msgstr "Sharing a Bookbag means that the contents of the Bookbag will be visible to others. "
-"To see the public view of a shared Bookbag, click the \"View\" link in the "
+#, fuzzy
+msgid ""
+"Sharing a Bookbag means that the contents of the Bookbag will be visible to "
+"others. \n"
+"To see the public view of a shared Bookbag, click the \"View\" link in the \n"
"\"Shared\" column of the Bookbag list at the top of this page."
+msgstr ""
+"Sharing a Bookbag means that the contents of the Bookbag will be visible to "
+"others. To see the public view of a shared Bookbag, click the \"View\" link in "
+"the \"Shared\" column of the Bookbag list at the top of this page."
#: myopac.item.confirm
msgid "Are you sure you wish to remove this bookbag item?"
msgstr "Are you sure you wish to remove this bookbag item?"
#: myopac.publish.confirm
-msgid "Sharing this bookbag will allow the contents "
-"of the bookback to be seen by others. Are you sure you wish to share this bookbag?"
-msgstr "Sharing this bookbag will allow the contents "
-"of the bookback to be seen by others. Are you sure you wish to share this bookbag?"
+#, fuzzy
+msgid ""
+"Sharing this bookbag will allow the contents \n"
+"of the bookbag to be seen by others. Are you sure you wish to share this "
+"bookbag?"
+msgstr ""
+"Sharing this bookbag will allow the contents of the bookback to be seen by "
+"others. Are you sure you wish to share this bookbag?"
#: myopac.unpublish.confirm
msgid "Are you sure you wish to hide this bookbag?"
msgstr "Bookbag successfully updated"
#: myopac.create.warning
-msgid "Warning: Adding items to a bookbag creates a link between you and the "
-"items in the database. The contents of the bookbag are NOT publicly "
-"viewable unless the bookbag is shared. However, if you prefer not to "
-"have any link between your patron record and a particular item or items, "
-"we suggest that you do not place said items in a bookbag or that you "
-"avoid using bookbags all together. Thank you."
-msgstr "Warning: Adding items to a bookbag creates a link between you and the "
-"items in the database. The contents of the bookbag are NOT publicly "
-"viewable unless the bookbag is shared. However, if you prefer not to "
-"have any link between your patron record and a particular item or items, "
-"we suggest that you do not place said items in a bookbag or that you "
+#, fuzzy
+msgid ""
+"Warning: Adding items to a bookbag creates a link between you and the \n"
+"items in the database. The contents of the bookbag are NOT publicly \n"
+"viewable unless the bookbag is shared. However, if you prefer not to \n"
+"have any link between your patron record and a particular item or items, \n"
+"we suggest that you do not place said items in a bookbag or that you \n"
"avoid using bookbags all together. Thank you."
+msgstr ""
+"Warning: Adding items to a bookbag creates a link between you and the items "
+"in the database. The contents of the bookbag are NOT publicly viewable "
+"unless the bookbag is shared. However, if you prefer not to have any link "
+"between your patron record and a particular item or items, we suggest that "
+"you do not place said items in a bookbag or that you avoid using bookbags "
+"all together. Thank you."
#: myopac.describe.bookbags
msgid "Bookbags are..."
# =================================================================
# MyOPAC Checked Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Checked Page
+#. =================================================================
#: myopac.checked.out
msgid "Total items out:"
msgstr "Total items out:"
msgstr "Are you sure you wish to renew the selected item(s)?"
#: myopac.checked.renew.fail
-msgid "The system is unable to renew the selected item at this time. This usually means the item is needed to fulfill a hold. Please see a librarian for further help."
-msgstr "The system is unable to renew the selected item at this time. This usually means the item is needed to fulfill a hold. Please see a librarian for further help."
+msgid ""
+"The system is unable to renew the selected item at this time. This usually "
+"means the item is needed to fulfill a hold. Please see a librarian for "
+"further help."
+msgstr ""
+"The system is unable to renew the selected item at this time. This usually "
+"means the item is needed to fulfill a hold. Please see a librarian for "
+"further help."
#: myopac.checked.renew.fail2
-msgid "PINES policy prevents the renewal of this item at this time. Please see a librarian for further details."
-msgstr "PINES policy prevents the renewal of this item at this time. Please see a librarian for further details."
+#, fuzzy
+msgid ""
+"Library policy prevents the renewal of this item at this time. Please see a "
+"librarian for further details."
+msgstr ""
+"PINES policy prevents the renewal of this item at this time. Please see a "
+"librarian for further details."
# =================================================================
# MyOPAC Fines Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Fines Page
+#. =================================================================
#: myopac.fines.title
msgid "Summary"
msgstr "Summary"
msgid "Balance Owed"
msgstr "Balance Owed"
+# Message displayed while search results are loading
+#: myopac.fines.status
+msgctxt "myopac.fines.status"
+msgid "Loading..."
+msgstr "Loading..."
+
#: myopac.fines.overdue
msgid "Overdue Materials"
msgstr "Overdue Materials"
msgstr "Checkout Date"
#: myopac.fines.due
-#: rdetail.cn.due
+msgctxt "myopac.fines.due"
msgid "Due Date"
msgstr "Due Date"
# =================================================================
# MyOPAC Holds Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Holds Page
+#. =================================================================
#: myopac.holds.formats
msgid "Formats"
msgstr "Formats"
msgid "Pickup Location"
msgstr "Pickup Location"
-#: myopac.holds.edit.cancel
-msgid "Edit/Cancel"
-msgstr "Edit/Cancel"
+#: myopac.holds.edit
+msgid "Edit"
+msgstr "Edit"
#: myopac.holds.status.none
msgid "You have no items on hold at this time"
msgid "Ready for Pickup"
msgstr "Ready for Pickup"
-#: myopac.holds.edit
-msgid "Edit"
-msgstr "Edit"
+#: myopac.holds.cancel
+msgctxt "myopac.holds.cancel"
+msgid "Cancel"
+msgstr "Cancel"
#: myopac.holds.verify
-msgid "If you wish to cancel the selected hold, click OK, otherwise click Cancel."
-msgstr "If you wish to cancel the selected hold, click OK, otherwise click Cancel."
+msgid ""
+"If you wish to cancel the selected hold, click OK, otherwise click Cancel."
+msgstr ""
+"If you wish to cancel the selected hold, click OK, otherwise click Cancel."
#: myopac.holds.freeze_selected
-msgid "Freeze"
-msgstr "Freeze"
+msgid "Suspend"
+msgstr ""
#: myopac.holds.thaw_selected
-msgid "Un-freeze"
-msgstr "Un-freeze"
+msgid "Activate"
+msgstr ""
#: myopac.holds.thaw_date_selected
-msgid "Set Un-freeze date"
-msgstr "Set Un-freeze date"
+msgid "Set Active Date"
+msgstr ""
+
+#: myopac.holds.cancel_selected
+msgctxt "myopac.holds.cancel_selected"
+msgid "Cancel"
+msgstr "Cancel"
#: myopac.holds.processing
msgid "Processing holds... This may take a moment."
msgstr "Are you sure you wish to cancel the selected holds?"
#: myopac.holds.freeze.confirm
-msgid "Are you sure you wish to freeze the selected holds? "
-"Note that if an item has already been selected to fulfill the hold, it will not be frozen"
-msgstr "Are you sure you wish to freeze the selected holds? "
-"Note that if an item has already been selected to fulfill the hold, it will not be frozen"
+#, fuzzy
+msgid ""
+"Are you sure you wish to suspend the selected holds? \n"
+"If an item has already been selected to fulfill the hold, it will not be "
+"suspended"
+msgstr ""
+"Are you sure you wish to freeze the selected holds? Note that if an item has "
+"already been selected to fulfill the hold, it will not be frozen"
#: myopac.holds.thaw.confirm
-msgid "Are you sure you wish to un-freeze the selected holds?"
-msgstr "Are you sure you wish to un-freeze the selected holds?"
+#, fuzzy
+msgid "Are you sure you wish to activate the selected holds?"
+msgstr "Are you sure you wish to cancel the selected holds?"
#: myopac.holds.thaw_date.confirm
-msgid "Are you sure you wish to change the un-freeze date for the selected holds?"
-msgstr "Are you sure you wish to change the un-freeze date for the selected holds?"
+#, fuzzy
+msgid ""
+"Are you sure you wish to change the activate date for the selected holds?"
+msgstr ""
+"Are you sure you wish to change the un-freeze date for the selected holds?"
#: myopac.holds.freeze.select_thaw
-msgid "Select an 'Un-Freeze' date. This is the date at which the holds will become active again. "
-"If no date is chosen, the holds will remain frozen until they are manually un-frozen."
-msgstr "Select an 'Un-Freeze' date. This is the date at which the holds will become active again. "
-"If no date is chosen, the holds will remain frozen until they are manually un-frozen."
+msgid ""
+"Select an automatic activation date. If no date is chosen, the holds will "
+"remain suspended until they are manually activated."
+msgstr ""
#: opac.holds.freeze
-msgid "Freeze this hold"
-msgstr "Freeze this hold"
+msgid "Suspend this hold"
+msgstr ""
#: opac.holds.freeze.help
-msgid "A 'frozen' will retain its place in the queue, but will not be fulfilled until it has been unfrozen."
-msgstr "A 'frozen' will retain its place in the queue, but will not be fulfilled until it has been unfrozen."
+#, fuzzy
+msgid ""
+"A suspended hold will retain its place in the queue, but will not be "
+"fulfilled until it has been activated."
+msgstr ""
+"A 'frozen' will retain its place in the queue, but will not be fulfilled "
+"until it has been unfrozen."
#: opac.holds.freeze.thaw_date
-msgid "Automatically un-freeze hold on:"
+#, fuzzy
+msgid "Automatically activate hold on:"
msgstr "Automatically un-freeze hold on:"
#: opac.holds.freeze.thaw_date.format
# =================================================================
# MyOPAC Preferences Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Preferences Page
+#. =================================================================
#: myopac.prefs.title
msgid "Preferences"
msgstr "Preferences"
msgstr "Preferences update failed!"
#: myopac.prefs.help
-msgid "This setting defines how you will be notified of holds that are ready to be picked up from the library. "
-"By default, holds will use the notification style you choose here. "
-"However, you will still have the option to change individual holds regardless of this setting."
-msgstr "This setting defines how you will be notified of holds that are ready to be picked up from the library. "
-"By default, holds will use the notification style you choose here. "
-"However, you will still have the option to change individual holds regardless of this setting."
+#, fuzzy
+msgid ""
+"This setting defines how you will be notified of holds that are ready to be "
+"picked up from the library. \n"
+"By default, holds will use the notification style you choose here. \n"
+"However, you will still have the option to change individual holds "
+"regardless of this setting."
+msgstr ""
+"This setting defines how you will be notified of holds that are ready to be "
+"picked up from the library. By default, holds will use the notification "
+"style you choose here. However, you will still have the option to change "
+"individual holds regardless of this setting."
#: myopac.holds.unfrozen
-msgid "Un-Frozen"
-msgstr "Un-Frozen"
+msgid "Active"
+msgstr ""
#: myopac.holds.frozen.until
-msgid "Frozen Until"
-msgstr "Frozen Until"
+msgid "Activate on..."
+msgstr ""
# =================================================================
# MyOPAC Summary page
-# =================================================================
+#. =================================================================
+#. MyOPAC Summary page
+#. =================================================================
#: myopac.summary.expired
-msgid "Your account expired on <span id='myopac.expired.date'/>! "
-"Please see a librarian to renew your account."
-msgstr "Your account expired on <span id='myopac.expired.date'/>! "
+#, fuzzy
+msgid ""
+"Your account expired on <span id='myopac.expired.date'/>! \n"
"Please see a librarian to renew your account."
+msgstr ""
+"Your account expired on <span id='myopac.expired.date'/>! Please see a "
+"librarian to renew your account."
#: myopac.summary.notes
msgid "* Staff Notes *"
msgstr "Please enter a username"
#: myopac.summary.username.dup
-msgid "The requested username is not available. Please choose a different username."
-msgstr "The requested username is not available. Please choose a different username."
+msgid ""
+"The requested username is not available. Please choose a different "
+"username."
+msgstr ""
+"The requested username is not available. Please choose a different "
+"username."
#: myopac.summary.username.success
msgid "Username successfully updated"
msgstr "Username update failed"
#: myopac.summary.username.invalid
-msgid "Username cannot contain spaces"
-msgstr "Username cannot contain spaces"
+msgid "Username cannot contain spaces or have the same format as a barcode"
+msgstr ""
#: myopac.summary.email.error
msgid "Please enter a valid email address"
msgstr "Passwords are empty or do not match"
#: myopac.summary.password.success
-#: login.password.success
+msgctxt "myopac.summary.password.success"
msgid "Password successfully updated"
msgstr "Password successfully updated"
# =================================================================
# Advanced Search Page
-# =================================================================
+#. =================================================================
+#. Advanced Search Page
+#. =================================================================
#: opac.advanced.wizard.contains
msgid "Selected field contains the following words"
msgstr "Selected field contains the following words"
# ==========================================================
# MARC expert search
#: opac.advanced.marc.title
-#: search.marc
+msgctxt "opac.advanced.marc.title"
msgid "MARC Expert Search"
msgstr "MARC Expert Search"
msgstr "Add a new row"
#: opac.advanced.quick.title
-#: sidebar.quick.search
+msgctxt "opac.advanced.quick.title"
msgid "Quick Search"
msgstr "Quick Search"
+#: opac.advanced.quick.isbn
+msgctxt "opac.advanced.quick.isbn"
+msgid "ISBN"
+msgstr "ISBN"
+
#: opac.advanced.quick.issn
msgid "ISSN"
msgstr "ISSN"
msgstr "LCCN"
# title control number
+#. title control number
#: opac.advanced.quick.tcn
msgid "TCN"
msgstr "TCN"
msgid "Item Barcode"
msgstr "Item Barcode"
+#: opac.advanced.quick.cn
+msgctxt "opac.advanced.quick.cn"
+msgid "Call Number"
+msgstr "Call Number"
+
+#: opac.advanced.copy_loc_filter
+msgid "Shelving Location"
+msgstr ""
+
+# ==========================================================
+# MARC expert search
+#. ==========================================================
+#. MARC expert search
+#. ==========================================================
+#: search.marc
+msgctxt "search.marc"
+msgid "MARC Expert Search"
+msgstr "MARC Expert Search"
+
#: search.marc.tag
msgid "Tag:"
msgstr "Tag:"
# ==========================================================
# Status bar
-# ==========================================================
+#. ==========================================================
+#. Status bar
+#. ==========================================================
#: status.results
msgid "Including results for"
msgstr "Including results for"
+# ==========================================================
+# Tips
+#. ==========================================================
+#. Tips
+#. ==========================================================
+#: tips.label
+msgctxt "tips.label"
+msgid "Tip:"
+msgstr "Tip:"
+
# =================================================================
# More generic stuff
-# =================================================================
+#. =================================================================
+#. More generic stuff
+#. =================================================================
#: opac.session_expiring
msgid "Your login session will timeout in 1 minute unless there is activity."
msgstr "Your login session will timeout in 1 minute unless there is activity."
msgid "Go to the Home page"
msgstr "Go to the Home page"
+#: opac.navigate.advanced
+msgctxt "opac.navigate.advanced"
+msgid "Advanced Search"
+msgstr "Advanced Search"
+
#: opac.navigate.advanced.title
msgid "Go to the Advanced Search Page"
msgstr "Go to the Advanced Search Page"
#: navigate.myopac
+msgctxt "navigate.myopac"
+msgid "My Account"
+msgstr "My Account"
+
#: opac.navigate.myopac
+msgctxt "opac.navigate.myopac"
msgid "My Account"
msgstr "My Account"
msgstr "Log in for personalized features"
#: navigate.logout
+msgctxt "navigate.logout"
+msgid "Log out"
+msgstr "Log out"
+
#: navigate.logout.title
+msgctxt "navigate.logout.title"
msgid "Log out"
msgstr "Log out"
msgstr "Choose a different library"
#: opac.navigate.selectOrg
-#: library.select.help
+msgctxt "opac.navigate.selectOrg"
msgid "Choose a library to search"
msgstr "Choose a library to search"
msgid "Record Details"
msgstr "Record Details"
+# =================================================================
+# Footer
+#. =================================================================
+#. Footer
+#. =================================================================
+#: footer.basic
+msgctxt "footer.basic"
+msgid "Basic Catalog (HTML only)"
+msgstr "Basic Catalogue (HTML only)"
+
#: footer.find.library
msgid "Find a Library Near Me"
msgstr "Find a Library Near Me"
msgstr "GALILEO"
#: footer.copyright
-msgid "Copyright © 2006 Georgia Public Library Service"
+#, fuzzy
+msgid "Copyright © 2006-2008 Georgia Public Library Service"
msgstr "Copyright © 2006 Georgia Public Library Service"
# Introduces the logo for the project
+#. Introduces the logo for the project
#: footer.logo
msgid "Powered by"
msgstr "Powered by"
# =================================================================
# My OPAC
-# =================================================================
+#. =================================================================
+#. My OPAC
+#. =================================================================
#: myopac.account
msgid "Account Summary"
msgstr "Account Summary"
msgid "Account Preferences"
msgstr "Account Preferences"
+#: myopac.bookbags
+msgctxt "myopac.bookbags"
+msgid "My Bookbags"
+msgstr "My Bookbags"
+
# =================================================================
# Sidebar
-# =================================================================
+#. =================================================================
+#. Sidebar
+#. =================================================================
#: sidebar.relevantSubjects.headerLabel
msgid "Relevant Subjects"
msgstr "Relevant Subjects"
msgstr "Relevant Series"
#: sidebar.relevantReviews.headerLabel
-#: rdetail.extras.reviews
+msgctxt "sidebar.relevantReviews.headerLabel"
msgid "Reviews"
msgstr "Reviews"
+#: sidebar.quick.search
+msgctxt "sidebar.quick.search"
+msgid "Quick Search"
+msgstr "Quick Search"
+
#: sidebar.copy.not.found
msgid "No copy with the requested barcode was found"
msgstr "No copy with the requested barcode was found"
# =================================================================
# Search formats
-# =================================================================
+#. =================================================================
+#. Search formats
+#. =================================================================
#: opac.search.books
msgid "Books"
msgstr "Books"
# =================================================================
# Page Titles
-# =================================================================
+#. =================================================================
+#. Page Titles
+#. =================================================================
#: opac.title.home
msgid "Evergreen Home"
msgstr "Evergreen Home"
# =================================================================
# Advanced
-# =================================================================
+#. =================================================================
+#. Advanced
+#. =================================================================
#: advanced.search.title
msgid "Search Input"
msgstr "Search Input"
msgid "Submit Search"
msgstr "Submit Search"
+#: advanced.search.reset
+msgid "Reset Form"
+msgstr ""
+
#: advanced.search.filters
msgid "Search Filters"
msgstr "Search Filters"
# =================================================================
# Rdetail
-# =================================================================
+#. =================================================================
+#. Rdetail
+#. =================================================================
#: rdetail.print
msgid "print these details"
msgstr "print these details"
msgid "Holdable"
msgstr "Holdable"
+#: rdetail.cn.due
+msgctxt "rdetail.cn.due"
+msgid "Due Date"
+msgstr "Due Date"
+
#: rdetail.cn.more
msgid "more info..."
msgstr "more info..."
msgstr "less info"
#: rdetail.cn.hold
-#: rdetail.copyInfo.hold
+msgctxt "rdetail.cn.hold"
msgid "place hold"
msgstr "place hold"
msgstr "First results page"
# Result # &common.of; #
+#. Result # &common.of; #
#: rdetail.result
msgid "Result"
msgstr "Result"
msgstr "Create a new bookbag"
#: rdetail.record.deleted
-msgid "This record has been deleted from the database. "
-"We recommend that you remove this title from any bookbags it may have been added to."
-msgstr "This record has been deleted from the database. "
-"We recommend that you remove this title from any bookbags it may have been added to."
+#, fuzzy
+msgid ""
+"This record has been deleted from the database. \n"
+"We recommend that you remove this title from any bookbags it may have been "
+"added to."
+msgstr ""
+"This record has been deleted from the database. We recommend that you remove "
+"this title from any bookbags it may have been added to."
#: rdetail.none
msgid "(none)"
msgid "Copy Information"
msgstr "Copy Information"
+#: rdetail.copyInfo.library
+msgctxt "rdetail.copyInfo.library"
+msgid "Library"
+msgstr "Library"
+
#: rdetail.copyInfo.callnumber
msgid "Callnumber"
msgstr "Callnumber"
msgid "browse"
msgstr "browse"
+#: rdetail.copyInfo.hold
+msgctxt "rdetail.copyInfo.hold"
+msgid "place hold"
+msgstr "place hold"
+
#: rdetail.extras.summary
msgid "Copy Summary"
msgstr "Copy Summary"
+#: rdetail.extras.browser
+msgctxt "rdetail.extras.browser"
+msgid "Shelf Browser"
+msgstr "Shelf Browser"
+
+#: rdetail.extras.reviews
+msgctxt "rdetail.extras.reviews"
+msgid "Reviews"
+msgstr "Reviews"
+
#: rdetail.extras.toc
msgid "Table of Contents"
msgstr "Table of Contents"
msgstr ""
#: result.sort_by.pubdate
-msgid "Sort Results by Publicate Date"
+msgid "Sort Results by Publication Date"
msgstr ""
#: result.limit2avail
msgid "Perform an Author Search"
msgstr "Perform an Author Search"
+#: result.googleBooks.browse
+msgid "Browse in Google Books Search"
+msgstr ""
+
#: common.call.number.label
msgid "Call Number:"
msgstr "Call Number:"
msgstr "Copy Barcode:"
#: common.hold.place
-msgid "Place hold for me"
-msgstr "Place hold for me"
+msgid "Place hold for my account"
+msgstr ""
#: common.hold.check
msgid "Checking for possibility of hold fulfillment..."
msgstr "A hold already exists on the requested item."
#: common.hold.exists.override
-msgid "A hold already exists on the requested "
-"item. Would you like to create the hold anyway?"
-msgstr "A hold already exists on the requested "
+#, fuzzy
+msgid ""
+"A hold already exists on the requested \n"
"item. Would you like to create the hold anyway?"
+msgstr ""
+"A hold already exists on the requested item. Would you like to create the "
+"hold anyway?"
#: common.hold.barred
-msgid "PATRON BARRED. Please see any notes in the "
-"\"Staff Notes\" section of your \"My Account\" page or contact your local library."
-msgstr "PATRON BARRED. Please see any notes in the "
-"\"Staff Notes\" section of your \"My Account\" page or contact your local library."
+#, fuzzy
+msgid ""
+"PATRON BARRED. Please see any notes in the \n"
+"\"Staff Notes\" section of your \"My Account\" page or contact your local "
+"library."
+msgstr ""
+"PATRON BARRED. Please see any notes in the \"Staff Notes\" section of your \"My "
+"Account\" page or contact your local library."
#: common.hold.item.invalid
-msgid "This hold is no longer valid. It's likely that the "
-"target for the hold was deleted from the system. Please cancel this hold and "
-"place a new one."
-msgstr "This hold is no longer valid. It's likely that the "
-"target for the hold was deleted from the system. Please cancel this hold and "
+#, fuzzy
+msgid ""
+"This hold is no longer valid. It's likely that the \n"
+"target for the hold was deleted from the system. Please cancel this hold "
+"and \n"
"place a new one."
+msgstr ""
+"This hold is no longer valid. It's likely that the target for the hold was "
+"deleted from the system. Please cancel this hold and place a new one."
#: common.hold.patron.invalid
msgid "The patron barcode entered as the hold recipient is invalid."
msgstr "The patron barcode entered as the hold recipient is invalid."
# Was (??), perhaps change to a button or icon?
+#. Was (??), perhaps change to a button or icon?
#: common.help
msgid "(Help)"
msgstr "(Help)"
#: common.phone.format.help
-msgid "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ"
-msgstr "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ"
+msgid ""
+"The phone number does not have the correct format. The expected format is "
+"XXX-YYY-ZZZZ"
+msgstr ""
+"The phone number does not have the correct format. The expected format is "
+"XXX-YYY-ZZZZ"
#: common.hold.failed
-msgid "No items were found that could fulfill the requested holds. "
-"It's possible that choosing a different format will result in a successful hold. "
-"It is also possible that you have exceeded the number of allowable holds. "
-"For further information, please consult your local librarian."
-msgstr "No items were found that could fulfill the requested holds. "
-"It's possible that choosing a different format will result in a successful hold. "
-"It is also possible that you have exceeded the number of allowable holds. "
+#, fuzzy
+msgid ""
+"No items were found that could fulfill the requested holds. \n"
+"It's possible that choosing a different format will result in a successful "
+"hold. \n"
+"It is also possible that you have exceeded the number of allowable holds. \n"
"For further information, please consult your local librarian."
+msgstr ""
+"No items were found that could fulfill the requested holds. It's possible "
+"that choosing a different format will result in a successful hold. It is "
+"also possible that you have exceeded the number of allowable holds. For "
+"further information, please consult your local librarian."
#: common.control.click
msgid "(control-click to select multiple formats)"
msgstr "(Patron has no configured email address)"
#: common.email.set
-msgid "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)"
-msgstr "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)"
+msgid ""
+"(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> "
+"for setting your email address)"
+msgstr ""
+"(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> "
+"for setting your email address)"
#: common.keywords.label
msgid "Keywords:"
msgid "Choose a different library..."
msgstr "Choose a different library..."
+#: library.select.help
+msgctxt "library.select.help"
+msgid "Choose a library to search"
+msgstr "Choose a library to search"
+
#: login.username
msgid "Enter your username or library barcode"
msgstr "Enter your username or library barcode"
msgstr "Change Password"
#: login.first.time
-msgid "This appears to be the first time you have logged in. "
-"You will need to change your password."
-msgstr "This appears to be the first time you have logged in. "
+#, fuzzy
+msgid ""
+"This appears to be the first time you have logged in. \n"
"You will need to change your password."
+msgstr ""
+"This appears to be the first time you have logged in. You will need to "
+"change your password."
#: login.password.current.enter
msgid "Enter your current password"
msgid "Passwords do not match"
msgstr "Passwords do not match"
+#: login.password.success
+msgctxt "login.password.success"
+msgid "Password successfully updated"
+msgstr "Password successfully updated"
+
#: login.password.strength
msgid "The password provided is not strong enough."
msgstr "The password provided is not strong enough."
#: login.barcode.inactive
-msgid "The barcode used to login is marked as inactive. Please contact your local library."
-msgstr "The barcode used to login is marked as inactive. Please contact your local library."
+msgid ""
+"The barcode used to login is marked as inactive. Please contact your local "
+"library."
+msgstr ""
+"The barcode used to login is marked as inactive. Please contact your local "
+"library."
#: login.account.inactive
msgid "This account has been deactivated. Please contact your local library."
msgstr "This account has been deactivated. Please contact your local library."
#: login.failed
-msgid "Login failed. The username or password provided was not valid. "
-"Ensure Caps-Lock is off and try again or contact your local library."
-msgstr "Login failed. The username or password provided was not valid. "
+#, fuzzy
+msgid ""
+"Login failed. The username or password provided was not valid. \n"
"Ensure Caps-Lock is off and try again or contact your local library."
+msgstr ""
+"Login failed. The username or password provided was not valid. Ensure Caps-"
+"Lock is off and try again or contact your local library."
#: button.go
msgid "Go!"
# =================================================================
# Slimpac Simple Search
-# =================================================================
+#. =================================================================
+#. Slimpac Simple Search
+#. =================================================================
#: slimpac.start.title
msgid "Simple Search"
msgstr "Simple Search"
# =================================================================
# Slimpac Advanced Search
-# =================================================================
+#. =================================================================
+#. Slimpac Advanced Search
+#. =================================================================
#: slimpac.advanced.language
msgid "Item Language"
msgstr "Item Language"
#: vendor.base_link
msgid "http://amazon.com/dp/"
msgstr ""
+
+#~ msgid " of at least "
+#~ msgstr " of at least "
+
+#~ msgid "Share"
+#~ msgstr "Share this Bookbag"
+
+#~ msgid "Edit/Cancel"
+#~ msgstr "Edit/Cancel"
+
+#~ msgid "Freeze"
+#~ msgstr "Freeze"
+
+#~ msgid "Un-freeze"
+#~ msgstr "Un-freeze"
+
+#~ msgid "Set Un-freeze date"
+#~ msgstr "Set Un-freeze date"
+
+#~ msgid "Are you sure you wish to un-freeze the selected holds?"
+#~ msgstr "Are you sure you wish to un-freeze the selected holds?"
+
+#~ msgid "Select an 'Un-Freeze' date. This is the date at which the holds will become active again. "
+#~ "If no date is chosen, the holds will remain frozen until they are manually un-frozen."
+#~ msgstr "Select an 'Un-Freeze' date. This is the date at which the holds will become active again. "
+#~ "If no date is chosen, the holds will remain frozen until they are manually un-frozen."
+
+#~ msgid "Freeze this hold"
+#~ msgstr "Freeze this hold"
+
+#~ msgid "Un-Frozen"
+#~ msgstr "Un-Frozen"
+
+#~ msgid "Frozen Until"
+#~ msgstr "Frozen Until"
+
+#~ msgid "Username cannot contain spaces"
+#~ msgstr "Username cannot contain spaces"
+
+#~ msgid "Place hold for me"
+#~ msgstr "Place hold for me"
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.patron.barcode_entry.user_permission_editor
+msgid "User Permission Editor"
+msgstr ""
+
+#: staff.patron.barcode_entry.check_out
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron.barcode_entry.no_barcode
+msgid "No barcode entered."
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_retrieval_problem
+msgid ""
+"Problem retrieving %1$s. Please report this message: \n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_not_found
+msgid "Barcode %1$s not found."
+msgstr ""
+
+#: staff.patron.barcode_entry.consent_from_patron
+msgid ""
+"Does patron %1$s, %2$s from %3$s (%4$s) consent to having their personal "
+"information shared with your library?"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_title
+msgid "Patron/Library Opt-In Confirmation"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_accept
+msgid "Accept"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_deny
+msgid "Deny"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_confirm
+msgctxt "staff.patron.barcode_entry.patron_consent_confirm"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_display_error
+msgid "spawning patron display"
+msgstr ""
+
+#: staff.patron.barcode_entry.user_perm_display_error
+msgid "spawning user perm editor"
+msgstr ""
+
+#: staff.patron.bill_details.my_init.error
+msgid "bill_details.xul, my_init:"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voided_billings.alert
+msgid "All selected billings have already voided."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_title
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_yes
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_no
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voiding_error
+msgctxt "staff.patron.bill_details.handle_void.voiding_error"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.billings_voided
+msgctxt "staff.patron.bill_details.handle_void.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_history.retrieve_mbts_for_list.close_win_try_again
+msgid "Please close this window and try again."
+msgstr ""
+
+#: staff.patron.bill_history.my_init.current_bills
+msgid "Current Bills"
+msgstr ""
+
+#: staff.patron.bill_history.my_init.bill_history
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_plural
+msgid "Are you sure you would like to add a billing to bills %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_singular
+msgid "Are you sure you would like to add a billing to bill %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.title
+msgid "Bill Patron"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_yes
+msgctxt "staff.patron.bill_history.handle_add.btn_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_no
+msgctxt "staff.patron.bill_history.handle_add.btn_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.confirm_message
+msgctxt "staff.patron.bill_history.handle_add.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_history.print_bills.print_error
+msgid "printing bills"
+msgstr ""
+
+#: staff.patron.bills.init_controller.money_summary_label
+msgid "Money Summary"
+msgstr ""
+
+#: staff.patron.bills.bill_payment_amount.credit_amount
+msgid "Patron only has %1$s in credit."
+msgstr ""
+
+#: staff.patron.bills.bill_change_amount.greedy
+msgid "Someone wanted more money than they deserved"
+msgstr ""
+
+#: staff.patron.bills.apply_payment.nothing_applied
+msgid "No payments or patron credit applied."
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment
+msgid "Please annotate this payment:"
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment.title
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills.pay.refund_exceeds_desk_payment
+msgid ""
+"%1$s\n"
+"\n"
+"Another way to \"zero\" this transaction is to use Add Billing and add a "
+"miscellaneous bill to counter the negative balance."
+msgstr ""
+
+#: staff.patron.bills.pay.payment_failed
+msgid "Bill payment likely failed"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.title
+msgctxt "staff.patron.bills.info_box.label_value.title"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.type
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.last_billing
+msgid "Last Billing:"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.add_billing
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.refund
+msgid "Refund"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.void_all_billings
+msgid "Void All Billings"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.full_details
+msgid "Full Details"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.all_voided
+msgid "All billings already voided on this bill."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.message
+msgctxt "staff.patron.bills.void_all_billings.void.message"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.title
+msgctxt "staff.patron.bills.void_all_billings.void.title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.yes
+msgctxt "staff.patron.bills.void_all_billings.void.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.no
+msgctxt "staff.patron.bills.void_all_billings.void.no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.confirm_message
+msgctxt "staff.patron.bills.void_all_billings.void.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.error_voiding_bills
+msgctxt "staff.patron.bills.void_all_billings.error_voiding_bills"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.billings_voided
+msgctxt "staff.patron.bills.void_all_billings.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_wizard.patron_bill_finish.billing_added
+msgid "Billing added."
+msgstr ""
+
+#: staff.patron.display.cmd_search_form.no_patron
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display.cmd_patron_edit.edit_search
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: staff.patron.display.spawn_editor.editing_related_patron
+msgctxt "staff.patron.display.spawn_editor.editing_related_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.display.init.retrieving_patron
+msgid "Retrieving Patron..."
+msgstr ""
+
+#: staff.patron.display.init.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.display.init.network_request.alert_message
+msgid "Alert message: \"%1$s\"<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.inactive_card
+msgid "Patron account retrieved with an INACTIVE card.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_barred
+msgid "Patron account is BARRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_inactive
+msgid "Patron account is INACTIVE.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_expired
+msgid "Patron account is EXPIRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.holds_ready
+msgid "Holds available: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_title
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_message
+msgid ""
+"Press a navigation button above (for example, Check Out) to clear this "
+"alert."
+msgstr ""
+
+#: staff.patron.display.init.network_request.dump_error_message
+msgid "Not re-displaying this alert message: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.error_showing_alert
+msgid "Error showing patron alert and holds availability."
+msgstr ""
+
+#: staff.patron.display.render_search_form.patron_search
+msgid "Patron Search"
+msgstr ""
+
+#: staff.patron.display.tab_name
+msgid "Patron:"
+msgstr ""
+
+#: staff.patron.hold_notices.tooltiptext
+msgid "ID: %1$s Hold ID: %2$s Notifying Staff ID: %3$s"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification_record
+msgid "New Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.method
+msgid "Method"
+msgstr ""
+
+#: staff.patron.hold_notices.note
+msgctxt "staff.patron.hold_notices.note"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel
+msgctxt "staff.patron.hold_notices.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel_accesskey
+msgctxt "staff.patron.hold_notices.cancel_accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record
+msgid "Add Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record_accesskey
+msgctxt "staff.patron.hold_notices.add_notif_record_accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification.not_created
+msgid "The notification was not likely created."
+msgstr ""
+
+#: staff.patron.holds.init.hold_num_error
+msgid "Error retrieving details for hold #%1$s"
+msgstr ""
+
+#: staff.patron.holds.show_notifications.error_rendering_notifs
+msgid "Error rendering or retrieving hold notifications."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_hold_range
+msgid "Please choose a Hold Range:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_library
+msgctxt "staff.patron.holds.holds_edit_selection_depth.choose_library"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.singular
+msgid ""
+"Are you sure you would like to change the Hold Range for hold %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.plural
+msgid ""
+"Are you sure you would like to change the Hold Range for holds %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_title
+msgctxt "staff.patron.holds.holds_edit_selection_depth.modify_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_not_modified
+msgid "Holds not likely modified."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.new_pickup_lib.description
+msgid "Please choose a new Pickup Library:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.choose_lib
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.choose_lib"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.singular
+msgid ""
+"Are you sure you would like to change the Pick Up Library for hold %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.plural
+msgid ""
+"Are you sure you would like to change the Pick Up Library for holds %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.new_phone_number
+msgid ""
+"Please enter a new phone number for hold notification (leave the field empty "
+"to disable phone notification):"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.choose_phone_number
+msgid "Choose a Hold Notification Phone Number"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.singular
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for hold "
+"%1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.plural
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for "
+"holds %1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.modifying_holds_title
+msgctxt "staff.patron.holds.holds_edit_phone_notify.modifying_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.description
+msgid ""
+"Send email notifications (when appropriate)? The email address used is "
+"found in the hold recipient account."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.label
+msgid "Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.accesskey
+msgid "E"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.label
+msgid "No Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.accesskey
+msgid "N"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.set_notifs
+msgid "Set Email Notification for Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.singular
+msgid "Are you sure you would like to enable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.plural
+msgid ""
+"Are you sure you would like to enable email notification for holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.singular
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.singular"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.plural
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.plural"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.mod_holds_title
+msgctxt "staff.patron.holds.holds_edit_email_notify.mod_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.singular
+msgid "Are you sure you would like to reset hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.plural
+msgid "Are you sure you would like to reset holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_title
+msgid "Resetting Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.holds_not_reset
+msgid "Holds not likely reset."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.singular
+msgid "Are you sure you would like to cancel hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.plural
+msgid "Are you sure you would like to cancel holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_title
+msgid "Cancelling Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes
+msgid "For barcodes %1$s, should the associated transits also be cancelled?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes.title
+msgid "Cancelling Transits"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_transits_not_cancelled
+msgid "Hold transits not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_not_cancelled
+msgid "Holds not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.unknown_htype
+msgid ""
+"I do not understand the hold type of %1$s so I can not display the "
+"appropriate record in the catalog."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.retrieving_title
+msgctxt "staff.patron.holds.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.holds.lib_menus.missing_library_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_group_members.failure
+msgid "Failed to retrieve all the group members."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.tab_name
+msgid "Retrieving Patron.."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patron
+msgid "Failed to retrieve patron."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patrons
+msgid "Failed to retrieve patrons."
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.register_clone.tab_name
+msgid "Register Patron Clone for Group"
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.error_spawning_editors
+msgid "error spawning user editors"
+msgstr ""
+
+#: staff.patron.info_group.spwan_editor.editing_patron
+msgctxt "staff.patron.info_group.spwan_editor.editing_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.info_group.spwan_search
+msgid "spawn search"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message
+msgid ""
+"WARNING: If you remove the currently displayed patron, a NEW group will be "
+"displayed in this interface."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message_confirm
+msgid "Remove selected patrons from this group? %1$s"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.error_removing_patron
+msgid "error removing patron (ID=%1$s) from usergroup"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_removed_from_group
+msgid "Patrons removed from group."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_not_removed_from_group
+msgid "Patron not removed from group."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.null_not_allowed
+msgid "null parameter not allowed"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.invalid_parameter
+msgid "Invalid parameter. Expected boolean."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.scan_patron_barcode
+msgid "Please scan a patron barcode:"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_new_usergroup
+msgid "Move patron %1$s into patron %2$s's usergroup..."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.label
+msgid "Move"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.accesskey
+msgid "M"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.label
+msgctxt "staff.patron.info_group.link_patron.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.accesskey
+msgctxt "staff.patron.info_group.link_patron.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_usergroup
+msgid "Move Patron into a Usergroup"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patron
+msgid "error linking patron (ID=%1$s)"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.usergroups_updated
+msgid "User groups updated."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patrons
+msgid "error linking patrons"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.accesskey
+msgctxt "staff.patron.info_notes.render_notes.add_new_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.tooltiptext
+msgid "Note ID: %1$s Creator ID: %2$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.patron_visible
+msgid "Patron Visible"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.staff_only
+msgid "Staff Only"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_message
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn1.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.note_deleted
+msgid "Note deleted."
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pertaining_to
+msgid "Pertaining to"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.created_on
+msgid "created on"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.printing_note_num
+msgid "printing note #%1$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn2.print_note.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.patron_visible.value
+msgid "Patron Visible?"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.title.value
+msgctxt "staff.patron.info_notes.new_note.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note.value
+msgctxt "staff.patron.info_notes.new_note.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.label
+msgctxt "staff.patron.info_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.accesskey
+msgctxt "staff.patron.info_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.label
+msgctxt "staff.patron.info_notes.new_note.add.label"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.accesskey
+msgctxt "staff.patron.info_notes.new_note.add.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgctxt "staff.patron.info_notes.new_note.add_note_title"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgid "Note added."
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note_not_created
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.patron.info_stat_cats.retrieve_fleshed_patron.failed
+msgid "Failed to retrieve patron stat cats."
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.opac_visible
+msgid "OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.not_opac_visible
+msgid "Not OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.rendering_exception
+msgid "rendering or retrieving stat cat"
+msgstr ""
+
+#: staff.patron.info_surveys.retrieve_surveys.failed
+msgid "Failed to retrieve all the survey responses."
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.required
+msgid "Required"
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.not_required
+msgid "Not Required"
+msgstr ""
+
+#: staff.patron.items.show_noncats.14_days
+msgid "14 days"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_noncat
+msgid "Error showing NonCat #%1$s"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_circulations
+msgid "Error showing NonCat circulations"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.list_is_busy
+msgid ""
+"This is list is busy retrieving or rendering rows for a prior action. Abort "
+"the prior action and proceed?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.renew_items_in_list
+msgid "Renew all the items in this list?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.items_not_renewed
+msgid "All items were not likely renewed (%1$s)"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewing
+msgid "Renewing %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewed
+msgid "%1$s renewed."
+msgstr ""
+
+#: staff.patron.items.items_renew.not_renewed
+msgid ""
+"%1%s not renewed.\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.err_in_renew_via_barcode
+msgid ""
+"Error in renew_via_barcode callback\n"
+"Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew_for_barcode
+msgid "Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew
+msgid "Renew probably did not happen."
+msgstr ""
+
+#: staff.patron.items.items_edit.invalid_date
+msgid "Invalid Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.need_later_date
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.singular
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.plural
+msgid "Edit Due Dates"
+msgstr ""
+
+#: staff.patron.items.items_edit.new_due_date
+msgid "Enter a new due date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.dates_not_modified
+msgid "The due dates were not likely modified."
+msgstr ""
+
+#: staff.patron.items.items_edit.mark_barcode_lost
+msgid "Mark barcode lost = %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.item_barcode
+msgid ""
+"Item Barcode %1$s\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.items_not_marked_lost
+msgid "The items were not likely marked lost."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.date_cannot_be_in_future
+msgid "Claims Returned Date cannot be in the future."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.claimed_returned
+msgid "Claimed Returned"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.enter_returned_date
+msgid "Enter a claimed returned date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.not_marked_claimed_returned
+msgid "The items were not likely marked Claimed Returned."
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.singular
+msgid "Are you sure you would like to check in item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.plural
+msgid "Are you sure you would like to check in items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.no_checkin
+msgid "Checkin probably did not happen."
+msgstr ""
+
+#: staff.patron.items.show_catalog.barcode_not_cataloged
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.patron.items.show_catalog.retrieving_title
+msgctxt "staff.patron.items.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.items.retrieve_row.callback_error
+msgid "Error in callback for FM_CIRC_DETAILS.authoritative in patron/items.js"
+msgstr ""
+
+#: staff.patron.items.retrieve_row.error_in_retrieve_row
+msgid "error in patron/items.js retrieve_row():"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row2
+msgid ""
+"2 Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row
+msgid ""
+"Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.retrieve.err_retrieving_circulations
+msgid "Error retrieving circulations."
+msgstr ""
+
+#: staff.patron.items.gen_list_append.error
+msgid "patron/items.js: error in gen_list_append"
+msgstr ""
+
+#: staff.patron.search_result.search.no_patrons_found
+msgid "No patrons found matching search criteria."
+msgstr ""
+
+#: staff.patron.search_result.search.capped_results
+msgid "Results capped at %1$s patrons."
+msgstr ""
+
+#: staff.patron.search_result.search.enter_search_terms
+msgid "Please enter some search terms."
+msgstr ""
+
+#: staff.patron.search_result.init.typeof_params
+msgid "typeof params.on_retrieve == %1$s"
+msgstr ""
+
+#: staff.patron.search_result.init.search_print
+msgid "patron search print"
+msgstr ""
+
+#: staff.patron.search_result.init.search_clipboard
+msgid "patron search clipboard"
+msgstr ""
+
+#: staff.patron.search_result.init.search_saving_columns
+msgid "patron search saving columns"
+msgstr ""
+
+#: staff.patron.summary.patron_bill.money
+msgid "$ %1$s"
+msgstr ""
+
+#: staff.patron.summary.retrieve.no_barcode
+msgid "summary: No barcode or ID"
+msgstr ""
+
+#: staff.patron.summary.patron_net_access
+msgid "Internet"
+msgstr ""
+
+#: staff.patron.summary.expires_on
+msgid "Expires on"
+msgstr ""
+
+#: staff.patron.ue.uEditInit.session_no_defined
+msgctxt "staff.patron.ue.uEditInit.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: staff.patron.ue.uEditSaveuser.error_creating_note
+msgid "Error creating patron guardian or parent note"
+msgstr ""
+
+#: staff.patron.ue.uEditShowSearch.search
+msgctxt "staff.patron.ue.uEditShowSearch.search"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
+
+#: staff.patron.user_edit.save_user.depth_required
+msgid "Depth is required on the %1$s permission."
+msgstr ""
+
+#: staff.patron.user_edit.save_user.user_modified_successfully
+msgid ""
+"User %1$s [%2$s] successfully modified.\n"
+"%3$s permissions and %4$s work locations updated."
+msgstr ""
+
+#: staff.patron.user_edit.display_perm.select_one
+msgid "-- Select One --"
+msgstr ""
+
+#: web.staff.patron.ue.session_no_defined
+msgctxt "web.staff.patron.ue.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: web.staff.patron.ue.uedit_show_search.search_would_be
+msgctxt "web.staff.patron.ue.uedit_show_search.search_would_be"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
-# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/admin.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/admin.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: staff.admin.font_settings.sound
msgstr ""
#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
msgid "Global Font Adjust set to Default"
msgstr ""
#: staff.admin.font_settings.status_msg.ALL_FONTS_18PT
msgid "Global Font set to 18pt"
msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.transit_list.missing_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.admin.transit_list.no_match
+msgid "No matching transits."
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date
+msgid "Invalid Date (%1$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date_format
+msgid "Invalid Date (%1$s,%2$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.date_processing.error
+msgid "error processing date"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_transit.error
+msgid "error retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.preretrieving_transit.error
+msgid "error pre-retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_row.error
+msgid "error retrieving row"
+msgstr ""
+
+#: staff.admin.transit_list.empty_array.error
+msgid "Empty array returned by hold retrieve."
+msgstr ""
+
+#: staff.admin.transit_list.retrieve_hold.error
+msgid "retrieving hold id = %1$s for transit id = %2$s"
+msgstr ""
+
+#: staff.admin.transit_list.transit_id.error
+msgid "retrieving transit id = %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.organization
+msgid "Organization"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.description
+msgid "Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_created
+msgid "Date Created"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.created_by
+msgid "Created By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.upload_count
+msgid "Upload Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.transactions_processed
+msgid "Transactions Processed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.processing
+msgid "Processing?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_started
+msgid "Date Started"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_completed
+msgid "Date Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.session
+msgid "Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.date_uploaded
+msgid "Date Uploaded"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.uploaded_by
+msgid "Uploaded By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.time_delta
+msgid "Server/Local Time Delta"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_script_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_error_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.type
+msgid "Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_code
+msgid "Event Code"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_name
+msgid "Event Name"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_description
+msgid "Event Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.count
+msgid "In House Use Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_type
+msgid "Non-Cataloged Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_count
+msgid "Non-Cataloged Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.backdate
+msgid "Check In Backdate"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.check_perm
+msgid "Error checking permissions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.bad_cgi_response
+msgid "Bad response from CGI component"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.execute_error
+msgid "Execute error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_execute_error
+msgid "Error executing session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_retrieval
+msgid "Error retrieving session errors:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.non_existent_file
+msgid "Cannot rename a non-existent file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.renaming_file
+msgid "Error renaming transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.unique_file
+msgid "Taking too long to find a unique filename."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts
+msgid ""
+"Something bad happened. New offline transactions were accumulated during "
+"our attempted upload. Tell your system admin that the file involved is %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.title
+msgid "Transaction conflicts"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.ok
+msgid "Ok"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.reverting_file
+msgid "Error reverting transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.archiving_file
+msgid "Error archiving transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.session_upload
+msgid "Please select a session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.single_session_upload
+msgid "Please select a single session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no_transactions
+msgid "No pending transactions to upload."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_file
+msgid "There was an error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_transactions
+msgid "Error uploading transactions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_session
+msgid "Error retrieving session status"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session.prompt
+msgid "Please enter a description:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session
+msgid "Create an Offline Transaction Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session
+msgid "Error creating session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session.alert
+msgid "Error: %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_sessions
+msgid "Error retrieving offline sessions."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_session
+msgid "Error rendering session list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.upload_status
+msgid "Uploaded Transactions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_script
+msgid "Error rendering script list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_errors
+msgid "Exceptions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_error_list
+msgid "Error rendering error list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.completed
+msgid "Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no
+msgid "No"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.yes
+msgid "Yes"
+msgstr ""
--- /dev/null
+#. extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/auth.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.auth.controller.not_configured
+msgid "Not yet configured for the specified server."
+msgstr ""
+
+#: staff.auth.controller.testing_hostname
+msgid "Testing hostname..."
+msgstr ""
+
+#: staff.auth.controller.prompt_hostname
+msgid "Please enter a server hostname."
+msgstr ""
+
+#: staff.auth.controller.error_hostname
+msgid "There was an error testing this hostname."
+msgstr ""
+
+#: staff.auth.controller.status
+msgid "%1$s : %2$s"
+msgstr ""
+
+#: staff.auth.controller.testing_version
+msgid "Testing version..."
+msgstr ""
+
+#: staff.auth.controller.error_version
+msgid "There was an error checking version support."
+msgstr ""
+
+#: staff.auth.controller.version_mismatch
+msgid ""
+"This server does not support your version of the staff client. Please check "
+"with your system administrator."
+msgstr ""
+
+#. # login with <username> and <password> at <server>
+#: staff.auth.controller.error_login
+msgid "login with %1$s and %2$s at %3$s"
+msgstr ""
+
+#: staff.auth.controller.confirm_close
+msgid "Are you sure you would like to exit the program completely?"
+msgstr ""
+
+#: staff.auth.session.unregistered
+msgid "%1$s is not registered with this server."
+msgstr ""
+
+#: staff.auth.session.login_failed
+msgid ""
+"Login failed. Please check your Server Hostname, Username, Password, and "
+"your CAPS LOCK key."
+msgstr ""
+
+#: staff.auth.session.init_false
+msgid "open-ils.auth.authenticate.init returned false"
+msgstr ""
-# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: cat.barcode_for_item
#: cat.copy_buckets.tab
msgid "Copy Buckets"
msgstr ""
+
+#: cat.total_bucket_items_in_bucket
+msgid "Contains %1$s bucket items"
+msgstr ""
+
+#: cat.results_returned
+msgid "Returning %1$s hits"
+msgstr ""
+
+#: staff.cat.bib_brief.record_id
+msgid "Record ID = %1$s"
+msgstr ""
+
+#: staff.cat.bib_brief.deleted
+msgid "(Deleted)"
+msgstr ""
+
+#: staff.cat.bib_brief.inactive
+msgid "(Inactive)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat
+msgid "(Not Cataloged)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat.alert
+msgid "Item not cataloged."
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.title
+msgid "Add Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.error
+msgid "copy browser -> add copies"
+msgstr ""
+
+#: staff.cat.copy_browser.add_items_bucket.error
+msgid "copy browser -> add copies to bucket"
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.failed
+msgid "Barcode %1$s not likely replaced."
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.error
+msgid "copy browser -> replace barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_items.error
+msgid "Copy Browser -> Edit Items"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm.plural
+msgid "Are you sure you would like to delete these %1$s items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm
+msgid "Are you sure you would like to delete this item?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.title
+msgid "Delete Items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.delete
+msgctxt "staff.cat.copy_browser.delete_items.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.cancel
+msgctxt "staff.cat.copy_browser.delete_items.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.override
+msgctxt "staff.cat.copy_browser.delete_items.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.error
+msgid "copy browser -> delete items"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.tab
+msgctxt "staff.cat.copy_browser.print_spine.tab"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.error
+msgid "copy browser -> Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.permission_error
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.title
+msgid "Add Volume/Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.error
+msgid "copy browser -> add volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.permission_error
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title
+msgid "Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title.plural
+msgctxt "staff.cat.copy_browser.edit_volume.title.plural"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.failed
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.error
+msgid "volume update error:"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.exception
+msgid "Copy Browser -> Volume Edit"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt.plural
+msgid "Are you sure you would like to delete these %1$s volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.delete
+msgctxt "staff.cat.copy_browser.delete_volume.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.cancel
+msgctxt "staff.cat.copy_browser.delete_volume.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.override
+msgctxt "staff.cat.copy_browser.delete_volume.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.copies_remain
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.exception
+msgid "copy browser -> delete volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.alert
+msgid "Library + Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.prompt
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.title
+msgctxt "staff.cat.copy_browser.mark_library.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.alert
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.title
+msgctxt "staff.cat.copy_browser.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_volume.alert
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.prompt
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.submit.label
+msgctxt "staff.cat.copy_browser.transfer.submit.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.label
+msgctxt "staff.cat.copy_browser.transfer.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.accesskey
+msgctxt "staff.cat.copy_browser.transfer.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.incomplete
+msgctxt "staff.cat.copy_browser.transfer.incomplete"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.override.failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.ineligible_destination
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.unexpected_error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.missing_volume
+msgctxt "staff.cat.copy_browser.transfer_items.missing_volume"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.unexpected_error
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.missing_library
+msgid "Missing library list."
+msgstr ""
+
+#: staff.cat.copy_browser.consortial_copy_count.error
+msgid "Error retrieving consortial copy count."
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.tree_location
+msgid "Location/Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.volume_count
+msgctxt "staff.cat.copy_browser.list_init.volume_count"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.copy_count
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.error
+msgid "Copy Browser Actions"
+msgstr ""
+
+#: staff.cat.copy_browser.refresh_list.error
+msgid "Problem refreshing the volume/copy tree."
+msgstr ""
+
+#: staff.cat.copy_buckets.render_pending_copies.complete
+msgctxt "staff.cat.copy_buckets.render_pending_copies.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.retrieve_row.error
+msgid "Error retrieving details for item with copy id = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.choose_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.choose_bucket"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.retrieve_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.retrieve_bucket"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.prompt
+msgctxt "staff.cat.copy_buckets.menulist.change_bucket.prompt"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.undefined
+msgid "Could not find a bucket with ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket id?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_sel_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_sel_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.error
+msgid "Deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_item.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.error
+msgid "Bucket deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.success
+msgid "Bucket \"%1$s\" created."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.batch.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.no_volume
+msgid ""
+"Please mark a volume as the destination from within the copy browser and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.confirm
+msgid ""
+"Transfer the items in bucket \"%1$s\" from their original volumes to the "
+"volume labelled \"%2$s\" for the library \"%3$s\" on the following record?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.error
+msgid "Items not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_buckets.cmd_export_to_copy_status.error
+msgid "Copy Status from Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets.prep_item_for_list.error
+msgid "List building failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt
+msgid "Copy this item into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt.plural
+msgctxt "staff.cat.copy_buckets_quick.bucket_prompt.plural"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.addition.error
+msgid "Addition likely failed for bucket = %1$s and copy ID = %2$s."
+msgstr ""
+
+#: staff.cat.copy_editor.caption
+msgid "Copy Editor"
+msgstr ""
+
+#: staff.cat.copy_editor.create_copies
+msgid "Create Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.status
+msgid "Status"
+msgstr ""
+
+#: staff.cat.copy_editor.retrieve_templates.error
+msgid "Error retrieving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_templates.error
+msgid "Error applying template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.prompt
+msgid "Enter template name:"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.title
+msgid "Save As Template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.success
+msgid "Template \"%1$s\" saved."
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.error
+msgid "Error saving template"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.confirm
+msgid "Delete template \"%1$s\"?"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.success
+msgid "Template \"%1$s\" deleted."
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.error
+msgid "Error deleting template"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.title
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.error
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.title
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.prompt
+msgid "Replace the existing template with the imported template?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.title
+msgid "Template %1$s already exists."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.yes
+msgctxt "staff.cat.copy_editor.import_templates.replace.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.no
+msgctxt "staff.cat.copy_editor.import_templates.replace.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.click_here
+msgctxt "staff.cat.copy_editor.import_templates.replace.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.prompt
+msgid "Save all of these imported templates permanently to this account?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.title
+msgid "Final warning"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.yes
+msgctxt "staff.cat.copy_editor.import_templates.save.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.no
+msgctxt "staff.cat.copy_editor.import_templates.save.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.click_here
+msgctxt "staff.cat.copy_editor.import_templates.save.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.success
+msgid "All templates saved."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.error
+msgid "Error saving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.note
+msgid ""
+"Note: These imported templates will get saved along with any new template "
+"you try to create, but if that does not happen, then these templates will "
+"disappear with the next invocation of the item attribute editor."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.error
+msgid "Error importing templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.undefined_volume.error
+msgid ""
+"Error retrieving Volume information for copy %1$s. The owning library for "
+"this copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.call_number.error
+msgid ""
+"Error changing owning library for copy %1$s. The owning library for this "
+"copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count
+msgid "1 copy"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count.plural
+msgid "%1$s copies"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.label
+msgctxt "staff.cat.copy_editor.apply.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.accesskey
+msgctxt "staff.cat.copy_editor.apply.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+msgctxt "staff.cat.copy_editor.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.success
+msgid "Items were added or modified."
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.error
+msgid "copy update error:"
+msgstr ""
+
+#: staff.cat.copy_editor.add_stat_cat.error
+msgid "Error adding statistical category to display definition"
+msgstr ""
+
+#: staff.cat.copy_editor.populate_stat_cat.error
+msgid "Error populating statistical categories for display"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.accesskey
+msgctxt "staff.cat.copy_notes.render_notes.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.note_id
+msgid "Note ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.creator_id
+msgid "Creator ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.public
+msgid "Public"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.private
+msgid "Private"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.msg
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.yes
+msgctxt "staff.cat.copy_notes.delete_note.prompt.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.no
+msgctxt "staff.cat.copy_notes.delete_note.prompt.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.success
+msgid "Note deleted."
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.close_window
+msgid "Close Window"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.public
+msgid "Public?"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.title
+msgid "Title"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.note
+msgid "Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.label
+msgctxt "staff.cat.copy_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.accesskey
+msgctxt "staff.cat.copy_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.label
+msgid "Add Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.accesskey
+msgctxt "staff.cat.copy_notes.new_note.add_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.success
+msgid "Note added."
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.error
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.cat.copy_summary.copy_id
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circs"
+msgstr ""
+
+#: staff.cat.copy_summary.yes
+msgctxt "staff.cat.copy_summary.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_summary.no
+msgctxt "staff.cat.copy_summary.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_summary.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.cat.copy_summary.not_cataloged
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_row
+msgid "Add Row: CTRL+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.insert_row
+msgid "Insert Row: CTRL+Shift+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_subfield
+msgid "Add Subfield: CTRL+D"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_row
+msgid "Remove Row: CTRL+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_subfield
+msgid "Remove Subfield: SHIFT+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_006
+msgid "Create/Replace 006: CTRL+F6"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_007
+msgid "Create/Replace 007: CTRL+F7"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_008
+msgid "Create/Replace 008: CTRL+F8"
+msgstr ""
+
+#: staff.cat.marcedit.save.label
+msgid "Save Record"
+msgstr ""
+
+#: staff.cat.marcedit.marcTag.LDR.label
+msgid "MARC Leader"
+msgstr ""
+
+#: staff.cat.marcedit.add_row.label
+msgid "Add Row"
+msgstr ""
+
+#: staff.cat.marcedit.remove_row.label
+msgid "Remove Row"
+msgstr ""
+
+#: staff.cat.marcedit.replace_006.label
+msgid "Add/Replace 006"
+msgstr ""
+
+#: staff.cat.marcedit.replace_007.label
+msgid "Add/Replace 007"
+msgstr ""
+
+#: staff.cat.marcedit.replace_008.label
+msgid "Add/Replace 008"
+msgstr ""
+
+#: staff.cat.marcedit.not_authority_field.label
+msgid "Not a controlled subfield"
+msgstr ""
+
+#: staff.cat.marcedit.apply_selected.label
+msgid "Apply Selected"
+msgstr ""
+
+#: staff.cat.marcedit.no_authority_match.label
+msgid "No matching authority records found"
+msgstr ""
+
+#: staff.cat.marc_new.create_record.label
+msgid "Create Record"
+msgstr ""
+
+#: staff.cat.marc_new.system_local.label
+msgid "System Local"
+msgstr ""
+
+#: staff.cat.marc_new.record_created.label
+msgid "Record created."
+msgstr ""
+
+#: staff.cat.marc_new.retrieving.label
+msgctxt "staff.cat.marc_new.retrieving.label"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.marc_new.creating_record.error
+msgid "Error creating MARC record."
+msgstr ""
+
+#: staff.cat.marc_new.loading_template.error
+msgid "Error loading MARC template: %1$s"
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.alert
+msgid "Record successfully saved."
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.std_unexpected_error
+msgid "Record not likely updated."
+msgstr ""
+
+#: staff.cat.opac.refresh.function_not_implemented.alert
+msgid "Not yet implemented. Work around: Choose Duplicate in New Tab option"
+msgstr ""
+
+#: staff.cat.opac.set_tab_name
+msgid "Record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.save_file_as
+msgid "Save File As"
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.alert
+msgid "File not downloaded."
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.std_unexpected_error
+msgid "Records could not be exported."
+msgstr ""
+
+#: staff.cat.record_buckets.rednder_pending_records.alert
+msgctxt "staff.cat.record_buckets.rednder_pending_records.alert"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.record_buckets.retrieve_row.std_unexpected_error
+msgid "Error retrieving mvr for record with ID = %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.buckets.std_unexpected_error
+msgid "Could not retrieve your buckets."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item1
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item1"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item2
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item2"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.bucket_id
+msgctxt "staff.cat.record_buckets.change_bucket.bucket_id"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket ID?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_bucket_named
+msgctxt "staff.cat.record_buckets.delete_bucket_named"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt_title
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt_title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.same_name_alert
+msgctxt "staff.cat.record_buckets.new_bucket.same_name_alert"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_created
+msgid "Bucket %1$s created."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.merge_lead
+msgid "Merge these records? (Select the \"lead\" record first)"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.button.label
+msgid "Merge"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead_record_number
+msgid "Lead Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead
+msgid "Lead"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt_title
+msgid "Record Merging"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt.alert
+msgid "Merge Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.success
+msgid "Records were successfully merged."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.catch.std_unex_error
+msgid "Records were not likely merged."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml1
+msgid "Delete these records?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.button.label
+msgctxt "staff.cat.record_buckets.delete_records.button.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml2
+msgid "Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt_title
+msgid "Record Purging"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt.alert
+msgid "Delete Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s1
+msgid "Error deleting these records:\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s2
+msgid "Record #%1$s : %2$s : %3$s\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.delete_success.alert
+msgid "Records deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.catch.std_unex_err
+msgid "Records were not likely deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_broken.alert
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.tab_name
+msgctxt "staff.cat.record_buckets.cmd_sel_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.catch.std_unex_err
+msgid "Showing in OPAC"
+msgstr ""
+
+#: staff.cat.record_buckets.submit.query_status
+msgctxt "staff.cat.record_buckets.submit.query_status"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.record_buckets.prep_record_for_list.std_unex_err
+msgid "Could not retrieve this record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_one_record
+msgid "Copy this record into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_multiple_records
+msgctxt "staff.cat.record_buckets_quick.copy_multiple_records"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.initing_record_buckets_quick_xul
+msgid "Trying to init record_buckets_quick.xul"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket.title
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.bucket_creation_failure
+msgctxt "staff.cat.record_buckets_quick.bucket_creation_failure"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.addition_failed
+msgid "Addition likely failed for bucket = %1$s and record ID = %2$s"
+msgstr ""
+
+#: staff.cat.spine_labels.copy
+msgid "copy"
+msgstr ""
+
+#: staff.cat.spine_labels.copies
+msgid "copies"
+msgstr ""
+
+#: staff.cat.spine_labels.generate.std_unexpeceted_err
+msgid "Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.title
+msgctxt "staff.cat.spine_labels.preview.title"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.std_unexpected_err
+msgid "Preview and Print"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.prompt
+msgid "Enter original barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.old_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.error_alert
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.prompt
+msgid "Enter the replacement barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.new_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc.failed
+msgid "Rename aborted. Blank barcodes are not allowed."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.testing_error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.insufficient_permission_for_rename
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.item_rename_error
+msgid "Error renaming item."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.rename_error
+msgid "Rename did not likely occur."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.unmarked_volume_alert
+msgctxt "staff.cat.util.transfer_copies.unmarked_volume_alert"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.params_message
+msgid ""
+"Transfer items from their original volumes to %1$s's volume labelled %2$s on "
+"the following record (and change their circulation libs to match)?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer.label
+msgctxt "staff.cat.util.transfer_copies.transfer.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.label
+msgctxt "staff.cat.util.transfer_copies.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.accesskey
+msgctxt "staff.cat.util.transfer_copies.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.window_title
+msgid "Item Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.aborted_transfer
+msgctxt "staff.cat.util.transfer_copies.aborted_transfer"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.override_transfer_failure
+msgid "Override Transfer Failure?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.successful_transfer
+msgid "Items transferred."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer_error
+msgid "All items not likely transferred."
+msgstr ""
+
+#: staff.cat.util.spine_editor.tab_name
+msgctxt "staff.cat.util.spine_editor.tab_name"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.spine_editor.spine_editor_error
+msgctxt "staff.cat.util.spine_editor.spine_editor_error"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.unknown_barcode
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.catalog_error_for_doc_id
+msgid "Error opening catalog for document ID = %1$s"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_in_title
+msgid "Batch"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit_in_title
+msgctxt "staff.cat.util.copy_editor.edit_in_title"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view_in_title
+msgctxt "staff.cat.util.copy_editor.view_in_title"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.copy_attributes_in_title
+msgid "Copy Attributes"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_edit
+msgid "Batch Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_view
+msgid "Batch View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit
+msgctxt "staff.cat.util.copy_editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view
+msgctxt "staff.cat.util.copy_editor.view"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.not_modified
+msgid "Copies not modified."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Damaged status."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_title
+msgctxt "staff.cat.util.mark_item_damaged.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_message
+msgid ""
+"Change the status for these items to Damaged? You will have to manually "
+"retrieve the last circulation if you need to bill a patron. Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_title
+msgid "Mark Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.md_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_cancel_label
+msgctxt "staff.cat.util.mark_item_damaged.md_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.md_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.marking_error
+msgid "Error marking item %1$s damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.one_item_damaged
+msgid "Item marked Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.multiple_item_damaged
+msgid "%1$s items marked Damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Missing status."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_title
+msgctxt "staff.cat.util.mark_item_missing.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_ok_label
+msgctxt "staff.cat.util.mark_item_missing.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_message
+msgid "'Change the status for these items to Missing? Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_title
+msgid "Mark Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_ok_label
+msgctxt "staff.cat.util.mark_item_missing.ms_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_cancel_label
+msgctxt "staff.cat.util.mark_item_missing.ms_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.ms_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.marking_error
+msgid "Error marking item %1$s missing."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.one_item_missing
+msgid "Item marked Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.multiple_item_missing
+msgid "%1$s items marked Missing."
+msgstr ""
+
+#: staff.cat.volume_buckets.window_tab_name
+msgid "Volume Buckets"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.my_init.btn.label
+msgctxt "staff.cat.volume_copy_creator.my_init.btn.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.message
+msgid ""
+"You may not add more than %1$s items at a time for a given volume in this "
+"interface."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.title
+msgid "Maximum items exceeded."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.ok_label
+msgid "Ok"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.call_nums
+msgid "Call Numbers"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.num_of_copies
+msgid "# of Copies"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_message
+msgid "\"%1$s\" is an invalid barcode."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_title
+msgid "Invalid Barcode"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button
+msgctxt "staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.problem_with_volume
+msgid ""
+"Problem finding or creating %1$s. We will skip item creation for this "
+"volume."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err2
+msgid "volume tree update 2"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err3
+msgid "volume tree update 3"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.load_prefs.err_retrieving_prefs
+msgid "Error retrieving stored preferences"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.save_prefs.err_storing_prefs
+msgid "Error storing preferences"
+msgstr ""
+
+#: staff.cat.z3950.obj_list_init.list_construction_error
+msgid "Failure during list construction."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.deck_label
+msgid "Results View"
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_view_error
+msgid "Failure during MARC view."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_error
+msgid "Failure during MARC import."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_overlay_error
+msgid "Failure during MARC import overlay."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.search_fields_error
+msgid "Error setting up search fields."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.z39_service_error
+msgid "Z39.50 services not likely retrieved."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.no_search_selection
+msgid "No services selected to search."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.searching
+msgctxt "staff.cat.z3950.initial_search.searching"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.failed_search
+msgid "Failure during initial search."
+msgstr ""
+
+#: staff.cat.z3950.page_next.more_results
+msgid "Retrieving more results..."
+msgstr ""
+
+#: staff.cat.z3950.page_next.subsequent_search_error
+msgid "Failure during subsequent search."
+msgstr ""
+
+#: staff.cat.z3950.search.search_error
+msgid "Failure during actual search."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.null_server_error
+msgid "Server Error: request returned null"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.server_error
+msgid "Server Error: %1$s : %2$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.raw_query
+msgid "Raw query: %1$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.showing_results
+msgid "Showing %1$s of %2$s for %3$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.num_of_results
+msgid "%1$s records found"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.result_error
+msgid "Error retrieving results."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.search_result_error
+msgid "Failure during search result handling."
+msgstr ""
+
+#: staff.cat.z3950.replace_tab_with_opac.tab_name
+msgctxt "staff.cat.z3950.replace_tab_with_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.title
+msgctxt "staff.cat.z3950.spawn_marc_editor.title"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn1_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn1_overlay"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn2_import
+msgid "Import with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn3_cancel_import
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn3_cancel_import"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.successful_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import_with_new_tcn
+msgid "Record successfully imported with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_cancelled
+msgid "Record import cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import
+msgid "Record successfully imported."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_error
+msgid "Record not likely imported."
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.description
+msgid "Overlay this record?"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.label
+msgctxt "staff.cat.z3950.confirm_overlay.lead.label"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.accesskey
+msgid "O"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.label
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.accesskey
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.title
+msgid "Record Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.aborted
+msgid "Overlay Aborted"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.try_again
+msgid ""
+"Please mark a record for overlay from within the catalog and try this again."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.tab_name
+msgid "MARC Editor"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_record_label
+msgid "Overlay Record"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn1_overlay
+msgid "Overlay with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.successful_overlay_with_new_TCN
+msgid "Record successfully overlaid with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.cancelled_overlay
+msgid "Record overlay cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_error
+msgid "Record not likely overlaid."
+msgstr ""
+
+#: staff.cat.z3950.load_creds.z3950_cred_error
+msgid "Error retrieving stored z39.50 credentials"
+msgstr ""
+
+#: staff.cat.z3950.save_creds.z3950_cred_error
+msgid "Problem storing z39.50 credentials."
+msgstr ""
-# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/circ.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: circ.bad_checkdigit
-msgid "This barcode has a bad check digit."
+#: staff.circ.alert
+msgid "Alert"
msgstr ""
-#: circ.barcode.enter
-msgid "Please enter a patron barcode first."
+#: staff.circ.item_no_circs
+msgid "Item %1$s has never circulated."
msgstr ""
-#: circ.barcode.warning
-msgid "Barcode Warning"
+#: staff.circ.invalid_date
+msgctxt "staff.circ.invalid_date"
+msgid "Invalid Date"
msgstr ""
-#: circ.standalone
-msgid "Standalone"
+#: staff.circ.future_date
+msgid "Future Date"
msgstr ""
-#: circ.duplicate_scan.msg
-msgid "This barcode has already been scanned."
+#: staff.circ.process_item
+msgid "Check In / Process Item"
msgstr ""
-#: circ.duplicate_scan.field
-msgid "Duplicate Scan"
+#: staff.circ.backdated_checkin
+msgid "Backdated %1$s Check In"
msgstr ""
-#: circ.offline_checkout.nonbarcoded
-msgid "or choose a non-barcoded option..."
+#: staff.circ.backdate.exception
+msgid "Problem setting backdate: %1$s"
msgstr ""
-#: circ.offline_checkout.items
-msgid "Enter the number of items:"
+#: staff.circ.unimplemented
+msgctxt "staff.circ.unimplemented"
+msgid "Not Yet Implemented"
msgstr ""
-#: circ.offline_checkout.download.warning
+#: staff.circ.check_digit.bad
+msgctxt "staff.circ.check_digit.bad"
msgid ""
-"WARNING: The non-barcode types have not been downloaded from the server. "
-"You should log in to retrieve these."
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.lost
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+#: staff.circ.barcode.bad
+msgid "Bad Barcode"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.expired
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+#: staff.circ.cancel
+msgctxt "staff.circ.cancel"
+msgid "Cancel"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.barred
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+#: staff.circ.barcode.accept
+msgid "Accept Barcode"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.blocked
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+#: staff.circ.confirm
+msgid "Check here to confirm this action"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.unknown
+#: staff.circ.confirm.msg
+msgid "Check here to confirm this message."
+msgstr ""
+
+#. # If we know the name of the object, we could parameterize that as well
+#: staff.circ.checkin.exception
+msgid "Something went wrong in circ.util.checkin: %1$s"
+msgstr ""
+
+#: staff.circ.checkin2.exception
+msgid "Something went wrong in circ.util.checkin2: %1$s"
+msgstr ""
+
+#: staff.circ.checkin.exception.external
+msgctxt "staff.circ.checkin.exception.external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.external
+msgid "circ.checkin2: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin.exception.no_external
+msgctxt "staff.circ.checkin.exception.no_external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.no_external
+msgid "circ.util.checkin2: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.external
+msgctxt "staff.circ.util.checkin.exception.external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.no_external
+msgctxt "staff.circ.util.checkin.exception.no_external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkout.sorting.exception
+msgid "error in sorting non-cataloged items: %1$s"
+msgstr ""
+
+#: staff.circ.checkout.date.exception
+msgid "Use this format: YYYY-MM-DD"
+msgstr ""
+
+#: staff.circ.checkout.unimplemented
+msgctxt "staff.circ.checkout.unimplemented"
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.msg
+msgid "Enter the number of %1$s circulating:"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.title
+msgid "Non-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.msg
+msgid "You tried to circulate %1$d %2$s. The maximum is 99 per action."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.too_many.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.ok.btn
+msgctxt "staff.circ.checkout.ok.btn"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.msg
+msgid "Are you sure you want to circulate %1$d %2$s?"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.confirm.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.yes.btn
+msgctxt "staff.circ.checkout.yes.btn"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.checkout.no.btn
+msgctxt "staff.circ.checkout.no.btn"
+msgid "No"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.msg
+msgid "Error with non-cataloged checkout. %1$s is not a valid number."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.non_numeric.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.disable.error
+msgid "Error determining whether to disable checkout."
+msgstr ""
+
+#: staff.circ.checkout.date.too_early.error
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed
+msgid "%1$s failed."
+msgstr ""
+
+#: staff.circ.checkout.non_cataloged.pending
+msgid "Non-cataloged checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.pending
+msgid "%1$s checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed.alert
+msgid "Check Out Failed %1$s"
+msgstr ""
+
+#: staff.circ.checkout.override.confirm
+msgid "Override Checkout Failure?"
+msgstr ""
+
+#: staff.circ.checkout.not_cataloged.confirm
+msgid "Mis-scan or non-cataloged item. Checkout as a pre-cataloged item?"
+msgstr ""
+
+#: staff.circ.pre_cataloged
+msgid "Pre-cataloged"
+msgstr ""
+
+#: staff.circ.non_cataloged
+msgid "Non-cataloged"
+msgstr ""
+
+#: staff.circ.checkout.cancelled
+msgid "Checkout cancelled"
+msgstr ""
+
+#: staff.circ.checkout.card.inactive
+msgid ""
+"The card used to retrieve this account is inactive and may not be used to "
+"circulate items."
+msgstr ""
+
+#: staff.circ.checkout.barcode.check_out_failed
+msgid "Check Out Failed"
+msgstr ""
+
+#: staff.circ.checkout.account.inactive
+msgid "This account is inactive and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.account.expired
+msgid "This account has expired and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.item_due
+msgid "This item was due on %1$s."
+msgstr ""
+
+#: staff.circ.checkout.normal_checkin_then_checkout
+msgid "Normal Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.forgiving_checkin_then_checkout
+msgid "Forgiving Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.abort_transit_then_checkout
+msgid "Abort Transit then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.network_failure
+msgid "There was a network failure."
+msgstr ""
+
+#: staff.circ.checkout.copy_status
+msgid "Copy status = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.alert_message
+msgid "Alert Message = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.permission_denied
+msgid "Permission Denied = %1$s"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkout.suggest_offline
+msgid ""
+"Check Out Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkout.barcode
+msgctxt "staff.circ.checkout.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_out_id
+msgid "Check Out Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_in_id
+msgid "Check In Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.failure
+msgid "Failure rendering circulation."
+msgstr ""
+
+#: staff.circ.copy_details.hold
+msgid "Hold ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.transit
+msgid "Transit ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.circ
+msgid "Circulation ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.last_circ
+msgid "Last Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.current_circ
+msgid "Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.no_circ
+msgid "This item has yet to circulate."
+msgstr ""
+
+#: staff.circ.copy_details.not_transit
+msgid "This item is not in transit."
+msgstr ""
+
+#. # Displays user info: "Family name, First name : Barcode"
+#: staff.circ.copy_details.user_details
+msgid "%1$s, %2$s : %3$s"
+msgstr ""
+
+#: staff.circ.copy_details.bad_hold_status
+msgid ""
+"This item is not captured for a hold, however its status is incorrectly set "
+"to \"On Holds Shelf\". Please check this item in to correct the status."
+msgstr ""
+
+#: staff.circ.copy_details.no_hold
+msgid "This item is not captured for a hold."
+msgstr ""
+
+#: staff.circ.copy_status.tab_name
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status.action.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.circ.copy_status.sel_checkin.error
+msgid "Checkin did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcode.error
+msgid "Barcode %1$s was not likely replaced."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcodes.error
+msgid "Barcode replacements did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.sel_edit.error
+msgid "with copy editor"
+msgstr ""
+
+#: staff.circ.copy_status.sel_renew.not_circulating
+msgid "Item with barcode %1$s is not circulating."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.title
+msgid "Import Barcode File"
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.complete
+msgid "File uploaded."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.no_barcodes
+msgid "No barcodes found in file."
+msgstr ""
+
+#: staff.circ.copy_status.add_items.title
+msgid "Add Item for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.confirm
+msgid "Are you sure sure you want to delete these items? %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.title
+msgctxt "staff.circ.copy_status.del_items.title"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success
+msgid "Items Deleted"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.mark_destination
+msgid "Please mark a volume as the destination and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.problem
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.perm_failure
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.title
+msgid "Add Volume/Item for Record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.perm_failure
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volume.title
+msgid "Volume for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.title
+msgid "Volumes for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.duplicate
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.singular
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.plural
+msgid "Are you sure you would like to delete these volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete
+msgid "Delete"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.cancel
+msgctxt "staff.circ.copy_status.delete_volumes.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.override
+msgctxt "staff.circ.copy_status.delete_volumes.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete_copies
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.status
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.title
+msgctxt "staff.circ.copy_status.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.ok
+msgctxt "staff.circ.copy_status.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library
+msgid "Library and Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one.title
+msgctxt "staff.circ.copy_status.mark_library.limit_one.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.none
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.confirm
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.transfer.label
+msgid "Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.label
+msgctxt "staff.circ.copy_status.transfer_volume.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.accesskey
+msgid "C"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.aborted
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.override_failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cannot_have_vols
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.test_barcode.prompt
+msgctxt "staff.circ.copy_status.test_barcode.prompt"
+msgid ""
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
+msgstr ""
+
+#: staff.circ.copy_status.status.null_result
+msgid "Something weird happened. Result was null."
+msgstr ""
+
+#: staff.circ.copy_status.status.copy_not_found
+msgid "%1$s was either mis-scanned or is not cataloged."
+msgstr ""
+
+#: staff.circ.copy_status.status.not_cataloged
+msgctxt "staff.circ.copy_status.status.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.copy_status.status.pre_cat
+msgid "Item is a pre-cataloged item."
+msgstr ""
+
+#: staff.circ.copy_status.status.hold
+msgid "Item is captured for a Hold."
+msgstr ""
+
+#: staff.circ.copy_status.status.transit
+msgid "Item is in Transit."
+msgstr ""
+
+#: staff.circ.copy_status.status.circ
+msgid "Item is circulating."
+msgstr ""
+
+#: staff.circ.hold_capture.print.to_printer
+msgid "To Printer"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.barcode
+msgctxt "staff.circ.hold_capture.print.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.title
+msgid "Title:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.author
+msgid "Author:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.route_to
+msgid "Route to:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.patron
+msgid "Patron:"
+msgstr ""
+
+#: staff.circ.hold_capture.calling_external
+msgid "circ.hold_capture: Calling external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.no_external
+msgid "circ.hold_capture: No external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.capture_failed
+msgid "Could not capture hold."
+msgstr ""
+
+#: staff.circ.hold_capture.error
+msgid "FIXME: need special alert and error handling"
+msgstr ""
+
+#: staff.circ.in_house_use.tab_name
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.barcode
+msgctxt "staff.circ.in_house_use.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncat_sort_error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncataloged
+msgid "Non-Cataloged"
+msgstr ""
+
+#: staff.circ.in_house_use.items_dump
+msgid "items ="
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple
+msgid "Are you sure you want to mark %1$s as having been used %2$s times?"
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple.title
+msgid "In-House Use Verification"
+msgstr ""
+
+#: staff.circ.in_house_use.yes
+msgctxt "staff.circ.in_house_use.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.in_house_use.no
+msgctxt "staff.circ.in_house_use.no"
+msgid "No"
+msgstr ""
+
+#. # adjust Circulation -> Offline Interface to match your translation in lang.dtd
+#: staff.circ.in_house_use.failed.verbose
+msgid ""
+"In House Use Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.in_house_use.failed
+msgid "In House Use Failed"
+msgstr ""
+
+#: staff.circ.in_house_use.ok
+msgctxt "staff.circ.in_house_use.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.in_house_use.external
+msgid "circ.in_house_use: Calling external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.no_external
+msgid "circ.in_house_use: No external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.external
+msgid "circ.in_house_use: Calling external .on_failure()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.no_external
+msgid "circ.in_house_use: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.print_list_template.window.title
+msgid "Template Macros"
+msgstr ""
+
+#: staff.circ.print_list_template.window.heading
+msgid "General:"
+msgstr ""
+
+#: staff.circ.print_list_template.window.template_type
+msgid "For type: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.window.close
+msgid "Close Window"
+msgstr ""
+
+#: staff.circ.print_list_template.preview
+msgid "preview:"
+msgstr ""
+
+#: staff.circ.print_list_template.save
+msgid "Template Saved"
+msgstr ""
+
+#: staff.circ.print_list_template.save_as
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.circ.print_list_template.export.error
+msgctxt "staff.circ.print_list_template.export.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.import
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.circ.print_list_template.import_results
+msgid "Imported these templates: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.reload
+msgid "Please reload this interface."
+msgstr ""
+
+#: staff.circ.print_list_template.import.error
+msgctxt "staff.circ.print_list_template.import.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.tab_name
+msgid "Receipt Template Editor"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.confirm
+msgid "Are you sure you would like to abort transits for copies: %1$s?"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.title
+msgid "Aborting Transits"
+msgstr ""
+
+#: staff.circ.utils.yes
+msgctxt "staff.circ.utils.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.utils.no
+msgctxt "staff.circ.utils.no"
+msgid "No"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_allowed
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_found
msgid ""
-"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
-"%3$s."
+"This item was no longer in transit at the time of the abort. Perhaps this "
+"happened from a stale display?"
msgstr ""
-#: circ.offline_checkout.date.early
-msgid "Due date needs to be after today."
+#: staff.circ.utils.abort_transits.unexpected_error
+msgid "Transit not likely aborted."
+msgstr ""
+
+#: staff.circ.utils.retrieve_patron.failure
+msgid "Problem retrieving patron."
+msgstr ""
+
+#: staff.circ.utils.retrieve_copy.failure
+msgid "Problem retrieving copy details."
+msgstr ""
+
+#: staff.circ.utils.retrieve_circs.failure
+msgid "Problem retrieving circulations."
+msgstr ""
+
+#: staff.circ.utils.offline.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.circ.utils.offline.checkout_time
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.utils.offline.type
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat_type
+msgid "Non-Cataloged Type ID"
+msgstr ""
+
+#: staff.circ.utils.offline.count
+msgid "Count"
+msgstr ""
+
+#: staff.circ.utils.offline.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.utils.offline.backdate
+msgid "Back Date"
+msgstr ""
+
+#: staff.circ.utils.offline.use_time
+msgid "Use Time"
+msgstr ""
+
+#: staff.circ.utils.not_cataloged
+msgctxt "staff.circ.utils.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.utils.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.circ.utils.owning_lib
+msgid "Owning Library"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.short
+msgid "Short"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.normal
+msgctxt "staff.circ.utils.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.long
+msgid "Long"
+msgstr ""
+
+#: staff.circ.utils.fine_level.low
+msgid "Low"
+msgstr ""
+
+#: staff.circ.utils.fine_level.normal
+msgctxt "staff.circ.utils.fine_level.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.fine_level.high
+msgid "High"
+msgstr ""
+
+#: staff.circ.utils.circulate
+msgid "Circulate?"
+msgstr ""
+
+#: staff.circ.utils.deleted
+msgid "Deleted?"
+msgstr ""
+
+#: staff.circ.utils.holdable
+msgid "Holdable?"
+msgstr ""
+
+#: staff.circ.utils.opac_visible
+msgid "OPAC Visible?"
+msgstr ""
+
+#: staff.circ.utils.reference
+msgid "Reference?"
+msgstr ""
+
+#: staff.circ.utils.deposit
+msgid "Deposit?"
+msgstr ""
+
+#. # The < and > highlight that the value is not set; translate Unset and change the delimiters as needed
+#: staff.circ.utils.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.circ.utils.checkout_lib
+msgid "Checkout Library"
+msgstr ""
+
+#: staff.circ.utils.checkout_timestamp
+msgid "Checkout Timestamp"
+msgstr ""
+
+#: staff.circ.utils.checkin_timestamp
+msgid "Checkin Timestamp"
+msgstr ""
+
+#: staff.circ.utils.xact_start
+msgid "Checkout Date"
+msgstr ""
+
+#: staff.circ.utils.checkin_time
+msgid "Checkin Date"
+msgstr ""
+
+#: staff.circ.utils.xact_finish
+msgid "Transaction Finished"
+msgstr ""
+
+#: staff.circ.utils.create_date
+msgid "Date Created"
+msgstr ""
+
+#: staff.circ.utils.edit_date
+msgid "Date Last Edited"
+msgstr ""
+
+#: staff.circ.utils.edition
+msgid "Edition"
+msgstr ""
+
+#: staff.circ.utils.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.circ.utils.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.circ.utils.publisher
+msgid "Publisher"
+msgstr ""
+
+#. # TCN is an acronym for Title Control Number
+#: staff.circ.utils.tcn
+msgid "TCN"
+msgstr ""
+
+#: staff.circ.utils.stop_fines
+msgid "Fines Stopped"
+msgstr ""
+
+#: staff.circ.utils.stop_fines_time
+msgid "Fines Stopped Time"
+msgstr ""
+
+#: staff.circ.utils.route_to
+msgid "Route To"
+msgstr ""
+
+#: staff.circ.utils.message
+msgid "Message"
+msgstr ""
+
+#: staff.circ.utils.uses
+msgid "# of Uses"
+msgstr ""
+
+#: staff.circ.utils.alert_message
+msgid "Alert Message"
+msgstr ""
+
+#: staff.circ.utils.barcode
+msgid "Barcode"
msgstr ""
-#: circ.offline_checkout.required_field
-msgid "Required Field"
+#: staff.circ.utils.title
+msgid "Title"
msgstr ""
-#: circ.offline_checkout.valid_count
-msgid "Please try again and enter a valid count."
+#: staff.circ.utils.author
+msgid "Author"
msgstr ""
-#: circ.offline_checkout.required_value
-msgid "Required Value"
+#: staff.circ.utils.callnumber
+msgid "Call Number"
msgstr ""
-#: circ.offline_register.future.birth.date
-msgid "Patron needs to be born yesterday."
+#: staff.circ.utils.transit_id
+msgid "Transit ID"
msgstr ""
-#: circ.offline_register.invalid.birth.date
-msgid "Happy birthday! You need to be more than 0 days old."
+#: staff.circ.utils.transit_source
+msgid "Transit Source"
msgstr ""
-#: circ.offline_register.survey.prompt
-msgid "Choose a response..."
+#: staff.circ.utils.transit_source_send_time
+msgid "Transit Send Time"
msgstr ""
-#: circ.offline_register.missing.post_code
-msgid "Missing Address : Postal Code"
+#: staff.circ.utils.transit_dest
+msgid "Transit Destination"
msgstr ""
-#: circ.offline_register.missing.state
-msgid "Missing Address : State"
+#: staff.circ.utils.transit_dest_recv_time
+msgid "Transit Completion Time"
msgstr ""
-#: circ.offline_register.missing.city
-msgid "Missing Address : City"
+#: staff.circ.utils.transit_target_copy
+msgid "Transit Copy ID"
msgstr ""
-#: circ.offline_register.missing.street1
-msgid "Missing Address : Line 1"
+#: staff.circ.utils.request_lib
+msgid "Request Library (Full Name)"
msgstr ""
-#: circ.offline_register.missing.ident_value
-msgid "Missing Identification Value"
+#: staff.circ.utils.request_lib_shortname
+msgid "Request Library"
msgstr ""
-#: circ.offline_register.missing.ident_type
-msgid "Missing Identification Type"
+#: staff.circ.utils.request_timestamp
+msgid "Request Timestamp"
msgstr ""
-#: circ.offline_register.missing.dob
-msgid "Missing Date of Birth"
+#: staff.circ.utils.request_time
+msgid "Request Date"
msgstr ""
-#: circ.offline_register.missing.first_given_name
-msgid "Missing First Name"
+#. # Time the hold became available
+#: staff.circ.utils.available_timestamp
+msgid "Available On (Timestamp)"
+msgstr ""
+
+#. # Date the hold became available
+#: staff.circ.utils.available_time
+msgid "Available On"
+msgstr ""
+
+#. # Time the hold was captured
+#: staff.circ.utils.capture_timestamp
+msgid "Capture Timestamp"
+msgstr ""
+
+#. # Date the hold was captured
+#: staff.circ.utils.capture_time
+msgid "Capture Date"
+msgstr ""
+
+#: staff.circ.utils.hold_status.1
+msgid "Waiting for copy"
+msgstr ""
+
+#: staff.circ.utils.hold_status.2
+msgid "Waiting for capture"
+msgstr ""
+
+#: staff.circ.utils.hold_status.3
+msgid "In-Transit"
+msgstr ""
+
+#: staff.circ.utils.hold_status.4
+msgid "Ready for pickup"
+msgstr ""
+
+#: staff.circ.utils.frozen
+msgid "Frozen?"
+msgstr ""
+
+#: staff.circ.utils.active
+msgid "Active?"
+msgstr ""
+
+#: staff.circ.utils.thaw_date
+msgid "Activation Date"
+msgstr ""
+
+#: staff.circ.utils.thaw_date.none
+msgid "No Date"
+msgstr ""
+
+#: staff.circ.utils.pickup_lib
+msgid "Pickup Library (Full Name)"
+msgstr ""
+
+#: staff.circ.utils.current_copy.none
+msgid "No Copy"
+msgstr ""
+
+#: staff.circ.utils.title.none
+msgid "No Title?"
+msgstr ""
+
+#: staff.circ.utils.author.none
+msgid "No Author?"
+msgstr ""
+
+#: staff.circ.utils.notify_time
+msgid "Last Notify Time"
+msgstr ""
+
+#: staff.circ.utils.notify_count
+msgid "Notices"
+msgstr ""
+
+#: staff.circ.utils.patron_family_name
+msgid "Patron Last Name"
+msgstr ""
+
+#: staff.circ.utils.patron_first_given_name
+msgid "Patron First Name"
+msgstr ""
+
+#: staff.circ.utils.checkin.override
+msgid "Override Checkin Failure?"
+msgstr ""
+
+#: staff.circ.utils.billable.amount
+msgid "Transaction for %1$s billable $%2$s"
+msgstr ""
+
+#: staff.circ.utils.transit_hold_cancelled
+msgid "Original hold for transit cancelled."
+msgstr ""
+
+#: staff.circ.utils.item_checked_in
+msgid "%1$s was already checked in."
+msgstr ""
+
+#: staff.circ.utils.item_not_cataloged
+msgid "ITEM_NOT_CATALOGED event but copy status is %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_to.msg
+msgid "This item needs to be routed to %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_item_error
+msgid "We should have received a ROUTE_ITEM"
+msgstr ""
+
+#: staff.circ.utils.route_item_status_error
+msgid "status of Holds Shelf, but no actual hold found."
+msgstr ""
+
+#: staff.circ.utils.payload.hold.barcode
+msgctxt "staff.circ.utils.payload.hold.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.title
+msgid "Title: %1$s"
+msgstr ""
+
+#. # Hold for patron familyName, firstName secondName
+#: staff.circ.utils.payload.hold.patron
+msgid "Hold for patron %1$s, %2$s %3$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.phone_notify
+msgid "Notify by phone: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.email_notify
+msgid "Notify by email: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.request_date
+msgid "Request Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.slip_date
+msgid "Slip Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.hold_slip
+msgid "Hold Slip"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.yes
+msgid "Print"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.no
+msgid "Do Not Print"
+msgstr ""
+
+#: staff.circ.utils.capture
+msgid "%1$s has been captured for a hold."
+msgstr ""
+
+#: staff.circ.utils.needs_cataloging
+msgid "%1$s needs to be cataloged."
+msgstr ""
+
+#: staff.circ.utils.copy_status.error
+msgid "FIXME -- this case \"%1$s\" is unhandled."
+msgstr ""
+
+#: staff.circ.utils.msg.ok
+msgctxt "staff.circ.utils.msg.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.utils.route_to.destination
+msgid "Destination: %1$s."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address
+msgid "We do not have a holds address for this library."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address.error
+msgid "Unable to retrieve mailing address."
+msgstr ""
+
+#: staff.circ.utils.payload.author
+msgid "Author: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.in_transit
+msgid "%1$s is in transit."
+msgstr ""
+
+#: staff.circ.checkin.hold_capture
+msgid "Hold Capture"
+msgstr ""
+
+#: staff.circ.checkin.check_in.tab
+msgid "Item Check In"
+msgstr ""
+
+#: staff.circ.checkin.error
+msgid "Check In Failed (in circ.util.checkin) (%1$s):"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkin.suggest_offline
+msgid ""
+"Check In Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.error
+msgid "Renew Failed for %1$s"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.override
+msgid "Override Renew Failure?"
+msgstr ""
+
+#: staff.circ.renew.barcode
+msgctxt "staff.circ.renew.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.status
+msgid "Barcode: %1$s Status: %2$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.msg
+msgid "Barcode: %1$s Message: %2$s"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt
+msgid "Are you sure you would like to activate hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt.plural
+msgid "Are you sure you would like to activate holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt
+msgid "Are you sure you would like to suspend hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt.plural
+msgid "Are you sure you would like to suspend holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for hold %1$s. "
+"This will also Suspend the hold."
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt.plural
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for holds %1$s. "
+"This will also Suspend the holds."
+msgstr ""
+
+#: staff.circ.holds.activation_date.too_early.error
+msgid ""
+"Activation Date needs to be either unset or set to fall on a future date."
msgstr ""
-#: circ.offline_register.missing.family_name
-msgid "Missing Last Name"
+#: staff.circ.holds.activation_date.invalid_date
+msgctxt "staff.circ.holds.activation_date.invalid_date"
+msgid "Invalid Date"
msgstr ""
-#: circ.offline_register.missing.passwd
-msgid "Missing Password"
+#: staff.circ.holds.modifying_holds
+msgid "Modifying Holds"
msgstr ""
-#: circ.offline_register.missing.barcode
-msgid "Missing Barcode"
+#: staff.circ.holds.modifying_holds.yes
+msgctxt "staff.circ.holds.modifying_holds.yes"
+msgid "Yes"
msgstr ""
-#: circ.offline_register.missing.profile
-msgid "Missing Profile"
+#: staff.circ.holds.modifying_holds.no
+msgctxt "staff.circ.holds.modifying_holds.no"
+msgid "No"
msgstr ""
-#: circ.offline_register.missing.home_ou
-msgid "Missing Home Library"
+#: staff.circ.holds.already_activated
+msgid "Hold %1$s was already activated."
msgstr ""
-#: circ.offline_register.missing.alert
-msgid "Please fix the following:"
+#: staff.circ.holds.already_activated.plural
+msgid "Holds %1$s were already activated."
msgstr ""
-#: circ.offline_register.patron.saved
-msgid "Patron Registration Saved"
+#: staff.circ.holds.already_suspended
+msgid "Hold %1$s was already suspended."
msgstr ""
-#: circ.offline_register.missing.library.list
-msgid "Missing library list."
+#: staff.circ.holds.already_suspended.plural
+msgid "Holds %1$s were already suspended."
msgstr ""
-#: circ.offline_register.missing.profile.list
-msgid "Missing profile list."
+#: staff.circ.holds.unexpected_error.not_likely_modified
+msgid "Holds not likely modified."
msgstr ""
-#: circ.offline_register.missing.id.type.list
-msgid "Missing identification type list."
+#: staff.circ.holds.unexpected_error.not_likely_activated
+msgid "Holds not likely activated."
msgstr ""
-#: circ.offline_register.missing.required.surveys
-msgid "Missing required surveys."
+#: staff.circ.holds.unexpected_error.not_likely_suspended
+msgid "Holds not likely suspended."
msgstr ""
-#: circ.offline_register.missing.files.error
+#: staff.circ.holds.error.may_not_edit_pickup_lib_for_hold_intransit
msgid ""
-"ERROR: Offline patron registration requires some server-generated files. "
-"Please login periodically to retrieve these files."
+"You may not edit the pickup library for holds that are in-transit or ready "
+"for pickup."
msgstr ""
-# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/common.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/common.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: common.exception
msgid "The JSAN library object is missing."
msgstr ""
+#: common.error
+msgid "Please inform your help desk or developers of this error:"
+msgstr ""
+
#: common.ok
msgid "Ok"
msgstr ""
msgstr ""
#: common.barcode.status.warning
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3$s."
msgstr ""
#: common.barcode.status.warning.lost
msgstr ""
#: common.barcode.status.warning.barred
+msgctxt "common.barcode.status.warning.barred"
msgid "Barred"
msgstr ""
#: common.date.invalid
msgid "Invalid Date"
msgstr ""
+
+#: common.action_complete
+msgid "Action completed."
+msgstr ""
+
+#. # common.grouping_string = the string that should be inserted between elements of a grouped list
+#: common.grouping_string
+msgid ","
+msgstr ""
+
+#: common.unimplemented
+msgid "Not yet implemented"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.check_to_confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
+
+#: staff.acp_label_barcode
+msgctxt "staff.acp_label_barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.acp_label_call_number
+msgid "Call Number"
+msgstr ""
+
+#: staff.acp_label_circ_as_type
+msgid "Circulate As Type"
+msgstr ""
+
+#: staff.acp_label_circ_lib
+msgid "Circulation Library"
+msgstr ""
+
+#: staff.acp_label_circ_modifier
+msgid "Circulation Modifier"
+msgstr ""
+
+#: staff.acp_label_copy_number
+msgid "Copy Number"
+msgstr ""
+
+#: staff.acp_label_deposit_amount
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.acp_label_fine_level
+msgid "Fine Level"
+msgstr ""
+
+#: staff.acp_label_id
+msgid "Copy ID"
+msgstr ""
+
+#: staff.acp_label_loan_duration
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.acp_label_location
+msgid "Location"
+msgstr ""
+
+#: staff.acp_label_price
+msgid "Price"
+msgstr ""
+
+#: staff.acp_label_status
+msgctxt "staff.acp_label_status"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_current_copy_label
+msgid "Current Copy"
+msgstr ""
+
+#: staff.ahr_email_notify_label
+msgid "Email Notify"
+msgstr ""
+
+#: staff.ahr_expire_time_label
+msgid "Expire Time"
+msgstr ""
+
+#: staff.ahr_fulfillment_time_label
+msgid "Fulfillment Time"
+msgstr ""
+
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.ahr_holdable_formats_label
+msgid "Holdable Formats"
+msgstr ""
+
+#: staff.ahr_id_label
+msgid "Hold ID"
+msgstr ""
+
+#: staff.ahr_phone_notify_label
+msgid "Phone Notify"
+msgstr ""
+
+#: staff.ahr_pickup_lib_label
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.ahr_prev_check_time_label
+msgid "Previous Check Time"
+msgstr ""
+
+#: staff.ahr_requestor_label
+msgid "Requestor"
+msgstr ""
+
+#: staff.ahr_selection_depth_label
+msgid "Selection Depth"
+msgstr ""
+
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_target_label
+msgid "Target"
+msgstr ""
+
+#: staff.ahr_usr_label
+msgctxt "staff.ahr_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.circ_label_due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ_label_id
+msgid "Circulation ID"
+msgstr ""
+
+#: staff.circ_label_renewal_remaining
+msgid "Remaining Renewals"
+msgstr ""
+
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr ""
+
+#: staff.bills_xact_dates_label
+msgid "Record / Dates"
+msgstr ""
+
+#: staff.bills_information
+msgid "Information"
+msgstr ""
+
+#: staff.bills_current_payment_label
+msgid "Current Payment"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill #"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgid "Start"
+msgstr ""
+
+#: staff.mbts_xact_finish_label
+msgid "Finish"
+msgstr ""
+
+#: staff.mbts_xact_type_label
+msgctxt "staff.mbts_xact_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_usr_label
+msgctxt "staff.mbts_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.mbts_last_billing_note_label
+msgid "Last Billing Note"
+msgstr ""
+
+#: staff.mbts_last_billing_type_label
+msgid "Last Billing Type"
+msgstr ""
+
+#: staff.mbts_last_billing_timestamp_label
+msgid "Last Billed"
+msgstr ""
+
+#: staff.mbts_last_payment_note_label
+msgid "Last Payment Note"
+msgstr ""
+
+#: staff.mbts_last_payment_type_label
+msgid "Last Payment Type"
+msgstr ""
+
+#: staff.mbts_last_payment_timestamp_label
+msgid "Last Payment"
+msgstr ""
+
+#: staff.mb_billing_type_label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.mb_xact_label
+msgctxt "staff.mb_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mb_billing_ts_label
+msgctxt "staff.mb_billing_ts_label"
+msgid "When"
+msgstr ""
+
+#: staff.mb_void_time_label
+msgid "Void Time"
+msgstr ""
+
+#: staff.mb_note_label
+msgctxt "staff.mb_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mb_amount_label
+msgctxt "staff.mb_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mb_voider_label
+msgid "Voider"
+msgstr ""
+
+#: staff.mb_voided_label
+msgctxt "staff.mb_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mb_id_label
+msgid "Billing ID"
+msgstr ""
+
+#: staff.mp_credit_card_payment_label
+msgid "Credit Card Payment"
+msgstr ""
+
+#: staff.mp_forgive_payment_label
+msgid "Forgive Payment"
+msgstr ""
+
+#: staff.mp_payment_timestamp_label
+msgctxt "staff.mp_payment_timestamp_label"
+msgid "When"
+msgstr ""
+
+#: staff.mp_payment_type_label
+msgid "Payment Type"
+msgstr ""
+
+#: staff.mp_voided_label
+msgctxt "staff.mp_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mp_id_label
+msgid "Payment ID"
+msgstr ""
+
+#: staff.mp_goods_payment_label
+msgid "Goods Payment"
+msgstr ""
+
+#: staff.mp_xact_label
+msgctxt "staff.mp_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mp_credit_payment_label
+msgid "Credit Payment"
+msgstr ""
+
+#: staff.mp_work_payment_label
+msgid "Work Payment"
+msgstr ""
+
+#: staff.mp_note_label
+msgctxt "staff.mp_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mp_cash_payment_label
+msgid "Cash Payment"
+msgstr ""
+
+#: staff.mp_amount_label
+msgctxt "staff.mp_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mp_check_payment_label
+msgid "Check Payment"
+msgstr ""
+
+#: staff.mp_cash_drawer_label
+msgid "Workstation"
+msgstr ""
+
+#: staff.mp_accepting_usr_label
+msgid "Staff"
+msgstr ""
+
+#: staff.card_barcode_label
+msgctxt "staff.card_barcode_label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.au_active_label
+msgid "Active"
+msgstr ""
+
+#: staff.au_usrname_label
+msgid "Login Name"
+msgstr ""
+
+#: staff.au_profile_label
+msgid "Profile"
+msgstr ""
+
+#: staff.au_barred_label
+msgctxt "staff.au_barred_label"
+msgid "Barred"
+msgstr ""
+
+#: staff.au_alert_message_label
+msgid "Alert"
+msgstr ""
+
+#: staff.au_claims_returned_count_label
+msgid "Returns Claimed"
+msgstr ""
+
+#: staff.au_create_date_label
+msgid "Created On"
+msgstr ""
+
+#: staff.au_expire_date_label
+msgid "Expires On"
+msgstr ""
+
+#: staff.au_home_library_label
+msgid "Home Library"
+msgstr ""
+
+#: staff.au_home_library_fullname_label
+msgid "Home Library (Full Name)"
+msgstr ""
+
+#: staff.au_credit_forward_balance_label
+msgid "Credit"
+msgstr ""
+
+#: staff.au_day_phone_label
+msgid "Day Phone"
+msgstr ""
+
+#: staff.au_evening_phone_label
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.au_other_phone_label
+msgid "Other Phone"
+msgstr ""
+
+#: staff.au_email_label
+msgid "Email"
+msgstr ""
+
+#: staff.au_birth_date_label
+msgid "Birth Date"
+msgstr ""
+
+#: staff.au_ident_type_label
+msgid "Identification Type"
+msgstr ""
+
+#: staff.au_ident_value_label
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ident_type2_label
+msgid "Identification Type 2"
+msgstr ""
+
+#: staff.au_ident_value2_label
+msgid "Identification Value 2"
+msgstr ""
+
+#: staff.au_net_access_level_label
+msgid "Internet Access"
+msgstr ""
+
+#: staff.au_master_account_label
+msgid "Group Lead"
+msgstr ""
+
+#: staff.au_group_id_label
+msgid "Group ID"
+msgstr ""
+
+#: staff.au_id_label
+msgid "User ID"
+msgstr ""
+
+#: staff.au_name_prefix_label
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_family_name_label
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_first_given_name_label
+msgid "First Name"
+msgstr ""
+
+#: staff.au_second_given_name_label
+msgid "Middle Name"
+msgstr ""
+
+#: staff.au_name_suffix_label
+msgid "Suffix"
+msgstr ""
+
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgid "ISSN"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers/Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.ser
+msgid "Serials"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.z39_50.search_class.publisher
+msgid "Publisher"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.main.data.loaded
+msgid "Data loaded."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.synced
+msgid "Offline interface synchronized with server."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.noncat_sort.error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.please_wait
+msgid "Please wait"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.workstation_registration_denied
+msgid "You do not have permission to register a workstation."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.override
+msgid "Override Registration Failure?"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.error
+msgid "Workstation Registration error (%1$s)"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.success
+msgid "Registration successful"
+msgstr ""
msgstr ""
"Project-Id-Version: Evergreen 1.4\n"
"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-01-20 23:22:24-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19:45-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "oclc"
msgstr ""
-#: config.bib_source:4
+#: config.bib_source:5
msgid "System Local"
msgstr ""
-#: config.bib_source:5
+#: config.bib_source:7
msgid "Project Gutenberg"
msgstr ""
-#: config.standing:7
+#: config.standing:9
msgid "Good"
msgstr ""
-#: config.standing:8
+#: config.standing:10
msgid "Barred"
msgstr ""
-#: config.non_cataloged_type:30
+#: config.non_cataloged_type:43
msgid "Paperback Book"
msgstr ""
-#: config.identification_type:33
+#: config.identification_type:46
msgid "Drivers License"
msgstr ""
-#: config.identification_type:34
+#: config.identification_type:48
msgid "SSN"
msgstr ""
-#: config.identification_type:35
+#: config.identification_type:50
msgid "Other"
msgstr ""
-#: config.rule_circ_duration:38
+#: config.rule_circ_duration:53
msgid "7_days_0_renew"
msgstr ""
-#: config.rule_circ_duration:39
+#: config.rule_circ_duration:55
msgid "28_days_2_renew"
msgstr ""
-#: config.rule_circ_duration:40
+#: config.rule_circ_duration:57
msgid "3_months_0_renew"
msgstr ""
-#: config.rule_circ_duration:41
+#: config.rule_circ_duration:59
msgid "3_days_1_renew"
msgstr ""
-#: config.rule_circ_duration:42
+#: config.rule_circ_duration:61
msgid "2_months_2_renew"
msgstr ""
-#: config.rule_circ_duration:43
+#: config.rule_circ_duration:63
msgid "35_days_1_renew"
msgstr ""
-#: config.rule_circ_duration:44
+#: config.rule_circ_duration:65
msgid "7_days_2_renew"
msgstr ""
-#: config.rule_circ_duration:45
+#: config.rule_circ_duration:67
msgid "1_hour_2_renew"
msgstr ""
-#: config.rule_circ_duration:46
+#: config.rule_circ_duration:69
msgid "28_days_0_renew"
msgstr ""
-#: config.rule_circ_duration:47
+#: config.rule_circ_duration:71
msgid "14_days_2_renew"
msgstr ""
-#: config.rule_circ_duration:48
+#: config.rule_circ_duration:73
msgid "default"
msgstr ""
-#: config.rule_max_fine:51
+#: config.rule_max_fine:76
msgid "default"
msgstr ""
-#: config.rule_max_fine:52
+#: config.rule_max_fine:78
msgid "overdue_min"
msgstr ""
-#: config.rule_max_fine:53
+#: config.rule_max_fine:80
msgid "overdue_mid"
msgstr ""
-#: config.rule_max_fine:54
+#: config.rule_max_fine:82
msgid "overdue_max"
msgstr ""
-#: config.rule_max_fine:55
+#: config.rule_max_fine:84
msgid "overdue_equip_min"
msgstr ""
-#: config.rule_max_fine:56
+#: config.rule_max_fine:86
msgid "overdue_equip_mid"
msgstr ""
-#: config.rule_max_fine:57
+#: config.rule_max_fine:88
msgid "overdue_equip_max"
msgstr ""
-#: config.rule_recuring_fine:60
+#: config.rule_recuring_fine:91
msgid "default"
msgstr ""
-#: config.rule_recuring_fine:61
+#: config.rule_recuring_fine:93
msgid "10_cent_per_day"
msgstr ""
-#: config.rule_recuring_fine:62
+#: config.rule_recuring_fine:95
msgid "50_cent_per_day"
msgstr ""
-#: config.rule_age_hold_protect:64
+#: config.rule_age_hold_protect:97
msgid "3month"
msgstr ""
-#: config.rule_age_hold_protect:65
+#: config.rule_age_hold_protect:98
msgid "6month"
msgstr ""
-#: config.copy_status:67
+#: config.copy_status:100
msgid "Available"
msgstr ""
-#: config.copy_status:69
+#: config.copy_status:102
msgid "Checked out"
msgstr ""
-#: config.copy_status:71
+#: config.copy_status:104
msgid "Bindery"
msgstr ""
-#: config.copy_status:72
+#: config.copy_status:105
msgid "Lost"
msgstr ""
-#: config.copy_status:73
+#: config.copy_status:106
msgid "Missing"
msgstr ""
-#: config.copy_status:75
+#: config.copy_status:108
msgid "In process"
msgstr ""
-#: config.copy_status:76
+#: config.copy_status:109
msgid "In transit"
msgstr ""
-#: config.copy_status:77
+#: config.copy_status:110
msgid "Reshelving"
msgstr ""
-#: config.copy_status:78
+#: config.copy_status:111
msgid "On holds shelf"
msgstr ""
-#: config.copy_status:79
+#: config.copy_status:112
msgid "On order"
msgstr ""
-#: config.copy_status:81
+#: config.copy_status:114
msgid "ILL"
msgstr ""
-#: config.copy_status:82
+#: config.copy_status:115
msgid "Cataloging"
msgstr ""
-#: config.copy_status:83
+#: config.copy_status:116
msgid "Reserves"
msgstr ""
-#: config.copy_status:84
+#: config.copy_status:117
msgid "Discard/Weed"
msgstr ""
-#: config.copy_status:85
+#: config.copy_status:118
msgid "Damaged"
msgstr ""
-#: config.net_access_level:90
+#: config.net_access_level:123
msgid "Filtered"
msgstr ""
-#: config.net_access_level:91
+#: config.net_access_level:125
msgid "Unfiltered"
msgstr ""
-#: config.net_access_level:92
+#: config.net_access_level:127
msgid "No Access"
msgstr ""
-#: config.audience_map:95
+#: config.audience_map:130
msgid "Unknown or unspecified"
msgstr ""
-#: config.audience_map:96
+#: config.audience_map:132
msgid "Preschool"
msgstr ""
-#: config.audience_map:97
+#: config.audience_map:134
msgid "Primary"
msgstr ""
-#: config.audience_map:98
+#: config.audience_map:136
msgid "Pre-adolescent"
msgstr ""
-#: config.audience_map:99
+#: config.audience_map:138
msgid "Adolescent"
msgstr ""
-#: config.audience_map:100
+#: config.audience_map:140
msgid "Adult"
msgstr ""
-#: config.audience_map:101
+#: config.audience_map:142
msgid "Specialized"
msgstr ""
-#: config.audience_map:102
+#: config.audience_map:144
msgid "General"
msgstr ""
-#: config.audience_map:103
+#: config.audience_map:146
msgid "Juvenile"
msgstr ""
-#: config.lit_form_map:106
+#: config.lit_form_map:149
msgid "Not fiction (not further specified)"
msgstr ""
-#: config.lit_form_map:107
+#: config.lit_form_map:151
msgid "Fiction (not further specified)"
msgstr ""
-#: config.lit_form_map:108
+#: config.lit_form_map:153
msgid "Comic strips"
msgstr ""
-#: config.lit_form_map:109
+#: config.lit_form_map:155
msgid "Dramas"
msgstr ""
-#: config.lit_form_map:110
+#: config.lit_form_map:157
msgid "Essays"
msgstr ""
-#: config.lit_form_map:111
+#: config.lit_form_map:159
msgid "Novels"
msgstr ""
-#: config.lit_form_map:112
+#: config.lit_form_map:161
msgid "Humor, satires, etc."
msgstr ""
-#: config.lit_form_map:113
+#: config.lit_form_map:163
msgid "Letters"
msgstr ""
-#: config.lit_form_map:114
+#: config.lit_form_map:165
msgid "Short stories"
msgstr ""
-#: config.lit_form_map:115
+#: config.lit_form_map:167
msgid "Mixed forms"
msgstr ""
-#: config.lit_form_map:116
+#: config.lit_form_map:169
msgid "Poetry"
msgstr ""
-#: config.lit_form_map:117
+#: config.lit_form_map:171
msgid "Speeches"
msgstr ""
-#: config.lit_form_map:118
+#: config.lit_form_map:173
msgid "Unknown"
msgstr ""
-#: config.language_map:122
+#: config.language_map:177
msgid "Afar"
msgstr ""
-#: config.language_map:123
+#: config.language_map:178
msgid "Abkhaz"
msgstr ""
-#: config.language_map:124
+#: config.language_map:179
msgid "Achinese"
msgstr ""
-#: config.language_map:125
+#: config.language_map:180
msgid "Acoli"
msgstr ""
-#: config.language_map:126
+#: config.language_map:181
msgid "Adangme"
msgstr ""
-#: config.language_map:127
+#: config.language_map:182
msgid "Adygei"
msgstr ""
-#: config.language_map:128
+#: config.language_map:183
msgid "Afroasiatic (Other)"
msgstr ""
-#: config.language_map:129
+#: config.language_map:184
msgid "Afrihili (Artificial language)"
msgstr ""
-#: config.language_map:130
+#: config.language_map:185
msgid "Afrikaans"
msgstr ""
-#: config.language_map:131
+#: config.language_map:186
msgid "Aljamía"
msgstr ""
-#: config.language_map:132
+#: config.language_map:187
msgid "Akan"
msgstr ""
-#: config.language_map:133
+#: config.language_map:188
msgid "Akkadian"
msgstr ""
-#: config.language_map:134
+#: config.language_map:189
msgid "Albanian"
msgstr ""
-#: config.language_map:135
+#: config.language_map:190
msgid "Aleut"
msgstr ""
-#: config.language_map:136
+#: config.language_map:191
msgid "Algonquian (Other)"
msgstr ""
-#: config.language_map:137
+#: config.language_map:192
msgid "Amharic"
msgstr ""
-#: config.language_map:138
+#: config.language_map:193
msgid "English, Old (ca. 450-1100)"
msgstr ""
-#: config.language_map:139
+#: config.language_map:194
msgid "Apache languages"
msgstr ""
-#: config.language_map:140
+#: config.language_map:195
msgid "Arabic"
msgstr ""
-#: config.language_map:141
+#: config.language_map:196
msgid "Aramaic"
msgstr ""
-#: config.language_map:142
+#: config.language_map:197
msgid "Aragonese Spanish"
msgstr ""
-#: config.language_map:143
+#: config.language_map:198
msgid "Armenian"
msgstr ""
-#: config.language_map:144
+#: config.language_map:199
msgid "Mapuche"
msgstr ""
-#: config.language_map:145
+#: config.language_map:200
msgid "Arapaho"
msgstr ""
-#: config.language_map:146
+#: config.language_map:201
msgid "Artificial (Other)"
msgstr ""
-#: config.language_map:147
+#: config.language_map:202
msgid "Arawak"
msgstr ""
-#: config.language_map:148
+#: config.language_map:203
msgid "Assamese"
msgstr ""
-#: config.language_map:149
+#: config.language_map:204
msgid "Bable"
msgstr ""
-#: config.language_map:150
+#: config.language_map:205
msgid "Athapascan (Other)"
msgstr ""
-#: config.language_map:151
+#: config.language_map:206
msgid "Australian languages"
msgstr ""
-#: config.language_map:152
+#: config.language_map:207
msgid "Avaric"
msgstr ""
-#: config.language_map:153
+#: config.language_map:208
msgid "Avestan"
msgstr ""
-#: config.language_map:154
+#: config.language_map:209
msgid "Awadhi"
msgstr ""
-#: config.language_map:155
+#: config.language_map:210
msgid "Aymara"
msgstr ""
-#: config.language_map:156
+#: config.language_map:211
msgid "Azerbaijani"
msgstr ""
-#: config.language_map:157
+#: config.language_map:212
msgid "Banda"
msgstr ""
-#: config.language_map:158
+#: config.language_map:213
msgid "Bamileke languages"
msgstr ""
-#: config.language_map:159
+#: config.language_map:214
msgid "Bashkir"
msgstr ""
-#: config.language_map:160
+#: config.language_map:215
msgid "Baluchi"
msgstr ""
-#: config.language_map:161
+#: config.language_map:216
msgid "Bambara"
msgstr ""
-#: config.language_map:162
+#: config.language_map:217
msgid "Balinese"
msgstr ""
-#: config.language_map:163
+#: config.language_map:218
msgid "Basque"
msgstr ""
-#: config.language_map:164
+#: config.language_map:219
msgid "Basa"
msgstr ""
-#: config.language_map:165
+#: config.language_map:220
msgid "Baltic (Other)"
msgstr ""
-#: config.language_map:166
+#: config.language_map:221
msgid "Beja"
msgstr ""
-#: config.language_map:167
+#: config.language_map:222
msgid "Belarusian"
msgstr ""
-#: config.language_map:168
+#: config.language_map:223
msgid "Bemba"
msgstr ""
-#: config.language_map:169
+#: config.language_map:224
msgid "Bengali"
msgstr ""
-#: config.language_map:170
+#: config.language_map:225
msgid "Berber (Other)"
msgstr ""
-#: config.language_map:171
+#: config.language_map:226
msgid "Bhojpuri"
msgstr ""
-#: config.language_map:172
+#: config.language_map:227
msgid "Bihari"
msgstr ""
-#: config.language_map:173
+#: config.language_map:228
msgid "Bikol"
msgstr ""
-#: config.language_map:174
+#: config.language_map:229
msgid "Edo"
msgstr ""
-#: config.language_map:175
+#: config.language_map:230
msgid "Bislama"
msgstr ""
-#: config.language_map:176
+#: config.language_map:231
msgid "Siksika"
msgstr ""
-#: config.language_map:177
+#: config.language_map:232
msgid "Bantu (Other)"
msgstr ""
-#: config.language_map:178
+#: config.language_map:233
msgid "Bosnian"
msgstr ""
-#: config.language_map:179
+#: config.language_map:234
msgid "Braj"
msgstr ""
-#: config.language_map:180
+#: config.language_map:235
msgid "Breton"
msgstr ""
-#: config.language_map:181
+#: config.language_map:236
msgid "Batak"
msgstr ""
-#: config.language_map:182
+#: config.language_map:237
msgid "Buriat"
msgstr ""
-#: config.language_map:183
+#: config.language_map:238
msgid "Bugis"
msgstr ""
-#: config.language_map:184
+#: config.language_map:239
msgid "Bulgarian"
msgstr ""
-#: config.language_map:185
+#: config.language_map:240
msgid "Burmese"
msgstr ""
-#: config.language_map:186
+#: config.language_map:241
msgid "Caddo"
msgstr ""
-#: config.language_map:187
+#: config.language_map:242
msgid "Central American Indian (Other)"
msgstr ""
-#: config.language_map:188
+#: config.language_map:243
msgid "Khmer"
msgstr ""
-#: config.language_map:189
+#: config.language_map:244
msgid "Carib"
msgstr ""
-#: config.language_map:190
+#: config.language_map:245
msgid "Catalan"
msgstr ""
-#: config.language_map:191
+#: config.language_map:246
msgid "Caucasian (Other)"
msgstr ""
-#: config.language_map:192
+#: config.language_map:247
msgid "Cebuano"
msgstr ""
-#: config.language_map:193
+#: config.language_map:248
msgid "Celtic (Other)"
msgstr ""
-#: config.language_map:194
+#: config.language_map:249
msgid "Chamorro"
msgstr ""
-#: config.language_map:195
+#: config.language_map:250
msgid "Chibcha"
msgstr ""
-#: config.language_map:196
+#: config.language_map:251
msgid "Chechen"
msgstr ""
-#: config.language_map:197
+#: config.language_map:252
msgid "Chagatai"
msgstr ""
-#: config.language_map:198
+#: config.language_map:253
msgid "Chinese"
msgstr ""
-#: config.language_map:199
+#: config.language_map:254
msgid "Truk"
msgstr ""
-#: config.language_map:200
+#: config.language_map:255
msgid "Mari"
msgstr ""
-#: config.language_map:201
+#: config.language_map:256
msgid "Chinook jargon"
msgstr ""
-#: config.language_map:202
+#: config.language_map:257
msgid "Choctaw"
msgstr ""
-#: config.language_map:203
+#: config.language_map:258
msgid "Chipewyan"
msgstr ""
-#: config.language_map:204
+#: config.language_map:259
msgid "Cherokee"
msgstr ""
-#: config.language_map:205
+#: config.language_map:260
msgid "Church Slavic"
msgstr ""
-#: config.language_map:206
+#: config.language_map:261
msgid "Chuvash"
msgstr ""
-#: config.language_map:207
+#: config.language_map:262
msgid "Cheyenne"
msgstr ""
-#: config.language_map:208
+#: config.language_map:263
msgid "Chamic languages"
msgstr ""
-#: config.language_map:209
+#: config.language_map:264
msgid "Coptic"
msgstr ""
-#: config.language_map:210
+#: config.language_map:265
msgid "Cornish"
msgstr ""
-#: config.language_map:211
+#: config.language_map:266
msgid "Corsican"
msgstr ""
-#: config.language_map:212
+#: config.language_map:267
msgid "Creoles and Pidgins, English-based (Other)"
msgstr ""
-#: config.language_map:213
+#: config.language_map:268
msgid "Creoles and Pidgins, French-based (Other)"
msgstr ""
-#: config.language_map:214
+#: config.language_map:269
msgid "Creoles and Pidgins, Portuguese-based (Other)"
msgstr ""
-#: config.language_map:215
+#: config.language_map:270
msgid "Cree"
msgstr ""
-#: config.language_map:216
+#: config.language_map:271
msgid "Crimean Tatar"
msgstr ""
-#: config.language_map:217
+#: config.language_map:272
msgid "Creoles and Pidgins (Other)"
msgstr ""
-#: config.language_map:218
+#: config.language_map:273
msgid "Cushitic (Other)"
msgstr ""
-#: config.language_map:219
+#: config.language_map:274
msgid "Czech"
msgstr ""
-#: config.language_map:220
+#: config.language_map:275
msgid "Dakota"
msgstr ""
-#: config.language_map:221
+#: config.language_map:276
msgid "Danish"
msgstr ""
-#: config.language_map:222
+#: config.language_map:277
msgid "Dargwa"
msgstr ""
-#: config.language_map:223
+#: config.language_map:278
msgid "Dayak"
msgstr ""
-#: config.language_map:224
+#: config.language_map:279
msgid "Delaware"
msgstr ""
-#: config.language_map:225
+#: config.language_map:280
msgid "Slave"
msgstr ""
-#: config.language_map:226
+#: config.language_map:281
msgid "Dogrib"
msgstr ""
-#: config.language_map:227
+#: config.language_map:282
msgid "Dinka"
msgstr ""
-#: config.language_map:228
+#: config.language_map:283
msgid "Divehi"
msgstr ""
-#: config.language_map:229
+#: config.language_map:284
msgid "Dogri"
msgstr ""
-#: config.language_map:230
+#: config.language_map:285
msgid "Dravidian (Other)"
msgstr ""
-#: config.language_map:231
+#: config.language_map:286
msgid "Duala"
msgstr ""
-#: config.language_map:232
+#: config.language_map:287
msgid "Dutch, Middle (ca. 1050-1350)"
msgstr ""
-#: config.language_map:233
+#: config.language_map:288
msgid "Dutch"
msgstr ""
-#: config.language_map:234
+#: config.language_map:289
msgid "Dyula"
msgstr ""
-#: config.language_map:235
+#: config.language_map:290
msgid "Dzongkha"
msgstr ""
-#: config.language_map:236
+#: config.language_map:291
msgid "Efik"
msgstr ""
-#: config.language_map:237
+#: config.language_map:292
msgid "Egyptian"
msgstr ""
-#: config.language_map:238
+#: config.language_map:293
msgid "Ekajuk"
msgstr ""
-#: config.language_map:239
+#: config.language_map:294
msgid "Elamite"
msgstr ""
-#: config.language_map:240
+#: config.language_map:295
msgid "English"
msgstr ""
-#: config.language_map:241
+#: config.language_map:296
msgid "English, Middle (1100-1500)"
msgstr ""
-#: config.language_map:242
+#: config.language_map:297
msgid "Esperanto"
msgstr ""
-#: config.language_map:243
+#: config.language_map:298
msgid "Eskimo languages"
msgstr ""
-#: config.language_map:244
+#: config.language_map:299
msgid "Esperanto"
msgstr ""
-#: config.language_map:245
+#: config.language_map:300
msgid "Estonian"
msgstr ""
-#: config.language_map:246
+#: config.language_map:301
msgid "Ethiopic"
msgstr ""
-#: config.language_map:247
+#: config.language_map:302
msgid "Ewe"
msgstr ""
-#: config.language_map:248
+#: config.language_map:303
msgid "Ewondo"
msgstr ""
-#: config.language_map:249
+#: config.language_map:304
msgid "Fang"
msgstr ""
-#: config.language_map:250
+#: config.language_map:305
msgid "Faroese"
msgstr ""
-#: config.language_map:251
+#: config.language_map:306
msgid "Faroese"
msgstr ""
-#: config.language_map:252
+#: config.language_map:307
msgid "Fanti"
msgstr ""
-#: config.language_map:253
+#: config.language_map:308
msgid "Fijian"
msgstr ""
-#: config.language_map:254
+#: config.language_map:309
msgid "Finnish"
msgstr ""
-#: config.language_map:255
+#: config.language_map:310
msgid "Finno-Ugrian (Other)"
msgstr ""
-#: config.language_map:256
+#: config.language_map:311
msgid "Fon"
msgstr ""
-#: config.language_map:257
+#: config.language_map:312
msgid "French"
msgstr ""
-#: config.language_map:258
+#: config.language_map:313
msgid "Frisian"
msgstr ""
-#: config.language_map:259
+#: config.language_map:314
msgid "French, Middle (ca. 1400-1600)"
msgstr ""
-#: config.language_map:260
+#: config.language_map:315
msgid "French, Old (ca. 842-1400)"
msgstr ""
-#: config.language_map:261
+#: config.language_map:316
msgid "Frisian"
msgstr ""
-#: config.language_map:262
+#: config.language_map:317
msgid "Fula"
msgstr ""
-#: config.language_map:263
+#: config.language_map:318
msgid "Friulian"
msgstr ""
-#: config.language_map:264
+#: config.language_map:319
msgid "Gã"
msgstr ""
-#: config.language_map:265
+#: config.language_map:320
msgid "Scottish Gaelic"
msgstr ""
-#: config.language_map:266
+#: config.language_map:321
msgid "Galician"
msgstr ""
-#: config.language_map:267
+#: config.language_map:322
msgid "Oromo"
msgstr ""
-#: config.language_map:268
+#: config.language_map:323
msgid "Gayo"
msgstr ""
-#: config.language_map:269
+#: config.language_map:324
msgid "Gbaya"
msgstr ""
-#: config.language_map:270
+#: config.language_map:325
msgid "Germanic (Other)"
msgstr ""
-#: config.language_map:271
+#: config.language_map:326
msgid "Georgian"
msgstr ""
-#: config.language_map:272
+#: config.language_map:327
msgid "German"
msgstr ""
-#: config.language_map:273
+#: config.language_map:328
msgid "Ethiopic"
msgstr ""
-#: config.language_map:274
+#: config.language_map:329
msgid "Gilbertese"
msgstr ""
-#: config.language_map:275
+#: config.language_map:330
msgid "Scottish Gaelic"
msgstr ""
-#: config.language_map:276
+#: config.language_map:331
msgid "Irish"
msgstr ""
-#: config.language_map:277
+#: config.language_map:332
msgid "Galician"
msgstr ""
-#: config.language_map:278
+#: config.language_map:333
msgid "Manx"
msgstr ""
-#: config.language_map:279
+#: config.language_map:334
msgid "German, Middle High (ca. 1050-1500)"
msgstr ""
-#: config.language_map:280
+#: config.language_map:335
msgid "German, Old High (ca. 750-1050)"
msgstr ""
-#: config.language_map:281
+#: config.language_map:336
msgid "Gondi"
msgstr ""
-#: config.language_map:282
+#: config.language_map:337
msgid "Gorontalo"
msgstr ""
-#: config.language_map:283
+#: config.language_map:338
msgid "Gothic"
msgstr ""
-#: config.language_map:284
+#: config.language_map:339
msgid "Grebo"
msgstr ""
-#: config.language_map:285
+#: config.language_map:340
msgid "Greek, Ancient (to 1453)"
msgstr ""
-#: config.language_map:286
+#: config.language_map:341
msgid "Greek, Modern (1453- )"
msgstr ""
-#: config.language_map:287
+#: config.language_map:342
msgid "Guarani"
msgstr ""
-#: config.language_map:288
+#: config.language_map:343
msgid "Guarani"
msgstr ""
-#: config.language_map:289
+#: config.language_map:344
msgid "Gujarati"
msgstr ""
-#: config.language_map:290
+#: config.language_map:345
msgid "Gwich'in"
msgstr ""
-#: config.language_map:291
+#: config.language_map:346
msgid "Haida"
msgstr ""
-#: config.language_map:292
+#: config.language_map:347
msgid "Haitian French Creole"
msgstr ""
-#: config.language_map:293
+#: config.language_map:348
msgid "Hausa"
msgstr ""
-#: config.language_map:294
+#: config.language_map:349
msgid "Hawaiian"
msgstr ""
-#: config.language_map:295
+#: config.language_map:350
msgid "Hebrew"
msgstr ""
-#: config.language_map:296
+#: config.language_map:351
msgid "Herero"
msgstr ""
-#: config.language_map:297
+#: config.language_map:352
msgid "Hiligaynon"
msgstr ""
-#: config.language_map:298
+#: config.language_map:353
msgid "Himachali"
msgstr ""
-#: config.language_map:299
+#: config.language_map:354
msgid "Hindi"
msgstr ""
-#: config.language_map:300
+#: config.language_map:355
msgid "Hittite"
msgstr ""
-#: config.language_map:301
+#: config.language_map:356
msgid "Hmong"
msgstr ""
-#: config.language_map:302
+#: config.language_map:357
msgid "Hiri Motu"
msgstr ""
-#: config.language_map:303
+#: config.language_map:358
msgid "Hungarian"
msgstr ""
-#: config.language_map:304
+#: config.language_map:359
msgid "Hupa"
msgstr ""
-#: config.language_map:305
+#: config.language_map:360
msgid "Iban"
msgstr ""
-#: config.language_map:306
+#: config.language_map:361
msgid "Igbo"
msgstr ""
-#: config.language_map:307
+#: config.language_map:362
msgid "Icelandic"
msgstr ""
-#: config.language_map:308
+#: config.language_map:363
msgid "Ido"
msgstr ""
-#: config.language_map:309
+#: config.language_map:364
msgid "Sichuan Yi"
msgstr ""
-#: config.language_map:310
+#: config.language_map:365
msgid "Ijo"
msgstr ""
-#: config.language_map:311
+#: config.language_map:366
msgid "Inuktitut"
msgstr ""
-#: config.language_map:312
+#: config.language_map:367
msgid "Interlingue"
msgstr ""
-#: config.language_map:313
+#: config.language_map:368
msgid "Iloko"
msgstr ""
-#: config.language_map:314
+#: config.language_map:369
msgid "Interlingua (International Auxiliary Language Association)"
msgstr ""
-#: config.language_map:315
+#: config.language_map:370
msgid "Indic (Other)"
msgstr ""
-#: config.language_map:316
+#: config.language_map:371
msgid "Indonesian"
msgstr ""
-#: config.language_map:317
+#: config.language_map:372
msgid "Indo-European (Other)"
msgstr ""
-#: config.language_map:318
+#: config.language_map:373
msgid "Ingush"
msgstr ""
-#: config.language_map:319
+#: config.language_map:374
msgid "Interlingua (International Auxiliary Language Association)"
msgstr ""
-#: config.language_map:320
+#: config.language_map:375
msgid "Inupiaq"
msgstr ""
-#: config.language_map:321
+#: config.language_map:376
msgid "Iranian (Other)"
msgstr ""
-#: config.language_map:322
+#: config.language_map:377
msgid "Irish"
msgstr ""
-#: config.language_map:323
+#: config.language_map:378
msgid "Iroquoian (Other)"
msgstr ""
-#: config.language_map:324
+#: config.language_map:379
msgid "Italian"
msgstr ""
-#: config.language_map:325
+#: config.language_map:380
msgid "Javanese"
msgstr ""
-#: config.language_map:326
+#: config.language_map:381
msgid "Japanese"
msgstr ""
-#: config.language_map:327
+#: config.language_map:382
msgid "Judeo-Persian"
msgstr ""
-#: config.language_map:328
+#: config.language_map:383
msgid "Judeo-Arabic"
msgstr ""
-#: config.language_map:329
+#: config.language_map:384
msgid "Kara-Kalpak"
msgstr ""
-#: config.language_map:330
+#: config.language_map:385
msgid "Kabyle"
msgstr ""
-#: config.language_map:331
+#: config.language_map:386
msgid "Kachin"
msgstr ""
-#: config.language_map:332
+#: config.language_map:387
msgid "Kalâtdlisut"
msgstr ""
-#: config.language_map:333
+#: config.language_map:388
msgid "Kamba"
msgstr ""
-#: config.language_map:334
+#: config.language_map:389
msgid "Kannada"
msgstr ""
-#: config.language_map:335
+#: config.language_map:390
msgid "Karen"
msgstr ""
-#: config.language_map:336
+#: config.language_map:391
msgid "Kashmiri"
msgstr ""
-#: config.language_map:337
+#: config.language_map:392
msgid "Kanuri"
msgstr ""
-#: config.language_map:338
+#: config.language_map:393
msgid "Kawi"
msgstr ""
-#: config.language_map:339
+#: config.language_map:394
msgid "Kazakh"
msgstr ""
-#: config.language_map:340
+#: config.language_map:395
msgid "Kabardian"
msgstr ""
-#: config.language_map:341
+#: config.language_map:396
msgid "Khasi"
msgstr ""
-#: config.language_map:342
+#: config.language_map:397
msgid "Khoisan (Other)"
msgstr ""
-#: config.language_map:343
+#: config.language_map:398
msgid "Khmer"
msgstr ""
-#: config.language_map:344
+#: config.language_map:399
msgid "Khotanese"
msgstr ""
-#: config.language_map:345
+#: config.language_map:400
msgid "Kikuyu"
msgstr ""
-#: config.language_map:346
+#: config.language_map:401
msgid "Kinyarwanda"
msgstr ""
-#: config.language_map:347
+#: config.language_map:402
msgid "Kyrgyz"
msgstr ""
-#: config.language_map:348
+#: config.language_map:403
msgid "Kimbundu"
msgstr ""
-#: config.language_map:349
+#: config.language_map:404
msgid "Konkani"
msgstr ""
-#: config.language_map:350
+#: config.language_map:405
msgid "Komi"
msgstr ""
-#: config.language_map:351
+#: config.language_map:406
msgid "Kongo"
msgstr ""
-#: config.language_map:352
+#: config.language_map:407
msgid "Korean"
msgstr ""
-#: config.language_map:353
+#: config.language_map:408
msgid "Kusaie"
msgstr ""
-#: config.language_map:354
+#: config.language_map:409
msgid "Kpelle"
msgstr ""
-#: config.language_map:355
+#: config.language_map:410
msgid "Kru"
msgstr ""
-#: config.language_map:356
+#: config.language_map:411
msgid "Kurukh"
msgstr ""
-#: config.language_map:357
+#: config.language_map:412
msgid "Kuanyama"
msgstr ""
-#: config.language_map:358
+#: config.language_map:413
msgid "Kumyk"
msgstr ""
-#: config.language_map:359
+#: config.language_map:414
msgid "Kurdish"
msgstr ""
-#: config.language_map:360
+#: config.language_map:415
msgid "Kusaie"
msgstr ""
-#: config.language_map:361
+#: config.language_map:416
msgid "Kutenai"
msgstr ""
-#: config.language_map:362
+#: config.language_map:417
msgid "Ladino"
msgstr ""
-#: config.language_map:363
+#: config.language_map:418
msgid "Lahnda"
msgstr ""
-#: config.language_map:364
+#: config.language_map:419
msgid "Lamba"
msgstr ""
-#: config.language_map:365
+#: config.language_map:420
msgid "Occitan (post-1500)"
msgstr ""
-#: config.language_map:366
+#: config.language_map:421
msgid "Lao"
msgstr ""
-#: config.language_map:367
+#: config.language_map:422
msgid "Sami"
msgstr ""
-#: config.language_map:368
+#: config.language_map:423
msgid "Latin"
msgstr ""
-#: config.language_map:369
+#: config.language_map:424
msgid "Latvian"
msgstr ""
-#: config.language_map:370
+#: config.language_map:425
msgid "Lezgian"
msgstr ""
-#: config.language_map:371
+#: config.language_map:426
msgid "Limburgish"
msgstr ""
-#: config.language_map:372
+#: config.language_map:427
msgid "Lingala"
msgstr ""
-#: config.language_map:373
+#: config.language_map:428
msgid "Lithuanian"
msgstr ""
-#: config.language_map:374
+#: config.language_map:429
msgid "Mongo-Nkundu"
msgstr ""
-#: config.language_map:375
+#: config.language_map:430
msgid "Lozi"
msgstr ""
-#: config.language_map:376
+#: config.language_map:431
msgid "Letzeburgesch"
msgstr ""
-#: config.language_map:377
+#: config.language_map:432
msgid "Luba-Lulua"
msgstr ""
-#: config.language_map:378
+#: config.language_map:433
msgid "Luba-Katanga"
msgstr ""
-#: config.language_map:379
+#: config.language_map:434
msgid "Ganda"
msgstr ""
-#: config.language_map:380
+#: config.language_map:435
msgid "Luiseño"
msgstr ""
-#: config.language_map:381
+#: config.language_map:436
msgid "Lunda"
msgstr ""
-#: config.language_map:382
+#: config.language_map:437
msgid "Luo (Kenya and Tanzania)"
msgstr ""
-#: config.language_map:383
+#: config.language_map:438
msgid "Lushai"
msgstr ""
-#: config.language_map:384
+#: config.language_map:439
msgid "Macedonian"
msgstr ""
-#: config.language_map:385
+#: config.language_map:440
msgid "Madurese"
msgstr ""
-#: config.language_map:386
+#: config.language_map:441
msgid "Magahi"
msgstr ""
-#: config.language_map:387
+#: config.language_map:442
msgid "Marshallese"
msgstr ""
-#: config.language_map:388
+#: config.language_map:443
msgid "Maithili"
msgstr ""
-#: config.language_map:389
+#: config.language_map:444
msgid "Makasar"
msgstr ""
-#: config.language_map:390
+#: config.language_map:445
msgid "Malayalam"
msgstr ""
-#: config.language_map:391
+#: config.language_map:446
msgid "Mandingo"
msgstr ""
-#: config.language_map:392
+#: config.language_map:447
msgid "Maori"
msgstr ""
-#: config.language_map:393
+#: config.language_map:448
msgid "Austronesian (Other)"
msgstr ""
-#: config.language_map:394
+#: config.language_map:449
msgid "Marathi"
msgstr ""
-#: config.language_map:395
+#: config.language_map:450
msgid "Masai"
msgstr ""
-#: config.language_map:396
+#: config.language_map:451
msgid "Manx"
msgstr ""
-#: config.language_map:397
+#: config.language_map:452
msgid "Malay"
msgstr ""
-#: config.language_map:398
+#: config.language_map:453
msgid "Mandar"
msgstr ""
-#: config.language_map:399
+#: config.language_map:454
msgid "Mende"
msgstr ""
-#: config.language_map:400
+#: config.language_map:455
msgid "Irish, Middle (ca. 1100-1550)"
msgstr ""
-#: config.language_map:401
+#: config.language_map:456
msgid "Micmac"
msgstr ""
-#: config.language_map:402
+#: config.language_map:457
msgid "Minangkabau"
msgstr ""
-#: config.language_map:403
+#: config.language_map:458
msgid "Miscellaneous languages"
msgstr ""
-#: config.language_map:404
+#: config.language_map:459
msgid "Mon-Khmer (Other)"
msgstr ""
-#: config.language_map:405
+#: config.language_map:460
msgid "Malagasy"
msgstr ""
-#: config.language_map:406
+#: config.language_map:461
msgid "Malagasy"
msgstr ""
-#: config.language_map:407
+#: config.language_map:462
msgid "Maltese"
msgstr ""
-#: config.language_map:408
+#: config.language_map:463
msgid "Manchu"
msgstr ""
-#: config.language_map:409
+#: config.language_map:464
msgid "Manipuri"
msgstr ""
-#: config.language_map:410
+#: config.language_map:465
msgid "Manobo languages"
msgstr ""
-#: config.language_map:411
+#: config.language_map:466
msgid "Mohawk"
msgstr ""
-#: config.language_map:412
+#: config.language_map:467
msgid "Moldavian"
msgstr ""
-#: config.language_map:413
+#: config.language_map:468
msgid "Mongolian"
msgstr ""
-#: config.language_map:414
+#: config.language_map:469
msgid "Mooré"
msgstr ""
-#: config.language_map:415
+#: config.language_map:470
msgid "Multiple languages"
msgstr ""
-#: config.language_map:416
+#: config.language_map:471
msgid "Munda (Other)"
msgstr ""
-#: config.language_map:417
+#: config.language_map:472
msgid "Creek"
msgstr ""
-#: config.language_map:418
+#: config.language_map:473
msgid "Marwari"
msgstr ""
-#: config.language_map:419
+#: config.language_map:474
msgid "Mayan languages"
msgstr ""
-#: config.language_map:420
+#: config.language_map:475
msgid "Nahuatl"
msgstr ""
-#: config.language_map:421
+#: config.language_map:476
msgid "North American Indian (Other)"
msgstr ""
-#: config.language_map:422
+#: config.language_map:477
msgid "Neapolitan Italian"
msgstr ""
-#: config.language_map:423
+#: config.language_map:478
msgid "Nauru"
msgstr ""
-#: config.language_map:424
+#: config.language_map:479
msgid "Navajo"
msgstr ""
-#: config.language_map:425
+#: config.language_map:480
msgid "Ndebele (South Africa)"
msgstr ""
-#: config.language_map:426
+#: config.language_map:481
msgid "Ndebele (Zimbabwe) "
msgstr ""
-#: config.language_map:427
+#: config.language_map:482
msgid "Ndonga"
msgstr ""
-#: config.language_map:428
+#: config.language_map:483
msgid "Low German"
msgstr ""
-#: config.language_map:429
+#: config.language_map:484
msgid "Nepali"
msgstr ""
-#: config.language_map:430
+#: config.language_map:485
msgid "Newari"
msgstr ""
-#: config.language_map:431
+#: config.language_map:486
msgid "Nias"
msgstr ""
-#: config.language_map:432
+#: config.language_map:487
msgid "Niger-Kordofanian (Other)"
msgstr ""
-#: config.language_map:433
+#: config.language_map:488
msgid "Niuean"
msgstr ""
-#: config.language_map:434
+#: config.language_map:489
msgid "Norwegian (Nynorsk)"
msgstr ""
-#: config.language_map:435
+#: config.language_map:490
msgid "Norwegian (Bokmål)"
msgstr ""
-#: config.language_map:436
+#: config.language_map:491
msgid "Nogai"
msgstr ""
-#: config.language_map:437
+#: config.language_map:492
msgid "Old Norse"
msgstr ""
-#: config.language_map:438
+#: config.language_map:493
msgid "Norwegian"
msgstr ""
-#: config.language_map:439
+#: config.language_map:494
msgid "Northern Sotho"
msgstr ""
-#: config.language_map:440
+#: config.language_map:495
msgid "Nubian languages"
msgstr ""
-#: config.language_map:441
+#: config.language_map:496
msgid "Nyanja"
msgstr ""
-#: config.language_map:442
+#: config.language_map:497
msgid "Nyamwezi"
msgstr ""
-#: config.language_map:443
+#: config.language_map:498
msgid "Nyankole"
msgstr ""
-#: config.language_map:444
+#: config.language_map:499
msgid "Nyoro"
msgstr ""
-#: config.language_map:445
+#: config.language_map:500
msgid "Nzima"
msgstr ""
-#: config.language_map:446
+#: config.language_map:501
msgid "Occitan (post-1500)"
msgstr ""
-#: config.language_map:447
+#: config.language_map:502
msgid "Ojibwa"
msgstr ""
-#: config.language_map:448
+#: config.language_map:503
msgid "Oriya"
msgstr ""
-#: config.language_map:449
+#: config.language_map:504
msgid "Oromo"
msgstr ""
-#: config.language_map:450
+#: config.language_map:505
msgid "Osage"
msgstr ""
-#: config.language_map:451
+#: config.language_map:506
msgid "Ossetic"
msgstr ""
-#: config.language_map:452
+#: config.language_map:507
msgid "Turkish, Ottoman"
msgstr ""
-#: config.language_map:453
+#: config.language_map:508
msgid "Otomian languages"
msgstr ""
-#: config.language_map:454
+#: config.language_map:509
msgid "Papuan (Other)"
msgstr ""
-#: config.language_map:455
+#: config.language_map:510
msgid "Pangasinan"
msgstr ""
-#: config.language_map:456
+#: config.language_map:511
msgid "Pahlavi"
msgstr ""
-#: config.language_map:457
+#: config.language_map:512
msgid "Pampanga"
msgstr ""
-#: config.language_map:458
+#: config.language_map:513
msgid "Panjabi"
msgstr ""
-#: config.language_map:459
+#: config.language_map:514
msgid "Papiamento"
msgstr ""
-#: config.language_map:460
+#: config.language_map:515
msgid "Palauan"
msgstr ""
-#: config.language_map:461
+#: config.language_map:516
msgid "Old Persian (ca. 600-400 B.C.)"
msgstr ""
-#: config.language_map:462
+#: config.language_map:517
msgid "Persian"
msgstr ""
-#: config.language_map:463
+#: config.language_map:518
msgid "Philippine (Other)"
msgstr ""
-#: config.language_map:464
+#: config.language_map:519
msgid "Phoenician"
msgstr ""
-#: config.language_map:465
+#: config.language_map:520
msgid "Pali"
msgstr ""
-#: config.language_map:466
+#: config.language_map:521
msgid "Polish"
msgstr ""
-#: config.language_map:467
+#: config.language_map:522
msgid "Ponape"
msgstr ""
-#: config.language_map:468
+#: config.language_map:523
msgid "Portuguese"
msgstr ""
-#: config.language_map:469
+#: config.language_map:524
msgid "Prakrit languages"
msgstr ""
-#: config.language_map:470
+#: config.language_map:525
msgid "Provençal (to 1500)"
msgstr ""
-#: config.language_map:471
+#: config.language_map:526
msgid "Pushto"
msgstr ""
-#: config.language_map:472
+#: config.language_map:527
msgid "Quechua"
msgstr ""
-#: config.language_map:473
+#: config.language_map:528
msgid "Rajasthani"
msgstr ""
-#: config.language_map:474
+#: config.language_map:529
msgid "Rapanui"
msgstr ""
-#: config.language_map:475
+#: config.language_map:530
msgid "Rarotongan"
msgstr ""
-#: config.language_map:476
+#: config.language_map:531
msgid "Romance (Other)"
msgstr ""
-#: config.language_map:477
+#: config.language_map:532
msgid "Raeto-Romance"
msgstr ""
-#: config.language_map:478
+#: config.language_map:533
msgid "Romani"
msgstr ""
-#: config.language_map:479
+#: config.language_map:534
msgid "Romanian"
msgstr ""
-#: config.language_map:480
+#: config.language_map:535
msgid "Rundi"
msgstr ""
-#: config.language_map:481
+#: config.language_map:536
msgid "Russian"
msgstr ""
-#: config.language_map:482
+#: config.language_map:537
msgid "Sandawe"
msgstr ""
-#: config.language_map:483
+#: config.language_map:538
msgid "Sango (Ubangi Creole)"
msgstr ""
-#: config.language_map:484
+#: config.language_map:539
msgid "Yakut"
msgstr ""
-#: config.language_map:485
+#: config.language_map:540
msgid "South American Indian (Other)"
msgstr ""
-#: config.language_map:486
+#: config.language_map:541
msgid "Salishan languages"
msgstr ""
-#: config.language_map:487
+#: config.language_map:542
msgid "Samaritan Aramaic"
msgstr ""
-#: config.language_map:488
+#: config.language_map:543
msgid "Sanskrit"
msgstr ""
-#: config.language_map:489
+#: config.language_map:544
msgid "Samoan"
msgstr ""
-#: config.language_map:490
+#: config.language_map:545
msgid "Sasak"
msgstr ""
-#: config.language_map:491
+#: config.language_map:546
msgid "Santali"
msgstr ""
-#: config.language_map:492
+#: config.language_map:547
msgid "Serbian"
msgstr ""
-#: config.language_map:493
+#: config.language_map:548
msgid "Scots"
msgstr ""
-#: config.language_map:494
+#: config.language_map:549
msgid "Croatian"
msgstr ""
-#: config.language_map:495
+#: config.language_map:550
msgid "Selkup"
msgstr ""
-#: config.language_map:496
+#: config.language_map:551
msgid "Semitic (Other)"
msgstr ""
-#: config.language_map:497
+#: config.language_map:552
msgid "Irish, Old (to 1100)"
msgstr ""
-#: config.language_map:498
+#: config.language_map:553
msgid "Sign languages"
msgstr ""
-#: config.language_map:499
+#: config.language_map:554
msgid "Shan"
msgstr ""
-#: config.language_map:500
+#: config.language_map:555
msgid "Shona"
msgstr ""
-#: config.language_map:501
+#: config.language_map:556
msgid "Sidamo"
msgstr ""
-#: config.language_map:502
+#: config.language_map:557
msgid "Sinhalese"
msgstr ""
-#: config.language_map:503
+#: config.language_map:558
msgid "Siouan (Other)"
msgstr ""
-#: config.language_map:504
+#: config.language_map:559
msgid "Sino-Tibetan (Other)"
msgstr ""
-#: config.language_map:505
+#: config.language_map:560
msgid "Slavic (Other)"
msgstr ""
-#: config.language_map:506
+#: config.language_map:561
msgid "Slovak"
msgstr ""
-#: config.language_map:507
+#: config.language_map:562
msgid "Slovenian"
msgstr ""
-#: config.language_map:508
+#: config.language_map:563
msgid "Southern Sami"
msgstr ""
-#: config.language_map:509
+#: config.language_map:564
msgid "Northern Sami"
msgstr ""
-#: config.language_map:510
+#: config.language_map:565
msgid "Sami"
msgstr ""
-#: config.language_map:511
+#: config.language_map:566
msgid "Lule Sami"
msgstr ""
-#: config.language_map:512
+#: config.language_map:567
msgid "Inari Sami"
msgstr ""
-#: config.language_map:513
+#: config.language_map:568
msgid "Samoan"
msgstr ""
-#: config.language_map:514
+#: config.language_map:569
msgid "Skolt Sami"
msgstr ""
-#: config.language_map:515
+#: config.language_map:570
msgid "Shona"
msgstr ""
-#: config.language_map:516
+#: config.language_map:571
msgid "Sindhi"
msgstr ""
-#: config.language_map:517
+#: config.language_map:572
msgid "Sinhalese"
msgstr ""
-#: config.language_map:518
+#: config.language_map:573
msgid "Soninke"
msgstr ""
-#: config.language_map:519
+#: config.language_map:574
msgid "Sogdian"
msgstr ""
-#: config.language_map:520
+#: config.language_map:575
msgid "Somali"
msgstr ""
-#: config.language_map:521
+#: config.language_map:576
msgid "Songhai"
msgstr ""
-#: config.language_map:522
+#: config.language_map:577
msgid "Sotho"
msgstr ""
-#: config.language_map:523
+#: config.language_map:578
msgid "Spanish"
msgstr ""
-#: config.language_map:524
+#: config.language_map:579
msgid "Sardinian"
msgstr ""
-#: config.language_map:525
+#: config.language_map:580
msgid "Serer"
msgstr ""
-#: config.language_map:526
+#: config.language_map:581
msgid "Nilo-Saharan (Other)"
msgstr ""
-#: config.language_map:527
+#: config.language_map:582
msgid "Sotho"
msgstr ""
-#: config.language_map:528
+#: config.language_map:583
msgid "Swazi"
msgstr ""
-#: config.language_map:529
+#: config.language_map:584
msgid "Sukuma"
msgstr ""
-#: config.language_map:530
+#: config.language_map:585
msgid "Sundanese"
msgstr ""
-#: config.language_map:531
+#: config.language_map:586
msgid "Susu"
msgstr ""
-#: config.language_map:532
+#: config.language_map:587
msgid "Sumerian"
msgstr ""
-#: config.language_map:533
+#: config.language_map:588
msgid "Swahili"
msgstr ""
-#: config.language_map:534
+#: config.language_map:589
msgid "Swedish"
msgstr ""
-#: config.language_map:535
+#: config.language_map:590
msgid "Swazi"
msgstr ""
-#: config.language_map:536
+#: config.language_map:591
msgid "Syriac"
msgstr ""
-#: config.language_map:537
+#: config.language_map:592
msgid "Tagalog"
msgstr ""
-#: config.language_map:538
+#: config.language_map:593
msgid "Tahitian"
msgstr ""
-#: config.language_map:539
+#: config.language_map:594
msgid "Tai (Other)"
msgstr ""
-#: config.language_map:540
+#: config.language_map:595
msgid "Tajik"
msgstr ""
-#: config.language_map:541
+#: config.language_map:596
msgid "Tamil"
msgstr ""
-#: config.language_map:542
+#: config.language_map:597
msgid "Tatar"
msgstr ""
-#: config.language_map:543
+#: config.language_map:598
msgid "Tatar"
msgstr ""
-#: config.language_map:544
+#: config.language_map:599
msgid "Telugu"
msgstr ""
-#: config.language_map:545
+#: config.language_map:600
msgid "Temne"
msgstr ""
-#: config.language_map:546
+#: config.language_map:601
msgid "Terena"
msgstr ""
-#: config.language_map:547
+#: config.language_map:602
msgid "Tetum"
msgstr ""
-#: config.language_map:548
+#: config.language_map:603
msgid "Tajik"
msgstr ""
-#: config.language_map:549
+#: config.language_map:604
msgid "Tagalog"
msgstr ""
-#: config.language_map:550
+#: config.language_map:605
msgid "Thai"
msgstr ""
-#: config.language_map:551
+#: config.language_map:606
msgid "Tibetan"
msgstr ""
-#: config.language_map:552
+#: config.language_map:607
msgid "Tigré"
msgstr ""
-#: config.language_map:553
+#: config.language_map:608
msgid "Tigrinya"
msgstr ""
-#: config.language_map:554
+#: config.language_map:609
msgid "Tiv"
msgstr ""
-#: config.language_map:555
+#: config.language_map:610
msgid "Tokelauan"
msgstr ""
-#: config.language_map:556
+#: config.language_map:611
msgid "Tlingit"
msgstr ""
-#: config.language_map:557
+#: config.language_map:612
msgid "Tamashek"
msgstr ""
-#: config.language_map:558
+#: config.language_map:613
msgid "Tonga (Nyasa)"
msgstr ""
-#: config.language_map:559
+#: config.language_map:614
msgid "Tongan"
msgstr ""
-#: config.language_map:560
+#: config.language_map:615
msgid "Tok Pisin"
msgstr ""
-#: config.language_map:561
+#: config.language_map:616
msgid "Truk"
msgstr ""
-#: config.language_map:562
+#: config.language_map:617
msgid "Tsimshian"
msgstr ""
-#: config.language_map:563
+#: config.language_map:618
msgid "Tswana"
msgstr ""
-#: config.language_map:564
+#: config.language_map:619
msgid "Tsonga"
msgstr ""
-#: config.language_map:565
+#: config.language_map:620
msgid "Tswana"
msgstr ""
-#: config.language_map:566
+#: config.language_map:621
msgid "Turkmen"
msgstr ""
-#: config.language_map:567
+#: config.language_map:622
msgid "Tumbuka"
msgstr ""
-#: config.language_map:568
+#: config.language_map:623
msgid "Tupi languages"
msgstr ""
-#: config.language_map:569
+#: config.language_map:624
msgid "Turkish"
msgstr ""
-#: config.language_map:570
+#: config.language_map:625
msgid "Altaic (Other)"
msgstr ""
-#: config.language_map:571
+#: config.language_map:626
msgid "Tuvaluan"
msgstr ""
-#: config.language_map:572
+#: config.language_map:627
msgid "Twi"
msgstr ""
-#: config.language_map:573
+#: config.language_map:628
msgid "Tuvinian"
msgstr ""
-#: config.language_map:574
+#: config.language_map:629
msgid "Udmurt"
msgstr ""
-#: config.language_map:575
+#: config.language_map:630
msgid "Ugaritic"
msgstr ""
-#: config.language_map:576
+#: config.language_map:631
msgid "Uighur"
msgstr ""
-#: config.language_map:577
+#: config.language_map:632
msgid "Ukrainian"
msgstr ""
-#: config.language_map:578
+#: config.language_map:633
msgid "Umbundu"
msgstr ""
-#: config.language_map:579
+#: config.language_map:634
msgid "Undetermined"
msgstr ""
-#: config.language_map:580
+#: config.language_map:635
msgid "Urdu"
msgstr ""
-#: config.language_map:581
+#: config.language_map:636
msgid "Uzbek"
msgstr ""
-#: config.language_map:582
+#: config.language_map:637
msgid "Vai"
msgstr ""
-#: config.language_map:583
+#: config.language_map:638
msgid "Venda"
msgstr ""
-#: config.language_map:584
+#: config.language_map:639
msgid "Vietnamese"
msgstr ""
-#: config.language_map:585
+#: config.language_map:640
msgid "Volapük"
msgstr ""
-#: config.language_map:586
+#: config.language_map:641
msgid "Votic"
msgstr ""
-#: config.language_map:587
+#: config.language_map:642
msgid "Wakashan languages"
msgstr ""
-#: config.language_map:588
+#: config.language_map:643
msgid "Walamo"
msgstr ""
-#: config.language_map:589
+#: config.language_map:644
msgid "Waray"
msgstr ""
-#: config.language_map:590
+#: config.language_map:645
msgid "Washo"
msgstr ""
-#: config.language_map:591
+#: config.language_map:646
msgid "Welsh"
msgstr ""
-#: config.language_map:592
+#: config.language_map:647
msgid "Sorbian languages"
msgstr ""
-#: config.language_map:593
+#: config.language_map:648
msgid "Walloon"
msgstr ""
-#: config.language_map:594
+#: config.language_map:649
msgid "Wolof"
msgstr ""
-#: config.language_map:595
+#: config.language_map:650
msgid "Kalmyk"
msgstr ""
-#: config.language_map:596
+#: config.language_map:651
msgid "Xhosa"
msgstr ""
-#: config.language_map:597
+#: config.language_map:652
msgid "Yao (Africa)"
msgstr ""
-#: config.language_map:598
+#: config.language_map:653
msgid "Yapese"
msgstr ""
-#: config.language_map:599
+#: config.language_map:654
msgid "Yiddish"
msgstr ""
-#: config.language_map:600
+#: config.language_map:655
msgid "Yoruba"
msgstr ""
-#: config.language_map:601
+#: config.language_map:656
msgid "Yupik languages"
msgstr ""
-#: config.language_map:602
+#: config.language_map:657
msgid "Zapotec"
msgstr ""
-#: config.language_map:603
+#: config.language_map:658
msgid "Zenaga"
msgstr ""
-#: config.language_map:604
+#: config.language_map:659
msgid "Zhuang"
msgstr ""
-#: config.language_map:605
+#: config.language_map:660
msgid "Zande"
msgstr ""
-#: config.language_map:606
+#: config.language_map:661
msgid "Zulu"
msgstr ""
-#: config.language_map:607
+#: config.language_map:662
msgid "Zuni"
msgstr ""
-#: config.item_form_map:610
+#: config.item_form_map:664
msgid "Microfilm"
msgstr ""
-#: config.item_form_map:611
+#: config.item_form_map:665
msgid "Microfiche"
msgstr ""
-#: config.item_form_map:612
+#: config.item_form_map:666
msgid "Microopaque"
msgstr ""
-#: config.item_form_map:613
+#: config.item_form_map:667
msgid "Large print"
msgstr ""
-#: config.item_form_map:614
+#: config.item_form_map:668
msgid "Braille"
msgstr ""
-#: config.item_form_map:615
+#: config.item_form_map:669
msgid "Regular print reproduction"
msgstr ""
-#: config.item_form_map:616
+#: config.item_form_map:670
msgid "Electronic"
msgstr ""
-#: config.item_type_map:619
+#: config.item_type_map:672
msgid "Language material"
msgstr ""
-#: config.item_type_map:620
+#: config.item_type_map:673
msgid "Manuscript language material"
msgstr ""
-#: config.item_type_map:621
+#: config.item_type_map:674
msgid "Projected medium"
msgstr ""
-#: config.item_type_map:622
+#: config.item_type_map:675
msgid "Two-dimensional nonprojectable graphic"
msgstr ""
-#: config.item_type_map:623
+#: config.item_type_map:676
msgid "Three-dimensional artifact or naturally occurring object"
msgstr ""
-#: config.item_type_map:624
+#: config.item_type_map:677
msgid "Kit"
msgstr ""
-#: config.item_type_map:625
+#: config.item_type_map:678
msgid "Mixed materials"
msgstr ""
-#: config.item_type_map:626
+#: config.item_type_map:679
msgid "Cartographic material"
msgstr ""
-#: config.item_type_map:627
+#: config.item_type_map:680
msgid "Manuscript cartographic material"
msgstr ""
-#: config.item_type_map:628
+#: config.item_type_map:681
msgid "Notated music"
msgstr ""
-#: config.item_type_map:629
+#: config.item_type_map:682
msgid "Manuscript notated music"
msgstr ""
-#: config.item_type_map:630
+#: config.item_type_map:683
msgid "Nonmusical sound recording"
msgstr ""
-#: config.item_type_map:631
+#: config.item_type_map:684
msgid "Musical sound recording"
msgstr ""
-#: config.item_type_map:632
+#: config.item_type_map:685
msgid "Computer file"
msgstr ""
-#: actor.org_unit_type:638
+#: config.bib_level_map:687
+msgid "Monographic component part"
+msgstr ""
+
+#: config.bib_level_map:688
+msgid "Serial component part"
+msgstr ""
+
+#: config.bib_level_map:689
+msgid "Collection"
+msgstr ""
+
+#: config.bib_level_map:690
+msgid "Subunit"
+msgstr ""
+
+#: config.bib_level_map:691
+msgid "Integrating resource"
+msgstr ""
+
+#: config.bib_level_map:692
+msgid "Monograph/Item"
+msgstr ""
+
+#: config.bib_level_map:693
+msgid "Serial"
+msgstr ""
+
+#: config.i18n_locale:698
+msgid "American English"
+msgstr ""
+
+#: config.i18n_locale:700
+msgid "Canadian English"
+msgstr ""
+
+#: config.i18n_locale:702
+msgid "Canadian Fench"
+msgstr ""
+
+#: config.i18n_locale:704
+msgid "American Spanish"
+msgstr ""
+
+#: config.i18n_locale:706
+msgid "Mexican Spanish"
+msgstr ""
+
+#: actor.org_unit_type:713
msgid "Consortium"
msgstr ""
-#: actor.org_unit_type:639
+#: actor.org_unit_type:715
msgid "System"
msgstr ""
-#: actor.org_unit_type:641
+#: actor.org_unit_type:717
msgid "Branch"
msgstr ""
-#: actor.org_unit_type:642
+#: actor.org_unit_type:719
msgid "Sub-lib"
msgstr ""
-#: actor.org_unit_type:643
+#: actor.org_unit_type:721
msgid "Bookmobile"
msgstr ""
-#: actor.org_unit:646
+#: actor.org_unit:724
msgid "Example Consortium"
msgstr ""
-#: actor.org_unit:647
+#: actor.org_unit:726
msgid "Example System 1"
msgstr ""
-#: actor.org_unit:648
+#: actor.org_unit:728
msgid "Example System 2"
msgstr ""
-#: actor.org_unit:649
+#: actor.org_unit:730
msgid "Example Branch 1"
msgstr ""
-#: actor.org_unit:650
+#: actor.org_unit:732
msgid "Example Branch 2"
msgstr ""
-#: actor.org_unit:651
+#: actor.org_unit:734
msgid "Example Branch 3"
msgstr ""
-#: actor.org_unit:652
+#: actor.org_unit:736
msgid "Example Branch 4"
msgstr ""
-#: actor.org_unit:653
+#: actor.org_unit:738
msgid "Example Sub-lib 1"
msgstr ""
-#: actor.org_unit:654
+#: actor.org_unit:740
msgid "Example Bookmobile 1"
msgstr ""
-#: actor.org_address:656
+#: actor.org_address:742
msgid "123 Main St."
msgstr ""
-#: actor.usr:661
-msgid "Administrator"
-msgstr ""
-
-#: permission.perm_list:674
+#: permission.perm_list:760
msgid "User is allowed to place a hold on a specific copy"
msgstr ""
-#: permission.perm_list:677
+#: permission.perm_list:766
msgid "Allows a user to view another user's holds"
msgstr ""
-#: permission.perm_list:679
+#: permission.perm_list:770
msgid "Allows a user to update another user's hold"
msgstr ""
-#: permission.perm_list:684
+#: permission.perm_list:780
msgid "User is allowed to create new MARC records"
msgstr ""
-#: permission.perm_list:704
+#: permission.perm_list:820
msgid "User may create new billable transactions"
msgstr ""
-#: permission.perm_list:705
+#: permission.perm_list:822
msgid "Allows a user to create a new bill on a transaction"
msgstr ""
-#: permission.perm_list:706
+#: permission.perm_list:824
msgid "Allows a user to view another user's containers (buckets)"
msgstr ""
-#: permission.perm_list:707
+#: permission.perm_list:826
msgid "Allows a user to create a new container for another user"
msgstr ""
-#: permission.perm_list:708
+#: permission.perm_list:828
msgid "User is allowed to create a new copy object"
msgstr ""
-#: permission.perm_list:709
+#: permission.perm_list:830
msgid "Allows a user to change org unit settings"
msgstr ""
-#: permission.perm_list:710
+#: permission.perm_list:832
msgid "Allows a user to see what another use has checked out"
msgstr ""
-#: permission.perm_list:711
+#: permission.perm_list:834
msgid "User may view another user's transactions"
msgstr ""
-#: permission.perm_list:712
+#: permission.perm_list:836
msgid "Allows a user to delete another user container"
msgstr ""
-#: permission.perm_list:713
+#: permission.perm_list:838
msgid "Create a container item for another user"
msgstr ""
-#: permission.perm_list:714
+#: permission.perm_list:840
msgid "User can add other users to permission groups"
msgstr ""
-#: permission.perm_list:715
+#: permission.perm_list:842
msgid "User can remove other users from permission groups"
msgstr ""
-#: permission.perm_list:716
+#: permission.perm_list:844
msgid "Allow user to view others' permission groups"
msgstr ""
-#: permission.perm_list:717
+#: permission.perm_list:846
msgid "Allows a user to determine of another user can checkout an item"
msgstr ""
-#: permission.perm_list:718
+#: permission.perm_list:848
msgid "Allows a user to edit copies in batch"
msgstr ""
-#: permission.perm_list:719
+#: permission.perm_list:850
msgid "User may create a new patron statistical category"
msgstr ""
-#: permission.perm_list:720
+#: permission.perm_list:852
msgid "User may create a copy stat cat"
msgstr ""
-#: permission.perm_list:721
+#: permission.perm_list:854
msgid "User may create a new patron stat cat entry"
msgstr ""
-#: permission.perm_list:722
+#: permission.perm_list:856
msgid "User may create a new copy stat cat entry"
msgstr ""
-#: permission.perm_list:723
+#: permission.perm_list:858
msgid "User may update a patron stat cat"
msgstr ""
-#: permission.perm_list:724
+#: permission.perm_list:860
msgid "User may update a copy stat cat"
msgstr ""
-#: permission.perm_list:725
+#: permission.perm_list:862
msgid "User may update a patron stat cat entry"
msgstr ""
-#: permission.perm_list:726
+#: permission.perm_list:864
msgid "User may update a copy stat cat entry"
msgstr ""
-#: permission.perm_list:727
+#: permission.perm_list:866
msgid "User may link a copy to a stat cat entry"
msgstr ""
-#: permission.perm_list:728
+#: permission.perm_list:868
msgid "User may link another user to a stat cat entry"
msgstr ""
-#: permission.perm_list:729
+#: permission.perm_list:870
msgid "User may delete a patron stat cat"
msgstr ""
-#: permission.perm_list:730
+#: permission.perm_list:872
msgid "User may delete a copy stat cat"
msgstr ""
-#: permission.perm_list:731
+#: permission.perm_list:874
msgid "User may delete a patron stat cat entry"
msgstr ""
-#: permission.perm_list:732
+#: permission.perm_list:876
msgid "User may delete a copy stat cat entry"
msgstr ""
-#: permission.perm_list:733
+#: permission.perm_list:878
msgid "User may delete a patron stat cat entry map"
msgstr ""
-#: permission.perm_list:734
+#: permission.perm_list:880
msgid "User may delete a copy stat cat entry map"
msgstr ""
-#: permission.perm_list:735
+#: permission.perm_list:882
msgid "Allows a user to create a new non-cataloged item type"
msgstr ""
-#: permission.perm_list:736
+#: permission.perm_list:884
msgid "Allows a user to update a non cataloged type"
msgstr ""
-#: permission.perm_list:737
+#: permission.perm_list:886
msgid "Allows a user to create a new in-house-use "
msgstr ""
-#: permission.perm_list:738
+#: permission.perm_list:888
msgid "Allows a user to check out a copy"
msgstr ""
-#: permission.perm_list:739
+#: permission.perm_list:890
msgid "Allows a user to create a new copy location"
msgstr ""
-#: permission.perm_list:740
+#: permission.perm_list:892
msgid "Allows a user to update a copy location"
msgstr ""
-#: permission.perm_list:741
+#: permission.perm_list:894
msgid "Allows a user to delete a copy location"
msgstr ""
-#: permission.perm_list:742
+#: permission.perm_list:896
msgid "Allows a user to create a transit_copy object for transiting a copy"
msgstr ""
-#: permission.perm_list:743
+#: permission.perm_list:898
msgid "Allows a user to close out a transit on a copy"
msgstr ""
-#: permission.perm_list:744
+#: permission.perm_list:900
msgid "Allows a user to see if another user has permission to place a hold on a given copy"
msgstr ""
-#: permission.perm_list:745
+#: permission.perm_list:902
msgid "Allows a user to view which users have checked out a given copy"
msgstr ""
-#: permission.perm_list:746
+#: permission.perm_list:904
msgid "Allows a user to perform z3950 queries against remote servers"
msgstr ""
-#: permission.perm_list:747
+#: permission.perm_list:906
msgid "Allows a user to register a new workstation"
msgstr ""
-#: permission.perm_list:748
+#: permission.perm_list:908
msgid "Allows a user to view all notes attached to a copy"
msgstr ""
-#: permission.perm_list:749
+#: permission.perm_list:910
msgid "Allows a user to view all notes attached to a volume"
msgstr ""
-#: permission.perm_list:750
+#: permission.perm_list:912
msgid "Allows a user to view all notes attached to a title"
msgstr ""
-#: permission.perm_list:751
+#: permission.perm_list:914
msgid "Allows a user to create a new volume note"
msgstr ""
-#: permission.perm_list:752
+#: permission.perm_list:916
msgid "Allows a user to create a new copy note"
msgstr ""
-#: permission.perm_list:753
+#: permission.perm_list:918
msgid "Allows a user to create a new title note"
msgstr ""
-#: permission.perm_list:754
+#: permission.perm_list:920
msgid "Allows a user to delete someone elses copy notes"
msgstr ""
-#: permission.perm_list:755
+#: permission.perm_list:922
msgid "Allows a user to delete someone elses volume note"
msgstr ""
-#: permission.perm_list:756
+#: permission.perm_list:924
msgid "Allows a user to delete someone elses title note"
msgstr ""
-#: permission.perm_list:757
+#: permission.perm_list:926
msgid "Allows a user to update another users container"
msgstr ""
-#: permission.perm_list:758
+#: permission.perm_list:928
msgid "Allows a user to create a container for themselves"
msgstr ""
-#: permission.perm_list:759
+#: permission.perm_list:930
msgid "Allows a user to view notifications attached to a hold"
msgstr ""
-#: permission.perm_list:760
+#: permission.perm_list:932
msgid "Allows a user to create new hold notifications"
msgstr ""
-#: permission.perm_list:761
+#: permission.perm_list:934
msgid "Allows a user to update an org unit setting"
msgstr ""
-#: permission.perm_list:762
+#: permission.perm_list:936
msgid "Allows a user to upload an offline script"
msgstr ""
-#: permission.perm_list:763
+#: permission.perm_list:938
msgid "Allows a user to view uploaded offline script information"
msgstr ""
-#: permission.perm_list:764
+#: permission.perm_list:940
msgid "Allows a user to execute an offline script batch"
msgstr ""
-#: permission.perm_list:765
+#: permission.perm_list:942
msgid "Allows a user to change set the due date on an item to any date"
msgstr ""
-#: permission.perm_list:766
+#: permission.perm_list:944
msgid "Allows a user to bypass the circ permit call for checkout"
msgstr ""
-#: permission.perm_list:767
+#: permission.perm_list:946
msgid "Allows a user to override the copy_is_reference event"
msgstr ""
-#: permission.perm_list:768
+#: permission.perm_list:948
msgid "Allows a user to void a bill"
msgstr ""
-#: permission.perm_list:769
+#: permission.perm_list:950
msgid "Allows a person to check in/out an item that is claims returned"
msgstr ""
-#: permission.perm_list:770
+#: permission.perm_list:952
msgid "Allows a user to check out an item in a non-circulatable status"
msgstr ""
-#: permission.perm_list:771
+#: permission.perm_list:954
msgid "Allows a user to check in/out an item that has an alert message"
msgstr ""
-#: permission.perm_list:772
+#: permission.perm_list:956
msgid "Allows a user to remove the lost status from a copy"
msgstr ""
-#: permission.perm_list:773
+#: permission.perm_list:958
msgid "Allows a user to change the missing status on a copy"
msgstr ""
-#: permission.perm_list:774
+#: permission.perm_list:960
msgid "Allows a user to abort a copy transit if the user is at the transit destination or source"
msgstr ""
-#: permission.perm_list:775
+#: permission.perm_list:962
msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest"
msgstr ""
-#: permission.perm_list:776
+#: permission.perm_list:964
msgid "Allowsa user to query the zip code data method"
msgstr ""
-#: permission.perm_list:778
+#: permission.perm_list:968
msgid "Allows a user to create duplicate holds (e.g. two holds on the same title)"
msgstr ""
-#: permission.perm_list:779
+#: permission.perm_list:970
msgid "Allows a user to update a closed date interval for a given location"
msgstr ""
-#: permission.perm_list:780
+#: permission.perm_list:972
msgid "Allows a user to remove a closed date interval for a given location"
msgstr ""
-#: permission.perm_list:781
+#: permission.perm_list:974
msgid "Allows a user to create a new closed date for a location"
msgstr ""
-#: permission.perm_list:782
+#: permission.perm_list:976
msgid "Allows a user to delete a non cataloged type"
msgstr ""
-#: permission.perm_list:783
+#: permission.perm_list:978
msgid "Allows a user to put someone into collections"
msgstr ""
-#: permission.perm_list:784
+#: permission.perm_list:980
msgid "Allows a user to remove someone from collections"
msgstr ""
-#: permission.perm_list:785
+#: permission.perm_list:982
msgid "Allows a user to bar a patron"
msgstr ""
-#: permission.perm_list:786
+#: permission.perm_list:984
msgid "Allows a user to un-bar a patron"
msgstr ""
-#: permission.perm_list:787
+#: permission.perm_list:986
msgid "Allows a user to remove an existing workstation so a new one can replace it"
msgstr ""
-#: permission.perm_list:788
+#: permission.perm_list:988
msgid "Allows a user to add/remove users to/from the \"User\" group"
msgstr ""
-#: permission.perm_list:789
+#: permission.perm_list:990
msgid "Allows a user to add/remove users to/from the \"Patron\" group"
msgstr ""
-#: permission.perm_list:790
+#: permission.perm_list:992
msgid "Allows a user to add/remove users to/from the \"Staff\" group"
msgstr ""
-#: permission.perm_list:791
+#: permission.perm_list:994
msgid "Allows a user to add/remove users to/from the \"Circulator\" group"
msgstr ""
-#: permission.perm_list:792
+#: permission.perm_list:996
msgid "Allows a user to add/remove users to/from the \"Cataloger\" group"
msgstr ""
-#: permission.perm_list:793
+#: permission.perm_list:998
msgid "Allows a user to add/remove users to/from the \"GlobalAdmin\" group"
msgstr ""
-#: permission.perm_list:794
+#: permission.perm_list:1000
msgid "Allows a user to add/remove users to/from the \"LocalAdmin\" group"
msgstr ""
-#: permission.perm_list:795
+#: permission.perm_list:1002
msgid "Allows a user to add/remove users to/from the \"LibraryManager\" group"
msgstr ""
-#: permission.perm_list:796
+#: permission.perm_list:1004
msgid "Allows a user to add/remove users to/from the \"Cat1\" group"
msgstr ""
-#: permission.perm_list:797
+#: permission.perm_list:1006
msgid "Allows a user to add/remove users to/from the \"Supercat\" group"
msgstr ""
-#: permission.perm_list:798
+#: permission.perm_list:1008
msgid "Allows a user to add/remove users to/from the \"SIP-Client\" group"
msgstr ""
-#: permission.perm_list:799
+#: permission.perm_list:1010
msgid "Allows a user to add/remove users to/from the \"Vendor\" group"
msgstr ""
-#: permission.perm_list:800
+#: permission.perm_list:1012
msgid "Allows a user to place a hold on an age-protected item"
msgstr ""
-#: permission.perm_list:801
+#: permission.perm_list:1014
msgid "Allows a user to renew an item past the maximun renewal count"
msgstr ""
-#: permission.perm_list:802
+#: permission.perm_list:1016
msgid "Allow staff to override checkout count failure"
msgstr ""
-#: permission.perm_list:803
+#: permission.perm_list:1018
msgid "Allow staff to override overdue count failure"
msgstr ""
-#: permission.perm_list:804
+#: permission.perm_list:1020
msgid "Allow staff to override fine amount checkout failure"
msgstr ""
-#: permission.perm_list:807
+#: permission.perm_list:1026
msgid "Allow staff to force checkout of Missing/Lost type items"
msgstr ""
-#: permission.perm_list:808
+#: permission.perm_list:1028
msgid "allows users to place multiple holds on a single title"
msgstr ""
-#: permission.perm_list:809
+#: permission.perm_list:1030
msgid "Allows a users to run reports"
msgstr ""
-#: permission.perm_list:810
+#: permission.perm_list:1032
msgid "Allows a user to share report his own folders"
msgstr ""
-#: permission.perm_list:811
+#: permission.perm_list:1034
msgid "Allow user to view report output"
msgstr ""
-#: permission.perm_list:812
+#: permission.perm_list:1036
msgid "Allows a user to checkout an item that is marked as non-circ"
msgstr ""
-#: permission.perm_list:813
+#: permission.perm_list:1038
msgid "Allows a user to delete an item out of another user's container"
msgstr ""
-#: permission.perm_list:814
+#: permission.perm_list:1040
msgid "Allow a staff member to define where another staff member has their permissions"
msgstr ""
-#: asset.copy_location:944
+#: permission.perm_list:1042
+msgid "Allow a staff member to directly remove a bibliographic record"
+msgstr ""
+
+#: actor.usr:1254
+msgid "Administrator"
+msgstr ""
+
+#: asset.copy_location:1267
msgid "Stacks"
msgstr ""
msgstr ""
"Project-Id-Version: Evergreen 1.4\n"
"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-01-20 23:22:16-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19:28-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: field.aihu.org_unit.label:240 field.ancihu.org_unit.label:257
+#: field.aihu.org_unit.label:705 field.ancihu.org_unit.label:722
msgid "Using Library"
msgstr ""
-#: field.rxbt.voided.label:2488
+#: field.rxbt.voided.label:3519
msgid "Voided Billing Amount"
msgstr ""
-#: field.bre.source.label:526
+#: field.bre.source.label:1067
msgid "Record Source"
msgstr ""
-#: field.bre.marc.label:524
+#: field.bre.marc.label:1065
msgid "MARC21Slim"
msgstr ""
-#: field.mbts.xact_start.label:179
+#: field.rocit.title.label:3779
+msgid "Title"
+msgstr ""
+
+#: field.mbts.xact_start.label:644
msgid "Transaction Start Time"
msgstr ""
-#: field.mrd.vr_format.label:911
+#: field.mrd.vr_format.label:1515
msgid "Video Recording Format"
msgstr ""
-#: field.aua.within_city_limits.label:962
+#: field.vqbr.bib_source.label:173
+msgid "Bib Source"
+msgstr ""
+
+#: field.aua.within_city_limits.label:1576
msgid "Within City Limits?"
msgstr ""
-#: field.rhrr.hold_type.label:2473
+#: field.rhrr.hold_type.label:3504
msgid "Hold Request Type"
msgstr ""
-#: field.au.demographic.label:700
+#: field.au.demographic.label:1272
msgid "Demographic Info"
msgstr ""
-#: class.mwp.label:1642
+#: class.mwp.label:2562
msgid "Work Payment"
msgstr ""
-#: field.au.ident_value2.label:681
+#: field.au.ident_value2.label:1253
msgid "Secondary Identification"
msgstr ""
-#: field.mbts.last_payment_note.label:172
-#: field.rccbs.last_payment_note.label:2617
+#: class.acirc.label:1754
+msgid "Aged (patronless) Circulation"
+msgstr ""
+
+#: field.mbts.last_payment_note.label:637
+#: field.rccbs.last_payment_note.label:3661
msgid "Last Payment Note"
msgstr ""
-#: field.au.expire_date.label:673
+#: field.au.expire_date.label:1245
msgid "Privilege Expiration Date"
msgstr ""
-#: field.ac.id.label:1358
+#: field.ac.id.label:2262
msgid "Card ID"
msgstr ""
-#: field.mp.credit_card_payment.label:2042
-#: field.mbp.credit_card_payment.label:2073
+#: field.mp.credit_card_payment.label:3011
+#: field.mbp.credit_card_payment.label:3042
msgid "Credit Card Payment Detail"
msgstr ""
-#: class.rssr.label:2385
+#: class.rssr.label:3416
msgid "Simple Record Extracts"
msgstr ""
-#: field.au.id.label:677 field.rud.id.label:2446
+#: field.au.id.label:1249 field.rud.id.label:3477
msgid "User ID"
msgstr ""
-#: field.asc.entries.label:1340 field.actsc.entries.label:1370
+#: field.asc.entries.label:2244 field.actsc.entries.label:2274
msgid "Entries"
msgstr ""
-#: field.acp.dummy_title.label:1796
+#: field.acp.dummy_title.label:2716
msgid "Precat Dummy Title"
msgstr ""
-#: field.acpn.create_date.label:752
+#: field.acpn.create_date.label:1324
msgid "Note Creation Date/Time"
msgstr ""
-#: field.aua.street2.label:959
+#: field.aua.street2.label:1573
msgid "Street (2)"
msgstr ""
-#: field.mcrp.amount.label:1420 field.mwp.amount.label:1648
-#: field.mgp.amount.label:1669 field.mckp.amount.label:1757
-#: field.mp.amount.label:2034 field.mbp.amount.label:2065
-#: field.mndp.amount.label:2096 field.mdp.amount.label:2119
-#: field.mb.amount.label:2202
-msgid "Amount"
+#: field.au.barred.label:1235
+msgid "Barred"
msgstr ""
-#: field.mcrp.id.label:1422
+#: field.mcrp.id.label:2326
msgid "Pyament ID"
msgstr ""
-#: field.au.claims_returned_count.label:666
+#: field.au.claims_returned_count.label:1238
msgid "Claims-returned Count"
msgstr ""
-#: field.bre.series_field_entries.label:536
+#: field.bre.series_field_entries.label:1077
msgid "Indexed Series Field Entries"
msgstr ""
-#: field.rccbs.demographic_general_division.label:2624
+#: field.rccbs.demographic_general_division.label:3668
msgid "User Age Demographic"
msgstr ""
-#: field.rccc.dewey.label:2535
+#: field.rccc.dewey.label:3579
msgid "Call Number Dewey/Prefix"
msgstr ""
-#: field.crahp.name.label:1835 field.crmf.name.label:1847
+#: field.crahp.name.label:2771 field.crmf.name.label:2783
msgid "Rule Name"
msgstr ""
-#: field.clfm.code.label:1636
+#: field.clfm.code.label:2548
msgid "LitF Code"
msgstr ""
-#: field.mrd.type_mat.label:910
+#: field.mrd.type_mat.label:1514
msgid "TMat"
msgstr ""
-#: class.mckp.label:1751 field.mdp.check_payment.label:2130
+#: field.mb.billing_type.label:3183 field.rmocbbol.billing_type.label:3830
+#: field.rmocbbcol.billing_type.label:3861
+#: field.rmocbbhol.billing_type.label:3895
+msgid "Billing Type"
+msgstr ""
+
+#: class.mckp.label:2671 field.mdp.check_payment.label:3099
msgid "Check Payment"
msgstr ""
-#: field.rccc.stat_cat_1.label:2542
+#: field.rccc.stat_cat_1.label:3586
msgid "Legacy CAT1 Link"
msgstr ""
-#: field.mfr.tag.label:775
+#: field.mfr.tag.label:1363
msgid "Tag"
msgstr ""
-#: field.aout.org_units.label:1480
+#: field.aout.org_units.label:2384
msgid "Org Units"
msgstr ""
-#: field.rccbs.profile_group.label:2630
+#: field.rccbs.profile_group.label:3674
msgid "User Profile Group"
msgstr ""
-#: field.ahr.bib_rec.label:1254
-msgid "Bib Record link"
+#: field.vbm.field.label:246 field.vam.field.label:371
+msgid "Matched Attribute"
msgstr ""
-#: field.ahn.method.label:1111
+#: field.ahn.method.label:1875
msgid "Notification Method"
msgstr ""
-#: field.au.groups.label:697
+#: field.vqbrad.xpath.label:200 field.vqarad.xpath.label:325
+msgid "XPath"
+msgstr ""
+
+#: field.au.groups.label:1269
msgid "Additional Permission Groups"
msgstr ""
-#: field.ahr.request_lib.label:1243
+#: field.ccm.magnetic_media.label:433
+msgid "Magnetic Media"
+msgstr ""
+
+#: field.ahr.request_lib.label:2136
msgid "Requesting Library"
msgstr ""
-#: field.ahtc.source.label:2183
+#: field.ahtc.source.label:3152
msgid "Sending Library"
msgstr ""
-#: field.rccc.call_number.label:2533
+#: field.rccc.call_number.label:3577
msgid "Call Number Link"
msgstr ""
-#: field.ahr.target.label:1248
+#: field.ahr.target.label:2141
msgid "Target Object ID"
msgstr ""
-#: field.circ.checkin_lib.label:1007 field.rodcirc.checkin_lib.label:2680
+#: field.circ.checkin_lib.label:1637 field.combcirc.checkin_lib.label:1692
+#: field.acirc.checkin_lib.label:1759 field.rodcirc.checkin_lib.label:3724
msgid "Check In Library"
msgstr ""
-#: field.aua.state.label:957
+#: field.aua.state.label:1571
msgid "State"
msgstr ""
-#: field.mp.voided.label:2040 field.mbp.voided.label:2071
-#: field.mndp.voided.label:2102 field.mdp.voided.label:2127
-#: field.mb.voided.label:2208
+#: field.mp.voided.label:3009 field.mbp.voided.label:3040
+#: field.mndp.voided.label:3071 field.mdp.voided.label:3096
+#: field.mb.voided.label:3187
msgid "Voided?"
msgstr ""
-#: class.citm.label:1153
+#: class.citm.label:1925
msgid "Item Type Map"
msgstr ""
-#: field.rccbs.billing_location_shortname.label:2598
+#: field.rccbs.billing_location_shortname.label:3642
msgid "Billing Location Short (Policy) Name"
msgstr ""
-#: field.rud.general_division.label:2448
+#: field.rud.general_division.label:3479
msgid "General Demographic Division"
msgstr ""
-#: field.asvq.responses.label:151 field.asv.responses.label:1184
+#: field.asvq.responses.label:616 field.asv.responses.label:2061
msgid "Responses"
msgstr ""
-#: field.mrd.item_form.label:904
+#: field.mrd.item_form.label:1508
msgid "Form"
msgstr ""
-#: field.aou.ou_type.label:1286 class.aout.label:1467
+#: field.ssr.deleted.label:2050 field.rocit.deleted.label:3806
+msgid "Deleted"
+msgstr ""
+
+#: field.aou.ou_type.label:2179 class.aout.label:2371
msgid "Organizational Unit Type"
msgstr ""
-#: field.mcrp.payment_ts.label:1424 field.mwp.payment_ts.label:1652
-#: field.mgp.payment_ts.label:1673 field.mckp.payment_ts.label:1763
+#: field.mcrp.payment_ts.label:2328 field.mwp.payment_ts.label:2572
+#: field.mgp.payment_ts.label:2593 field.mckp.payment_ts.label:2683
msgid "Payment Timestamp"
msgstr ""
-#: field.mfr.ind1.label:771
+#: field.mfr.ind1.label:1359
msgid "Indicator 1"
msgstr ""
-#: field.mfr.ind2.label:772
+#: field.mfr.ind2.label:1360
msgid "Indicator 2"
msgstr ""
-#: field.au.checkins.label:702 field.aou.checkins.label:1297
+#: field.au.checkins.label:1274 field.aou.checkins.label:2190
msgid "Checkins"
msgstr ""
-#: field.bre.call_numbers.label:513
+#: field.cblvl.code.label:1948
+msgid "Bib Level Code"
+msgstr ""
+
+#: field.bre.call_numbers.label:1054
msgid "Call Numbers"
msgstr ""
-#: field.mp.payment_ts.label:2037 field.mbp.payment_ts.label:2068
-#: field.mndp.payment_ts.label:2099 field.mdp.payment_ts.label:2122
+#: field.mp.payment_ts.label:3006 field.mbp.payment_ts.label:3037
+#: field.mndp.payment_ts.label:3068 field.mdp.payment_ts.label:3091
msgid "Payment Date/Time"
msgstr ""
-#: field.ac.active.label:1356
-msgid "IsActive?"
+#: field.clm.value.label:847
+msgid "Language"
msgstr ""
-#: None:728
+#: None:1300
msgid "Check-ins Performed as Staff"
msgstr ""
-#: field.au.other_phone.label:686
+#: field.au.other_phone.label:1258
msgid "Other Phone"
msgstr ""
-#: field.bre.simple_record.label:538
+#: field.bre.simple_record.label:1079
msgid "Simple Record Extracts "
msgstr ""
-#: class.actsce.label:1587
+#: class.actsce.label:2499
msgid "User Stat Cat Entry"
msgstr ""
-#: field.rccc.stat_cat_2_value.label:2549
+#: field.rccc.stat_cat_2_value.label:3593
msgid "Legacy CAT2 Value"
msgstr ""
-#: class.acn.label:443 field.acp.call_number.label:1784
+#: class.acn.label:969 field.acp.call_number.label:2704
msgid "Call Number/Volume"
msgstr ""
-#: field.mrd.control_type.label:901
+#: field.mrd.control_type.label:1505
msgid "Ctrl"
msgstr ""
-#: field.au.family_name.label:674
+#: field.au.family_name.label:1246
msgid "Last Name"
msgstr ""
-#: field.rccc.stat_cat_2.label:2543
+#: field.rccc.stat_cat_2.label:3587
msgid "Legacy CAT2 Link"
msgstr ""
-#: field.au.stat_cat_entries.label:657
+#: field.au.stat_cat_entries.label:1229
msgid "Statistical Category Entries"
msgstr ""
-#: field.mrd.audience.label:897
-msgid "Audn"
+#: field.vbq.owner.label:145 field.vaq.owner.label:271
+msgid "Owner"
msgstr ""
-#: class.ancihu.label:250
+#: class.ancihu.label:715
msgid "Non-cataloged In House Use"
msgstr ""
-#: field.ahr.holdable_formats.label:1238
+#: field.ahr.holdable_formats.label:2131
msgid "Holdable Formats (for M-type hold)"
msgstr ""
-#: field.acp.notes.label:1808
+#: field.acp.notes.label:2728
msgid "Copy Notes"
msgstr ""
-#: field.mbts.total_owed.label:175
+#: field.vbm.eg_record.label:247 field.vam.eg_record.label:372
+msgid "Evergreen Record"
+msgstr ""
+
+#: field.vbm.id.label:244 field.vam.id.label:369
+msgid "Match ID"
+msgstr ""
+
+#: field.mbts.total_owed.label:640
msgid "Total Owed"
msgstr ""
-#: field.au.ident_type2.label:679
+#: field.pgt.application_perm.label:2798
+msgid "Required Permission"
+msgstr ""
+
+#: field.au.ident_type2.label:1251
msgid "Secondary Identification Type"
msgstr ""
-#: field.actscecm.stat_cat.label:1956
+#: field.actscecm.stat_cat.label:2900
msgid "Statistical Category"
msgstr ""
-#: field.mbts.last_payment_ts.label:173
+#: field.mbts.last_payment_ts.label:638
msgid "Last Payment Timestamp"
msgstr ""
-#: field.ahr.usr.label:1249
+#: class.rmobbcol.label:3871
+msgid "Open Circulation Balance by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.ahr.usr.label:2142
msgid "Hold User"
msgstr ""
-#: class.mdp.label:2114
+#: class.mdp.label:3083
msgid "Payments: Desk"
msgstr ""
-#: field.asvr.answer.label:296
+#: field.asvr.answer.label:769
msgid "Answer"
msgstr ""
-#: field.aun.pub.label:194 field.acpn.pub.label:756
-#: field.acpl.opac_visible.label:1130
+#: field.rocit.status.label:3808
+msgid "Status"
+msgstr ""
+
+#: field.aun.pub.label:659 field.acpn.pub.label:1328
+#: field.acpl.opac_visible.label:1894
msgid "Is OPAC Visible?"
msgstr ""
-#: field.ahr.notifications.label:1253
+#: field.ahr.notifications.label:2146
msgid "Notifications"
msgstr ""
-#: field.aou.shortname.label:1288
+#: field.aou.shortname.label:2181
msgid "Short (Policy) Name"
msgstr ""
-#: field.asvr.answer_date.label:297
+#: field.asvr.answer_date.label:770
msgid "Answer Date/Time"
msgstr ""
-#: field.rccc.dewey_block_hundreds.label:2547
+#: field.rccc.dewey_block_hundreds.label:3591
msgid "Dewey Block -- Hundreds"
msgstr ""
-#: field.acn.deleted.label:451 field.au.deleted.label:698
-#: field.acp.deleted.label:1792
+#: field.acn.deleted.label:977 field.au.deleted.label:1270
+#: field.acp.deleted.label:2712
msgid "Is Deleted"
msgstr ""
-#: field.acn.edit_date.label:452 field.acp.edit_date.label:1797
+#: field.acn.edit_date.label:978 field.acp.edit_date.label:2717
msgid "Last Edit Date/Time"
msgstr ""
-#: field.mbts.xact_type.label:180 field.rccbs.xact_type.label:2611
+#: field.mbts.xact_type.label:645 field.rccbs.xact_type.label:3655
msgid "Transaction Type"
msgstr ""
-#: field.mbt.xact_start.label:1569 field.rccbs.xact_start.label:2609
+#: field.mbt.xact_start.label:2481 field.rccbs.xact_start.label:3653
msgid "Transaction Start Date/Time"
msgstr ""
-#: class.mbts.label:162
+#: class.mbts.label:627
msgid "Billable Transaction Summary"
msgstr ""
-#: field.mb.billing_ts.label:2203
+#: field.mb.billing_ts.label:3182
msgid "Billing Timestamp"
msgstr ""
-#: field.au.billing_address.label:664
+#: field.au.billing_address.label:1236
msgid "Physical Address"
msgstr ""
-#: field.mrd.item_lang.label:905
+#: field.mrd.item_lang.label:1509
msgid "Lang"
msgstr ""
-#: field.actsce.stat_cat.label:1594 field.asce.stat_cat.label:2163
+#: field.cblvl.value.label:1949
+msgid "Bib Level"
+msgstr ""
+
+#: field.actsce.stat_cat.label:2506 field.asce.stat_cat.label:3132
msgid "Stat Cat"
msgstr ""
-#: field.mrd.id.label:903
+#: field.mrd.id.label:1507
msgid "Descriptor ID"
msgstr ""
-#: field.cit.name.label:141
+#: field.cit.name.label:605
msgid "Identification Name"
msgstr ""
-#: field.rccc.dewey_range_tens.label:2544
+#: field.rccc.dewey_range_tens.label:3588
msgid "Dewey Range -- Tens"
msgstr ""
-#: field.mdp.accepting_usr.label:2125
+#: field.rocit.dewey_block_hundreds.label:3787
+msgid "Dewy Hundreds"
+msgstr ""
+
+#: class.rocit.label:3774
+msgid "Classic Item List"
+msgstr ""
+
+#: field.mdp.accepting_usr.label:3094
msgid "Accepting User"
msgstr ""
-#: field.rssr.biblio_record.label:2401 field.rsr.biblio_record.label:2434
+#: class.vqbrad.label:192
+msgid "Queued Bib Record Attribute Definition"
+msgstr ""
+
+#: field.rmsr.biblio_record.label:3410 field.rssr.biblio_record.label:3432
+#: field.rsr.biblio_record.label:3465
msgid "Full Bibliographic record"
msgstr ""
-#: field.mb.billing_type.label:2204
-msgid "Billing Type"
+#: field.vqbr.marc.label:171 field.vqar.marc.label:298
+msgid "MARC"
msgstr ""
-#: class.iatc.label:2641
+#: class.iatc.label:3685
msgid "Inter-system Copy Transit"
msgstr ""
-#: class.aihu.label:233
+#: class.aihu.label:698
msgid "In House Use"
msgstr ""
-#: field.circ.circ_type.label:1035 class.rcirct.label:2454
-#: field.rcirct.type.label:2460 field.rccc.circ_type.label:2522
-#: field.rodcirc.circ_type.label:2707
+#: field.circ.circ_type.label:1665 field.combcirc.circ_type.label:1720
+#: field.acirc.circ_type.label:1787 class.rcirct.label:3485
+#: field.rcirct.type.label:3491 field.rccc.circ_type.label:3566
+#: field.rodcirc.circ_type.label:3751
msgid "Circulation Type"
msgstr ""
-#: field.ahtc.hold.label:2179
+#: field.ahtc.hold.label:3148
msgid "Hold requiring Transit"
msgstr ""
-#: field.ahr.transit.label:1229
-msgid "Transit"
+#: field.bre.notes.label:1072
+msgid "Non-MARC Record Notes"
msgstr ""
-#: field.aou.ill_address.label:1283
+#: field.aou.ill_address.label:2176
msgid "ILL Receiving Address"
msgstr ""
-#: field.aout.name.label:1477
+#: field.aout.name.label:2381
msgid "Type Name"
msgstr ""
-#: field.rssr.author.label:2396 field.rsr.author.label:2420
+#: field.rmsr.author.label:3405 field.rssr.author.label:3427
+#: field.rsr.author.label:3451
msgid "Author (normalized)"
msgstr ""
-#: field.circ.stop_fines_time.label:1026
-#: field.rodcirc.stop_fines_time.label:2699
+#: field.ssr.excluded.label:2051
+msgid "Excluded"
+msgstr ""
+
+#: field.circ.stop_fines_time.label:1656
+#: field.combcirc.stop_fines_time.label:1711
+#: field.acirc.stop_fines_time.label:1778
+#: field.rodcirc.stop_fines_time.label:3743
msgid "Fine Stop Date/Time"
msgstr ""
-#: field.au.settings.label:655
+#: field.au.settings.label:1227
msgid "All User Settings"
msgstr ""
-#: field.acn.copies.label:448
+#: field.acn.copies.label:974
msgid "Copies"
msgstr ""
-#: field.ahr.cancel_time.label:1250
+#: field.ahr.cancel_time.label:2143
msgid "Hold Cancel Date/Time"
msgstr ""
-#: field.pgt.perm_interval.label:1861
+#: field.pgt.perm_interval.label:2797
msgid "User Expiration Interval"
msgstr ""
-#: field.circ.fine_interval.label:1016 field.rodcirc.fine_interval.label:2689
+#: field.circ.fine_interval.label:1646 field.combcirc.fine_interval.label:1701
+#: field.acirc.fine_interval.label:1768 field.rodcirc.fine_interval.label:3733
msgid "Fine Interval"
msgstr ""
-#: class.mrd.label:892
+#: class.mrd.label:1496
msgid "Basic Record Descriptor"
msgstr ""
-#: field.circ.billing_total.label:1036 field.mg.billing_total.label:1536
-#: field.mbt.billing_total.label:1574 field.rodcirc.billing_total.label:2708
+#: field.circ.billing_total.label:1666 field.combcirc.billing_total.label:1721
+#: field.acirc.billing_total.label:1788 field.mg.billing_total.label:2448
+#: field.mbt.billing_total.label:2486 field.rodcirc.billing_total.label:3752
msgid "Billing Totals"
msgstr ""
-#: class.aua.label:946
+#: field.chmt.transit_range.label:537
+msgid "Transit Range"
+msgstr ""
+
+#: class.aua.label:1560
msgid "User Address"
msgstr ""
-#: class.aou.label:1274
+#: class.aou.label:2167
msgid "Organizational Unit"
msgstr ""
-#: field.ancc.circ_time.label:1891 field.rccc.xact_start.label:2521
+#: field.ancc.circ_time.label:2835 field.rccc.xact_start.label:3565
msgid "Circulation Date/Time"
msgstr ""
-#: field.mwp.id.label:1650 field.mgp.id.label:1671 field.mckp.id.label:1761
-#: field.mp.id.label:2035 field.mbp.id.label:2066 field.mndp.id.label:2097
-#: field.mdp.id.label:2120
-msgid "Payment ID"
+#: field.cvrfm.value.label:452
+msgid "Format"
msgstr ""
-#: field.rssr.issn.label:2400 field.rsr.issn.label:2427
+#: field.rmsr.issn.label:3409 field.rssr.issn.label:3431
+#: field.rsr.issn.label:3458
msgid "ISSN"
msgstr ""
-#: field.au.usrname.label:696
-msgid "OPAC/Staff Client User Name"
+#: class.cifm.label:951
+msgid "Item Form Map"
msgstr ""
-#: field.rssr.title.label:2395 field.rsr.title.label:2418
+#: field.rmsr.title.label:3404 field.rssr.title.label:3426
+#: field.rsr.title.label:3449
msgid "Title Proper (normalized)"
msgstr ""
-#: field.ahr.selection_depth.label:1246
+#: field.ahr.selection_depth.label:2139
msgid "Item Selection Depth"
msgstr ""
-#: field.circ.circ_lib.label:1010 field.acp.circ_lib.label:1786
-#: field.ancc.circ_lib.label:1890 field.rodcirc.circ_lib.label:2683
+#: field.circ.circ_lib.label:1640 field.combcirc.circ_lib.label:1695
+#: field.acirc.circ_lib.label:1762 field.acp.circ_lib.label:2706
+#: field.ancc.circ_lib.label:2834 field.rodcirc.circ_lib.label:3727
+#: field.rmocbbcol.circ_lib.label:3859 field.rmobbcol.circ_lib.label:3876
msgid "Circulating Library"
msgstr ""
-#: field.rxpt.unvoided.label:2501
+#: field.rxpt.unvoided.label:3532
msgid "Unvoided Paid Amount"
msgstr ""
-#: field.aou.opac_visible.label:1291 field.asc.opac_visible.label:1343
-#: field.actsc.opac_visible.label:1373 field.acp.opac_visible.label:1804
+#: field.aou.opac_visible.label:2184 field.asc.opac_visible.label:2247
+#: field.actsc.opac_visible.label:2277 field.acp.opac_visible.label:2724
+#: field.rocit.opac_visible.label:3803
msgid "OPAC Visible"
msgstr ""
-#: field.acn.notes.label:458
-msgid "Notes"
+#: field.asc.id.label:2245 field.actsc.id.label:2275
+msgid "Stat Cat ID"
msgstr ""
-#: field.cam.code.label:427
+#: field.cam.code.label:937
msgid "Audience Code"
msgstr ""
-#: field.rssr.publisher.label:2397 field.rsr.publisher.label:2421
+#: field.rsr.genre.label:3461
+msgid "Genres (normalized)"
+msgstr ""
+
+#: field.rmsr.publisher.label:3406 field.rssr.publisher.label:3428
+#: field.rsr.publisher.label:3452
msgid "Publisher (normalized)"
msgstr ""
-#: field.mbts.usr.label:177
+#: field.mbts.usr.label:642
msgid "Billed User"
msgstr ""
-#: field.circ.max_fine_rule.label:1019 class.crmf.label:1840
-#: field.rodcirc.max_fine_rule.label:2692
+#: field.ccmrs.max_fine_rule.label:589 field.circ.max_fine_rule.label:1649
+#: field.combcirc.max_fine_rule.label:1704
+#: field.acirc.max_fine_rule.label:1771 class.crmf.label:2776
+#: field.rodcirc.max_fine_rule.label:3736
msgid "Max Fine Rule"
msgstr ""
-#: field.rccc.circ_lib_id.label:2520
+#: field.ssr.total.label:2047
+msgid "Total Results"
+msgstr ""
+
+#: field.rccc.circ_lib_id.label:3564
msgid "Library Circulation Location Link"
msgstr ""
-#: field.au.alert_message.label:662 field.acp.alert_message.label:1782
+#: field.au.alert_message.label:1234 field.acp.alert_message.label:2702
msgid "Alert Message"
msgstr ""
-#: field.rccbs.last_payment_ts.label:2616
+#: field.rccbs.last_payment_ts.label:3660
msgid "Last Payment Date/Time"
msgstr ""
-#: field.mbts.id.label:168 field.mg.id.label:1528 field.mbt.id.label:1566
-#: field.mwp.xact.label:1653 field.mgp.xact.label:1674
-#: field.rxbt.xact.label:2486 field.rxpt.xact.label:2500
-#: field.rccbs.id.label:2596
+#: field.mbts.id.label:633 field.mg.id.label:2440 field.mbt.id.label:2478
+#: field.mwp.xact.label:2573 field.mgp.xact.label:2594
+#: field.rxbt.xact.label:3517 field.rxpt.xact.label:3531
+#: field.rccbs.id.label:3640
msgid "Transaction ID"
msgstr ""
-#: field.rssr.quality.label:2392 field.rsr.quality.label:2415
-msgid "Overall Record Quality"
+#: field.mwp.id.label:2570 field.mgp.id.label:2591 field.mckp.id.label:2681
+#: field.mp.id.label:3004 field.mbp.id.label:3035 field.mndp.id.label:3066
+#: field.mdp.id.label:3089
+msgid "Payment ID"
msgstr ""
-#: field.au.barred.label:663
-msgid "Barred"
+#: field.mcrp.amount.label:2324 field.mwp.amount.label:2568
+#: field.mgp.amount.label:2589 field.mckp.amount.label:2677
+#: field.mp.amount.label:3003 field.mbp.amount.label:3034
+#: field.mndp.amount.label:3065 field.mdp.amount.label:3088
+#: field.mb.amount.label:3181
+msgid "Amount"
msgstr ""
-#: field.ahn.notify_time.label:1114
+#: field.ahn.notify_time.label:1878
msgid "Notification Date/Time"
msgstr ""
-#: field.bre.subject_field_entries.label:533
+#: class.chmt.label:529
+msgid "Hold Matrix Test Set"
+msgstr ""
+
+#: class.chmm.label:465
+msgid "Hold Matrix Matchpoint"
+msgstr ""
+
+#: field.bre.subject_field_entries.label:1074
msgid "Indexed Subject Field Entries"
msgstr ""
-#: class.acpl.label:1121
+#: field.ccmrs.duration_rule.label:587
+msgid "Duration Rule"
+msgstr ""
+
+#: class.acpl.label:1885
msgid "Copy/Shelving Location"
msgstr ""
-#: field.auoi.org_unit.label:110
+#: field.auoi.org_unit.label:399
msgid "Allowed Org Unit"
msgstr ""
-#: class.clfm.label:1631 field.rccc.lit_form.label:2527
+#: class.clfm.label:2543 field.rccc.lit_form.label:3571
msgid "Literary Form"
msgstr ""
-#: field.ahr.prev_check_time.label:1242
+#: field.ahr.prev_check_time.label:2135
msgid "Last Targeting Date/Time"
msgstr ""
-#: field.asvr.response_group_id.label:301
+#: field.asvr.response_group_id.label:774
msgid "Response Group ID"
msgstr ""
-#: class.cifm.label:433
-msgid "Item Form Map"
+#: field.chmm.active.label:471 field.ccmm.active.label:507
+msgid "Active?"
msgstr ""
-#: class.aus.label:204
+#: field.au.usrname.label:1268
+msgid "OPAC/Staff Client User Name"
+msgstr ""
+
+#: field.ssr.rel.label:2045
+msgid "Relevance"
+msgstr ""
+
+#: class.aus.label:669
msgid "User Setting"
msgstr ""
-#: field.circ.duration.label:1014 field.cnct.circ_duration.label:1457
-#: field.rodcirc.duration.label:2687
+#: field.circ.duration.label:1644 field.combcirc.duration.label:1699
+#: field.acirc.duration.label:1766 field.cnct.circ_duration.label:2361
+#: field.rodcirc.duration.label:3731
msgid "Circulation Duration"
msgstr ""
-#: field.rccc.language.label:2526
+#: field.rccc.language.label:3570
msgid "Item Language"
msgstr ""
-#: class.mbp.label:2060
+#: class.mbp.label:3029
msgid "Payments: Brick-and-mortar"
msgstr ""
-#: class.actscecm.label:1950
+#: class.actscecm.label:2894
msgid "User Statistical Category Entry"
msgstr ""
-#: field.ahn.note.label:1112
+#: class.vqarad.label:317
+msgid "Queued Authority Record Attribute Definition"
+msgstr ""
+
+#: field.ahn.note.label:1876
msgid "Notification Note"
msgstr ""
-#: field.circ.recuring_fine_rule.label:1023
-#: field.rodcirc.recuring_fine_rule.label:2696
+#: field.ccmrs.recurring_fine_rule.label:588
+#: field.circ.recuring_fine_rule.label:1653
+#: field.combcirc.recuring_fine_rule.label:1708
+#: field.acirc.recuring_fine_rule.label:1775
+#: field.rodcirc.recuring_fine_rule.label:3740
msgid "Recurring Fine Rule"
msgstr ""
-#: field.circ.duration_rule.label:1015 field.rodcirc.duration_rule.label:2688
+#: field.circ.duration_rule.label:1645 field.combcirc.duration_rule.label:1700
+#: field.acirc.duration_rule.label:1767 field.rodcirc.duration_rule.label:3732
msgid "Circ Duration Rule"
msgstr ""
-#: field.aout.opac_label.label:1478
-msgid "OPAC Label"
+#: field.ccmt.max_overdue.label:556
+msgid "Max Overdue"
+msgstr ""
+
+#: field.ccmt.max_items_out.label:555
+msgid "Max Items Out"
+msgstr ""
+
+#: class.asc.label:2239
+msgid "Asset Statistical Category"
msgstr ""
-#: field.asv.required.label:1192
+#: field.asv.required.label:2069
msgid "Is Required?"
msgstr ""
-#: field.au.survey_responses.label:658
+#: field.au.survey_responses.label:1230
msgid "Survey Responses"
msgstr ""
-#: field.atc.id.label:275 field.ahtc.id.label:2180 field.iatc.id.label:2658
+#: field.atc.id.label:740 field.ahtc.id.label:3149 field.iatc.id.label:3702
msgid "Transit ID"
msgstr ""
-#: field.rccbs.usr_home_ou_name.label:2603
+#: field.acp.total_circ_count.label:2731
+msgid "Total Circulations"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_name.label:3647
msgid "User Home Library Name"
msgstr ""
-#: field.au.credit_forward_balance.label:668
+#: field.au.credit_forward_balance.label:1240
msgid "User Credit Balance"
msgstr ""
-#: class.rsce2.label:2577
-msgid "CAT2 Entry"
+#: class.vqbra.label:215
+msgid "Queued Bib Record Attribute"
msgstr ""
-#: field.aun.create_date.label:191 field.acp.create_date.label:1790
+#: field.aun.create_date.label:656 field.acp.create_date.label:2710
msgid "Creation Date/Time"
msgstr ""
-#: field.aout.id.label:1476
+#: field.rocit.due_date.label:3810
+msgid "Due Date"
+msgstr ""
+
+#: field.aout.id.label:2380
msgid "Type ID"
msgstr ""
-#: field.circ.payments.label:1033 field.rodcirc.payments.label:2705
+#: field.circ.payments.label:1663 field.combcirc.payments.label:1718
+#: field.acirc.payments.label:1785 field.rodcirc.payments.label:3749
msgid "Transaction Payments"
msgstr ""
-#: class.bre.label:508
+#: class.bre.label:1049
msgid "Bibliographic Record"
msgstr ""
-#: field.ahr.eligible_copies.label:1255
+#: field.ahr.eligible_copies.label:2148
msgid "Eligible Copies"
msgstr ""
-#: field.mp.cash_payment.label:2041 field.mbp.cash_payment.label:2072
+#: field.mp.cash_payment.label:3010 field.mbp.cash_payment.label:3041
msgid "Cash Payment Detail"
msgstr ""
-#: field.mfr.id.label:770
+#: field.mfr.id.label:1358
msgid "Field ID"
msgstr ""
-#: field.bre.tcn_value.label:528 field.rssr.tcn_value.label:2394
-#: field.rsr.tcn_value.label:2417
-msgid "TCN Value"
+#: field.rocit.ref.label:3804
+msgid "Reference"
+msgstr ""
+
+#: field.ancc.item_type.label:2837
+msgid "Non-cat Item Type"
+msgstr ""
+
+#: field.chmm.user_home_ou.label:472 field.rmocbbhol.home_ou.label:3893
+#: field.rmobbhol.home_ou.label:3910
+msgid "User Home Library"
msgstr ""
-#: field.rccbs.total_owed.label:2614
+#: class.vam.label:364
+msgid "Queued Authority Record Match"
+msgstr ""
+
+#: field.rccbs.total_owed.label:3658 field.rmocbbol.billed.label:3831
+#: field.rmocbbcol.billed.label:3862 field.rmocbbhol.billed.label:3896
msgid "Total Billed"
msgstr ""
-#: class.aun.label:186
+#: class.aun.label:651
msgid "User Note"
msgstr ""
-#: class.actsc.label:1365
+#: class.actsc.label:2269
msgid "User Statistical Category"
msgstr ""
-#: class.pgt.label:1851
+#: field.ccmm.grp.label:509 class.pgt.label:2787
msgid "Permission Group"
msgstr ""
-#: field.mp.forgive_payment.label:2046 field.mbp.forgive_payment.label:2077
-#: field.mndp.forgive_payment.label:2104
+#: field.mp.forgive_payment.label:3015 field.mbp.forgive_payment.label:3046
+#: field.mndp.forgive_payment.label:3073
msgid "Forgive Payment Detail"
msgstr ""
-#: field.rhrr.target.label:2472
+#: field.rhrr.target.label:3503
msgid "Hold Target"
msgstr ""
-#: field.au.suffix.label:693
+#: field.au.suffix.label:1265
msgid "Suffix/Title"
msgstr ""
-#: field.asvr.effective_date.label:298
+#: field.asvr.effective_date.label:771
msgid "Effective Answer Date/Time"
msgstr ""
-#: field.acp.deposit.label:1793
+#: field.acp.deposit.label:2713
msgid "Is Deposit Required"
msgstr ""
-#: field.ahr.capture_time.label:1230
+#: field.ahr.capture_time.label:2123
msgid "Capture Date/Time"
msgstr ""
-#: field.mbts.balance_owed.label:167 field.rccbs.balance_owed.label:2629
+#: field.mbts.balance_owed.label:632 field.rccbs.balance_owed.label:3673
msgid "Balance Owed"
msgstr ""
-#: field.aua.street1.label:958
-msgid "Street (1)"
+#: field.chmt.max_holds.label:538
+msgid "Max Holds"
msgstr ""
-#: field.rhrr.bib_record.label:2474
+#: field.rhrr.bib_record.label:3505
msgid "Target Bib Record"
msgstr ""
-#: class.ac.label:1351
+#: class.ac.label:2255
msgid "Library Card"
msgstr ""
-#: field.au.second_given_name.label:691
+#: field.au.second_given_name.label:1263
msgid "Middle Name"
msgstr ""
-#: field.aihu.staff.label:241 field.ancihu.staff.label:258
+#: field.aihu.staff.label:706 field.ancihu.staff.label:723
msgid "Recording Staff"
msgstr ""
-#: field.aou.billing_address.label:1280
+#: field.aou.billing_address.label:2173
msgid "Billing Address"
msgstr ""
-#: field.acp.stat_cat_entries.label:1780
+#: field.acp.stat_cat_entries.label:2700
msgid "Statistical Catagory Entries"
msgstr ""
-#: field.crahp.id.label:1834 field.crmf.id.label:1846
+#: field.crahp.id.label:2770 field.crmf.id.label:2782
msgid "Rule ID"
msgstr ""
-#: field.acp.loan_duration.label:1802
+#: field.acp.loan_duration.label:2722
msgid "Loan Duration"
msgstr ""
-#: field.mrd.item_type.label:906 field.aua.address_type.label:951
+#: field.vbq.queue_type.label:148 field.vaq.queue_type.label:274
+#: field.mrd.item_type.label:1510 field.aua.address_type.label:1565
msgid "Type"
msgstr ""
-#: field.ahr.expire_time.label:1233
+#: field.ahr.expire_time.label:2126
msgid "Hold Expire Date/Time"
msgstr ""
-#: field.bre.full_record_entries.label:537
+#: field.bre.full_record_entries.label:1078
msgid "Flattened MARC Fields "
msgstr ""
-#: class.mg.label:1522
+#: field.rmsr.quality.label:3401 field.rssr.quality.label:3423
+#: field.rsr.quality.label:3446
+msgid "Overall Record Quality"
+msgstr ""
+
+#: class.mg.label:2434
msgid "Grocery Transaction"
msgstr ""
-#: field.acn.record.label:457
+#: field.rocit.age_protect.label:3802
+msgid "Age Protection"
+msgstr ""
+
+#: field.acn.record.label:983 field.combcirc.copy_bib_record.label:1730
+#: field.acirc.copy_bib_record.label:1797
msgid "Bib Record"
msgstr ""
-#: field.rccbs.patron_city.label:2626
+#: field.rccbs.patron_city.label:3670
msgid "User City"
msgstr ""
-#: field.ahn.hold.label:1109 field.aufh.hold.label:1926
+#: field.ahn.hold.label:1873 field.aufh.hold.label:2870
msgid "Hold"
msgstr ""
-#: field.cifm.value.label:439
+#: field.cifm.value.label:957
msgid "Item Form"
msgstr ""
-#: class.cit.label:135
+#: class.cit.label:599
msgid "Identification Type"
msgstr ""
-#: field.ahr.requestor.label:1245
+#: field.ahr.requestor.label:2138
msgid "Requesting User"
msgstr ""
-#: field.auoi.opt_in_ws.label:107 class.aws.label:121
+#: field.auoi.opt_in_ws.label:396 class.aws.label:410
msgid "Workstation"
msgstr ""
-#: field.mcrp.xact.label:1425 field.mb.xact.label:2210
+#: field.mcrp.xact.label:2329 field.mb.xact.label:3189
msgid "Transaction"
msgstr ""
-#: field.rccc.circ_lib.label:2519
+#: field.rocit.owning_lib_name.label:3797
+msgid "Owning Lib Name"
+msgstr ""
+
+#: field.rccc.circ_lib.label:3563
msgid "Library Circulation Location Short (Policy) Name"
msgstr ""
-#: field.acp.fine_level.label:1799
+#: field.acp.fine_level.label:2719
msgid "Fine Level"
msgstr ""
-#: field.rxpt.total.label:2503
-msgid "Total Paid Amount"
+#: field.vqbra.record.label:221 field.vqara.record.label:346
+#: field.ssr.record.label:2046
+msgid "Record"
msgstr ""
-#: field.aun.id.label:193 field.acpn.id.label:754
+#: field.aun.id.label:658 field.acpn.id.label:1326
msgid "Note ID"
msgstr ""
-#: field.pgt.application_perm.label:1862
-msgid "Required Permission"
+#: field.ahr.bib_rec.label:2147
+msgid "Bib Record link"
msgstr ""
-#: field.rsr.uniform_title.label:2419
+#: field.rsr.uniform_title.label:3450
msgid "Uniform Title (normalized)"
msgstr ""
-#: field.mg.xact_finish.label:1531
+#: field.mg.xact_finish.label:2443
msgid "Transaction Finish Timestamp"
msgstr ""
-#: class.ahr.label:1223
+#: class.ahr.label:2116
msgid "Hold Request"
msgstr ""
-#: field.bre.notes.label:531
-msgid "Non-MARC Record Notes"
+#: field.aihu.item.label:704 class.acp.label:2695
+msgid "Item"
+msgstr ""
+
+#: field.chmm.marc_form.label:481 field.ccmm.marc_form.label:512
+#: field.rccc.item_form.label:3572
+msgid "MARC Form"
msgstr ""
-#: field.ancihu.item_type.label:256 field.citm.value.label:1159
+#: class.ccmt.label:548
+msgid "Circulation Matrix Test Set"
+msgstr ""
+
+#: field.chmm.usr_grp.label:477
+msgid "User Permission Group"
+msgstr ""
+
+#: field.ancihu.item_type.label:721 field.citm.value.label:1931
msgid "Item Type"
msgstr ""
-#: field.ahr.phone_notify.label:1240
+#: field.ssr.visible.label:2049
+msgid "Visible"
+msgstr ""
+
+#: class.rmocbbol.label:3823
+msgid "Open Circulation Billing by Owning Library"
+msgstr ""
+
+#: field.ahr.phone_notify.label:2133
msgid "Notifications Phone Number"
msgstr ""
-#: field.mg.billable_transaction.label:1535
+#: field.mg.billable_transaction.label:2447
msgid "Billable Transaction link"
msgstr ""
-#: field.circ.id.label:1017 field.rodcirc.id.label:2690
+#: field.circ.id.label:1647 field.combcirc.id.label:1702
+#: field.acirc.id.label:1769 field.rodcirc.id.label:3734
msgid "Circ ID"
msgstr ""
-#: field.bre.deleted.label:518
+#: field.bre.deleted.label:1059
msgid "Is Deleted?"
msgstr ""
-#: field.mbt.billings.label:1572
+#: class.vaq.label:265
+msgid "Import/Overlay Authority Queue"
+msgstr ""
+
+#: field.mbt.billings.label:2484
msgid "Billing Line Items"
msgstr ""
-#: field.acp.circulate.label:1788
+#: field.acp.circulate.label:2708
msgid "Can Circulate"
msgstr ""
-#: field.bre.last_xact_id.label:523
+#: field.rocit.call_number_label.label:3785
+msgid "Callnumber Label"
+msgstr ""
+
+#: field.aou.parent_ou.label:2180
+msgid "Parent Organizational Unit"
+msgstr ""
+
+#: class.erfcc.label:3541
+msgid "Total Circulation Count, Including Legacy"
+msgstr ""
+
+#: field.bre.last_xact_id.label:1064
msgid "Last Transaction ID"
msgstr ""
-#: field.mp.check_payment.label:2044 field.mbp.check_payment.label:2075
+#: field.mp.check_payment.label:3013 field.mbp.check_payment.label:3044
msgid "Check Payment Detail"
msgstr ""
-#: field.ahr.id.label:1239 field.rhrr.id.label:2471
+#: field.ahr.id.label:2132 field.rhrr.id.label:3502
msgid "Hold ID"
msgstr ""
-#: field.mbts.last_billing_ts.label:170
+#: field.mbts.last_billing_ts.label:635
msgid "Last Billing Timestamp"
msgstr ""
-#: field.pgt.usergroup.label:1863
+#: field.rocit.dewey_block_tens.label:3786
+msgid "Dewy Tens"
+msgstr ""
+
+#: field.rocit.stat_cat_1_value.label:3793
+msgid "Legacy Stat Cat 1 Value"
+msgstr ""
+
+#: field.pgt.usergroup.label:2799
msgid "Is User Group"
msgstr ""
-#: field.rccbs.usr.label:2607
+#: field.rccbs.usr.label:3651
msgid "User Link"
msgstr ""
-#: field.acpl.circulate.label:1126
+#: field.acpl.circulate.label:1890
msgid "Can Circulate?"
msgstr ""
-#: field.acp.stat_cat_entry_copy_maps.label:1809
+#: field.acp.stat_cat_entry_copy_maps.label:2729
msgid "Stat-Cat entry maps"
msgstr ""
-#: field.aout.children.label:1472
+#: field.aout.children.label:2376
msgid "Subordinate Types"
msgstr ""
-#: field.bre.fixed_fields.label:514
+#: field.bre.fixed_fields.label:1055
msgid "Fixed Field Entry"
msgstr ""
-#: field.bre.fingerprint.label:521 field.rssr.fingerprint.label:2391
-#: field.rsr.fingerprint.label:2414
+#: field.bre.fingerprint.label:1062 field.rmsr.fingerprint.label:3400
+#: field.rssr.fingerprint.label:3422 field.rsr.fingerprint.label:3445
msgid "Fingerprint"
msgstr ""
-#: field.pgt.children.label:1856
+#: field.chmm.ref_flag.label:483 field.ccmm.ref_flag.label:514
+msgid "Reference?"
+msgstr ""
+
+#: field.pgt.children.label:2792
msgid "Child Groups"
msgstr ""
-#: field.aws.owning_lib.label:128 field.acn.owning_lib.label:456
-#: field.asv.owner.label:1190 field.asc.owner.label:1344
-#: field.actsc.owner.label:1374 field.cnct.owning_lib.label:1461
+#: field.rccc.dewey_block_tens.label:3590
+msgid "Dewey Block -- Tens"
+msgstr ""
+
+#: field.aws.owning_lib.label:417 field.chmm.item_owning_ou.label:475
+#: field.acn.owning_lib.label:982 field.asv.owner.label:2067
+#: field.asc.owner.label:2248 field.actsc.owner.label:2278
+#: field.cnct.owning_lib.label:2365 field.rmocbbol.owning_lib.label:3829
+#: field.rmobbol.owning_lib.label:3844 field.rmocbbcol.owning_lib.label:3860
+#: field.rmobbcol.owning_lib.label:3877 field.rmocbbhol.owning_lib.label:3894
+#: field.rmobbhol.owning_lib.label:3911
msgid "Owning Library"
msgstr ""
-#: field.mg.billing_location.label:1527
-msgid "Billing Location"
+#: field.rocit.circ_lib_name.label:3798
+msgid "Circ Lib Name"
+msgstr ""
+
+#: field.vqbr.create_time.label:169 field.vqar.create_time.label:296
+msgid "Create Time"
msgstr ""
-#: field.circ.circ_staff.label:1011 field.ancc.staff.label:1895
-#: field.rodcirc.circ_staff.label:2684
+#: field.amtr.success.label:129
+msgid "Success"
+msgstr ""
+
+#: field.circ.circ_staff.label:1641 field.combcirc.circ_staff.label:1696
+#: field.acirc.circ_staff.label:1763 field.ancc.staff.label:2839
+#: field.rodcirc.circ_staff.label:3728
msgid "Circulating Staff"
msgstr ""
-#: class.asce.label:2156
+#: class.asce.label:3125
msgid "Item Stat Cat Entry"
msgstr ""
-#: field.atc.hold_transit_copy.label:281 class.ahtc.label:2171
-#: field.iatc.hold_transit_copy.label:2664
+#: field.combcirc.usr_birth_year.label:1725
+#: field.acirc.usr_birth_year.label:1792
+msgid "Patron Birth Year"
+msgstr ""
+
+#: field.atc.hold_transit_copy.label:746 class.ahtc.label:3140
+#: field.iatc.hold_transit_copy.label:3708
msgid "Hold Transit"
msgstr ""
-#: field.asv.opac.label:1189
+#: field.asv.opac.label:2066
msgid "OPAC Surevey?"
msgstr ""
-#: field.aun.creator.label:192
+#: field.vqbra.id.label:220 field.vqara.id.label:345
+msgid "Attribute ID"
+msgstr ""
+
+#: field.aun.creator.label:657
msgid "Creating Staff"
msgstr ""
-#: field.circ.due_date.label:1013 field.rodcirc.due_date.label:2686
+#: class.ccmrs.label:581
+msgid "Circulation Matrix Rule Set"
+msgstr ""
+
+#: field.ccm.sip2_media_type.label:432
+msgid "SIP2 Media Type"
+msgstr ""
+
+#: field.vqbrad.code.label:198 field.vqarad.code.label:323
+#: field.ccm.code.label:429 field.cvrfm.code.label:451
+msgid "Code"
+msgstr ""
+
+#: field.rocit.patron_name.label:3812
+msgid "Patron Name"
+msgstr ""
+
+#: class.cvrfm.label:446 field.chmm.marc_vr_format.label:482
+#: field.ccmm.marc_vr_format.label:513
+msgid "Videorecording Format"
+msgstr ""
+
+#: field.circ.due_date.label:1643 field.combcirc.due_date.label:1698
+#: field.acirc.due_date.label:1765 field.rodcirc.due_date.label:3730
msgid "Due Date/Time"
msgstr ""
-#: field.asvq.id.label:152
+#: field.asvq.id.label:617
msgid "Question ID"
msgstr ""
-#: class.mb.label:2197
+#: class.mb.label:3176
msgid "Billing Line Item"
msgstr ""
-#: field.rsr.external_uri.label:2433
+#: field.rsr.external_uri.label:3464
msgid "External URI List (normalized)"
msgstr ""
-#: field.actsce.id.label:1592 field.actscecm.id.label:1955
-#: field.asce.id.label:2161 field.rsce1.id.label:2568
-#: field.rsce2.id.label:2582
+#: field.actsce.id.label:2504 field.actscecm.id.label:2899
+#: field.asce.id.label:3130 field.rsce1.id.label:3612
+#: field.rsce2.id.label:3626
msgid "Entry ID"
msgstr ""
-#: field.acp.age_protect.label:1781
+#: field.acp.age_protect.label:2701
msgid "Age Hold Protection"
msgstr ""
-#: field.acp.copy_number.label:1789
+#: field.amtr.fail_part.label:130
+msgid "Failure Part"
+msgstr ""
+
+#: field.acp.copy_number.label:2709
msgid "Copy Number on Volume"
msgstr ""
-#: field.mbts.last_payment_type.label:174
-#: field.rccbs.last_payment_type.label:2618
+#: field.mbts.last_payment_type.label:639
+#: field.rccbs.last_payment_type.label:3662
msgid "Last Payment Type"
msgstr ""
-#: class.mgp.label:1663
+#: class.mgp.label:2583
msgid "Goods Payment"
msgstr ""
-#: field.rssr.isbn.label:2399 field.rsr.isbn.label:2426
+#: field.rmsr.isbn.label:3408 field.rssr.isbn.label:3430
+#: field.rsr.isbn.label:3457
msgid "ISBN"
msgstr ""
-#: field.circ.checkin_staff.label:1008 field.rodcirc.checkin_staff.label:2681
+#: field.circ.checkin_staff.label:1638 field.combcirc.checkin_staff.label:1693
+#: field.acirc.checkin_staff.label:1760 field.rodcirc.checkin_staff.label:3725
msgid "Check In Staff"
msgstr ""
-#: field.mdp.cash_drawer.label:2126
+#: field.ccmt.script_test.label:558
+msgid "Test Script"
+msgstr ""
+
+#: field.mdp.cash_drawer.label:3095
msgid "Cash Drawer"
msgstr ""
-#: class.asvr.label:291
+#: class.asvr.label:764
msgid "Survey Response"
msgstr ""
-#: field.au.first_given_name.label:675
+#: class.crahp.label:2764
+msgid "Age Hold Protection Rule"
+msgstr ""
+
+#: field.au.first_given_name.label:1247
msgid "First Name"
msgstr ""
-#: field.acpl.owning_lib.label:1131
+#: field.acpl.owning_lib.label:1895
msgid "Owning Org Unit"
msgstr ""
-#: field.au.permissions.label:654
+#: field.au.permissions.label:1226
msgid "All Permissions"
msgstr ""
-#: field.mbts.xact_finish.label:178
+#: field.mbts.xact_finish.label:643
msgid "Transaction Finish Time"
msgstr ""
-#: field.cit.id.label:140
+#: field.cit.id.label:604
msgid "Identification ID"
msgstr ""
-#: field.atc.source_send_time.label:279 field.ahtc.source_send_time.label:2184
-#: field.iatc.source_send_time.label:2662
+#: field.atc.source_send_time.label:744 field.ahtc.source_send_time.label:3153
+#: field.iatc.source_send_time.label:3706
msgid "Send Date/Time"
msgstr ""
-#: field.clm.value.label:374
-msgid "Language"
+#: class.circ.label:1632 field.rccc.id.label:3562
+msgid "Circulation"
msgstr ""
-#: field.acp.price.label:1805
+#: field.acp.price.label:2725 field.rocit.price.label:3783
msgid "Price"
msgstr ""
-#: field.ac.barcode.label:1357 field.acp.barcode.label:1783
+#: field.ac.barcode.label:2261 field.acp.barcode.label:2703
+#: field.rocit.barcode.label:3784
msgid "Barcode"
msgstr ""
-#: field.pgt.id.label:1858
+#: field.pgt.id.label:2794
msgid "Group ID"
msgstr ""
-#: field.mrd.pub_status.label:908
+#: field.mrd.pub_status.label:1512
msgid "Pub Status"
msgstr ""
-#: field.acp.deposit_amount.label:1794
+#: field.rocit.create_date.label:3796
+msgid "Create Date"
+msgstr ""
+
+#: field.acp.deposit_amount.label:2714 field.rocit.deposit_amount.label:3805
msgid "Deposit Amount"
msgstr ""
-#: field.rxbt.total.label:2489
+#: field.rxbt.total.label:3520
msgid "Total Billing Amount"
msgstr ""
-#: field.circ.xact_finish.label:1029 field.mbt.xact_finish.label:1568
-#: field.rodcirc.xact_finish.label:2702
+#: field.circ.xact_finish.label:1659 field.combcirc.xact_finish.label:1714
+#: field.acirc.xact_finish.label:1781 field.mbt.xact_finish.label:2480
+#: field.rodcirc.xact_finish.label:3746
msgid "Transaction Finish Date/Time"
msgstr ""
-#: field.rsr.genre.label:2430
-msgid "Genres (normalized)"
+#: field.acp.ref.label:2726
+msgid "Is Reference"
msgstr ""
-#: field.aus.name.label:210 field.acpl.name.label:1129
-#: field.asv.name.label:1188 field.aou.name.label:1285
-#: field.asc.name.label:1342 field.actsc.name.label:1372
-#: field.cnct.name.label:1460
+#: field.vbq.name.label:146 field.vaq.name.label:272 field.ccm.name.label:430
+#: field.aus.name.label:675 field.cxt.name.label:893
+#: field.acpl.name.label:1893 field.asv.name.label:2065
+#: field.aou.name.label:2178 field.asc.name.label:2246
+#: field.actsc.name.label:2276 field.cnct.name.label:2364
msgid "Name"
msgstr ""
-#: field.circ.opac_renewal.label:1020 field.rodcirc.opac_renewal.label:2693
-msgid "OPAC Renewal"
+#: field.mckp.cash_drawer.label:2679
+msgid "Workstation link"
msgstr ""
-#: field.rccc.item_type.label:2529
+#: field.chmm.marc_type.label:480 field.ccmm.marc_type.label:511
+#: field.rccc.item_type.label:3573
msgid "MARC Type"
msgstr ""
-#: field.bre.edit_date.label:519
+#: field.bre.edit_date.label:1060
msgid "Last Edit Data/Time"
msgstr ""
-#: field.clm.code.label:373 field.bre.language.label:530
+#: field.clm.code.label:846 field.bre.language.label:1071
msgid "Language Code"
msgstr ""
-#: field.pgt.parent.label:1860
+#: field.pgt.parent.label:2796
msgid "Parent Group"
msgstr ""
-#: field.circ.xact_start.label:1030 field.rodcirc.xact_start.label:2703
+#: field.combcirc.usr_post_code.label:1713
+#: field.acirc.usr_post_code.label:1780
+msgid "Patron ZIP"
+msgstr ""
+
+#: field.circ.xact_start.label:1660 field.combcirc.xact_start.label:1715
+#: field.acirc.xact_start.label:1782 field.rodcirc.xact_start.label:3747
msgid "Check Out Date/Time"
msgstr ""
-#: field.rxbt.unvoided.label:2487
+#: field.rxbt.unvoided.label:3518
msgid "Unvoided Billing Amount"
msgstr ""
-#: field.circ.billable_transaction.label:1034
-#: field.rodcirc.billable_transaction.label:2706
+#: field.rxpt.total.label:3534
+msgid "Total Paid Amount"
+msgstr ""
+
+#: field.circ.billable_transaction.label:1664
+#: field.combcirc.billable_transaction.label:1719
+#: field.acirc.billable_transaction.label:1786
+#: field.rodcirc.billable_transaction.label:3750
msgid "Base Transaction"
msgstr ""
-#: field.rccc.patron_home_lib_shortname.label:2538
+#: field.rccc.patron_home_lib_shortname.label:3582
msgid "Patron Home Library Short (Policy) Name"
msgstr ""
-#: field.cnct.in_house.label:1459
+#: field.ac.active.label:2260
+msgid "IsActive?"
+msgstr ""
+
+#: field.cnct.in_house.label:2363
msgid "In House?"
msgstr ""
-#: field.rsr.geographic_subject.label:2429
+#: field.rsr.geographic_subject.label:3460
msgid "Geographic Subjects (normalized)"
msgstr ""
-#: field.au.card.label:665
+#: field.combcirc.copy_call_number.label:1726
+#: field.acirc.copy_call_number.label:1793
+msgid "Call Number"
+msgstr ""
+
+#: field.au.card.label:1237
msgid "Current Library Card"
msgstr ""
-#: field.aou.closed_dates.label:1293
-msgid "Closed Dates"
+#: field.atc.target_copy.label:745 field.ahtc.target_copy.label:3154
+#: field.iatc.target_copy.label:3707
+msgid "Transited Copy"
msgstr ""
-#: field.actsce.value.label:1595 field.rsce1.value.label:2570
-#: field.rsce2.value.label:2584
+#: field.actsce.value.label:2507 field.rsce1.value.label:3614
+#: field.rsce2.value.label:3628
msgid "Entry Value"
msgstr ""
-#: field.acpn.creator.label:753
+#: field.acpn.creator.label:1325
msgid "Note Creator"
msgstr ""
-#: field.aou.holds_address.label:1281
-msgid "Holds Receiving Address"
+#: field.combcirc.copy_circ_lib.label:1729
+#: field.acirc.copy_circ_lib.label:1796
+msgid "Copy Circulating Library"
+msgstr ""
+
+#: class.vbm.label:239
+msgid "Queued Bib Record Match"
msgstr ""
-#: field.mfr.record.label:773 field.mrd.record.label:909
+#: field.ssr.checked.label:2048
+msgid "Checked"
+msgstr ""
+
+#: field.mfr.record.label:1361 field.mrd.record.label:1513
msgid "Bib Record Entry"
msgstr ""
-#: field.rccbs.usr_home_ou.label:2604
+#: field.rccbs.usr_home_ou.label:3648
msgid "User Home Library Link"
msgstr ""
-#: field.rccc.dewey_block_tens.label:2546
-msgid "Dewey Block -- Tens"
+#: field.ccmm.usr_age_lower_bound.label:515
+msgid "User Age: Lower Bound"
msgstr ""
-#: field.acp.id.label:1801
+#: field.acp.id.label:2721 field.erfcc.id.label:3546 field.rocit.id.label:3782
msgid "Copy ID"
msgstr ""
-#: field.au.day_phone.label:669
+#: field.au.day_phone.label:1241
msgid "Daytime Phone"
msgstr ""
-#: field.circ.target_copy.label:1027 field.rodcirc.target_copy.label:2700
+#: field.circ.target_copy.label:1657 field.combcirc.target_copy.label:1712
+#: field.acirc.target_copy.label:1779 field.rodcirc.target_copy.label:3744
msgid "Circulating Item"
msgstr ""
-#: field.ahr.email_notify.label:1232
+#: field.rocit.author.label:3780
+msgid "Author"
+msgstr ""
+
+#: field.ahr.email_notify.label:2125
msgid "Notify by Email?"
msgstr ""
-#: field.circ.payment_total.label:1037 field.mg.payment_total.label:1537
-#: field.mbt.payment_total.label:1575 field.rodcirc.payment_total.label:2709
+#: field.circ.payment_total.label:1667 field.combcirc.payment_total.label:1722
+#: field.acirc.payment_total.label:1789 field.mg.payment_total.label:2449
+#: field.mbt.payment_total.label:2487 field.rodcirc.payment_total.label:3753
msgid "Payment Totals"
msgstr ""
-#: field.rccc.patron_id.label:2536
+#: field.rccc.patron_id.label:3580
msgid "Patron Link"
msgstr ""
-#: field.mp.goods_payment.label:2047 field.mbp.goods_payment.label:2078
-#: field.mndp.goods_payment.label:2105
+#: field.ccmcmt.id.label:570
+msgid "Test ID"
+msgstr ""
+
+#: field.mp.goods_payment.label:3016 field.mbp.goods_payment.label:3047
+#: field.mndp.goods_payment.label:3074
msgid "Goods Payment Detail"
msgstr ""
-#: field.au.notes.label:699
+#: field.au.notes.label:1271
msgid "User Notes"
msgstr ""
-#: field.asc.id.label:1341 field.actsc.id.label:1371
-msgid "Stat Cat ID"
+#: field.acn.notes.label:984
+msgid "Notes"
msgstr ""
-#: field.aus.value.label:212 field.asce.value.label:2164
+#: class.rmsr.label:3394
+msgid "Fast Simple Record Extracts"
+msgstr ""
+
+#: field.vqbra.attr_value.label:223 field.vqara.attr_value.label:348
+#: field.aus.value.label:677 field.asce.value.label:3133
msgid "Value"
msgstr ""
-#: field.bre.tcn_source.label:527 field.rssr.tcn_source.label:2393
-#: field.rsr.tcn_source.label:2416
+#: field.bre.tcn_source.label:1068 field.rmsr.tcn_source.label:3402
+#: field.rssr.tcn_source.label:3424 field.rsr.tcn_source.label:3447
msgid "TCN Source"
msgstr ""
-#: class.rsce1.label:2563
+#: class.rsce1.label:3607
msgid "CAT1 Entry"
msgstr ""
-#: field.mrd.enc_level.label:902
+#: field.mrd.enc_level.label:1506
msgid "ELvl"
msgstr ""
-#: field.ahtc.dest.label:2177
+#: field.ahtc.dest.label:3146
msgid "Destination Library"
msgstr ""
-#: class.aufh.label:1918
+#: class.aufh.label:2862
msgid "Unfulfilled Hold Targets"
msgstr ""
-#: field.rccc.dewey_range_hundreds.label:2545
+#: field.rocit.creator.label:3801
+msgid "Creator"
+msgstr ""
+
+#: field.rccc.dewey_range_hundreds.label:3589
msgid "Dewey Range -- Hundreds"
msgstr ""
-#: field.rccc.copy_id.label:2523
+#: field.rccc.copy_id.label:3567
msgid "Copy Link"
msgstr ""
-#: field.ahr.selection_ou.label:1247
+#: field.ahr.selection_ou.label:2140
msgid "Selection Locus"
msgstr ""
-#: field.rsr.series_statement.label:2424
+#: field.rsr.series_statement.label:3455
msgid "Series Statement (normalized)"
msgstr ""
-#: class.rccbs.label:2591
+#: class.rccbs.label:3635
msgid "Classic Open Transaction Summary"
msgstr ""
-#: class.cnct.label:1452
+#: class.cnct.label:2356
msgid "Non-cataloged Type"
msgstr ""
-#: field.asvq.question.label:153 field.asvr.question.label:300
-#: field.asva.question.label:1878
+#: field.asvq.question.label:618 field.asvr.question.label:773
+#: field.asva.question.label:2822
msgid "Question"
msgstr ""
-#: field.ahtc.prev_hop.label:2182
+#: field.ahtc.prev_hop.label:3151
msgid "Previous Stop"
msgstr ""
-#: field.atc.source.label:278 field.iatc.source.label:2661
-msgid "Source"
+#: field.bre.tcn_value.label:1069 field.rmsr.tcn_value.label:3403
+#: field.rssr.tcn_value.label:3425 field.rsr.tcn_value.label:3448
+msgid "TCN Value"
msgstr ""
-#: class.ahn.label:1104
+#: class.ahn.label:1868
msgid "Hold Notification"
msgstr ""
-#: field.rcirct.id.label:2459
+#: field.rcirct.id.label:3490 field.rmocbbol.id.label:3828
+#: field.rmocbbcol.id.label:3858 field.rmocbbhol.id.label:3892
msgid "Circulation ID"
msgstr ""
-#: field.aua.county.label:954
-msgid "County"
+#: field.circ.opac_renewal.label:1650 field.combcirc.opac_renewal.label:1705
+#: field.acirc.opac_renewal.label:1772 field.rodcirc.opac_renewal.label:3737
+msgid "OPAC Renewal"
msgstr ""
-#: field.rsr.topic_subject.label:2428
+#: field.rsr.topic_subject.label:3459
msgid "Topic Subjects (normalized)"
msgstr ""
-#: field.rccbs.barcode.label:2606
+#: field.rccbs.barcode.label:3650
msgid "User Barcode"
msgstr ""
-#: field.au.profile.label:690
+#: field.au.profile.label:1262
msgid "Main (Profile) Permission Group"
msgstr ""
-#: field.mfr.subfield.label:774
+#: field.mfr.subfield.label:1362
msgid "Subfield"
msgstr ""
-#: field.acn.creator.label:450 field.acp.creator.label:1791
+#: field.acn.creator.label:976 field.acp.creator.label:2711
msgid "Creating User"
msgstr ""
-#: field.acp.holdable.label:1800
+#: field.acp.holdable.label:2720
msgid "Is Holdable"
msgstr ""
-#: field.acn.editor.label:453 field.bre.editor.label:520
-#: field.acp.editor.label:1798
+#: field.rocit.tcn_value.label:3807
+msgid "TCN"
+msgstr ""
+
+#: field.acn.editor.label:979 field.bre.editor.label:1061
+#: field.acp.editor.label:2718
msgid "Last Editing User"
msgstr ""
-#: field.circ.max_fine.label:1018 field.crmf.amount.label:1845
-#: field.rodcirc.max_fine.label:2691
+#: field.circ.max_fine.label:1648 field.combcirc.max_fine.label:1703
+#: field.acirc.max_fine.label:1770 field.crmf.amount.label:2781
+#: field.rodcirc.max_fine.label:3735
msgid "Max Fine Amount"
msgstr ""
-#: field.ahtc.copy_status.label:2176
+#: field.ahtc.copy_status.label:3145
msgid "Copy Status at Transit"
msgstr ""
-#: field.aou.settings.label:1295
+#: field.aou.settings.label:2188
msgid "Settings"
msgstr ""
-#: field.ahr.hold_type.label:1237
+#: field.ahr.hold_type.label:2130
msgid "Hold Type"
msgstr ""
-#: field.mrd.bib_level.label:898
-msgid "BLvl"
+#: field.vqbr.queue.label:172 field.vqar.queue.label:299
+msgid "Queue"
msgstr ""
-#: field.mp.credit_payment.label:2043 field.mbp.credit_payment.label:2074
+#: field.mp.credit_payment.label:3012 field.mbp.credit_payment.label:3043
msgid "Credit Payment Detail"
msgstr ""
-#: field.ahr.request_time.label:1244
+#: field.ahr.request_time.label:2137
msgid "Request Date/Time"
msgstr ""
-#: field.rccbs.xact_finish.label:2610
+#: field.vbm.queued_record.label:245 field.vam.queued_record.label:370
+msgid "Queued Record"
+msgstr ""
+
+#: field.rccbs.xact_finish.label:3654
msgid "Transaction End Date/Time"
msgstr ""
-#: class.crahp.label:1828
-msgid "Age Hold Protection Rule"
+#: field.mrd.bib_level.label:1502
+msgid "BLvl"
msgstr ""
-#: field.aou.workstations.label:1298
+#: field.aou.workstations.label:2191
msgid "Workstations"
msgstr ""
-#: field.au.hold_requests.label:653
+#: field.au.hold_requests.label:1225
msgid "All Hold Requests"
msgstr ""
-#: field.au.master_account.label:684
+#: field.au.master_account.label:1256
msgid "Is Group Lead Account"
msgstr ""
-#: field.ahr.frozen.label:1256
-msgid "Currently Frozen"
+#: class.ccmm.label:501
+msgid "Circulation Matrix Matchpoint"
+msgstr ""
+
+#: field.aihu.use_time.label:707 field.ancihu.use_time.label:724
+msgid "Use Date/Time"
msgstr ""
-#: field.mfr.value.label:776
+#: field.mfr.value.label:1364
msgid "Normalized Value"
msgstr ""
-#: field.mcrp.accepting_usr.label:1419 field.mwp.accepting_usr.label:1647
-#: field.mgp.accepting_usr.label:1668 field.mckp.accepting_usr.label:1756
+#: field.ccmt.circulate.label:554
+msgid "Circulate?"
+msgstr ""
+
+#: class.cxt.label:887
+msgid "XML/XSLT Transform Definition"
+msgstr ""
+
+#: field.mcrp.accepting_usr.label:2323 field.mwp.accepting_usr.label:2567
+#: field.mgp.accepting_usr.label:2588 field.mckp.accepting_usr.label:2676
msgid "Accepting Staff Member"
msgstr ""
-#: field.rccc.demographic_general_division.label:2532
+#: field.rccc.demographic_general_division.label:3576
msgid "Patron Age Demographic"
msgstr ""
-#: field.rsr.corporate_subject.label:2432
+#: class.ccmcmt.label:565
+msgid "Circulation Matrix Circulation Modifier Subtest"
+msgstr ""
+
+#: field.rsr.corporate_subject.label:3463
msgid "Corporate Name Subjects (normalized)"
msgstr ""
-#: class.rodcirc.label:2675
+#: field.acp.dummy_author.label:2715
+msgid "Precat Dummy Author"
+msgstr ""
+
+#: class.rodcirc.label:3719
msgid "Overdue Circulation"
msgstr ""
-#: field.bre.active.label:515
+#: field.bre.active.label:1056
msgid "Is Active?"
msgstr ""
-#: field.crahp.prox.label:1836
+#: field.ccmm.org_unit.label:508
+msgid "Org Unit"
+msgstr ""
+
+#: field.crahp.prox.label:2772
msgid "Allowed Proximity"
msgstr ""
-#: field.ahr.fulfillment_time.label:1236
+#: field.ahr.fulfillment_time.label:2129
msgid "Fulfillment Date/Time"
msgstr ""
-#: field.mg.note.label:1529 field.mwp.note.label:1651
-#: field.mgp.note.label:1672 field.mckp.note.label:1762
-#: field.mp.note.label:2036 field.mbp.note.label:2067
-#: field.mndp.note.label:2098 field.mdp.note.label:2121
-#: field.mb.note.label:2206
+#: field.mg.note.label:2441 field.mwp.note.label:2571
+#: field.mgp.note.label:2592 field.mckp.note.label:2682
+#: field.mp.note.label:3005 field.mbp.note.label:3036
+#: field.mndp.note.label:3067 field.mdp.note.label:3090
+#: field.mb.note.label:3185
msgid "Note"
msgstr ""
-#: field.aua.id.label:955
+#: class.vqbr.label:163
+msgid "Queued Bib Record"
+msgstr ""
+
+#: field.rocit.stat_cat_1.label:3791
+msgid "Legacy Stat Cat 1"
+msgstr ""
+
+#: field.rocit.stat_cat_2.label:3792
+msgid "Legacy Stat Cat 2"
+msgstr ""
+
+#: field.aua.id.label:1569
msgid "Address ID"
msgstr ""
-#: field.rccbs.patron_county.label:2625
+#: field.rccbs.patron_county.label:3669
msgid "User County"
msgstr ""
-#: field.acn.id.label:454
+#: field.rocit.circ_lib.label:3800
+msgid "Circ Lib"
+msgstr ""
+
+#: field.chmt.include_frozen_holds.label:539
+msgid "Max includes Frozen"
+msgstr ""
+
+#: field.acn.id.label:980
msgid "Call Number/Volume ID"
msgstr ""
-#: class.asc.label:1335
-msgid "Asset Statistical Category"
+#: field.aout.opac_label.label:2382
+msgid "OPAC Label"
+msgstr ""
+
+#: class.vqar.label:290
+msgid "Queued Authority Record"
msgstr ""
-#: class.au.label:645
+#: class.au.label:1217
msgid "ILS User"
msgstr ""
-#: class.asvq.label:145
+#: class.asvq.label:610
msgid "User Survey Question"
msgstr ""
-#: field.circ.phone_renewal.label:1021 field.rodcirc.phone_renewal.label:2694
+#: field.circ.phone_renewal.label:1651 field.combcirc.phone_renewal.label:1706
+#: field.acirc.phone_renewal.label:1773 field.rodcirc.phone_renewal.label:3738
msgid "Phone Renewal"
msgstr ""
-#: field.mbt.payments.label:1573
-msgid "Payment Line Items"
+#: field.combcirc.usr_home_ou.label:1723 field.acirc.usr_home_ou.label:1790
+msgid "Patron Home Library"
+msgstr ""
+
+#: field.chmm.requestor_grp.label:478
+msgid "Requestor Permission Group"
msgstr ""
-#: field.bre.quality.label:525
+#: field.bre.quality.label:1066
msgid "Overall Quality"
msgstr ""
-#: field.au.active.label:661
+#: field.au.active.label:1233 field.sra.active.label:1967
msgid "Active"
msgstr ""
-#: field.au.addresses.label:650
+#: field.mdp.cash_payment.label:3097
+msgid "Cash Payment"
+msgstr ""
+
+#: class.cblvl.label:1943
+msgid "Bib Level Map"
+msgstr ""
+
+#: field.cxt.xslt.label:896
+msgid "XSLT"
+msgstr ""
+
+#: field.au.addresses.label:1222
msgid "All Addresses"
msgstr ""
-#: field.mdp.cash_payment.label:2128
-msgid "Cash Payment"
+#: class.sra.label:1961
+msgid "Relevance Adjustment"
+msgstr ""
+
+#: field.ccmm.usr_age_upper_bound.label:516
+msgid "User Age: Upper Bound"
msgstr ""
-#: field.ahr.fulfillment_lib.label:1234
+#: field.ahr.fulfillment_lib.label:2127
msgid "Fulfilling Library"
msgstr ""
-#: field.aua.post_code.label:956
+#: field.aua.post_code.label:1570
msgid "Postal Code"
msgstr ""
-#: field.mb.voider.label:2209
+#: field.rocit.shelving_location.label:3790
+msgid "Shelving Location Name"
+msgstr ""
+
+#: field.mb.voider.label:3188
msgid "Voiding Staff Member"
msgstr ""
-#: field.mcrp.note.label:1423
+#: field.mcrp.note.label:2327
msgid "Payment Note"
msgstr ""
-#: field.mbts.total_paid.label:176 field.rccbs.total_paid.label:2613
+#: field.amtr.matchpoint.label:128 field.chmm.id.label:470
+#: field.ccmm.id.label:506 field.chmt.matchpoint.label:534
+#: field.ccmt.matchpoint.label:553 field.ccmcmt.matchpoint.label:571
+#: field.ccmrs.matchpoint.label:586
+msgid "Matchpoint ID"
+msgstr ""
+
+#: field.mbts.total_paid.label:641 field.rccbs.total_paid.label:3657
msgid "Total Paid"
msgstr ""
-#: field.ahtc.transit_copy.label:2186
+#: field.vqbra.field.label:222 field.vqara.field.label:347
+msgid "Field"
+msgstr ""
+
+#: field.ahtc.transit_copy.label:3155
msgid "Base Transit"
msgstr ""
-#: field.aufh.fail_time.label:1925
+#: field.ccmt.max_fines.label:557
+msgid "Max Fines"
+msgstr ""
+
+#: field.aufh.fail_time.label:2869
msgid "Retargeting Date/Time"
msgstr ""
-#: field.au.performed_circulations.label:703 None:730
+#: field.au.performed_circulations.label:1275 None:1302
msgid "Circulations Performed as Staff"
msgstr ""
-#: field.asvr.id.label:299 field.asva.id.label:1877
+#: field.asvr.id.label:772 field.asva.id.label:2821
msgid "Answer ID"
msgstr ""
-#: field.mcrp.payment.label:1427 field.mwp.payment.label:1654
-#: field.mgp.payment.label:1675 field.mckp.payment.label:1765
+#: field.mcrp.payment.label:2331 field.mwp.payment.label:2574
+#: field.mgp.payment.label:2595 field.mckp.payment.label:2685
msgid "Payment link"
msgstr ""
-#: field.aua.city.label:952
+#: field.rmobbol.billing_types.label:3845
+#: field.rmobbcol.billing_types.label:3878
+#: field.rmobbhol.billing_types.label:3912
+msgid "Billing Types"
+msgstr ""
+
+#: field.aua.city.label:1566
msgid "City"
msgstr ""
-#: field.acpl.holdable.label:1127
+#: field.acpl.holdable.label:1891
msgid "Is Holdable?"
msgstr ""
-#: field.bre.create_date.label:516 field.au.create_date.label:667
-#: field.circ.create_time.label:1031
+#: field.bre.create_date.label:1057 field.au.create_date.label:1239
+#: field.circ.create_time.label:1661 field.combcirc.create_time.label:1716
+#: field.acirc.create_time.label:1783
msgid "Record Creation Date/Time"
msgstr ""
-#: field.rccc.item_form.label:2528
-msgid "MARC Form"
+#: field.acp.holds.label:2732
+msgid "Holds"
msgstr ""
-#: field.acp.holds.label:1811
-msgid "Holds"
+#: field.chmm.request_ou.label:473
+msgid "Request Library"
msgstr ""
-#: field.rccc.patron_city.label:2540
+#: field.rccc.patron_city.label:3584
msgid "Patron City"
msgstr ""
-#: field.aou.children.label:1279
+#: field.aou.children.label:2172
msgid "Subordinate Organizational Units"
msgstr ""
-#: field.asva.responses.label:1875
+#: field.asva.responses.label:2819
msgid "Responses using this Answer"
msgstr ""
-#: field.ahr.thaw_date.label:1257
+#: field.ahr.thaw_date.label:2150
msgid "Thaw Date (if frozen)"
msgstr ""
-#: class.circ.label:1002 field.rccc.id.label:2518
-msgid "Circulation"
-msgstr ""
-
-#: field.asvr.usr.label:303
+#: field.asvr.usr.label:776
msgid "Responding User"
msgstr ""
-#: class.rccc.label:2513
+#: class.rccc.label:3557
msgid "Classic Circulation View"
msgstr ""
-#: field.aihu.use_time.label:242 field.ancihu.use_time.label:259
-msgid "Use Date/Time"
+#: field.ahr.frozen.label:2149
+msgid "Currently Frozen"
msgstr ""
-#: field.aihu.id.label:238 field.ancihu.id.label:255
+#: field.aihu.id.label:703 field.ancihu.id.label:720
msgid "Use ID"
msgstr ""
-#: field.atc.dest_recv_time.label:274 field.ahtc.dest_recv_time.label:2178
-#: field.iatc.dest_recv_time.label:2657
+#: field.vbq.complete.label:147 field.vaq.complete.label:273
+msgid "Complete"
+msgstr ""
+
+#: field.atc.dest_recv_time.label:739 field.ahtc.dest_recv_time.label:3147
+#: field.iatc.dest_recv_time.label:3701
msgid "Receive Date/Time"
msgstr ""
-#: field.asv.poll.label:1191
+#: field.asv.poll.label:2068
msgid "Poll Style?"
msgstr ""
-#: field.rssr.pubdate.label:2398 field.rsr.pubdate.label:2422
+#: field.rmsr.pubdate.label:3407 field.rssr.pubdate.label:3429
+#: field.rsr.pubdate.label:3453
msgid "Publication Year (normalized)"
msgstr ""
-#: field.cnct.id.label:1458
+#: field.cnct.id.label:2362
msgid "Non-cat Type ID"
msgstr ""
-#: field.asva.answer.label:1876
+#: field.asva.answer.label:2820
msgid "Answer Text"
msgstr ""
-#: field.acpn.owning_copy.label:755
+#: field.aou.holds_address.label:2174
+msgid "Holds Receiving Address"
+msgstr ""
+
+#: field.acpn.owning_copy.label:1327
msgid "Copy"
msgstr ""
-#: field.aout.can_have_vols.label:1474
+#: field.aout.can_have_vols.label:2378
msgid "Can Have Volumes?"
msgstr ""
-#: field.bre.id.label:522 field.aufh.id.label:1927 field.rssr.id.label:2390
-#: field.rsr.id.label:2412
+#: field.vqbr.id.label:168 field.vqar.id.label:295 field.bre.id.label:1063
+#: field.aufh.id.label:2871 field.rmsr.id.label:3399 field.rssr.id.label:3421
+#: field.rsr.id.label:3443
msgid "Record ID"
msgstr ""
-#: class.cam.label:422
+#: class.cam.label:932
msgid "Audience Map"
msgstr ""
-#: field.au.email.label:671 field.aou.email.label:1289
+#: field.rocit.stop_fines.label:3809
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: field.au.email.label:1243 field.aou.email.label:2182
msgid "Email Address"
msgstr ""
-#: field.clfm.description.label:1637
+#: field.clfm.description.label:2549
msgid "LitF Description"
msgstr ""
-#: field.au.passwd.label:687
+#: field.au.passwd.label:1259
msgid "Password (obfuscated)"
msgstr ""
-#: field.aihu.item.label:239 class.acp.label:1775
-msgid "Item"
+#: field.mrd.audience.label:1501
+msgid "Audn"
msgstr ""
-#: field.cam.value.label:429
+#: field.cam.value.label:939
msgid "Audience"
msgstr ""
-#: field.aout.parent.label:1479
+#: field.aout.parent.label:2383
msgid "Parent Type"
msgstr ""
-#: class.rud.label:2441
+#: class.rud.label:3472
msgid "User Demographics"
msgstr ""
-#: field.atc.prev_hop.label:277 field.iatc.prev_hop.label:2660
+#: field.atc.prev_hop.label:742 field.iatc.prev_hop.label:3704
msgid "Previous Hop (unused)"
msgstr ""
-#: field.aou.users.label:1292
+#: field.vqbrad.id.label:197 field.vqarad.id.label:322 field.sra.id.label:1966
+#: field.ssr.id.label:2044
+msgid "ID"
+msgstr ""
+
+#: field.aou.users.label:2185
msgid "Users"
msgstr ""
-#: field.circ.usr.label:1028 field.ancc.patron.label:1894
-#: field.rodcirc.usr.label:2701
+#: field.circ.usr.label:1658 field.ancc.patron.label:2838
+#: field.rodcirc.usr.label:3745
msgid "Patron"
msgstr ""
-#: class.mcrp.label:1414
+#: class.mcrp.label:2318
msgid "House Credit Payment"
msgstr ""
-#: field.acp.dummy_author.label:1795
-msgid "Precat Dummy Author"
+#: field.atc.source.label:743 field.iatc.source.label:3705
+msgid "Source"
+msgstr ""
+
+#: field.chmt.age_hold_protect_rule.label:540
+msgid "Copy Age Hold Protection Rule"
+msgstr ""
+
+#: field.cxt.prefix.label:895
+msgid "Namespace Prefix"
msgstr ""
-#: field.au.cards.label:651
+#: field.au.cards.label:1223
msgid "All Library Cards"
msgstr ""
-#: field.rxpt.voided.label:2502
+#: field.rxpt.voided.label:3533
msgid "Voided (Returned) Paid Amount"
msgstr ""
-#: field.mbts.last_billing_note.label:169
-#: field.rccbs.last_billing_note.label:2621
+#: class.rmocbbhol.label:3887
+msgid "Open Circulation Billing by User Home Library and Owning Library"
+msgstr ""
+
+#: field.mbts.last_billing_note.label:634
+#: field.rccbs.last_billing_note.label:3665
msgid "Last Billing Note"
msgstr ""
-#: field.rccbs.billing_location.label:2600
+#: field.rccbs.billing_location.label:3644
msgid "Billing Location Link"
msgstr ""
-#: field.mrd.cat_form.label:899
+#: field.mrd.cat_form.label:1503
msgid "Cat Form"
msgstr ""
-#: field.atc.dest.label:273 field.iatc.dest.label:2656
+#: class.combcirc.label:1687
+msgid "Combined Aged and Active Circulations"
+msgstr ""
+
+#: field.atc.dest.label:738 field.iatc.dest.label:3700
msgid "Destination"
msgstr ""
-#: field.au.evening_phone.label:672
+#: field.au.evening_phone.label:1244
msgid "Evening Phone"
msgstr ""
-#: field.au.ident_type.label:678
+#: field.au.ident_type.label:1250
msgid "Primary Identification Type"
msgstr ""
-#: class.mndp.label:2091
+#: class.rmobbol.label:3839
+msgid "Open Circulation Balance by Owning Library"
+msgstr ""
+
+#: field.mg.billing_location.label:2439
+msgid "Billing Location"
+msgstr ""
+
+#: field.vqbr.imported_as.label:174 field.vqar.imported_as.label:300
+msgid "Final Target Record"
+msgstr ""
+
+#: class.mndp.label:3060
msgid "Payments: Non-drawer Staff"
msgstr ""
-#: field.pgt.name.label:1859
+#: field.pgt.name.label:2795
msgid "Group Name"
msgstr ""
-#: field.mckp.xact.label:1764
+#: field.aout.can_have_users.label:2377
+msgid "Can Have Users?"
+msgstr ""
+
+#: field.rocit.stat_cat_2_value.label:3794
+msgid "Legacy Stat Cat 2 Value"
+msgstr ""
+
+#: field.chmt.distance_is_from_owner.label:536
+msgid "Range is from Owning Lib?"
+msgstr ""
+
+#: field.rocit.use_count.label:3788
+msgid "Use Count"
+msgstr ""
+
+#: field.chmm.item_circ_ou.label:476
+msgid "Item Circ Library"
+msgstr ""
+
+#: field.mckp.xact.label:2684
msgid "Transaction link"
msgstr ""
-#: field.mbt.circulation.label:1571
+#: field.mbt.circulation.label:2483
msgid "Circulation Billing link"
msgstr ""
-#: field.bre.author_field_entries.label:535
+#: class.vqara.label:340
+msgid "Queued Authority Record Attribute"
+msgstr ""
+
+#: field.vqbr.purpose.label:175 field.vaq.queue_purpose.label:275
+#: field.vqar.purpose.label:301
+msgid "Purpose"
+msgstr ""
+
+#: field.bre.author_field_entries.label:1076
msgid "Indexed Author Field Entries"
msgstr ""
-#: field.aou.phone.label:1290
+#: field.vqbrad.remove.label:201 field.vqarad.remove.label:326
+msgid "Remove RegExp"
+msgstr ""
+
+#: field.aou.phone.label:2183
msgid "Phone Number"
msgstr ""
-#: field.acn.create_date.label:449
+#: field.acn.create_date.label:975
msgid "Create Date/Time"
msgstr ""
-#: class.atc.label:267
+#: class.atc.label:732
msgid "Copy Transit"
msgstr ""
-#: field.au.super_user.label:694
+#: field.au.super_user.label:1266
msgid "Is Super User"
msgstr ""
-#: class.mfr.label:765
+#: class.mfr.label:1353
msgid "Flattened MARC Fields"
msgstr ""
-#: field.acp.circ_as_type.label:1785
+#: class.acpn.label:1319
+msgid "Copy Note"
+msgstr ""
+
+#: field.chmt.holdable.label:535
+msgid "Holdable?"
+msgstr ""
+
+#: field.acp.circ_as_type.label:2705
msgid "Circulation Type (MARC)"
msgstr ""
-#: field.auoi.staff.label:108
+#: field.auoi.staff.label:397
msgid "Staff Member"
msgstr ""
-#: field.aws.id.label:126
+#: field.aws.id.label:415
msgid "Workstation ID"
msgstr ""
-#: class.acpn.label:747
-msgid "Copy Note"
+#: class.vbq.label:139
+msgid "Import/Overlay Bib Queue"
msgstr ""
-#: field.atc.persistant_transfer.label:276
-#: field.iatc.persistant_transfer.label:2659
+#: field.atc.persistant_transfer.label:741
+#: field.iatc.persistant_transfer.label:3703
msgid "Is Persistent? (unused)"
msgstr ""
-#: field.rccc.patron_zip.label:2541
+#: field.rccc.patron_zip.label:3585
msgid "Patron ZIP Code"
msgstr ""
-#: field.ahtc.persistant_transfer.label:2181
+#: field.ahtc.persistant_transfer.label:3150
msgid "Is Persistent?"
msgstr ""
-#: field.au.net_access_level.label:685
+#: field.au.net_access_level.label:1257
msgid "Internet Access Level"
msgstr ""
-#: field.ancc.item_type.label:1893
-msgid "Non-cat Item Type"
+#: class.rmocbbcol.label:3853
+msgid "Open Circulation Billing by Circulating Library and Owning Library"
msgstr ""
-#: field.rccbs.patron_zip.label:2627
+#: field.rccbs.patron_zip.label:3671
msgid "User ZIP Code"
msgstr ""
-#: field.mcrp.payment_type.label:1426 field.mwp.payment_type.label:1655
-#: field.mgp.payment_type.label:1676 field.mckp.payment_type.label:1766
-#: field.mp.payment_type.label:2038 field.mbp.payment_type.label:2069
-#: field.mndp.payment_type.label:2100 field.mdp.payment_type.label:2123
+#: field.mcrp.payment_type.label:2330 field.mwp.payment_type.label:2575
+#: field.mgp.payment_type.label:2596 field.mckp.payment_type.label:2686
+#: field.mp.payment_type.label:3007 field.mbp.payment_type.label:3038
+#: field.mndp.payment_type.label:3069 field.mdp.payment_type.label:3092
msgid "Payment Type"
msgstr ""
-#: field.mdp.credit_card_payment.label:2129
+#: field.mdp.credit_card_payment.label:3098
msgid "Credit Card Payment"
msgstr ""
-#: field.au.usrgroup.label:695
+#: field.au.usrgroup.label:1267
msgid "Family Linkage or other Group"
msgstr ""
-#: field.ahn.id.label:1110
+#: field.ahn.id.label:1874
msgid "Notification ID"
msgstr ""
-#: field.rccbs.last_billing_ts.label:2620
+#: field.rccbs.last_billing_ts.label:3664
msgid "Last Billing Date/Time"
msgstr ""
-#: field.mcrp.amount_collected.label:1421
-#: field.mwp.amount_collected.label:1649 field.mgp.amount_collected.label:1670
-#: field.mckp.amount_collected.label:1758
+#: field.mcrp.amount_collected.label:2325
+#: field.mwp.amount_collected.label:2569 field.mgp.amount_collected.label:2590
+#: field.mckp.amount_collected.label:2678
msgid "Amount Collected"
msgstr ""
-#: field.ahr.current_copy.label:1231
+#: field.ahr.current_copy.label:2124
msgid "Currently Targeted Copy"
msgstr ""
-#: field.aout.depth.label:1475
+#: field.aout.depth.label:2379
msgid "Type Depth"
msgstr ""
-#: field.rccc.stat_cat_1_value.label:2548
+#: field.rccc.stat_cat_1_value.label:3592
msgid "Legacy CAT1 Value"
msgstr ""
-#: class.auoi.label:101
+#: class.auoi.label:390
msgid "User Sharing Opt-in"
msgstr ""
-#: field.rccc.profile_group.label:2531
+#: field.combcirc.usr_profile.label:1724 field.acirc.usr_profile.label:1791
+#: field.rccc.profile_group.label:3575
msgid "Patron Profile Group"
msgstr ""
-#: field.rccbs.usr_home_ou_shortname.label:2602
+#: field.rccbs.usr_home_ou_shortname.label:3646
msgid "User Home Library Short (Policy) Name"
msgstr ""
-#: field.au.dob.label:670 field.rud.dob.label:2447
+#: field.au.dob.label:1242 field.rud.dob.label:3478
msgid "Date of Birth"
msgstr ""
-#: field.mckp.cash_drawer.label:1759
-msgid "Workstation link"
-msgstr ""
-
-#: field.aun.title.label:195 field.acpn.title.label:757
+#: field.aun.title.label:660 field.acpn.title.label:1329
msgid "Note Title"
msgstr ""
-#: field.auoi.id.label:106
+#: field.auoi.id.label:395
msgid "Opt-in ID"
msgstr ""
-#: field.asvq.answers.label:150
+#: field.asvq.answers.label:615
msgid "Answers"
msgstr ""
-#: field.bre.creator.label:517
+#: field.combcirc.copy_owning_lib.label:1728
+#: field.acirc.copy_owning_lib.label:1795
+msgid "Copy Owning Library"
+msgstr ""
+
+#: field.ccmcmt.items_out.label:572
+msgid "Items Out"
+msgstr ""
+
+#: field.bre.creator.label:1058
msgid "Record Creator"
msgstr ""
-#: field.acpl.id.label:1128
+#: field.vbm.field_type.label:248
+msgid "Field Type"
+msgstr ""
+
+#: field.acpl.id.label:1892
msgid "Location ID"
msgstr ""
-#: field.rccc.owning_lib_name.label:2525
+#: field.rocit.patron_barcode.label:3811
+msgid "Patron Barcode"
+msgstr ""
+
+#: field.rccc.owning_lib_name.label:3569
msgid "Owning Library Short (Policy) Name"
msgstr ""
-#: class.ancc.label:1885
+#: class.ancc.label:2829
msgid "Non-cataloged Circulation"
msgstr ""
-#: class.asva.label:1870
+#: class.asva.label:2814
msgid "Survey Answer"
msgstr ""
-#: class.mbt.label:1561 field.mp.xact.label:2039 field.mbp.xact.label:2070
-#: field.mndp.xact.label:2101 field.mdp.xact.label:2124
+#: class.mbt.label:2473 field.mp.xact.label:3008 field.mbp.xact.label:3039
+#: field.mndp.xact.label:3070 field.mdp.xact.label:3093
msgid "Billable Transaction"
msgstr ""
-#: field.rccc.patron_home_lib.label:2537
+#: field.rccc.patron_home_lib.label:3581
msgid "Patron Home Library Link"
msgstr ""
-#: field.aou.parent_ou.label:1287
-msgid "Parent Organizational Unit"
+#: field.ahr.transit.label:2122
+msgid "Transit"
msgstr ""
-#: field.circ.billings.label:1032 field.rodcirc.billings.label:2704
+#: field.circ.billings.label:1662 field.combcirc.billings.label:1717
+#: field.acirc.billings.label:1784 field.rodcirc.billings.label:3748
msgid "Transaction Billings"
msgstr ""
-#: field.au.photo_url.label:688
+#: field.au.photo_url.label:1260
msgid "Photo URL"
msgstr ""
-#: class.mp.label:2029
+#: class.mp.label:2998
msgid "Payments: All"
msgstr ""
-#: field.asv.questions.label:1183
+#: field.asv.questions.label:2060
msgid "Questions"
msgstr ""
-#: field.cifm.code.label:438
+#: field.cifm.code.label:956
msgid "Item Form Code"
msgstr ""
-#: field.clfm.value.label:1638
+#: field.clfm.value.label:2550
msgid "LitF Name"
msgstr ""
-#: field.aun.value.label:197 field.acpn.value.label:758
+#: field.aun.value.label:662 field.acpn.value.label:1330
msgid "Note Content"
msgstr ""
-#: field.asv.start_date.label:1193
+#: field.asv.start_date.label:2070
msgid "Survey Start Date/Time"
msgstr ""
-#: field.au.checkouts.label:652
+#: field.au.checkouts.label:1224
msgid "All Circulations"
msgstr ""
-#: field.aws.name.label:127
+#: field.aws.name.label:416
msgid "Workstation Name"
msgstr ""
-#: field.mckp.check_number.label:1760
+#: field.mckp.check_number.label:2680
msgid "Check Number"
msgstr ""
-#: field.rsr.summary.label:2425
+#: field.rsr.summary.label:3456
msgid "Summary (normalized)"
msgstr ""
-#: field.au.ident_value.label:680
+#: field.vbq.id.label:144 field.vaq.id.label:270
+msgid "Queue ID"
+msgstr ""
+
+#: field.au.ident_value.label:1252
msgid "Primary Identification"
msgstr ""
-#: field.ahr.fulfillment_staff.label:1235
+#: field.sra.bump.label:1969
+msgid "Bump Type"
+msgstr ""
+
+#: field.ahr.fulfillment_staff.label:2128
msgid "Fulfilling Staff"
msgstr ""
-#: field.mrd.char_encoding.label:900
+#: field.mrd.char_encoding.label:1504
msgid "Character Encoding"
msgstr ""
-#: field.mp.work_payment.label:2045 field.mbp.work_payment.label:2076
-#: field.mndp.work_payment.label:2103
+#: field.mp.work_payment.label:3014 field.mbp.work_payment.label:3045
+#: field.mndp.work_payment.label:3072
msgid "Work Payment Detail"
msgstr ""
-#: field.ancc.id.label:1892
+#: field.erfcc.circ_count.label:3547
+msgid "Total Circulation Count"
+msgstr ""
+
+#: field.ancc.id.label:2836
msgid "Non-cat Circulation ID"
msgstr ""
-#: field.auoi.usr.label:109 field.aun.usr.label:196 field.aus.usr.label:211
-#: field.aua.usr.label:960 field.ac.usr.label:1359 field.mg.usr.label:1530
-#: field.mbt.usr.label:1567 field.actscecm.target_usr.label:1958
+#: field.auoi.usr.label:398 field.aun.usr.label:661 field.aus.usr.label:676
+#: field.aua.usr.label:1574 field.ac.usr.label:2263 field.mg.usr.label:2442
+#: field.mbt.usr.label:2479 field.actscecm.target_usr.label:2902
msgid "User"
msgstr ""
-#: field.mg.billings.label:1533
+#: field.aua.street1.label:1572
+msgid "Street (1)"
+msgstr ""
+
+#: field.mg.billings.label:2445
msgid "Billings"
msgstr ""
-#: field.mrd.lit_form.label:907
+#: field.mrd.lit_form.label:1511
msgid "LitF"
msgstr ""
-#: field.rccbs.billing_location_name.label:2599
+#: field.rccbs.billing_location_name.label:3643
msgid "Billing Location Name"
msgstr ""
-#: field.circ.stop_fines.label:1025 field.rodcirc.stop_fines.label:2698
+#: field.circ.stop_fines.label:1655 field.combcirc.stop_fines.label:1710
+#: field.acirc.stop_fines.label:1777 field.rodcirc.stop_fines.label:3742
msgid "Fine Stop Reason"
msgstr ""
-#: field.acp.ref.label:1806
-msgid "Is Reference"
+#: field.mbt.payments.label:2485
+msgid "Payment Line Items"
+msgstr ""
+
+#: field.cxt.namespace_uri.label:894
+msgid "Namespace URI"
+msgstr ""
+
+#: field.sra.multiplier.label:1970
+msgid "Multiplier"
msgstr ""
-#: field.aua.valid.label:961
+#: class.rmobbhol.label:3905
+msgid "Open Circulation Balance by User Home Library and Owning Library"
+msgstr ""
+
+#: field.aua.valid.label:1575
msgid "Valid Address?"
msgstr ""
-#: field.acp.status.label:1807
+#: field.acp.status.label:2727
msgid "Copy Status"
msgstr ""
-#: field.asvq.survey.label:154 field.asvr.survey.label:302
-#: class.asv.label:1178
+#: field.sra.field.label:1968
+msgid "Index Field"
+msgstr ""
+
+#: field.asvq.survey.label:619 field.asvr.survey.label:775
+#: class.asv.label:2055
msgid "Survey"
msgstr ""
-#: field.mb.id.label:2205
+#: field.mb.id.label:3184
msgid "Billing ID"
msgstr ""
-#: field.aou.circulations.label:1294 field.acp.circulations.label:1810
+#: field.aou.circulations.label:2187 field.acp.circulations.label:2730
msgid "Circulations"
msgstr ""
-#: field.aus.id.label:209
+#: field.aus.id.label:674
msgid "Setting ID"
msgstr ""
-#: field.au.mailing_address.label:683 field.aou.mailing_address.label:1284
+#: field.rmobbol.balance.label:3846 field.rmobbcol.balance.label:3879
+#: field.rmobbhol.balance.label:3913
+msgid "Balance"
+msgstr ""
+
+#: field.au.mailing_address.label:1255 field.aou.mailing_address.label:2177
msgid "Mailing Address"
msgstr ""
-#: field.acn.label.label:455 field.rccc.call_number_label.label:2534
+#: field.rocit.pubdate.label:3781
+msgid "Pubdate"
+msgstr ""
+
+#: field.acn.label.label:981 field.rccc.call_number_label.label:3578
msgid "Call Number Label"
msgstr ""
-#: field.au.standing_penalties.label:656
+#: field.au.standing_penalties.label:1228
msgid "Standing Penalties"
msgstr ""
-#: field.asv.id.label:1187
+#: field.asv.id.label:2064
msgid "Survey ID"
msgstr ""
-#: field.bre.metarecord.label:529 field.rsr.metarecord.label:2413
+#: field.bre.metarecord.label:1070 field.rsr.metarecord.label:3444
msgid "Metarecord"
msgstr ""
-#: field.aout.can_have_users.label:1473
-msgid "Can Have Users?"
+#: field.aua.county.label:1568
+msgid "County"
msgstr ""
-#: field.au.prefix.label:689
+#: field.au.prefix.label:1261
msgid "Prefix"
msgstr ""
-#: field.rccc.patron_county.label:2539
+#: field.rccc.patron_county.label:3583
msgid "Patron County"
msgstr ""
-#: field.actsce.owner.label:1593 field.asce.owner.label:2162
-#: field.rsce1.owner.label:2569 field.rsce2.owner.label:2583
+#: field.actsce.owner.label:2505 field.asce.owner.label:3131
+#: field.rsce1.owner.label:3613 field.rsce2.owner.label:3627
msgid "Entry Owner"
msgstr ""
-#: field.rccc.circ_modifier.label:2524
+#: field.rccc.circ_modifier.label:3568 field.rocit.circ_modifier.label:3789
msgid "Circ Modifier"
msgstr ""
-#: field.rsr.series_title.label:2423
+#: field.rsr.series_title.label:3454
msgid "Series Title (normalized)"
msgstr ""
-#: field.mbt.grocery.label:1570
+#: field.mbt.grocery.label:2482
msgid "Grocery Billing link"
msgstr ""
-#: field.actscecm.stat_cat_entry.label:1957
+#: field.actscecm.stat_cat_entry.label:2901
msgid "Entry Text"
msgstr ""
-#: field.aufh.current_copy.label:1924
+#: field.aufh.current_copy.label:2868
msgid "Non-fulfilling Copy"
msgstr ""
-#: field.acp.location.label:1803 field.rccc.shelving_location.label:2530
+#: field.combcirc.copy_location.label:1727
+#: field.acirc.copy_location.label:1794 field.acp.location.label:2723
+#: field.rccc.shelving_location.label:3574
msgid "Shelving Location"
msgstr ""
-#: field.aou.id.label:1282
+#: field.aou.id.label:2175
msgid "Organizational Unit ID"
msgstr ""
-#: field.ahr.pickup_lib.label:1241
+#: field.chmm.pickup_ou.label:474 field.ahr.pickup_lib.label:2134
msgid "Pickup Library"
msgstr ""
-#: field.cam.description.label:428 field.asv.description.label:1185
-#: field.pgt.description.label:1857
+#: field.vqbrad.description.label:199 field.vqarad.description.label:324
+#: field.ccm.description.label:431 field.cam.description.label:938
+#: field.asv.description.label:2062 field.pgt.description.label:2793
msgid "Description"
msgstr ""
-#: field.bre.keyword_field_entries.label:532
+#: field.bre.keyword_field_entries.label:1073
msgid "Indexed Keyword Field Entries"
msgstr ""
-#: field.aufh.circ_lib.label:1923
+#: field.vqbr.import_time.label:170 field.vqar.import_time.label:297
+msgid "Import Time"
+msgstr ""
+
+#: field.aufh.circ_lib.label:2867
msgid "Non-fulfilling Library"
msgstr ""
-#: field.au.home_ou.label:676
+#: field.au.home_ou.label:1248
msgid "Home Library"
msgstr ""
-#: class.clm.label:368
+#: field.rocit.edit_date.label:3795
+msgid "Edit Date"
+msgstr ""
+
+#: class.clm.label:841
msgid "Language Map"
msgstr ""
-#: field.atc.copy_status.label:272 field.iatc.copy_status.label:2655
+#: field.atc.copy_status.label:737 field.iatc.copy_status.label:3699
msgid "Pretransit Copy Status"
msgstr ""
-#: field.crahp.age.label:1833
+#: field.crahp.age.label:2769
msgid "Item Age"
msgstr ""
-#: field.au.standing.label:692
+#: field.au.standing.label:1264
msgid "Standing (unused)"
msgstr ""
-#: field.rsr.name_subject.label:2431
+#: field.rsr.name_subject.label:3462
msgid "Personal Name Subjects (normalized)"
msgstr ""
-#: field.asv.usr_summary.label:1194
+#: field.asv.usr_summary.label:2071
msgid "Display in User Summary"
msgstr ""
-#: field.ahn.notify_staff.label:1113
+#: field.ahn.notify_staff.label:1877
msgid "Notifying Staff"
msgstr ""
-#: field.aua.country.label:953
+#: field.aua.country.label:1567
msgid "Country"
msgstr ""
-#: field.circ.checkin_time.label:1009 field.rodcirc.checkin_time.label:2682
+#: field.circ.checkin_time.label:1639 field.combcirc.checkin_time.label:1694
+#: field.acirc.checkin_time.label:1761 field.rodcirc.checkin_time.label:3726
msgid "Check In Date/Time"
msgstr ""
-#: field.mg.payments.label:1534
+#: field.mg.payments.label:2446
msgid "Payments"
msgstr ""
-#: field.mbts.last_billing_type.label:171
-#: field.rccbs.last_billing_type.label:2622
+#: field.rocit.owning_lib.label:3799
+msgid "Owning Lib"
+msgstr ""
+
+#: class.rsce2.label:3621
+msgid "CAT2 Entry"
+msgstr ""
+
+#: field.mbts.last_billing_type.label:636
+#: field.rccbs.last_billing_type.label:3666
msgid "Last Billing Type"
msgstr ""
-#: field.circ.recuring_fine.label:1022 field.rodcirc.recuring_fine.label:2695
+#: field.circ.recuring_fine.label:1652 field.combcirc.recuring_fine.label:1707
+#: field.acirc.recuring_fine.label:1774 field.rodcirc.recuring_fine.label:3739
msgid "Recurring Fine Amount"
msgstr ""
-#: field.asv.end_date.label:1186
+#: field.asv.end_date.label:2063
msgid "Survey End Date/Time"
msgstr ""
-#: field.mg.xact_start.label:1532
+#: field.mg.xact_start.label:2444
msgid "Transaction Start Timestamp"
msgstr ""
-#: field.bre.title_field_entries.label:534
+#: field.bre.title_field_entries.label:1075
msgid "Indexed Title Field Entries"
msgstr ""
-#: field.atc.target_copy.label:280 field.ahtc.target_copy.label:2185
-#: field.iatc.target_copy.label:2663
-msgid "Transited Copy"
+#: field.aou.closed_dates.label:2186
+msgid "Closed Dates"
msgstr ""
-#: field.acp.circ_modifier.label:1787
+#: class.ccm.label:424 field.chmm.circ_modifier.label:479
+#: field.ccmm.circ_modifier.label:510 field.ccmcmt.circ_mod.label:573
+#: field.acp.circ_modifier.label:2707
msgid "Circulation Modifier"
msgstr ""
-#: field.aou.addresses.label:1296
+#: field.aou.addresses.label:2189
msgid "Addresses"
msgstr ""
-#: field.auoi.opt_in_ts.label:111
+#: field.vqbrad.ident.label:202 field.vqarad.ident.label:327
+msgid "Is Identifier?"
+msgstr ""
+
+#: field.auoi.opt_in_ts.label:400
msgid "Opt-in Date/Time"
msgstr ""
-#: field.circ.desk_renewal.label:1012 field.rodcirc.desk_renewal.label:2685
+#: field.circ.desk_renewal.label:1642 field.combcirc.desk_renewal.label:1697
+#: field.acirc.desk_renewal.label:1764 field.rodcirc.desk_renewal.label:3729
msgid "Desk Renewal"
msgstr ""
-#: field.citm.code.label:1158
+#: field.citm.code.label:1930
msgid "Item Type Code"
msgstr ""
-#: field.circ.renewal_remaining.label:1024
-#: field.rodcirc.renewal_remaining.label:2697
+#: field.circ.renewal_remaining.label:1654
+#: field.combcirc.renewal_remaining.label:1709
+#: field.acirc.renewal_remaining.label:1776
+#: field.rodcirc.renewal_remaining.label:3741
msgid "Remaining Renewals"
msgstr ""
-#: field.mb.void_time.label:2207
+#: field.mb.void_time.label:3186
msgid "Void Timestamp"
msgstr ""
-#: field.au.billable_transactions.label:701 None:723
+#: field.au.billable_transactions.label:1273 None:1295
msgid "Billable Transactions"
msgstr ""
msgstr ""
"Project-Id-Version: Evergreen 1.4\n"
"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2008-01-20 23:22:23-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19:44-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "The requested metabib_series_field_entry was not found"
msgstr ""
-#: 8002.OFFLINE_FILE_ERROR:688
+#: 8002.OFFLINE_FILE_ERROR:697
msgid " An offline file or directory could not be created or accessed "
msgstr ""
msgid "The requested reporter_schedule was not found"
msgstr ""
+#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:554
+msgid "The requested action_open_circ_count_by_circ_mod was not found"
+msgstr ""
+
#: 0.SUCCESS:14
msgid " "
msgstr ""
-#: 7006.COPY_IS_REFERENCE:638
+#: 7006.COPY_IS_REFERENCE:641
msgid " Copy is reference material "
msgstr ""
msgid "The requested metabib_subject_field_entry was not found"
msgstr ""
-#: 2001.DATABASE_UPDATE_FAILED:596
+#: 2001.DATABASE_UPDATE_FAILED:599
msgid "The attempt to write to the DB failed"
msgstr ""
msgid "No TCN could be found that does not collide with existing records"
msgstr ""
-#: 8000.OFFLINE_SESSION_ACTIVE:682
+#: 8000.OFFLINE_SESSION_ACTIVE:691
msgid " An offline session for this location is currently processing "
msgstr ""
msgid " Requested billing note does not exist "
msgstr ""
-#: 8001.OFFLINE_SESSION_FILE_EXISTS:685
+#: 8001.OFFLINE_SESSION_FILE_EXISTS:694
msgid " An offline file for this workstation exists within this session "
msgstr ""
msgid "The requested authority_record_descriptor was not found"
msgstr ""
-#: 7011.COPY_STATUS_LOST:653
+#: 7011.COPY_STATUS_LOST:656
msgid "Copy has is marked as lost"
msgstr ""
msgid "The requested money_collections_tracker was not found"
msgstr ""
-#: 5000.PERM_FAILURE:605
+#: 5000.PERM_FAILURE:608
msgid "Permission Denied"
msgstr ""
-#: 7015.NEGATIVE_PATRON_BALANCE:665
+#: 7015.NEGATIVE_PATRON_BALANCE:668
msgid "This requested action would result in a negative patron balance"
msgstr ""
msgid "The given username already exists in the database"
msgstr ""
-#: 9000.REPORT_TEMPLATE_EXISTS:716
+#: 9000.REPORT_TEMPLATE_EXISTS:725
msgid " A report template with the given name and folder already exists"
msgstr ""
msgid "The requested actor_stat_cat_entry was not found"
msgstr ""
-#: 1710.CONTAINER_EXISTS:588
+#: 1710.CONTAINER_EXISTS:591
msgid "User has already created a bucket with the requested name"
msgstr ""
msgid "The requested container_biblio_record_entry_bucket was not found"
msgstr ""
-#: 1701.COPY_LOCATION_EXISTS:561
+#: 1701.COPY_LOCATION_EXISTS:564
msgid " The copy location object already exists "
msgstr ""
-#: 1703.WORKSTATION_NAME_EXISTS:567
+#: 1703.WORKSTATION_NAME_EXISTS:570
msgid " A workstation with that name already exists "
msgstr ""
msgid "The requested actor_stat_cat_entry_user_map was not found"
msgstr ""
-#: 8007.OFFLINE_SESSION_EXISTS:703
+#: 8007.OFFLINE_SESSION_EXISTS:712
msgid " A session with the given name already exists "
msgstr ""
msgid "The requested asset_copy_note was not found"
msgstr ""
-#: 7017.ROUTE_TO_COPY_LOCATION:674
+#: 7017.ROUTE_TO_COPY_LOCATION:677
msgid ""
" \n"
"\t\tA copy needs to be routed to a copy location. The location\n"
msgid " Requested title note does not exist "
msgstr ""
-#: 9001.REPORT_REPORT_EXISTS:720
+#: 9001.REPORT_REPORT_EXISTS:729
msgid " A report with the given name and folder already exists"
msgstr ""
msgid "The requested action_in_house_use was not found"
msgstr ""
-#: 7016.ITEM_ON_HOLDS_SHELF:668
+#: 7016.ITEM_ON_HOLDS_SHELF:671
msgid "This requested item is currently on the holds shelf"
msgstr ""
-#: 7005.LOCATION_CIRC_NOT_ALLOWED:635
+#: 7005.LOCATION_CIRC_NOT_ALLOWED:638
msgid " Location does not allow materials to circulate "
msgstr ""
msgid "The requested actor_org_unit_setting was not found"
msgstr ""
-#: 7009.CIRC_CLAIMS_RETURNED:647
+#: 7009.CIRC_CLAIMS_RETURNED:650
msgid " Requested circulation is marked claims returned "
msgstr ""
msgid "The requested money_work_payment was not found"
msgstr ""
-#: 2000.BAD_PARAMS:593
+#: 2000.BAD_PARAMS:596
msgid "Invalid parameters were encountered in a method"
msgstr ""
msgid "The selected location cannot have volumes attached"
msgstr ""
-#: 1704.TCN_EXISTS:570
+#: 1704.TCN_EXISTS:573
msgid "A record already exists with the requested TCN value"
msgstr ""
msgid "The requested biblio_record_node was not found"
msgstr ""
-#: 8003.OFFLINE_PARAM_ERROR:691
+#: 8003.OFFLINE_PARAM_ERROR:700
msgid " Missing params in offline upload "
msgstr ""
msgid "The user does not have a valid email address assigned"
msgstr ""
-#: 7001.PATRON_BAD_STANDING:622
+#: 7001.PATRON_BAD_STANDING:625
msgid ""
"\n"
"\t\t\tThe patron in question is not able to check out materials because\n"
msgid "The requested metabib_record_descriptor was not found"
msgstr ""
-#: 1702.OPEN_CIRCULATION_EXISTS:564
+#: 1702.OPEN_CIRCULATION_EXISTS:567
msgid " There is an open circulation on the requested item "
msgstr ""
-#: 8009.OFFLINE_NO_ORG:709 8010.OFFLINE_SESSION_COMPLETE:712
+#: 8009.OFFLINE_NO_ORG:718 8010.OFFLINE_SESSION_COMPLETE:721
msgid " No org id was provided "
msgstr ""
msgid "The requested money_billable_transaction was not found"
msgstr ""
-#: 7004.COPY_NOT_AVAILABLE:632
+#: 7004.COPY_NOT_AVAILABLE:635
msgid " Copy is not available "
msgstr ""
msgid "The requested config_metabib_field was not found"
msgstr ""
-#: 2002.DATABASE_QUERY_FAILED:599
+#: 2002.DATABASE_QUERY_FAILED:602
msgid "The attempt to query to the DB failed"
msgstr ""
msgid "Requested address was not found"
msgstr ""
-#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:626
+#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:629
msgid "The patron in question has the maximum number of items already checked out"
msgstr ""
"\t\t"
msgstr ""
-#: 1709.MAX_HOLDS:585
+#: 1709.MAX_HOLDS:588
msgid "User has reached the maximum number of holds"
msgstr ""
-#: 1706.ITEM_BARCODE_EXISTS:576
+#: 1706.ITEM_BARCODE_EXISTS:579
msgid "An item with the same barcode exists"
msgstr ""
-#: 7014.COPY_IN_TRANSIT:662
+#: 7014.COPY_IN_TRANSIT:665
msgid "Copy is in transit"
msgstr ""
msgid "A copy with a remote circulating library (circ_lib) was encountered"
msgstr ""
-#: 7000.ROUTE_ITEM:615
+#: 7000.ROUTE_ITEM:618
msgid ""
" \n"
"\t\t\tA copy needs to be routed to a different location\t\n"
"\t\t"
msgstr ""
-#: 7007.COPY_NEEDED_FOR_HOLD:641
+#: 7007.COPY_NEEDED_FOR_HOLD:644
msgid " Copy is needed to fulfil a hold "
msgstr ""
-#: 7010.COPY_ALERT_MESSAGE:650
+#: 7010.COPY_ALERT_MESSAGE:653
msgid " The requested copy has an alert message attached "
msgstr ""
msgid "The requested ex was not found"
msgstr ""
-#: 8004.OFFLINE_CONFIG_ERROR:694 8005.OFFLINE_CHECKSUM_FAILED:697
-#: 8006.OFFLINE_SESSION_NOT_FOUND:700
+#: 8004.OFFLINE_CONFIG_ERROR:703 8005.OFFLINE_CHECKSUM_FAILED:706
+#: 8006.OFFLINE_SESSION_NOT_FOUND:709
msgid " Offline server is not configured properly "
msgstr ""
msgid "The requested actor_stat_cat was not found"
msgstr ""
-#: 7003.COPY_CIRC_NOT_ALLOWED:629
+#: 7003.COPY_CIRC_NOT_ALLOWED:632
msgid " Target copy is not allowed to circulate "
msgstr ""
-#: 7008.MAX_RENEWALS_REACHED:644
+#: 7008.MAX_RENEWALS_REACHED:647
msgid " Circulation has no more renewals remaining "
msgstr ""
msgid "The requested money_grocery was not found"
msgstr ""
-#: 7012.COPY_STATUS_MISSING:656
+#: 7012.COPY_STATUS_MISSING:659
msgid "Copy has is marked as missing"
msgstr ""
msgid "The requested money_billable_transaction_summary was not found"
msgstr ""
-#: 2003.INTERNAL_SERVER_ERROR:602
+#: 2003.INTERNAL_SERVER_ERROR:605
msgid "There was an internal server error"
msgstr ""
-#: 8008.OFFLINE_INVALID_SESSION:706
+#: 8008.OFFLINE_INVALID_SESSION:715
msgid " The session name is invalid "
msgstr ""
msgid "The requested metabib_metarecord was not found"
msgstr ""
-#: 1707.HOLD_EXISTS:579
+#: 1707.HOLD_EXISTS:582
msgid "User already has an open hold on the selected item"
msgstr ""
msgid "The saved item has been edited by another user"
msgstr ""
-#: 1700.NON_CAT_TYPE_EXISTS:558
+#: 1700.NON_CAT_TYPE_EXISTS:561
msgid " The non-cataloged type object already exists "
msgstr ""
-#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:582
+#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:585
msgid "A duplicate money.collections_tracker object already exists in the database"
msgstr ""
msgid "The requested bib record is marked as deleted"
msgstr ""
-#: 1705.VOLUME_LABEL_EXISTS:573
+#: 7018.COPY_MARKED_LOST:682
+msgid "The requested item is already marked as lost"
+msgstr ""
+
+#: 1705.VOLUME_LABEL_EXISTS:576
msgid "A volume with the same label, title and owning library exists"
msgstr ""
msgid "The patron's card is not active"
msgstr ""
-#: 7013.PATRON_EXCEEDS_FINES:659
+#: 7013.PATRON_EXCEEDS_FINES:662
msgid "The patron in question has reached the maximum fine amount"
msgstr ""
-# extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: lang.version
msgid "or choose one of these"
msgstr ""
+#: common.date_helper.normal
+msgctxt "common.date_helper.normal"
+msgid "Normal"
+msgstr ""
+
#: common.date_helper.3_days
msgid "Today + 3 days"
msgstr ""
#: common.enter.label
#: common.enter.accesskey
-#: staff.circ.offline_checkin.step2a.label
-#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "common.enter.label common.enter.accesskey"
msgid "&Enter"
msgstr ""
msgstr ""
#: common.title
-#: staff.cat.search_title
-#: staff.mvr_label_title
-#: staff.record_list.title
-#: staff.z39_50.search_class.title
-#: staff.server.admin.hold_pull.title
+msgctxt "common.title"
msgid "Title"
msgstr ""
#: common.author
-#: staff.cat.search_author
-#: staff.mvr_label_author
-#: staff.record_list.author
-#: staff.z39_50.search_class.author
-#: staff.server.admin.hold_pull.author
+msgctxt "common.author"
msgid "Author"
msgstr ""
#: common.subject
-#: staff.cat.search_subject
+msgctxt "common.subject"
msgid "Subject"
msgstr ""
msgstr ""
#: common.keyword
-#: staff.cat.search_all
+msgctxt "common.keyword"
msgid "Keyword"
msgstr ""
#: common.type
-#: staff.ahr_hold_type_label
-#: staff.cat.search_type
-#: staff.marc.LDR.type.short
+msgctxt "common.type"
msgid "Type"
msgstr ""
#: common.isbn
-#: staff.record_list.isbn
-#: staff.z39_50.search_class.isbn
+msgctxt "common.isbn"
msgid "ISBN"
msgstr ""
#: common.format
-#: staff.cat.search_format
-#: staff.server.admin.hold_pull.format
+msgctxt "common.format"
msgid "Format"
msgstr ""
#: common.login
-#: staff.auth.login_header
msgid "Login"
msgstr ""
msgstr ""
#: common.of
-#: staff.displaying.of
+msgctxt "common.of"
msgid "of"
msgstr ""
#: common.cancel
-#: staff.server.admin.closed_dates.cancel
-#: staff.server.admin.copy_locations.cancel
-#: staff.server.admin.non_cat_types.cancel
-#: staff.server.admin.stat_cat.cancel
+msgctxt "common.cancel"
msgid "Cancel"
msgstr ""
#: common.library
+msgctxt "common.library"
msgid "Library"
msgstr ""
msgstr ""
#: common.username
+msgctxt "common.username"
msgid "Username"
msgstr ""
msgstr ""
#: common.password
-#: staff.au_password_label
+msgctxt "common.password"
msgid "Password"
msgstr ""
#: common.refresh
-#: staff.patron_navbar.refresh
+msgctxt "common.refresh"
msgid "Refresh"
msgstr ""
#: common.submit
-#: staff.auth.submit_prompt
-#: staff.circ.checkin.submit_label
-#: staff.circ.hold_capture.submit_label
-#: staff.patron_display.checkout.submit_label
-#: staff.server.admin.copy_locations.submit
-#: staff.server.admin.non_cat_types.submit
+msgctxt "common.submit"
msgid "Submit"
msgstr ""
msgstr ""
#: common.cancel.accesskey
-#: staff.cat.fixed.SCO.key
-#: staff.copy.close.key
-#: staff.main.auth.debug.clear.accesskey
-#: staff.main.menu.circ.checkin.key
-#: staff.main.menu.circ.claimed_returned.key
-#: staff.main.menu.circ.key
-#: staff.main.menu.edit.copy.key
-#: staff.main.menu.file.close.key
-#: staff.marc.display.fixed.SCO.key
-#: staff.marc.file.close.key
-#: staff.patron_navbar.checkout.accesskey
+msgctxt "common.cancel.accesskey"
msgid "C"
msgstr ""
#: common.login.accesskey
-#: staff.auth.logoff_prompt.key
-#: staff.cat.search_count_copy.key
-#: staff.cat.search_location.key
-#: staff.checkin.reprint_receipt_label.accesskey
-#: staff.hold_capture.reprint_receipt_label.accesskey
-#: staff.main.menu.circ.lost.key
-#: staff.marc.display.legend.key
-#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "common.login.accesskey"
msgid "L"
msgstr ""
#: common.password.accesskey
-#: staff.auth.password_prompt.accesskey
-#: staff.auth.password_prompt.key
-#: staff.cat.fixed.MAP.key
-#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
-#: staff.main.menu.circ.patron_status.key
-#: staff.main.menu.edit.paste.key
-#: staff.marc.display.fixed.MAP.key
-#: staff.patron_display.items.print_receipt_label.accesskey
-#: staff.previous.range.key
+msgctxt "common.password.accesskey"
msgid "P"
msgstr ""
msgstr ""
#: staff.acp_label_barcode
-#: staff.browse_list.barcode
-#: staff.copy.attr.barcode
+msgctxt "staff.acp_label_barcode"
msgid "Barcode"
msgstr ""
#: staff.acp_label_call_number
-#: staff.browse_list.callnumber
-#: staff.cat.search_callnumber
-#: staff.volume.attr.callnumber
-#: staff.server.admin.hold_pull.call_number
+msgctxt "staff.acp_label_call_number"
msgid "Call Number"
msgstr ""
#: staff.acp_label_circ_as_type
-msgid "Circ As Type"
+msgid "Circulate As Type"
msgstr ""
#: staff.acp_label_circ_lib
-msgid "Circ Lib"
+msgid "Circulation Library"
msgstr ""
#: staff.acp_label_circ_modifier
-#: staff.browse_list.circ_modifier
-msgid "Circ Modifier"
+msgid "Circulation Modifier"
msgstr ""
#: staff.acp_label_copy_number
-#: staff.browse_list.copy_number
-#: staff.server.admin.hold_pull.copy
+msgctxt "staff.acp_label_copy_number"
msgid "Copy Number"
msgstr ""
#: staff.acp_label_deposit
-#: staff.browse_list.deposit
+msgctxt "staff.acp_label_deposit"
msgid "Deposit"
msgstr ""
#: staff.acp_label_deposit_amount
-#: staff.browse_list.deposit_amount
+msgctxt "staff.acp_label_deposit_amount"
msgid "Deposit Amount"
msgstr ""
#: staff.acp_label_fine_level
-#: staff.browse_list.fine_level
-#: staff.copy.attr.fine_level
+msgctxt "staff.acp_label_fine_level"
msgid "Fine Level"
msgstr ""
msgstr ""
#: staff.acp_label_loan_duration
-#: staff.browse_list.loan_duration
-#: staff.copy.attr.loan_duration
+msgctxt "staff.acp_label_loan_duration"
msgid "Loan Duration"
msgstr ""
#: staff.acp_label_location
-#: staff.browse_list.location2
-#: staff.cat.search_count_copy
-#: staff.cat.search_location
+msgctxt "staff.acp_label_location"
msgid "Location"
msgstr ""
#: staff.acp_label_price
-#: staff.browse_list.price
-#: staff.copy.attr.price
+msgctxt "staff.acp_label_price"
msgid "Price"
msgstr ""
#: staff.acp_label_status
-#: staff.ahr_status_label
-#: staff.browse_list.status
-#: staff.checkin_label_status
-#: staff.main.auth.status
-#: staff.patron_display.status.caption
+msgctxt "staff.acp_label_status"
msgid "Status"
msgstr ""
msgid "Fulfillment Time"
msgstr ""
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
#: staff.ahr_holdable_formats_label
msgid "Holdable Formats"
msgstr ""
#: staff.ahr_id_label
-msgid "Hold Id"
+msgid "Hold ID"
msgstr ""
#: staff.ahr_ischanged_label
-#: staff.au_ischanged_label
-msgid "Ischanged"
+msgctxt "staff.ahr_ischanged_label"
+msgid "Is changed"
msgstr ""
#: staff.ahr_isdeleted_label
-#: staff.au_isdeleted_label
-msgid "Isdeleted"
+msgctxt "staff.ahr_isdeleted_label"
+msgid "Is deleted"
msgstr ""
#: staff.ahr_isnew_label
-#: staff.au_isnew_label
-msgid "Isnew"
+msgctxt "staff.ahr_isnew_label"
+msgid "Is new"
msgstr ""
#: staff.ahr_phone_notify_label
msgstr ""
#: staff.ahr_pickup_lib_label
-msgid "Pickup Lib"
+msgctxt "staff.ahr_pickup_lib_label"
+msgid "Pickup Library"
msgstr ""
#: staff.ahr_prev_check_time_label
-msgid "Prev Check Time"
+msgid "Previous Check Time"
msgstr ""
#: staff.ahr_request_time_label
msgid "Selection Depth"
msgstr ""
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
#: staff.ahr_target_label
msgid "Target"
msgstr ""
#: staff.ahr_usr_label
-msgid "Usr"
+msgid "User"
msgstr ""
#: staff.au_active_label
-#: staff.au_label_active
+msgctxt "staff.au_active_label"
msgid "Active"
msgstr ""
#: staff.au_addresses_label
+msgctxt "staff.au_addresses_label"
msgid "Addresses"
msgstr ""
#: staff.au_alert_message_label
+msgctxt "staff.au_alert_message_label"
msgid "Alert Message"
msgstr ""
#: staff.au_billing_address_label
-#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.au_billing_address_label"
msgid "Billing Address"
msgstr ""
msgstr ""
#: staff.au_checkouts_label
-msgid "Checkouts"
+msgid "Check Outs"
msgstr ""
#: staff.au_claims_returned_count_label
+msgctxt "staff.au_claims_returned_count_label"
msgid "Claims Returned Count"
msgstr ""
msgstr ""
#: staff.au_dob_label
-msgid "Dob"
+msgctxt "staff.au_dob_label"
+msgid "Date of Birth"
msgstr ""
#: staff.au_email_label
msgstr ""
#: staff.au_evening_phone_label
+msgctxt "staff.au_evening_phone_label"
msgid "Evening Phone"
msgstr ""
#: staff.au_expire_date_label
+msgctxt "staff.au_expire_date_label"
msgid "Expire Date"
msgstr ""
#: staff.au_family_name_label
-#: staff.au_label_family_name
+msgctxt "staff.au_family_name_label"
msgid "Family Name"
msgstr ""
msgid "Hold Requests"
msgstr ""
+#. "OU" is an organization unit - typically a library
#: staff.au_home_ou_label
-msgid "Home Ou"
+msgid "Home OU"
msgstr ""
#: staff.au_id_label
-msgid "User Id"
+msgid "User ID"
msgstr ""
#: staff.au_ident_type2_label
-msgid "Ident Type2"
+msgid "Identification Type2"
msgstr ""
#: staff.au_ident_type_label
-msgid "Ident Type"
+msgid "Identification Type"
msgstr ""
#: staff.au_ident_value2_label
-msgid "Ident Value2"
+msgid "Identification Value2"
msgstr ""
#: staff.au_ident_value_label
-msgid "Ident Value"
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ischanged_label
+msgctxt "staff.au_ischanged_label"
+msgid "Is changed"
+msgstr ""
+
+#: staff.au_isdeleted_label
+msgctxt "staff.au_isdeleted_label"
+msgid "Is deleted"
+msgstr ""
+
+#: staff.au_isnew_label
+msgctxt "staff.au_isnew_label"
+msgid "Is new"
+msgstr ""
+
+#: staff.au_label_active
+msgctxt "staff.au_label_active"
+msgid "Active"
+msgstr ""
+
+#: staff.au_label_family_name
+msgctxt "staff.au_label_family_name"
+msgid "Family Name"
msgstr ""
#: staff.au_label_first_given_name
+msgctxt "staff.au_label_first_given_name"
msgid "First Name"
msgstr ""
msgstr ""
#: staff.au_label_prefix
-#: staff.au_prefix_label
+msgctxt "staff.au_label_prefix"
msgid "Prefix"
msgstr ""
#: staff.au_label_second_given_name
+msgctxt "staff.au_label_second_given_name"
msgid "Middle Name"
msgstr ""
#: staff.au_label_suffix
-#: staff.au_suffix_label
+msgctxt "staff.au_label_suffix"
msgid "Suffix"
msgstr ""
+#. "xact" is a transaction
#: staff.au_last_xact_id_label
-msgid "Last Xact Id"
+msgid "Last Xact ID"
msgstr ""
#: staff.au_mailing_address_label
-#: staff.patron_display.mailing_address
+msgctxt "staff.au_mailing_address_label"
msgid "Mailing Address"
msgstr ""
msgstr ""
#: staff.au_other_phone_label
+msgctxt "staff.au_other_phone_label"
msgid "Other Phone"
msgstr ""
#: staff.au_passwd_label
-msgid "Passwd"
+msgctxt "staff.au_passwd_label"
+msgid "Password"
+msgstr ""
+
+#: staff.au_password_label
+msgctxt "staff.au_password_label"
+msgid "Password"
msgstr ""
#: staff.au_photo_url_label
-msgid "Photo Url"
+msgid "Photo URL"
+msgstr ""
+
+#: staff.au_prefix_label
+msgctxt "staff.au_prefix_label"
+msgid "Prefix"
msgstr ""
#: staff.au_profile_label
+msgctxt "staff.au_profile_label"
msgid "Profile"
msgstr ""
msgstr ""
#: staff.au_standing_label
+msgctxt "staff.au_standing_label"
msgid "Standing"
msgstr ""
#: staff.au_stat_cat_entries_label
-msgid "Stat Cat Entries"
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: staff.au_suffix_label
+msgctxt "staff.au_suffix_label"
+msgid "Suffix"
msgstr ""
#: staff.au_super_user_label
msgstr ""
#: staff.au_usrgroup_label
-msgid "Usrgroup"
+msgid "User group"
msgstr ""
#: staff.au_usrname_label
-msgid "Usrname"
+msgid "User name"
msgstr ""
#: staff.admin.survey.available.label
msgstr ""
#: staff.admin.survey.name.label
-#: staff.auth.name_prompt
+msgctxt "staff.admin.survey.name.label"
msgid "Name:"
msgstr ""
#: staff.admin.survey.opac_visible.label
+msgctxt "staff.admin.survey.opac_visible.label"
msgid "OPAC Visible:"
msgstr ""
msgid "Start:"
msgstr ""
+#: staff.auth.login_header
+msgid "Log in"
+msgstr ""
+
#: staff.auth.logoff_prompt
-msgid "Log Off"
+msgid "Log off"
msgstr ""
#: staff.auth.logoff_prompt.accesskey
msgid "f"
msgstr ""
+#: staff.auth.logoff_prompt.key
+msgctxt "staff.auth.logoff_prompt.key"
+msgid "L"
+msgstr ""
+
+#: staff.auth.name_prompt
+msgctxt "staff.auth.name_prompt"
+msgid "Name:"
+msgstr ""
+
#: staff.auth.name_prompt.key
-#: staff.main.menu.file.new.key
-#: staff.next.range.key
+msgctxt "staff.auth.name_prompt.key"
msgid "N"
msgstr ""
msgid "Password:"
msgstr ""
+#: staff.auth.password_prompt.accesskey
+msgctxt "staff.auth.password_prompt.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.auth.password_prompt.key
+msgctxt "staff.auth.password_prompt.key"
+msgid "P"
+msgstr ""
+
#: staff.auth.quit_prompt
msgid "Exit Evergreen"
msgstr ""
msgid "x"
msgstr ""
+#: staff.auth.submit_prompt
+msgctxt "staff.auth.submit_prompt"
+msgid "Submit"
+msgstr ""
+
#: staff.auth.submit_prompt.key
-#: staff.cat.fixed.SER.key
-#: staff.cat.search_submit.key
-#: staff.circ.checkin.submit_label.accesskey
-#: staff.circ.hold_capture.submit_label.accesskey
-#: staff.copy.save.key
-#: staff.main.auth.offline.interface.accesskey
-#: staff.main.menu.cat.bib_search.key
-#: staff.main.menu.circ.special.key
-#: staff.main.menu.file.save.key
-#: staff.marc.display.fixed.SER.key
-#: staff.marc.file.publish.key
-#: staff.patron_display.checkout.submit_label.accesskey
-#: staff.server.admin.transit.list.actions.accesskey
+msgctxt "staff.auth.submit_prompt.key"
msgid "S"
msgstr ""
msgstr ""
#: staff.bills_interface_label
-msgid "BILLS"
+msgctxt "staff.bills_interface_label"
+msgid "Bills"
msgstr ""
#: staff.bills_money_label
msgstr ""
#: staff.bills_xact_dates_label
-msgid "Record / Dates"
+msgid "Record and Dates"
+msgstr ""
+
+#: staff.browse_list.barcode
+msgctxt "staff.browse_list.barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.browse_list.callnumber
+msgctxt "staff.browse_list.callnumber"
+msgid "Call Number"
msgstr ""
#: staff.browse_list.circ_as_type
msgstr ""
#: staff.browse_list.circ_lib
-msgid "Circulating Lib"
+msgctxt "staff.browse_list.circ_lib"
+msgid "Circulating Library"
+msgstr ""
+
+#: staff.browse_list.circ_modifier
+msgid "Circ Modifier"
msgstr ""
#: staff.browse_list.circulate
-#: staff.server.admin.copy_locations.editor.circulate
+msgctxt "staff.browse_list.circulate"
msgid "Circulate"
msgstr ""
+#: staff.browse_list.copy_number
+msgctxt "staff.browse_list.copy_number"
+msgid "Copy Number"
+msgstr ""
+
#: staff.browse_list.create_date
msgid "Creation Date"
msgstr ""
msgid "Creator"
msgstr ""
+#: staff.browse_list.deposit
+msgctxt "staff.browse_list.deposit"
+msgid "Deposit"
+msgstr ""
+
+#: staff.browse_list.deposit_amount
+msgctxt "staff.browse_list.deposit_amount"
+msgid "Deposit Amount"
+msgstr ""
+
#: staff.browse_list.edit_date
msgid "Edit Date"
msgstr ""
msgid "Editor"
msgstr ""
+#: staff.browse_list.fine_level
+msgctxt "staff.browse_list.fine_level"
+msgid "Fine Level"
+msgstr ""
+
#: staff.browse_list.library
msgid "Owning Lib"
msgstr ""
+#: staff.browse_list.loan_duration
+msgctxt "staff.browse_list.loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
#: staff.browse_list.location
-msgid "Location/Barcode"
+msgid "Location and Barcode"
+msgstr ""
+
+#: staff.browse_list.location2
+msgctxt "staff.browse_list.location2"
+msgid "Location"
msgstr ""
#: staff.browse_list.opac_visible
-#: staff.copy.notes.opac
+msgctxt "staff.browse_list.opac_visible"
msgid "OPAC"
msgstr ""
+#: staff.browse_list.price
+msgctxt "staff.browse_list.price"
+msgid "Price"
+msgstr ""
+
#: staff.browse_list.ref
-#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.browse_list.ref"
msgid "Reference"
msgstr ""
#: staff.browse_list.shelving_loc
-#: staff.copy.attr.shelving_location
+msgctxt "staff.browse_list.shelving_loc"
msgid "Shelving Location"
msgstr ""
+#: staff.browse_list.status
+msgctxt "staff.browse_list.status"
+msgid "Status"
+msgstr ""
+
#: staff.browse_list.win_title
-#: staff.record_list.win_title
+msgctxt "staff.browse_list.win_title"
msgid "Cataloging"
msgstr ""
msgstr ""
#: staff.cat.fixed.BKS.key
-#: staff.copy.bucket.key
-#: staff.main.menu.cat.add_bib.key
-#: staff.main.menu.cat.bib_status.key
-#: staff.main.menu.cat.copy_status.accesskey
-#: staff.main.menu.circ.barcode.show_item.accesskey
-#: staff.main.menu.edit.buckets.copies.accesskey
-#: staff.main.menu.edit.buckets.key
-#: staff.marc.display.fixed.BKS.key
-#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.cat.fixed.BKS.key"
msgid "B"
msgstr ""
msgstr ""
#: staff.cat.fixed.COM.key
-#: staff.cat.search_order.key
-#: staff.main.menu.circ.checkout.key
-#: staff.main.menu.file.open.key
-#: staff.marc.display.fixed.COM.key
+msgctxt "staff.cat.fixed.COM.key"
msgid "O"
msgstr ""
msgid "MAP"
msgstr ""
+#: staff.cat.fixed.MAP.key
+msgctxt "staff.cat.fixed.MAP.key"
+msgid "P"
+msgstr ""
+
#: staff.cat.fixed.MIX
msgid "MIX"
msgstr ""
#: staff.cat.fixed.MIX.key
-#: staff.main.menu.cat.dedup.key
-#: staff.main.menu.circ.missing.key
-#: staff.marc.display.fixed.MIX.key
-#: staff.marc.file.key
+msgctxt "staff.cat.fixed.MIX.key"
msgid "M"
msgstr ""
msgstr ""
#: staff.cat.fixed.REC.key
-#: staff.checkin_patron.retrieve.accesskey
-#: staff.copy.reload.key
-#: staff.hold_capture_patron.retrieve.accesskey
-#: staff.main.auth.retest.accesskey
-#: staff.main.menu.circ.patron_registration.key
-#: staff.main.menu.edit.buckets.records.accesskey
-#: staff.main.menu.edit.redo.key
-#: staff.main.menu.entity.patron.register.key
-#: staff.marc.display.fixed.REC.key
-#: staff.marc.file.reload.key
-#: staff.patron_navbar.refresh.accesskey
-#: staff.patron_navbar.retrieve.accesskey
-#: staff.server.admin.offline.xacts.refresh.accesskey
+msgctxt "staff.cat.fixed.REC.key"
msgid "R"
msgstr ""
msgid "SCO"
msgstr ""
+#: staff.cat.fixed.SCO.key
+msgctxt "staff.cat.fixed.SCO.key"
+msgid "C"
+msgstr ""
+
#: staff.cat.fixed.SER
msgid "SER"
msgstr ""
+#: staff.cat.fixed.SER.key
+msgctxt "staff.cat.fixed.SER.key"
+msgid "S"
+msgstr ""
+
#: staff.cat.fixed.VIS
msgid "VIS"
msgstr ""
#: staff.cat.fixed.VIS.key
-#: staff.cat.search_advanced.key
-#: staff.main.menu.cat.add_volume.key
-#: staff.main.menu.cat.volume_status.key
-#: staff.main.menu.edit.buckets.volumes.accesskey
-#: staff.marc.display.fixed.VIS.key
-#: staff.marc.file.validate.key
+msgctxt "staff.cat.fixed.VIS.key"
msgid "V"
msgstr ""
#: staff.cat.opac.add_bucket.label
#: staff.cat.opac.add_bucket.accesskey
+msgctxt "staff.cat.opac.add_bucket.label staff.cat.opac.add_bucket.accesskey"
msgid "Add to &Bucket"
msgstr ""
#: staff.cat.opac.bib_in_new_tab.label
+msgctxt "staff.cat.opac.bib_in_new_tab.label"
msgid "Duplicate in New Tab"
msgstr ""
#: staff.cat.opac.copy_browse.label
#: staff.cat.opac.copy_browse.accesskey
+msgctxt "staff.cat.opac.copy_browse.label staff.cat.opac.copy_browse.accesskey"
msgid "&Holdings Maintenance"
msgstr ""
#: staff.cat.opac.marc_edit.label
#: staff.cat.opac.marc_edit.accesskey
+msgctxt "staff.cat.opac.marc_edit.label staff.cat.opac.marc_edit.accesskey"
msgid "MARC &Edit"
msgstr ""
#: staff.cat.opac.marc_view.label
#: staff.cat.opac.marc_view.accesskey
+msgctxt "staff.cat.opac.marc_view.label staff.cat.opac.marc_view.accesskey"
msgid "MARC &View"
msgstr ""
msgid "&Delete Record"
msgstr ""
+#: staff.cat.opac.undelete_record.label
+#: staff.cat.opac.undelete_record.accesskey
+msgid "&Undelete Record"
+msgstr ""
+
#: staff.cat.opac.menu.label
#: staff.cat.opac.menu.accesskey
msgid "&Actions for this Record"
#: staff.cat.opac.opac_view.label
#: staff.cat.opac.opac_view.accesskey
+msgctxt "staff.cat.opac.opac_view.label staff.cat.opac.opac_view.accesskey"
msgid "&OPAC View"
msgstr ""
msgstr ""
#: staff.cat.opac.remove_me.label
+msgctxt "staff.cat.opac.remove_me.label"
msgid "Remove this Frame"
msgstr ""
#: staff.cat.opac.view_holds.label
#: staff.cat.opac.view_holds.accesskey
+msgctxt "staff.cat.opac.view_holds.label staff.cat.opac.view_holds.accesskey"
msgid "View Hold&s"
msgstr ""
#: staff.cat.popup.add_to_bucket
-#: staff.copy.bucket
+msgctxt "staff.cat.popup.add_to_bucket"
msgid "Add to Bucket"
msgstr ""
msgstr ""
#: staff.cat.popup.browse.record.tab.key
+msgctxt "staff.cat.popup.browse.record.tab.key"
msgid ""
-"_: staff.cat.popup.browse.record.tab.key\n"
msgstr ""
#: staff.cat.popup.browse.record.window.key
+msgctxt "staff.cat.popup.browse.record.window.key"
msgid ""
-"_: staff.cat.popup.browse.record.window.key\n"
msgstr ""
#: staff.cat.popup.browse_record.tab
msgstr ""
#: staff.cat.popup.edit.record.tab.key
+msgctxt "staff.cat.popup.edit.record.tab.key"
msgid ""
-"_: staff.cat.popup.edit.record.tab.key\n"
msgstr ""
#: staff.cat.popup.edit.record.window.key
+msgctxt "staff.cat.popup.edit.record.window.key"
msgid ""
-"_: staff.cat.popup.edit.record.window.key\n"
msgstr ""
#: staff.cat.popup.edit_record.tab
msgid "Advanced"
msgstr ""
+#: staff.cat.search_advanced.key
+msgctxt "staff.cat.search_advanced.key"
+msgid "V"
+msgstr ""
+
+#: staff.cat.search_all
+msgctxt "staff.cat.search_all"
+msgid "Keyword"
+msgstr ""
+
+#: staff.cat.search_author
+msgctxt "staff.cat.search_author"
+msgid "Author"
+msgstr ""
+
#: staff.cat.search_barcode
-#: staff.server.admin.hold_pull.barcode
+msgctxt "staff.cat.search_barcode"
msgid "Item Barcode"
msgstr ""
+#: staff.cat.search_callnumber
+msgctxt "staff.cat.search_callnumber"
+msgid "Call Number"
+msgstr ""
+
+#: staff.cat.search_count_copy
+msgctxt "staff.cat.search_count_copy"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.search_count_copy.key
+msgctxt "staff.cat.search_count_copy.key"
+msgid "L"
+msgstr ""
+
#: staff.cat.search_count_copy_show
msgid "Show Only These Records"
msgstr ""
msgid "Search Criteria"
msgstr ""
+#: staff.cat.search_format
+msgctxt "staff.cat.search_format"
+msgid "Format"
+msgstr ""
+
#: staff.cat.search_format.key
-#: staff.main.menu.circ.found.key
-#: staff.main.menu.edit.find.key
-#: staff.main.menu.file.key
-#: staff.marc.display.control_fields.key
+msgctxt "staff.cat.search_format.key"
msgid "F"
msgstr ""
msgstr ""
#: staff.cat.search_isbn
-msgid "ISBN/ISSN"
+msgid "ISBN or ISSN"
+msgstr ""
+
+#: staff.cat.search_location
+msgctxt "staff.cat.search_location"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.search_location.key
+msgctxt "staff.cat.search_location.key"
+msgid "L"
msgstr ""
#: staff.cat.search_order
msgid "Order"
msgstr ""
+#: staff.cat.search_order.key
+msgctxt "staff.cat.search_order.key"
+msgid "O"
+msgstr ""
+
#: staff.cat.search_pubyear
-#: staff.record_list.pubyear
+msgctxt "staff.cat.search_pubyear"
msgid "Pub Year"
msgstr ""
+#: staff.cat.search_subject
+msgctxt "staff.cat.search_subject"
+msgid "Subject"
+msgstr ""
+
#: staff.cat.search_submit
-#: staff.main.menu.search.label
+msgctxt "staff.cat.search_submit"
msgid "Search"
msgstr ""
+#: staff.cat.search_submit.key
+msgctxt "staff.cat.search_submit.key"
+msgid "S"
+msgstr ""
+
#: staff.cat.search_tcn
-#: staff.record_list.tcn
+msgctxt "staff.cat.search_tcn"
msgid "TCN"
msgstr ""
msgid "e"
msgstr ""
+#: staff.cat.search_title
+msgctxt "staff.cat.search_title"
+msgid "Title"
+msgstr ""
+
+#: staff.cat.search_type
+msgctxt "staff.cat.search_type"
+msgid "Type"
+msgstr ""
+
#: staff.cat.search_type.key
-#: staff.main.menu.file.new_tab.key
+msgctxt "staff.cat.search_type.key"
msgid "T"
msgstr ""
msgstr ""
#: staff.cat.test.key
-#: staff.main.menu.edit.key
-#: staff.marc.display.meta_data.key
-#: staff.marc.file.export.key
-#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.cat.test.key"
msgid "E"
msgstr ""
msgstr ""
#: staff.cat.type_of_material.r
-msgid "Three-dimensional Artifact or Naturally Occuring Object"
+msgid "Three-dimensional Artifact or Naturally Occurring Object"
msgstr ""
#: staff.cat.type_of_material.t
msgstr ""
#: staff.checkin.auto_print_label
-#: staff.hold_capture.auto_print_label
-#: staff.patron_display.checkout.auto_print_label
+msgctxt "staff.checkin.auto_print_label"
msgid "Auto-Print"
msgstr ""
#: staff.checkin.auto_print_label.accesskey
-#: staff.copy.notes.add.key
-#: staff.hold_capture.auto_print_label.accesskey
-#: staff.main.menu.edit.select_all.key
-#: staff.main.menu.tabs.close.accesskey
-#: staff.marc.display.cover_art.key
-#: staff.patron_display.checkout.auto_print_label.accesskey
+msgctxt "staff.checkin.auto_print_label.accesskey"
msgid "A"
msgstr ""
#: staff.checkin.done_label
-#: staff.hold_capture.done_label
-#: staff.patron_display.checkout.done_label
msgid "Done"
msgstr ""
#: staff.checkin.done_label.accesskey
-#: staff.copy.notes.delete.key
-#: staff.hold_capture.done_label.accesskey
-#: staff.main.menu.edit.delete.key
-#: staff.marc.display.key
-#: staff.patron_display.checkout.done_label.accesskey
+msgctxt "staff.checkin.done_label.accesskey"
msgid "D"
msgstr ""
-#: staff.checkin.print_receipt_label
-#: staff.hold_capture.print_receipt_label
+#: staff.checkin.print_receipt.label
+msgctxt "staff.checkin.print_receipt.label"
msgid "Print List"
msgstr ""
-#: staff.checkin.print_receipt_label.accesskey
+#: staff.checkin.print_receipt.accesskey
+msgctxt "staff.checkin.print_receipt.accesskey"
msgid ""
-"_: staff.checkin.print_receipt_label.accesskey\n"
msgstr ""
#: staff.checkin.reprint_receipt_label
-#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.checkin.reprint_receipt_label"
msgid "Re-Print Last List"
msgstr ""
+#: staff.checkin.reprint_receipt_label.accesskey
+msgctxt "staff.checkin.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
#: staff.checkin_interface_label
-msgid "CHECK IN"
+msgctxt "staff.checkin_interface_label"
+msgid "Check In"
msgstr ""
#: staff.checkin_label_route_to
msgid "Route To"
msgstr ""
+#: staff.checkin_label_status
+msgctxt "staff.checkin_label_status"
+msgid "Status"
+msgstr ""
+
#: staff.checkin_label_text
msgid "Message"
msgstr ""
#: staff.checkin_patron.name.label
-#: staff.hold_capture_patron.name.label
-#: staff.patron_display.name.label
+msgctxt "staff.checkin_patron.name.label"
msgid "Patron Name"
msgstr ""
#: staff.checkin_patron.retrieve
-#: staff.hold_capture_patron.retrieve
-#: staff.patron.context_display
-#: staff.patron_navbar.retrieve
-#: staff.server.admin.offline.xacts.get_patron.label
+msgctxt "staff.checkin_patron.retrieve"
msgid "Retrieve Patron"
msgstr ""
+#: staff.checkin_patron.retrieve.accesskey
+msgctxt "staff.checkin_patron.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.checkout_interface_label
-msgid "CHECK OUT"
+msgctxt "staff.checkout_interface_label"
+msgid "Check Out"
msgstr ""
#: staff.circ.offline.main.label
#: staff.circ.offline.cmd_exit.label
#: staff.circ.offline.cmd_exit.accesskey
+msgctxt "staff.circ.offline.cmd_exit.label staff.circ.offline.cmd_exit.accesskey"
msgid "E&xit"
msgstr ""
msgid "Standalone Check In"
msgstr ""
+#: staff.circ.offline_checkin.step2a.label
+#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "staff.circ.offline_checkin.step2a.label staff.circ.offline_checkin.step2a.accesskey"
+msgid "&Enter"
+msgstr ""
+
#: staff.circ.offline_checkin.step3.description
msgid "Repeat Steps 2 until done."
msgstr ""
#: staff.circ.offline.finish.description
-#: staff.mbts_xact_finish_label
+msgctxt "staff.circ.offline.finish.description"
msgid "Finish"
msgstr ""
msgstr ""
#: staff.circ.offline_checkout.step5.description
-#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_checkout.step5.description"
msgid "Repeat Steps 3 and 4 until done."
msgstr ""
msgstr ""
#: staff.circ.offline_register.x_home_ou.label
-#: staff.patron_display.home_ou.label
+msgctxt "staff.circ.offline_register.x_home_ou.label"
msgid "Home Library:"
msgstr ""
#: staff.circ.offline_register.x_profile.label
-#: staff.patron_display.profile.label
+msgctxt "staff.circ.offline_register.x_profile.label"
msgid "Profile:"
msgstr ""
msgstr ""
#: staff.circ.offline_register.family_name.label
-#: staff.patron_display.family_name.label
+msgctxt "staff.circ.offline_register.family_name.label"
msgid "Last Name:"
msgstr ""
#: staff.circ.offline_register.first_given_name.label
-#: staff.patron_display.first_given_name.label
-#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.circ.offline_register.first_given_name.label"
msgid "First Name:"
msgstr ""
#: staff.circ.offline_register.dob.label
+msgctxt "staff.circ.offline_register.dob.label"
msgid "Date of Birth:"
msgstr ""
#: staff.circ.offline_register.x_ident_type.label
-msgid "Ident Type:"
+msgid "Identification Type:"
msgstr ""
#: staff.circ.offline_register.ident_value.label
msgid "Ident Value:"
msgstr ""
+#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.circ.offline_register.billing_address.label"
+msgid "Billing Address"
+msgstr ""
+
#: staff.circ.offline_register.street1.label
msgid "Line 1"
msgstr ""
msgstr ""
#: staff.circ.offline_register.city.label
+msgctxt "staff.circ.offline_register.city.label"
msgid "City"
msgstr ""
#: staff.circ.offline_register.state.label
+msgctxt "staff.circ.offline_register.state.label"
msgid "State"
msgstr ""
msgstr ""
#: staff.circ.offline_register.country.label
+msgctxt "staff.circ.offline_register.country.label"
msgid "Country"
msgstr ""
msgid "(Optional) Enter the patron's barcode:"
msgstr ""
+#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_renew.step5.label"
+msgid "Repeat Steps 3 and 4 until done."
+msgstr ""
+
#: staff.circ.checkin.caption
-#: staff.circ.context_checkin
+msgctxt "staff.circ.checkin.caption"
msgid "Check In"
msgstr ""
-#: staff.circ.checkin.scan_label
-#: staff.circ.hold_capture.scan_label
-#: staff.patron_display.checkout.scan_label
-msgid "Enter Barcode:"
+#: staff.circ.checkin.scan.label
+#: staff.circ.checkin.scan.accesskey
+msgctxt "staff.circ.checkin.scan.label staff.circ.checkin.scan.accesskey"
+msgid "Enter B&arcode:"
msgstr ""
-#: staff.circ.checkin.scan_label.accesskey
-#: staff.circ.hold_capture.scan_label.accesskey
-#: staff.main.menu.cat.key
-#: staff.patron_display.checkout.scan_label.accesskey
-msgid "a"
+#: staff.circ.checkin.submit.label
+#: staff.circ.checkin.submit.accesskey
+msgctxt "staff.circ.checkin.submit.label staff.circ.checkin.submit.accesskey"
+msgid "&Submit"
msgstr ""
#: staff.circ.context_cancel_hold
+msgctxt "staff.circ.context_cancel_hold"
msgid "Cancel Hold"
msgstr ""
+#: staff.circ.context_checkin
+msgctxt "staff.circ.context_checkin"
+msgid "Check In"
+msgstr ""
+
#: staff.circ.context_edit
msgid "Edit Copy"
msgstr ""
msgstr ""
#: staff.circ.context_renew
-#: staff.main.menu.circ.renew.label
+msgctxt "staff.circ.context_renew"
msgid "Renew"
msgstr ""
msgid "Capture Hold"
msgstr ""
+#: staff.circ.hold_capture.scan_label
+msgid "Enter Barcode:"
+msgstr ""
+
+#: staff.circ.hold_capture.scan_label.accesskey
+msgctxt "staff.circ.hold_capture.scan_label.accesskey"
+msgid "a"
+msgstr ""
+
+#: staff.circ.hold_capture.submit_label
+msgctxt "staff.circ.hold_capture.submit_label"
+msgid "Submit"
+msgstr ""
+
+#: staff.circ.hold_capture.submit_label.accesskey
+msgctxt "staff.circ.hold_capture.submit_label.accesskey"
+msgid "S"
+msgstr ""
+
#: staff.circ_label_due_date
+msgctxt "staff.circ_label_due_date"
msgid "Due Date"
msgstr ""
#: staff.circ_label_id
-msgid "Circ Id"
+msgid "Circulation ID"
msgstr ""
#: staff.circ_label_renewal_remaining
msgstr ""
#: staff.circ_label_xact_finish
-msgid "Checkin Date"
+msgid "Check in Date"
msgstr ""
#: staff.circ_label_xact_start
-msgid "Checkout Date"
+msgid "Check out Date"
msgstr ""
#: staff.copies_editor_interface_label
-msgid "COPIES EDIT"
+msgid "Copies Edit"
+msgstr ""
+
+#: staff.copy.attr.barcode
+msgctxt "staff.copy.attr.barcode"
+msgid "Barcode"
msgstr ""
#: staff.copy.attr.circulate
msgstr ""
#: staff.copy.attr.circulate.no
-#: staff.copy.attr.deposit.no
-#: staff.copy.attr.notes_viewable.example2
-#: staff.copy.attr.opac_visible.no
-#: staff.copy.attr.reference_material.no
-#: staff.server.admin.copy_locations.editor.no
+msgctxt "staff.copy.attr.circulate.no"
msgid "No"
msgstr ""
#: staff.copy.attr.circulate.yes
-#: staff.copy.attr.deposit.yes
-#: staff.copy.attr.notes_viewable.example1
-#: staff.copy.attr.opac_visible.yes
-#: staff.copy.attr.reference_material.yes
-#: staff.server.admin.copy_locations.editor.yes
+msgctxt "staff.copy.attr.circulate.yes"
msgid "Yes"
msgstr ""
#: staff.copy.attr.circulating_lib
+msgctxt "staff.copy.attr.circulating_lib"
msgid "Circulating Library"
msgstr ""
msgid "Deposit?"
msgstr ""
+#: staff.copy.attr.deposit.no
+msgctxt "staff.copy.attr.deposit.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.deposit.yes
+msgctxt "staff.copy.attr.deposit.yes"
+msgid "Yes"
+msgstr ""
+
#: staff.copy.attr.deposit_amount
+msgctxt "staff.copy.attr.deposit_amount"
msgid "Amount"
msgstr ""
msgid "Deposit Notes"
msgstr ""
+#: staff.copy.attr.fine_level
+msgctxt "staff.copy.attr.fine_level"
+msgid "Fine Level"
+msgstr ""
+
#: staff.copy.attr.fine_level.high
msgid "High"
msgstr ""
msgstr ""
#: staff.copy.attr.fine_level.normal
-#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.fine_level.normal"
msgid "Normal"
msgstr ""
msgstr ""
#: staff.copy.attr.home_lib
+msgctxt "staff.copy.attr.home_lib"
msgid "Home Library"
msgstr ""
+#: staff.copy.attr.loan_duration
+msgctxt "staff.copy.attr.loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
#: staff.copy.attr.loan_duration.long
msgid "Long"
msgstr ""
+#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
#: staff.copy.attr.loan_duration.short
msgid "Short"
msgstr ""
msgid "Copy Notes Patron Viewable?"
msgstr ""
+#: staff.copy.attr.notes_viewable.example1
+msgctxt "staff.copy.attr.notes_viewable.example1"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.notes_viewable.example2
+msgctxt "staff.copy.attr.notes_viewable.example2"
+msgid "No"
+msgstr ""
+
#: staff.copy.attr.opac_visible
msgid "OPAC Visible?"
msgstr ""
+#: staff.copy.attr.opac_visible.no
+msgctxt "staff.copy.attr.opac_visible.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.opac_visible.yes
+msgctxt "staff.copy.attr.opac_visible.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.price
+msgctxt "staff.copy.attr.price"
+msgid "Price"
+msgstr ""
+
#: staff.copy.attr.reference_material
msgid "Reference Material?"
msgstr ""
+#: staff.copy.attr.reference_material.no
+msgctxt "staff.copy.attr.reference_material.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.reference_material.yes
+msgctxt "staff.copy.attr.reference_material.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.shelving_location
+msgctxt "staff.copy.attr.shelving_location"
+msgid "Shelving Location"
+msgstr ""
+
#: staff.copy.attr.shelving_location.example1
msgid "Stacks"
msgstr ""
msgid "Garden Room"
msgstr ""
+#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.copy.attr.shelving_location.example5"
+msgid "Reference"
+msgstr ""
+
#: staff.copy.attr.shelving_location.example6
msgid "Ready Reference"
msgstr ""
msgstr ""
#: staff.copy.attr.shelving_location.example8
-#: staff.marc.display
+msgctxt "staff.copy.attr.shelving_location.example8"
msgid "Display"
msgstr ""
msgstr ""
#: staff.copy.attr.stat.genre.example16
-#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.copy.attr.stat.genre.example16"
msgid "Biography"
msgstr ""
#: staff.copy.attr.stat.genre.example17
-#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example17"
msgid "Holiday"
msgstr ""
msgid "Historical"
msgstr ""
+#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example4"
+msgid "Holiday"
+msgstr ""
+
#: staff.copy.attr.stat.genre.example5
msgid "Horror"
msgstr ""
msgid "Sci-fi"
msgstr ""
+#: staff.copy.bucket
+msgctxt "staff.copy.bucket"
+msgid "Add to Bucket"
+msgstr ""
+
+#: staff.copy.bucket.key
+msgctxt "staff.copy.bucket.key"
+msgid "B"
+msgstr ""
+
#: staff.copy.clone
msgid "Clone Copy"
msgstr ""
#: staff.copy.clone.key
+msgctxt "staff.copy.clone.key"
msgid ""
-"_: staff.copy.clone.key\n"
msgstr ""
#: staff.copy.close
msgid "Close Window"
msgstr ""
+#: staff.copy.close.key
+msgctxt "staff.copy.close.key"
+msgid "C"
+msgstr ""
+
#: staff.copy.default.attr
msgid "Default Attributes"
msgstr ""
#: staff.copy.default.attr.value
-#: staff.copy.local.attr.value
+msgctxt "staff.copy.default.attr.value"
msgid "Value"
msgstr ""
msgstr ""
#: staff.copy.delete.key
+msgctxt "staff.copy.delete.key"
msgid ""
-"_: staff.copy.delete.key\n"
msgstr ""
#: staff.copy.edit_categories
msgid "Local Attributes"
msgstr ""
-#: staff.copy.notes
-msgid "Note"
+#: staff.copy.local.attr.value
+msgctxt "staff.copy.local.attr.value"
+msgid "Value"
+msgstr ""
+
+#: staff.copy.notes
+msgctxt "staff.copy.notes"
+msgid "Note"
msgstr ""
#: staff.copy.notes.add
msgid "Add Note"
msgstr ""
+#: staff.copy.notes.add.key
+msgctxt "staff.copy.notes.add.key"
+msgid "A"
+msgstr ""
+
#: staff.copy.notes.date
msgid "Date"
msgstr ""
msgid "Delete Note"
msgstr ""
+#: staff.copy.notes.delete.key
+msgctxt "staff.copy.notes.delete.key"
+msgid "D"
+msgstr ""
+
#: staff.copy.notes.from
msgid "From"
msgstr ""
+#: staff.copy.notes.opac
+msgctxt "staff.copy.notes.opac"
+msgid "OPAC"
+msgstr ""
+
#: staff.copy.reload
msgid "Reload Copy"
msgstr ""
+#: staff.copy.reload.key
+msgctxt "staff.copy.reload.key"
+msgid "R"
+msgstr ""
+
#: staff.copy.save
msgid "Save Copy"
msgstr ""
+#: staff.copy.save.key
+msgctxt "staff.copy.save.key"
+msgid "S"
+msgstr ""
+
#: staff.copy.title
msgid "Barcode goes here"
msgstr ""
msgstr ""
#: staff.copy.transfer.key
+msgctxt "staff.copy.transfer.key"
msgid ""
-"_: staff.copy.transfer.key\n"
msgstr ""
#: staff.copy.wizard.title
msgstr ""
#: staff.copy_browser_interface_label
-msgid "COPIES"
+msgctxt "staff.copy_browser_interface_label"
+msgid "Copies"
msgstr ""
#: staff.copy_stat_cat_editor_interface_label
-msgid "COPY STAT-CATS"
+msgid "Copy statistical categories"
msgstr ""
#: staff.display_patron_interface_label
-msgid "DISPLAY PATRON"
+msgid "Display patron"
msgstr ""
#: staff.displaying.hits_per_page
msgid "Results per page"
msgstr ""
+#: staff.displaying.of
+msgctxt "staff.displaying.of"
+msgid "of"
+msgstr ""
+
#: staff.displaying.results
msgid "Displaying results"
msgstr ""
#: staff.fieldmapper_label
-msgid "FIELDMAPPER"
+msgid "Fieldmapper"
msgstr ""
#: staff.filter_console_label
-msgid "FCONSOLE"
+msgid "Filter Console"
+msgstr ""
+
+#: staff.hold_capture.auto_print.label
+#: staff.hold_capture.auto_print.accesskey
+msgctxt "staff.hold_capture.auto_print.label staff.hold_capture.auto_print.accesskey"
+msgid "&Auto-Print"
msgstr ""
-#: staff.hold_capture.print_receipt_label.accesskey
+#: staff.hold_capture.done.label
+#: staff.hold_capture.done.accesskey
+msgctxt "staff.hold_capture.done.label staff.hold_capture.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.hold_capture.print_receipt.label
+msgctxt "staff.hold_capture.print_receipt.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.hold_capture.print_receipt.accesskey
+msgctxt "staff.hold_capture.print_receipt.accesskey"
msgid ""
-"_: staff.hold_capture.print_receipt_label.accesskey\n"
+msgstr ""
+
+#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.hold_capture.reprint_receipt_label"
+msgid "Re-Print Last List"
+msgstr ""
+
+#: staff.hold_capture.reprint_receipt_label.accesskey
+msgctxt "staff.hold_capture.reprint_receipt_label.accesskey"
+msgid "L"
msgstr ""
#: staff.hold_capture_interface_label
-msgid "HOLD CAPTURE"
+msgid "Hold capture"
+msgstr ""
+
+#: staff.hold_capture_patron.name.label
+msgctxt "staff.hold_capture_patron.name.label"
+msgid "Patron Name"
+msgstr ""
+
+#: staff.hold_capture_patron.retrieve
+msgctxt "staff.hold_capture_patron.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.hold_capture_patron.retrieve.accesskey
+msgctxt "staff.hold_capture_patron.retrieve.accesskey"
+msgid "R"
msgstr ""
#: staff.holds_status_available
msgstr ""
#: staff.holds_status_in_transit
+msgctxt "staff.holds_status_in_transit"
msgid "In Transit"
msgstr ""
msgstr ""
#: staff.items_out_interface_label
-msgid "ITEMS OUT"
+msgid "Items out"
msgstr ""
#: staff.javascript_console_label
-msgid "CONSOLE"
+msgid "Console"
msgstr ""
#: staff.javascript_shell_label
-msgid "JS SHELL"
+msgid "JavaScript Shell"
msgstr ""
#: staff.main.auth.caption
-msgid "Authentication"
+msgid "Startup and Shutdown"
msgstr ""
-#: staff.main.auth.caption
-msgid "Startup / Shutdown"
+#: staff.main.authentication.caption
+msgid "Authentication"
msgstr ""
#: staff.main.auth.debug.caption
msgstr ""
#: staff.main.auth.debug.clear
-#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.auth.debug.clear"
msgid "Clear Cache"
msgstr ""
+#: staff.main.auth.debug.clear.accesskey
+msgctxt "staff.main.auth.debug.clear.accesskey"
+msgid "C"
+msgstr ""
+
#: staff.main.auth.debug.javascript
-msgid "Javascript Console"
+msgid "JavaScript Console"
msgstr ""
#: staff.main.auth.debug.javascript.accesskey
msgstr ""
#: staff.main.auth.hostname.accesskey
-#: staff.main.menu.circ.hold_capture.key
-#: staff.main.menu.circ.place_hold.key
-#: staff.main.menu.help.key
-#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.main.auth.hostname.accesskey"
msgid "H"
msgstr ""
msgid "Standalone Interface"
msgstr ""
+#: staff.main.auth.offline.interface.accesskey
+msgctxt "staff.main.auth.offline.interface.accesskey"
+msgid "S"
+msgstr ""
+
#: staff.main.auth.retest
msgid "Re-Test Server"
msgstr ""
+#: staff.main.auth.retest.accesskey
+msgctxt "staff.main.auth.retest.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.main.auth.server
msgid "Server"
msgstr ""
+#: staff.main.auth.status
+msgctxt "staff.main.auth.status"
+msgid "Status"
+msgstr ""
+
#: staff.main.auth.version
msgid "Version"
msgstr ""
msgstr ""
#: staff.main.menu.admin.accesskey
-#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.accesskey"
msgid "-"
msgstr ""
msgstr ""
#: staff.main.menu.admin.clear_cache.accesskey
-#: staff.marc.008.SER.cont.field_size
-#: staff.marc.008.ctry.field_size
-#: staff.marc.008.lang.field_size
+msgctxt "staff.main.menu.admin.clear_cache.accesskey"
msgid "3"
msgstr ""
+#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.menu.admin.clear_cache.label"
+msgid "Clear Cache"
+msgstr ""
+
#: staff.main.menu.admin.cmd_console.label
#: staff.main.menu.admin.cmd_console.accesskey
-msgid "&Javascript Console"
+msgid "&JavaScript Console"
msgstr ""
#: staff.main.menu.admin.cmd_shell.label
#: staff.main.menu.admin.cmd_shell.accesskey
-msgid "Javascript S&hell"
+msgid "JavaScript S&hell"
msgstr ""
#: staff.main.menu.admin.cmd_test.label
msgid "Copy &Location Editor"
msgstr ""
+#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.developer.accesskey"
+msgid "-"
+msgstr ""
+
#: staff.main.menu.admin.developer.label
msgid "For developers..."
msgstr ""
msgid "Catalo&ging"
msgstr ""
+#: staff.main.menu.cat.add_bib.key
+msgctxt "staff.main.menu.cat.add_bib.key"
+msgid "B"
+msgstr ""
+
#: staff.main.menu.cat.add_bib.label
msgid "Add Bib Record"
msgstr ""
#: staff.main.menu.cat.add_copy.key
-#: staff.main.menu.cat.copy_status.key
-#: staff.main.menu.circ.copy_status.key
-#: staff.patron_navbar.items.accesskey
+msgctxt "staff.main.menu.cat.add_copy.key"
msgid "I"
msgstr ""
msgid "Add Item"
msgstr ""
+#: staff.main.menu.cat.add_volume.key
+msgctxt "staff.main.menu.cat.add_volume.key"
+msgid "V"
+msgstr ""
+
#: staff.main.menu.cat.add_volume.label
msgid "Add Volume"
msgstr ""
+#: staff.main.menu.cat.bib_search.key
+msgctxt "staff.main.menu.cat.bib_search.key"
+msgid "S"
+msgstr ""
+
#: staff.main.menu.cat.bib_search.label
msgid "Search the Catalog"
msgstr ""
+#: staff.main.menu.cat.bib_status.key
+msgctxt "staff.main.menu.cat.bib_status.key"
+msgid "B"
+msgstr ""
+
#: staff.main.menu.cat.bib_status.label
msgid "Display Bib Record"
msgstr ""
+#: staff.main.menu.cat.copy_status.accesskey
+msgctxt "staff.main.menu.cat.copy_status.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.cat.copy_status.key
+msgctxt "staff.main.menu.cat.copy_status.key"
+msgid "I"
+msgstr ""
+
#: staff.main.menu.cat.copy_status.label
-#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.cat.copy_status.label"
msgid "Display Item"
msgstr ""
msgid "Create &New Marc Record"
msgstr ""
+#: staff.main.menu.cat.dedup.key
+msgctxt "staff.main.menu.cat.dedup.key"
+msgid "M"
+msgstr ""
+
#: staff.main.menu.cat.dedup.label
-msgid "Merge/Transfer Interface"
+msgid "Merge and Transfer Interface"
msgstr ""
#: staff.main.menu.cat.edit_copy_buckets.label
msgid "Manage &User Buckets"
msgstr ""
+#: staff.main.menu.cat.key
+msgctxt "staff.main.menu.cat.key"
+msgid "a"
+msgstr ""
+
#: staff.main.menu.cat.retrieve_last_record.label
#: staff.main.menu.cat.retrieve_last_record.accesskey
msgid "Retrieve &Last Record"
msgid "Retrieve record by &TCN"
msgstr ""
+#: staff.main.menu.cat.search_bib_id.label
+#: staff.main.menu.cat.search_bib_id.accesskey
+msgid "Retrieve record by Record I&D"
+msgstr ""
+
+#: staff.main.menu.cat.volume_status.key
+msgctxt "staff.main.menu.cat.volume_status.key"
+msgid "V"
+msgstr ""
+
#: staff.main.menu.cat.volume_status.label
msgid "Display Volume"
msgstr ""
msgid "Retrieve Patron by Barcode"
msgstr ""
+#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
+msgctxt "staff.main.menu.circ.barcode.retrieve_patron.accesskey"
+msgid "P"
+msgstr ""
+
#: staff.main.menu.circ.barcode.show_item
msgid "Show Item Status by Barcode"
msgstr ""
+#: staff.main.menu.circ.barcode.show_item.accesskey
+msgctxt "staff.main.menu.circ.barcode.show_item.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.circ.checkin.key
+msgctxt "staff.main.menu.circ.checkin.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.circ.checkin.label
msgid "Check In Items"
msgstr ""
+#: staff.main.menu.circ.checkout.key
+msgctxt "staff.main.menu.circ.checkout.key"
+msgid "O"
+msgstr ""
+
#: staff.main.menu.circ.checkout.label
msgid "Check Out Items"
msgstr ""
+#: staff.main.menu.circ.claimed_returned.key
+msgctxt "staff.main.menu.circ.claimed_returned.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.circ.claimed_returned.label
msgid "Mark as \"Claimed Returned\""
msgstr ""
+#: staff.main.menu.circ.copy_status.key
+msgctxt "staff.main.menu.circ.copy_status.key"
+msgid "I"
+msgstr ""
+
+#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.circ.copy_status.label"
+msgid "Display Item"
+msgstr ""
+
+#: staff.main.menu.circ.found.key
+msgctxt "staff.main.menu.circ.found.key"
+msgid "F"
+msgstr ""
+
#: staff.main.menu.circ.found.label
msgid "Mark Found"
msgstr ""
msgid "&Browse Holds Shelf"
msgstr ""
+#: staff.main.menu.circ.hold_capture.key
+msgctxt "staff.main.menu.circ.hold_capture.key"
+msgid "H"
+msgstr ""
+
#: staff.main.menu.circ.hold_capture.label
msgid "Capture Holds"
msgstr ""
msgid "Record &In-House Use"
msgstr ""
+#: staff.main.menu.circ.key
+msgctxt "staff.main.menu.circ.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.circ.label
+msgctxt "staff.main.menu.circ.label"
msgid "Circulation"
msgstr ""
+#: staff.main.menu.circ.lost.key
+msgctxt "staff.main.menu.circ.lost.key"
+msgid "L"
+msgstr ""
+
#: staff.main.menu.circ.lost.label
+msgctxt "staff.main.menu.circ.lost.label"
msgid "Mark Lost"
msgstr ""
#: staff.main.menu.circ.mark_used.key
-#: staff.main.menu.edit.buckets.users.accesskey
-#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.circ.mark_used.key"
msgid "U"
msgstr ""
msgid "Mark Used"
msgstr ""
+#: staff.main.menu.circ.missing.key
+msgctxt "staff.main.menu.circ.missing.key"
+msgid "M"
+msgstr ""
+
#: staff.main.menu.circ.missing.label
msgid "Mark Missing"
msgstr ""
msgid "Enter O&ffline Interface"
msgstr ""
+#: staff.main.menu.circ.patron_registration.key
+msgctxt "staff.main.menu.circ.patron_registration.key"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.circ.patron_registration.label
msgid "Register Patron"
msgstr ""
#: staff.main.menu.circ.patron_retrieve.label
#: staff.main.menu.circ.patron_retrieve.accesskey
+msgctxt "staff.main.menu.circ.patron_retrieve.label staff.main.menu.circ.patron_retrieve.accesskey"
msgid "Retrieve &Last Patron"
msgstr ""
+#: staff.main.menu.circ.patron_status.key
+msgctxt "staff.main.menu.circ.patron_status.key"
+msgid "P"
+msgstr ""
+
#: staff.main.menu.circ.patron_status.label
msgid "Display Patron"
msgstr ""
msgid "Place &Hold"
msgstr ""
+#: staff.main.menu.circ.place_hold.key
+msgctxt "staff.main.menu.circ.place_hold.key"
+msgid "H"
+msgstr ""
+
#: staff.main.menu.circ.quick_add.key
-#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.circ.quick_add.key"
msgid "Q"
msgstr ""
msgid "n"
msgstr ""
+#: staff.main.menu.circ.renew.label
+msgctxt "staff.main.menu.circ.renew.label"
+msgid "Renew"
+msgstr ""
+
#: staff.main.menu.circ.reprint.label
#: staff.main.menu.circ.reprint.accesskey
msgid "Re-Print &Last"
msgstr ""
+#: staff.main.menu.circ.special.key
+msgctxt "staff.main.menu.circ.special.key"
+msgid "S"
+msgstr ""
+
#: staff.main.menu.circ.special.label
msgid "Special Circulation"
msgstr ""
#: staff.main.menu.edit.buckets.copies
+msgctxt "staff.main.menu.edit.buckets.copies"
msgid "Copy Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.copies.accesskey
+msgctxt "staff.main.menu.edit.buckets.copies.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.key
+msgctxt "staff.main.menu.edit.buckets.key"
+msgid "B"
+msgstr ""
+
#: staff.main.menu.edit.buckets.label
msgid "Manage Buckets"
msgstr ""
#: staff.main.menu.edit.buckets.records
+msgctxt "staff.main.menu.edit.buckets.records"
msgid "Record Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.records.accesskey
+msgctxt "staff.main.menu.edit.buckets.records.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.edit.buckets.volumes
msgid "Volume Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.volumes.accesskey
+msgctxt "staff.main.menu.edit.buckets.volumes.accesskey"
+msgid "V"
+msgstr ""
+
#: staff.main.menu.edit.buckets.users
msgid "User Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.users.accesskey
+msgctxt "staff.main.menu.edit.buckets.users.accesskey"
+msgid "U"
+msgstr ""
+
+#: staff.main.menu.edit.copy.key
+msgctxt "staff.main.menu.edit.copy.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.edit.copy.label
-#: staff.server.admin.stat_cat.copy
+msgctxt "staff.main.menu.edit.copy.label"
msgid "Copy"
msgstr ""
#: staff.main.menu.edit.cut.key
+msgctxt "staff.main.menu.edit.cut.key"
msgid "t"
msgstr ""
msgid "Cut"
msgstr ""
+#: staff.main.menu.edit.delete.key
+msgctxt "staff.main.menu.edit.delete.key"
+msgid "D"
+msgstr ""
+
#: staff.main.menu.edit.delete.label
-#: staff.server.admin.closed_dates.editor.delete
-#: staff.server.admin.copy_locations.editor.delete
-#: staff.server.admin.non_cat_types.delete
+msgctxt "staff.main.menu.edit.delete.label"
msgid "Delete"
msgstr ""
+#: staff.main.menu.edit.find.key
+msgctxt "staff.main.menu.edit.find.key"
+msgid "F"
+msgstr ""
+
#: staff.main.menu.edit.find.label
msgid "Find"
msgstr ""
msgid "Find Again"
msgstr ""
+#: staff.main.menu.edit.key
+msgctxt "staff.main.menu.edit.key"
+msgid "E"
+msgstr ""
+
#: staff.main.menu.edit.label
-#: staff.patron_navbar.edit
-#: staff.server.admin.copy_locations.editor.edit
-#: staff.server.admin.non_cat_types.edit
-#: staff.server.admin.stat_cat.edit
+msgctxt "staff.main.menu.edit.label"
msgid "Edit"
msgstr ""
+#: staff.main.menu.edit.paste.key
+msgctxt "staff.main.menu.edit.paste.key"
+msgid "P"
+msgstr ""
+
#: staff.main.menu.edit.paste.label
msgid "Paste"
msgstr ""
-#: staff.main.menu.edit.redo.label
-msgid "Redo"
+#: staff.main.menu.edit.redo.key
+msgctxt "staff.main.menu.edit.redo.key"
+msgid "R"
+msgstr ""
+
+#: staff.main.menu.edit.redo.label
+msgid "Redo"
+msgstr ""
+
+#: staff.main.menu.edit.select_all.key
+msgctxt "staff.main.menu.edit.select_all.key"
+msgid "A"
msgstr ""
#: staff.main.menu.edit.select_all.label
msgid "Select All"
msgstr ""
+#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.edit.undo.key"
+msgid "U"
+msgstr ""
+
#: staff.main.menu.edit.undo.label
msgid "Undo"
msgstr ""
#: staff.main.menu.entity.bib.key
+msgctxt "staff.main.menu.entity.bib.key"
msgid ""
-"_: staff.main.menu.entity.bib.key\n"
msgstr ""
#: staff.main.menu.entity.bib.label
msgstr ""
#: staff.main.menu.entity.copy.key
+msgctxt "staff.main.menu.entity.copy.key"
msgid ""
-"_: staff.main.menu.entity.copy.key\n"
msgstr ""
#: staff.main.menu.entity.copy.label
msgstr ""
#: staff.main.menu.entity.patron.key
+msgctxt "staff.main.menu.entity.patron.key"
msgid ""
-"_: staff.main.menu.entity.patron.key\n"
msgstr ""
#: staff.main.menu.entity.patron.label
msgid "Patrons"
msgstr ""
+#: staff.main.menu.entity.patron.register.key
+msgctxt "staff.main.menu.entity.patron.register.key"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.entity.volume.key
+msgctxt "staff.main.menu.entity.volume.key"
msgid ""
-"_: staff.main.menu.entity.volume.key\n"
msgstr ""
#: staff.main.menu.entity.volume.label
msgid "Close &Window"
msgstr ""
+#: staff.main.menu.file.close.key
+msgctxt "staff.main.menu.file.close.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.file.close_tab.label
#: staff.main.menu.file.close_tab.accesskey
msgid "&Close Tab"
msgstr ""
#: staff.main.menu.file.close_tab.key
+msgctxt "staff.main.menu.file.close_tab.key"
msgid ""
-"_: staff.main.menu.file.close_tab.key\n"
+msgstr ""
+
+#: staff.main.menu.file.key
+msgctxt "staff.main.menu.file.key"
+msgid "F"
msgstr ""
#: staff.main.menu.file.label
msgid "File"
msgstr ""
+#: staff.main.menu.file.new.key
+msgctxt "staff.main.menu.file.new.key"
+msgid "N"
+msgstr ""
+
#: staff.main.menu.file.new.label
msgid "New Window"
msgstr ""
+#: staff.main.menu.file.new_tab.key
+msgctxt "staff.main.menu.file.new_tab.key"
+msgid "T"
+msgstr ""
+
#: staff.main.menu.file.new_tab.label
msgid "New Tab"
msgstr ""
+#: staff.main.menu.file.open.key
+msgctxt "staff.main.menu.file.open.key"
+msgid "O"
+msgstr ""
+
#: staff.main.menu.file.open.label
msgid "Open Session"
msgstr ""
+#: staff.main.menu.file.save.key
+msgctxt "staff.main.menu.file.save.key"
+msgid "S"
+msgstr ""
+
#: staff.main.menu.file.save.label
msgid "Save Session"
msgstr ""
+#: staff.main.menu.help.key
+msgctxt "staff.main.menu.help.key"
+msgid "H"
+msgstr ""
+
#: staff.main.menu.help.label
-#: staff.server.admin.copy_locations.editor.help
-#: staff.server.admin.non_cat_types.in_house_circ
+msgctxt "staff.main.menu.help.label"
msgid "Help"
msgstr ""
msgid "Quit Program"
msgstr ""
+#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.quit.accesskey"
+msgid "Q"
+msgstr ""
+
#: staff.main.menu.replace_barcode.label
+msgctxt "staff.main.menu.replace_barcode.label"
msgid "Replace Barcode"
msgstr ""
#: staff.main.menu.reports.key
+msgctxt "staff.main.menu.reports.key"
msgid ""
-"_: staff.main.menu.reports.key\n"
msgstr ""
#: staff.main.menu.reports.label
-#: staff.server.admin.index.reports
+msgctxt "staff.main.menu.reports.label"
msgid "Reports"
msgstr ""
#: staff.main.menu.search.catalog.label
#: staff.main.menu.search.catalog.accesskey
-msgid "the &Catalog"
+msgid "Search the &Catalog"
msgstr ""
#: staff.main.menu.search.copies.label
#: staff.main.menu.search.copies.accesskey
-msgid "for copies by &Barcode"
+msgid "Search for copies by &Barcode"
msgstr ""
#: staff.main.menu.search.key
msgid "r"
msgstr ""
+#: staff.main.menu.search.label
+msgctxt "staff.main.menu.search.label"
+msgid "Search"
+msgstr ""
+
#: staff.main.menu.search.patrons.label
#: staff.main.menu.search.patrons.accesskey
-msgid "for &Patrons"
+msgid "Search for &Patrons"
msgstr ""
#: staff.main.menu.search.patrons_barcode.label
#: staff.main.menu.search.patrons_barcode.accesskey
-msgid "for patro&n by Barcode"
+msgid "Search for patro&n by Barcode"
msgstr ""
#: staff.main.menu.search.record.label
#: staff.main.menu.search.record.accesskey
-msgid "for record by &TCN"
+msgid "Search for record by &TCN"
+msgstr ""
+
+#: staff.main.menu.search.record_via_id.label
+#: staff.main.menu.search.record_via_id.accesskey
+msgid "Search for record by Record I&D"
msgstr ""
#: staff.main.menu.serials.key
msgstr ""
#: staff.main.menu.serials.label
-#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.main.menu.serials.label"
msgid "Serials"
msgstr ""
msgid "Close All Tabs"
msgstr ""
+#: staff.main.menu.tabs.close.accesskey
+msgctxt "staff.main.menu.tabs.close.accesskey"
+msgid "A"
+msgstr ""
+
#: staff.main.menu.title
msgid "Evergreen Staff Client"
msgstr ""
msgstr ""
#: staff.marc.008.BKS.MAP.indx.field
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
-#: staff.marc.008.BKS.SER.conf.field
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
-#: staff.marc.008.BKS.biog.field
-#: staff.marc.008.BKS.cont.field
-#: staff.marc.008.BKS.fest.field
-#: staff.marc.008.BKS.ills.field
-#: staff.marc.008.BKS.litf.field
-#: staff.marc.008.MAP.VIS.form.field
-#: staff.marc.008.SER.alph.field
-#: staff.marc.008.SER.cont.field
-#: staff.marc.008.SER.entw.field
-#: staff.marc.008.SER.freq.field
-#: staff.marc.008.SER.issn.field
-#: staff.marc.008.SER.orig.field
-#: staff.marc.008.SER.regl.field
-#: staff.marc.008.SER.srtp.field
-#: staff.marc.008.SER.succ.field
-#: staff.marc.008.ctry.field
-#: staff.marc.008.date1.field
-#: staff.marc.008.date2.field
-#: staff.marc.008.dtst.field
-#: staff.marc.008.entered.field
-#: staff.marc.008.lang.field
-#: staff.marc.008.mrec.field
-#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.BKS.MAP.indx.field"
msgid "008"
msgstr ""
#: staff.marc.008.BKS.MAP.indx.field_end_pos
-#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_end_pos"
msgid "31"
msgstr ""
#: staff.marc.008.BKS.MAP.indx.field_size
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
-#: staff.marc.008.BKS.SER.conf.field_size
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
-#: staff.marc.008.BKS.biog.field_size
-#: staff.marc.008.BKS.fest.field_size
-#: staff.marc.008.BKS.litf.field_size
-#: staff.marc.008.MAP.VIS.form.field_size
-#: staff.marc.008.SER.alph.field_size
-#: staff.marc.008.SER.entw.field_size
-#: staff.marc.008.SER.freq.field_size
-#: staff.marc.008.SER.issn.field_size
-#: staff.marc.008.SER.orig.field_size
-#: staff.marc.008.SER.regl.field_size
-#: staff.marc.008.SER.srtp.field_size
-#: staff.marc.008.SER.succ.field_size
-#: staff.marc.008.dtst.field_size
-#: staff.marc.008.mrec.field_size
-#: staff.marc.008.srce.field_size
-#: staff.marc.LDR.blvl.field_size
-#: staff.marc.LDR.ctrl.field_size
-#: staff.marc.LDR.desc.field_size
-#: staff.marc.LDR.elvl.field_size
-#: staff.marc.LDR.rec_stat.field_size
-#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.008.BKS.MAP.indx.field_size"
msgid "1"
msgstr ""
+#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_start_pos"
+msgid "31"
+msgstr ""
+
#: staff.marc.008.BKS.MAP.indx.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
msgstr ""
msgstr ""
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc
-#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc"
msgid "Form of Item"
msgstr ""
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos"
+msgid "23"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos"
msgid "23"
msgstr ""
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.help
-#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.help"
msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
msgstr ""
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.short
-#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.short"
msgid "Form"
msgstr ""
msgid "Government Publication"
msgstr ""
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos"
+msgid "28"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos"
msgid "28"
msgstr ""
msgid "Conference Publication"
msgstr ""
+#: staff.marc.008.BKS.SER.conf.field
+msgctxt "staff.marc.008.BKS.SER.conf.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.SER.conf.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_end_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field_size
+msgctxt "staff.marc.008.BKS.SER.conf.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.SER.conf.field_start_pos
-#: staff.marc.008.MAP.VIS.form.field_end_pos
-#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_start_pos"
msgid "29"
msgstr ""
msgid "Target Audience"
msgstr ""
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos
-#: staff.marc.008.SER.orig.field_end_pos
-#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos"
msgid "22"
msgstr ""
msgid "Audn"
msgstr ""
+#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.marc.008.BKS.biog.desc"
+msgid "Biography"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field
+msgctxt "staff.marc.008.BKS.biog.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.biog.field_end_pos
+msgctxt "staff.marc.008.BKS.biog.field_end_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field_size
+msgctxt "staff.marc.008.BKS.biog.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.biog.field_start_pos
-#: staff.marc.008.SER.succ.field_end_pos
-#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.BKS.biog.field_start_pos"
msgid "34"
msgstr ""
msgstr ""
#: staff.marc.008.BKS.cont.desc
-#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.BKS.cont.desc"
msgid "Nature of Contents"
msgstr ""
+#: staff.marc.008.BKS.cont.field
+msgctxt "staff.marc.008.BKS.cont.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.cont.field_end_pos
-#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.BKS.cont.field_end_pos"
msgid "27"
msgstr ""
#: staff.marc.008.BKS.cont.field_size
-#: staff.marc.008.BKS.ills.field_size
-#: staff.marc.008.date1.field_size
-#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.BKS.cont.field_size"
msgid "4"
msgstr ""
#: staff.marc.008.BKS.cont.field_start_pos
-#: staff.marc.008.SER.entw.field_end_pos
-#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.BKS.cont.field_start_pos"
msgid "24"
msgstr ""
#: staff.marc.008.BKS.cont.help
-#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.BKS.cont.help"
msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
msgstr ""
#: staff.marc.008.BKS.cont.short
-#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.BKS.cont.short"
msgid "Cont"
msgstr ""
msgid "Festschrift"
msgstr ""
+#: staff.marc.008.BKS.fest.field
+msgctxt "staff.marc.008.BKS.fest.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.fest.field_end_pos
+msgctxt "staff.marc.008.BKS.fest.field_end_pos"
+msgid "30"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field_size
+msgctxt "staff.marc.008.BKS.fest.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.fest.field_start_pos
+msgctxt "staff.marc.008.BKS.fest.field_start_pos"
msgid "30"
msgstr ""
msgid "Illustrations"
msgstr ""
+#: staff.marc.008.BKS.ills.field
+msgctxt "staff.marc.008.BKS.ills.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.ills.field_end_pos
-#: staff.marc.008.SER.srtp.field_end_pos
-#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_end_pos"
msgid "21"
msgstr ""
+#: staff.marc.008.BKS.ills.field_size
+msgctxt "staff.marc.008.BKS.ills.field_size"
+msgid "4"
+msgstr ""
+
#: staff.marc.008.BKS.ills.field_start_pos
-#: staff.marc.008.SER.freq.field_end_pos
-#: staff.marc.008.SER.freq.field_start_pos
-#: staff.marc.LDR.desc.field_end_pos
-#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_start_pos"
msgid "18"
msgstr ""
msgid "Literary Form"
msgstr ""
+#: staff.marc.008.BKS.litf.field
+msgctxt "staff.marc.008.BKS.litf.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.litf.field_end_pos
+msgctxt "staff.marc.008.BKS.litf.field_end_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field_size
+msgctxt "staff.marc.008.BKS.litf.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.litf.field_start_pos
-#: staff.marc.008.SER.alph.field_end_pos
-#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.BKS.litf.field_start_pos"
msgid "33"
msgstr ""
msgid "LitF"
msgstr ""
-#: staff.marc.008.SER.alph.desc
-msgid "Original Alphabet or Script of Title"
+#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.MAP.VIS.form.desc"
+msgid "Form of Item"
msgstr ""
-#: staff.marc.008.SER.alph.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
+#: staff.marc.008.MAP.VIS.form.field
+msgctxt "staff.marc.008.MAP.VIS.form.field"
+msgid "008"
msgstr ""
-#: staff.marc.008.SER.alph.short
-msgid "Alph"
+#: staff.marc.008.MAP.VIS.form.field_end_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_end_pos"
+msgid "29"
msgstr ""
-#: staff.marc.008.SER.cont.field_start_pos
-msgid "25"
+#: staff.marc.008.MAP.VIS.form.field_size
+msgctxt "staff.marc.008.MAP.VIS.form.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_start_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.MAP.VIS.form.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.MAP.VIS.form.short"
+msgid "Form"
+msgstr ""
+
+#: staff.marc.008.SER.alph.desc
+msgid "Original Alphabet or Script of Title"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field
+msgctxt "staff.marc.008.SER.alph.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field_end_pos
+msgctxt "staff.marc.008.SER.alph.field_end_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field_size
+msgctxt "staff.marc.008.SER.alph.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.SER.alph.field_start_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.SER.alph.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.alph.short
+msgid "Alph"
+msgstr ""
+
+#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.SER.cont.desc"
+msgid "Nature of Contents"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field
+msgctxt "staff.marc.008.SER.cont.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.SER.cont.field_end_pos"
+msgid "27"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_size
+msgctxt "staff.marc.008.SER.cont.field_size"
+msgid "3"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_start_pos
+msgid "25"
+msgstr ""
+
+#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.SER.cont.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.SER.cont.short"
+msgid "Cont"
msgstr ""
#: staff.marc.008.SER.entw.desc
msgid "Nature of Entire Work"
msgstr ""
+#: staff.marc.008.SER.entw.field
+msgctxt "staff.marc.008.SER.entw.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_end_pos
+msgctxt "staff.marc.008.SER.entw.field_end_pos"
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_size
+msgctxt "staff.marc.008.SER.entw.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.SER.entw.field_start_pos"
+msgid "24"
+msgstr ""
+
#: staff.marc.008.SER.entw.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
msgstr ""
msgid "Frequency"
msgstr ""
+#: staff.marc.008.SER.freq.field
+msgctxt "staff.marc.008.SER.freq.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_end_pos
+msgctxt "staff.marc.008.SER.freq.field_end_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_size
+msgctxt "staff.marc.008.SER.freq.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_start_pos
+msgctxt "staff.marc.008.SER.freq.field_start_pos"
+msgid "18"
+msgstr ""
+
#: staff.marc.008.SER.freq.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
msgstr ""
msgid "ISSN Center"
msgstr ""
+#: staff.marc.008.SER.issn.field
+msgctxt "staff.marc.008.SER.issn.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.SER.issn.field_end_pos
+msgctxt "staff.marc.008.SER.issn.field_end_pos"
+msgid "20"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_size
+msgctxt "staff.marc.008.SER.issn.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.SER.issn.field_start_pos
+msgctxt "staff.marc.008.SER.issn.field_start_pos"
msgid "20"
msgstr ""
msgstr ""
#: staff.marc.008.SER.issn.short
-#: staff.record_list.issn
-#: staff.z39_50.search_class.issn
+msgctxt "staff.marc.008.SER.issn.short"
msgid "ISSN"
msgstr ""
msgid "Form of Original Item"
msgstr ""
+#: staff.marc.008.SER.orig.field
+msgctxt "staff.marc.008.SER.orig.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_end_pos
+msgctxt "staff.marc.008.SER.orig.field_end_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_size
+msgctxt "staff.marc.008.SER.orig.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.SER.orig.field_start_pos"
+msgid "22"
+msgstr ""
+
#: staff.marc.008.SER.orig.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
msgstr ""
msgid "Regularity"
msgstr ""
+#: staff.marc.008.SER.regl.field
+msgctxt "staff.marc.008.SER.regl.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.SER.regl.field_end_pos
+msgctxt "staff.marc.008.SER.regl.field_end_pos"
+msgid "19"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field_size
+msgctxt "staff.marc.008.SER.regl.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.SER.regl.field_start_pos
+msgctxt "staff.marc.008.SER.regl.field_start_pos"
msgid "19"
msgstr ""
msgid "Type of Continuing Resource"
msgstr ""
+#: staff.marc.008.SER.srtp.field
+msgctxt "staff.marc.008.SER.srtp.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_end_pos
+msgctxt "staff.marc.008.SER.srtp.field_end_pos"
+msgid "21"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_size
+msgctxt "staff.marc.008.SER.srtp.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.SER.srtp.field_start_pos"
+msgid "21"
+msgstr ""
+
#: staff.marc.008.SER.srtp.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
msgstr ""
msgid "Entry Convention"
msgstr ""
+#: staff.marc.008.SER.succ.field
+msgctxt "staff.marc.008.SER.succ.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_end_pos
+msgctxt "staff.marc.008.SER.succ.field_end_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_size
+msgctxt "staff.marc.008.SER.succ.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.SER.succ.field_start_pos"
+msgid "34"
+msgstr ""
+
#: staff.marc.008.SER.succ.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
msgstr ""
msgid "Country of Publication, etc."
msgstr ""
+#: staff.marc.008.ctry.field
+msgctxt "staff.marc.008.ctry.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.ctry.field_end_pos
-#: staff.marc.LDR.elvl.field_end_pos
-#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.008.ctry.field_end_pos"
msgid "17"
msgstr ""
+#: staff.marc.008.ctry.field_size
+msgctxt "staff.marc.008.ctry.field_size"
+msgid "3"
+msgstr ""
+
#: staff.marc.008.ctry.field_start_pos
msgid "15"
msgstr ""
msgstr ""
#: staff.marc.008.date1.desc
-#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.desc"
msgid "Date 1"
msgstr ""
+#: staff.marc.008.date1.field
+msgctxt "staff.marc.008.date1.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.date1.field_end_pos
msgid "10"
msgstr ""
+#: staff.marc.008.date1.field_size
+msgctxt "staff.marc.008.date1.field_size"
+msgid "4"
+msgstr ""
+
#: staff.marc.008.date1.field_start_pos
-#: staff.marc.LDR.blvl.field_end_pos
-#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.008.date1.field_start_pos"
msgid "7"
msgstr ""
+#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.short"
+msgid "Date 1"
+msgstr ""
+
#: staff.marc.008.date2.desc
-#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.desc"
msgid "Date 2"
msgstr ""
+#: staff.marc.008.date2.field
+msgctxt "staff.marc.008.date2.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.date2.field_end_pos
msgid "14"
msgstr ""
+#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.date2.field_size"
+msgid "4"
+msgstr ""
+
#: staff.marc.008.date2.field_start_pos
msgid "11"
msgstr ""
+#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.short"
+msgid "Date 2"
+msgstr ""
+
#: staff.marc.008.dates
msgid "Dates"
msgstr ""
msgid "Type of Date/Publication Status"
msgstr ""
+#: staff.marc.008.dtst.field
+msgctxt "staff.marc.008.dtst.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.dtst.field_end_pos
+msgctxt "staff.marc.008.dtst.field_end_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.008.dtst.field_size
+msgctxt "staff.marc.008.dtst.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.dtst.field_start_pos
-#: staff.marc.008.entered.field_size
-#: staff.marc.LDR.type.field_end_pos
-#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.008.dtst.field_start_pos"
msgid "6"
msgstr ""
msgid "Date Entered"
msgstr ""
+#: staff.marc.008.entered.field
+msgctxt "staff.marc.008.entered.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.entered.field_end_pos
-#: staff.marc.LDR.rec_stat.field_end_pos
-#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.008.entered.field_end_pos"
msgid "5"
msgstr ""
+#: staff.marc.008.entered.field_size
+msgctxt "staff.marc.008.entered.field_size"
+msgid "6"
+msgstr ""
+
#: staff.marc.008.entered.field_start_pos
msgid "0"
msgstr ""
msgid "Language Code"
msgstr ""
+#: staff.marc.008.lang.field
+msgctxt "staff.marc.008.lang.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.lang.field_end_pos
msgid "37"
msgstr ""
+#: staff.marc.008.lang.field_size
+msgctxt "staff.marc.008.lang.field_size"
+msgid "3"
+msgstr ""
+
#: staff.marc.008.lang.field_start_pos
msgid "35"
msgstr ""
msgid "Modified Record"
msgstr ""
+#: staff.marc.008.mrec.field
+msgctxt "staff.marc.008.mrec.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.mrec.field_end_pos
+msgctxt "staff.marc.008.mrec.field_end_pos"
+msgid "38"
+msgstr ""
+
+#: staff.marc.008.mrec.field_size
+msgctxt "staff.marc.008.mrec.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.mrec.field_start_pos
+msgctxt "staff.marc.008.mrec.field_start_pos"
msgid "38"
msgstr ""
msgid "Cataloging Source"
msgstr ""
-#: staff.marc.008.srce.field_end_pos
-#: staff.marc.008.srce.field_start_pos
-msgid "39"
+#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.srce.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.srce.field_end_pos
+msgctxt "staff.marc.008.srce.field_end_pos"
+msgid "39"
+msgstr ""
+
+#: staff.marc.008.srce.field_size
+msgctxt "staff.marc.008.srce.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.srce.field_start_pos
+msgctxt "staff.marc.008.srce.field_start_pos"
+msgid "39"
msgstr ""
#: staff.marc.008.srce.help
msgstr ""
#: staff.marc.LDR.blvl.field
-#: staff.marc.LDR.ctrl.field
-#: staff.marc.LDR.desc.field
-#: staff.marc.LDR.elvl.field
-#: staff.marc.LDR.rec_stat.field
-#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.blvl.field"
msgid "LDR"
msgstr ""
+#: staff.marc.LDR.blvl.field_end_pos
+msgctxt "staff.marc.LDR.blvl.field_end_pos"
+msgid "7"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_size
+msgctxt "staff.marc.LDR.blvl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.LDR.blvl.field_start_pos"
+msgid "7"
+msgstr ""
+
#: staff.marc.LDR.blvl.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
msgstr ""
msgid "Type of Control"
msgstr ""
+#: staff.marc.LDR.ctrl.field
+msgctxt "staff.marc.LDR.ctrl.field"
+msgid "LDR"
+msgstr ""
+
#: staff.marc.LDR.ctrl.field_end_pos
+msgctxt "staff.marc.LDR.ctrl.field_end_pos"
+msgid "8"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field_size
+msgctxt "staff.marc.LDR.ctrl.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.LDR.ctrl.field_start_pos
+msgctxt "staff.marc.LDR.ctrl.field_start_pos"
msgid "8"
msgstr ""
msgid "Descriptive Cataloging Form"
msgstr ""
+#: staff.marc.LDR.desc.field
+msgctxt "staff.marc.LDR.desc.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_end_pos
+msgctxt "staff.marc.LDR.desc.field_end_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_size
+msgctxt "staff.marc.LDR.desc.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.LDR.desc.field_start_pos"
+msgid "18"
+msgstr ""
+
#: staff.marc.LDR.desc.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
msgstr ""
msgid "Encoding Level"
msgstr ""
+#: staff.marc.LDR.elvl.field
+msgctxt "staff.marc.LDR.elvl.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_end_pos
+msgctxt "staff.marc.LDR.elvl.field_end_pos"
+msgid "17"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_size
+msgctxt "staff.marc.LDR.elvl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.LDR.elvl.field_start_pos"
+msgid "17"
+msgstr ""
+
#: staff.marc.LDR.elvl.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
msgstr ""
msgid "Record Status"
msgstr ""
+#: staff.marc.LDR.rec_stat.field
+msgctxt "staff.marc.LDR.rec_stat.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_end_pos
+msgctxt "staff.marc.LDR.rec_stat.field_end_pos"
+msgid "5"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_size
+msgctxt "staff.marc.LDR.rec_stat.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.LDR.rec_stat.field_start_pos"
+msgid "5"
+msgstr ""
+
#: staff.marc.LDR.rec_stat.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
msgstr ""
msgid "Type of Record"
msgstr ""
+#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.type.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.type.field_end_pos
+msgctxt "staff.marc.LDR.type.field_end_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.LDR.type.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.LDR.type.field_start_pos"
+msgid "6"
+msgstr ""
+
#: staff.marc.LDR.type.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
msgstr ""
+#: staff.marc.LDR.type.short
+msgctxt "staff.marc.LDR.type.short"
+msgid "Type"
+msgstr ""
+
#: staff.marc.close.editor.key
msgid "W"
msgstr ""
+#: staff.marc.display
+msgctxt "staff.marc.display"
+msgid "Display"
+msgstr ""
+
#: staff.marc.display.control_fields
-msgid "Toggle Control/Data Fields"
+msgid "Toggle Control and Data Fields"
+msgstr ""
+
+#: staff.marc.display.control_fields.key
+msgctxt "staff.marc.display.control_fields.key"
+msgid "F"
msgstr ""
#: staff.marc.display.cover_art
msgid "Toggle Cover Art"
msgstr ""
+#: staff.marc.display.cover_art.key
+msgctxt "staff.marc.display.cover_art.key"
+msgid "A"
+msgstr ""
+
#: staff.marc.display.explain
msgid "Explain Errors"
msgstr ""
msgid "Fixed Fields as BKS"
msgstr ""
+#: staff.marc.display.fixed.BKS.key
+msgctxt "staff.marc.display.fixed.BKS.key"
+msgid "B"
+msgstr ""
+
#: staff.marc.display.fixed.COM
msgid "Fixed Fields as COM"
msgstr ""
+#: staff.marc.display.fixed.COM.key
+msgctxt "staff.marc.display.fixed.COM.key"
+msgid "O"
+msgstr ""
+
#: staff.marc.display.fixed.MAP
msgid "Fixed Fields as MAP"
msgstr ""
+#: staff.marc.display.fixed.MAP.key
+msgctxt "staff.marc.display.fixed.MAP.key"
+msgid "P"
+msgstr ""
+
#: staff.marc.display.fixed.MIX
msgid "Fixed Fields as MIX"
msgstr ""
+#: staff.marc.display.fixed.MIX.key
+msgctxt "staff.marc.display.fixed.MIX.key"
+msgid "M"
+msgstr ""
+
#: staff.marc.display.fixed.REC
msgid "Fixed Fields as REC"
msgstr ""
+#: staff.marc.display.fixed.REC.key
+msgctxt "staff.marc.display.fixed.REC.key"
+msgid "R"
+msgstr ""
+
#: staff.marc.display.fixed.SCO
msgid "Fixed Fields as SCO"
msgstr ""
+#: staff.marc.display.fixed.SCO.key
+msgctxt "staff.marc.display.fixed.SCO.key"
+msgid "C"
+msgstr ""
+
#: staff.marc.display.fixed.SER
msgid "Fixed Fields as SER"
msgstr ""
+#: staff.marc.display.fixed.SER.key
+msgctxt "staff.marc.display.fixed.SER.key"
+msgid "S"
+msgstr ""
+
#: staff.marc.display.fixed.VIS
msgid "Fixed Fields as VIS"
msgstr ""
+#: staff.marc.display.fixed.VIS.key
+msgctxt "staff.marc.display.fixed.VIS.key"
+msgid "V"
+msgstr ""
+
+#: staff.marc.display.key
+msgctxt "staff.marc.display.key"
+msgid "D"
+msgstr ""
+
#: staff.marc.display.legend
msgid "Legend"
msgstr ""
+#: staff.marc.display.legend.key
+msgctxt "staff.marc.display.legend.key"
+msgid "L"
+msgstr ""
+
#: staff.marc.display.meta_data
-msgid "Toggle Meta Data"
+msgid "Toggle Metadata"
+msgstr ""
+
+#: staff.marc.display.meta_data.key
+msgctxt "staff.marc.display.meta_data.key"
+msgid "E"
msgstr ""
#: staff.marc.editor.keys.help
-msgid "Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = Delete Row;"
+msgid ""
+"Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = "
+"Delete Row;"
msgstr ""
#: staff.marc.file
-#: staff.marc_editor_interface_label
+msgctxt "staff.marc.file"
msgid "MARC"
msgstr ""
msgid "Close Editor"
msgstr ""
+#: staff.marc.file.close.key
+msgctxt "staff.marc.file.close.key"
+msgid "C"
+msgstr ""
+
#: staff.marc.file.export
+msgctxt "staff.marc.file.export"
msgid "Export"
msgstr ""
+#: staff.marc.file.export.key
+msgctxt "staff.marc.file.export.key"
+msgid "E"
+msgstr ""
+
+#: staff.marc.file.key
+msgctxt "staff.marc.file.key"
+msgid "M"
+msgstr ""
+
#: staff.marc.file.publish
msgid "Save (to DB)"
msgstr ""
+#: staff.marc.file.publish.key
+msgctxt "staff.marc.file.publish.key"
+msgid "S"
+msgstr ""
+
#: staff.marc.file.reload
msgid "Reload"
msgstr ""
+#: staff.marc.file.reload.key
+msgctxt "staff.marc.file.reload.key"
+msgid "R"
+msgstr ""
+
#: staff.marc.file.validate
msgid "Validate"
msgstr ""
+#: staff.marc.file.validate.key
+msgctxt "staff.marc.file.validate.key"
+msgid "V"
+msgstr ""
+
#: staff.marc.groupbox.control
msgid "Control Fields"
msgstr ""
msgstr ""
#: staff.marc.groupbox.meta
-msgid "Meta Data (NOT YET IMPLEMENTED)"
+msgid "Metadata (NOT YET IMPLEMENTED)"
+msgstr ""
+
+#: staff.marc_editor_interface_label
+msgctxt "staff.marc_editor_interface_label"
+msgid "MARC"
msgstr ""
#: staff.mbts_balance_owed_label
+msgctxt "staff.mbts_balance_owed_label"
msgid "Balance Owed"
msgstr ""
msgstr ""
#: staff.mbts_total_owed_label
+msgctxt "staff.mbts_total_owed_label"
msgid "Total Billed"
msgstr ""
#: staff.mbts_total_paid_label
+msgctxt "staff.mbts_total_paid_label"
msgid "Total Paid"
msgstr ""
+#: staff.mbts_xact_finish_label
+msgctxt "staff.mbts_xact_finish_label"
+msgid "Finish"
+msgstr ""
+
#: staff.mbts_xact_start_label
+msgctxt "staff.mbts_xact_start_label"
msgid "Start"
msgstr ""
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
#: staff.mvr_label_doc_id
-msgid "Doc Id"
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
msgstr ""
#: staff.next.range
msgid "Next"
msgstr ""
+#: staff.next.range.key
+msgctxt "staff.next.range.key"
+msgid "N"
+msgstr ""
+
#: staff.opac_navigator_interface_label
-msgid "CATALOG NAVIGATOR"
+msgid "CAtalog Navigator"
+msgstr ""
+
+#: staff.patron.context_display
+msgctxt "staff.patron.context_display"
+msgid "Retrieve Patron"
msgstr ""
#: staff.patron_barcode_entry_interface_label
-#: staff.patron_display_interface_label
-msgid "PATRON"
+msgctxt "staff.patron_barcode_entry_interface_label"
+msgid "Patron"
msgstr ""
#: staff.patron_display.bills.label
msgid "Bills:"
msgstr ""
-#: staff.patron_display.checkout.print_receipt_label
-#: staff.patron_display.items.print_receipt_label
+#: staff.patron_display.checkout.auto_print.label
+#: staff.patron_display.checkout.auto_print.accesskey
+msgctxt "staff.patron_display.checkout.auto_print.label staff.patron_display.checkout.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr ""
+
+#: staff.patron_display.checkout.done.label
+#: staff.patron_display.checkout.done.accesskey
+msgctxt "staff.patron_display.checkout.done.label staff.patron_display.checkout.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt.label
msgid "Print Receipt"
msgstr ""
-#: staff.patron_display.checkout.print_receipt_label.accesskey
+#: staff.patron_display.checkout.print_receipt.accesskey
+msgctxt "staff.patron_display.checkout.print_receipt.accesskey"
msgid ""
-"_: staff.patron_display.checkout.print_receipt_label.accesskey\n"
msgstr ""
#: staff.patron_display.checkout.reprint_receipt_label
msgid "Re-Print Last Receipt"
msgstr ""
+#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "staff.patron_display.checkout.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.patron_display.checkout.scan.label
+#: staff.patron_display.checkout.scan.accesskey
+msgctxt "staff.patron_display.checkout.scan.label staff.patron_display.checkout.scan.accesskey"
+msgid "Enter B&arcode:"
+msgstr ""
+
+#: staff.patron_display.checkout.submit.label
+#: staff.patron_display.checkout.submit.accesskey
+msgctxt "staff.patron_display.checkout.submit.label staff.patron_display.checkout.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
#: staff.patron_display.checkouts.label
msgid "Check Outs:"
msgstr ""
msgstr ""
#: staff.patron_display.date_of_birth.label
-msgid "DOB:"
+msgctxt "staff.patron_display.date_of_birth.label"
+msgid "Date of Birth:"
msgstr ""
#: staff.patron_display.day_phone.label
msgstr ""
#: staff.patron_display.email.label
-#: staff.patron_search_form.email.label
+msgctxt "staff.patron_display.email.label"
msgid "Email:"
msgstr ""
msgid "Evening Phone:"
msgstr ""
+#: staff.patron_display.family_name.label
+msgctxt "staff.patron_display.family_name.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.patron_display.first_given_name.label
+msgctxt "staff.patron_display.first_given_name.label"
+msgid "First Name:"
+msgstr ""
+
#: staff.patron_display.holds.label
msgid "Holds:"
msgstr ""
#: staff.patron_display.holds_available.label
+msgctxt "staff.patron_display.holds_available.label"
msgid "Available:"
msgstr ""
+#: staff.patron_display.home_ou.label
+msgctxt "staff.patron_display.home_ou.label"
+msgid "Home Library:"
+msgstr ""
+
#: staff.patron_display.ident1.label
msgid "ID 1:"
msgstr ""
msgid "ID 2:"
msgstr ""
+#: staff.patron_display.items.print_receipt.label
+#: staff.patron_display.items.print_receipt.accesskey
+msgid "&Print Receipt"
+msgstr ""
+
#: staff.patron_display.items_claimed_returned.label
msgid "Items Claimed Returned:"
msgstr ""
msgid "Mailing Address 2:"
msgstr ""
+#: staff.patron_display.mailing_address
+msgctxt "staff.patron_display.mailing_address"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.patron_display.name.label
+msgctxt "staff.patron_display.name.label"
+msgid "Patron Name"
+msgstr ""
+
#: staff.patron_display.other_phone.label
msgid "Other Phone:"
msgstr ""
msgstr ""
#: staff.patron_display.physical_address
+msgctxt "staff.patron_display.physical_address"
msgid "Physical Address"
msgstr ""
-#: staff.patron_display.second_given_name.label
-#: staff.patron_search_form.second_given_name.label
+#: staff.patron_display.profile.label
+msgctxt "staff.patron_display.profile.label"
+msgid "Profile:"
+msgstr ""
+
+#: staff.patron_display.second_given_name.label
+msgctxt "staff.patron_display.second_given_name.label"
msgid "Middle Name:"
msgstr ""
msgid "Standing:"
msgstr ""
+#: staff.patron_display.status.caption
+msgctxt "staff.patron_display.status.caption"
+msgid "Status"
+msgstr ""
+
+#: staff.patron_display_interface_label
+msgctxt "staff.patron_display_interface_label"
+msgid "Patron"
+msgstr ""
+
#: staff.patron_editor_interface_label
-msgid "PATRON EDIT"
+msgid "Patron Edit"
msgstr ""
#: staff.patron_interface_label
-msgid "PATRON "
+msgid "Patron "
msgstr ""
#: staff.patron_navbar.bills
+msgctxt "staff.patron_navbar.bills"
msgid "Bills"
msgstr ""
+#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.patron_navbar.bills.accesskey"
+msgid "B"
+msgstr ""
+
#: staff.patron_navbar.checkout
+msgctxt "staff.patron_navbar.checkout"
msgid "Check Out"
msgstr ""
+#: staff.patron_navbar.checkout.accesskey
+msgctxt "staff.patron_navbar.checkout.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron_navbar.edit
+msgctxt "staff.patron_navbar.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.patron_navbar.edit.accesskey"
+msgid "E"
+msgstr ""
+
#: staff.patron_navbar.holds
msgid "Holds"
msgstr ""
+#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.patron_navbar.holds.accesskey"
+msgid "H"
+msgstr ""
+
#: staff.patron_navbar.info
msgid "Info"
msgstr ""
msgid "Items Out"
msgstr ""
+#: staff.patron_navbar.items.accesskey
+msgctxt "staff.patron_navbar.items.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.patron_navbar.items.problem_items.caption
+msgid "Lost, Claimed Returned, Long Overdue, Has Unpaid Billings"
+msgstr ""
+
+#: staff.patron_navbar.refresh
+msgctxt "staff.patron_navbar.refresh"
+msgid "Refresh"
+msgstr ""
+
+#: staff.patron_navbar.refresh.accesskey
+msgctxt "staff.patron_navbar.refresh.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.patron_navbar.retrieve
+msgctxt "staff.patron_navbar.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.patron_navbar.retrieve.accesskey
+msgctxt "staff.patron_navbar.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.patron_register_interface_label
-msgid "NEW PATRON"
+msgid "New Patron"
msgstr ""
#: staff.patron_search_form.caption
msgstr ""
#: staff.patron_search_form.city.accesskey
+msgctxt "staff.patron_search_form.city.accesskey"
msgid ""
-"_: staff.patron_search_form.city.accesskey\n"
msgstr ""
#: staff.patron_search_form.city.label
#: staff.patron_search_form.clear.label
#: staff.patron_search_form.clear.accesskey
+msgctxt "staff.patron_search_form.clear.label staff.patron_search_form.clear.accesskey"
msgid "&Clear Form"
msgstr ""
#: staff.patron_search_form.email.accesskey
+msgctxt "staff.patron_search_form.email.accesskey"
msgid ""
-"_: staff.patron_search_form.email.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.email.label
+msgctxt "staff.patron_search_form.email.label"
+msgid "Email:"
msgstr ""
#: staff.patron_search_form.family_name.label
msgstr ""
#: staff.patron_search_form.first_given_name.accesskey
+msgctxt "staff.patron_search_form.first_given_name.accesskey"
msgid ""
-"_: staff.patron_search_form.first_given_name.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.patron_search_form.first_given_name.label"
+msgid "First Name:"
msgstr ""
#: staff.patron_search_form.ident.accesskey
+msgctxt "staff.patron_search_form.ident.accesskey"
msgid ""
-"_: staff.patron_search_form.ident.accesskey\n"
msgstr ""
#: staff.patron_search_form.ident.label
msgstr ""
#: staff.patron_search_form.post_code.accesskey
+msgctxt "staff.patron_search_form.post_code.accesskey"
msgid ""
-"_: staff.patron_search_form.post_code.accesskey\n"
msgstr ""
#: staff.patron_search_form.post_code.label
#: staff.patron_search_form.search.label
#: staff.patron_search_form.search.accesskey
+msgctxt "staff.patron_search_form.search.label staff.patron_search_form.search.accesskey"
msgid "&Search"
msgstr ""
#: staff.patron_search_form.second_given_name.accesskey
+msgctxt "staff.patron_search_form.second_given_name.accesskey"
msgid ""
-"_: staff.patron_search_form.second_given_name.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.second_given_name.label
+msgctxt "staff.patron_search_form.second_given_name.label"
+msgid "Middle Name:"
msgstr ""
#: staff.patron_search_form.state.accesskey
+msgctxt "staff.patron_search_form.state.accesskey"
msgid ""
-"_: staff.patron_search_form.state.accesskey\n"
msgstr ""
#: staff.patron_search_form.state.label
msgstr ""
#: staff.patron_search_form.street2.accesskey
+msgctxt "staff.patron_search_form.street2.accesskey"
msgid ""
-"_: staff.patron_search_form.street2.accesskey\n"
msgstr ""
#: staff.patron_search_form.street2.label
msgstr ""
#: staff.patron_search_interface_label
-msgid "PATRON SEARCH"
+msgid "Patron Search"
msgstr ""
#: staff.patron_stat_cat_editor_interface_label
-msgid "PATRON STAT-CATS"
+msgctxt "staff.patron_stat_cat_editor_interface_label"
+msgid "Patron Statistical Categories"
msgstr ""
#: staff.previous.range
msgid "Previous"
msgstr ""
+#: staff.previous.range.key
+msgctxt "staff.previous.range.key"
+msgid "P"
+msgstr ""
+
#: staff.receipt_template_editor_interface_label
-msgid "RECEIPTS"
+msgid "Receipts"
+msgstr ""
+
+#: staff.record_list.author
+msgctxt "staff.record_list.author"
+msgid "Author"
msgstr ""
#: staff.record_list.copy_count
msgid "Copiesˤ"
msgstr ""
+#: staff.record_list.isbn
+msgctxt "staff.record_list.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: staff.record_list.issn
+msgctxt "staff.record_list.issn"
+msgid "ISSN"
+msgstr ""
+
#: staff.record_list.publisher
-#: staff.z39_50.search_class.publisher
+msgctxt "staff.record_list.publisher"
msgid "Publisher"
msgstr ""
+#: staff.record_list.pubyear
+msgctxt "staff.record_list.pubyear"
+msgid "Pub Year"
+msgstr ""
+
+#: staff.record_list.tcn
+msgctxt "staff.record_list.tcn"
+msgid "TCN"
+msgstr ""
+
+#: staff.record_list.title
+msgctxt "staff.record_list.title"
+msgid "Title"
+msgstr ""
+
+#: staff.record_list.win_title
+msgctxt "staff.record_list.win_title"
+msgid "Cataloging"
+msgstr ""
+
#: staff.retrieving.record
+msgctxt "staff.retrieving.record"
msgid "Retrieving..."
msgstr ""
msgstr ""
#: staff.survey_admin_interface_label
-msgid "SURVEY ADMIN"
+msgid "Survey Administration"
+msgstr ""
+
+#: staff.volume.attr.callnumber
+msgctxt "staff.volume.attr.callnumber"
+msgid "Call Number"
msgstr ""
#: staff.volume.attr.owning_lib
-#: staff.server.admin.copy_locations.editor.library
-#: staff.server.admin.stat_cat.owning_library.label
+msgctxt "staff.volume.attr.owning_lib"
msgid "Owning Library"
msgstr ""
msgstr ""
#: staff.volume.wizard.title
-msgid "Batch Add Volumes/Copies Wizard"
+msgid "Batch Add Volumes or Copies Wizard"
msgstr ""
#: staff.xuleditor_label
msgid "XUL TEST"
msgstr ""
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgctxt "staff.z39_50.search_class.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgctxt "staff.z39_50.search_class.issn"
+msgid "ISSN"
+msgstr ""
+
#: staff.z39_50.search_class.item_type
msgid "Item Type"
msgstr ""
msgstr ""
#: staff.z39_50.search_class.item_type.art
-msgid "Papers/Articles"
+msgid "Papers or Articles"
msgstr ""
#: staff.z39_50.search_class.item_type.bks
msgid "Musical scores"
msgstr ""
+#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.z39_50.search_class.item_type.ser"
+msgid "Serials"
+msgstr ""
+
#: staff.z39_50.search_class.item_type.url
msgid "Internet Resources"
msgstr ""
msgid "PubDate"
msgstr ""
+#: staff.z39_50.search_class.publisher
+msgctxt "staff.z39_50.search_class.publisher"
+msgid "Publisher"
+msgstr ""
+
#: staff.z39_50.search_class.tcn
msgid "Accession #"
msgstr ""
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
#: staff.z39_50_import_interface_label
-msgid "Z39.50 IMPORT"
+msgid "Z39.50 Import"
msgstr ""
#: staff.server.admin.offline.xacts.caption
msgid "Offline Sessions"
msgstr ""
+#: staff.server.admin.offline.xacts.refresh.accesskey
+msgctxt "staff.server.admin.offline.xacts.refresh.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.server.admin.offline.xacts.create.label
-#: staff.server.admin.non_cat_types.editor.create
+msgctxt "staff.server.admin.offline.xacts.create.label"
msgid "Create"
msgstr ""
msgstr ""
#: staff.server.admin.offline.xacts.status.desc
-msgid "The transactions from the following workstations have been uploaded, but not processed. When all expected workstations are present here, use the Process button above."
+msgid ""
+"The transactions from the following workstations have been uploaded, but not "
+"processed. When all expected workstations are present here, use the "
+"Process button above."
msgstr ""
#: staff.server.admin.offline.xacts.errors.label
msgstr ""
#: staff.server.admin.offline.xacts.errors.desc
-msgid "All transactions from this session have been processed. The errors, if any, are listed below."
+msgid ""
+"All transactions from this session have been processed. The errors, if any, "
+"are listed below."
msgstr ""
#: staff.server.admin.offline.xacts.export.label
msgstr ""
#: staff.server.admin.offline.xacts.print.label
+msgctxt "staff.server.admin.offline.xacts.print.label"
msgid "Print Export"
msgstr ""
msgid "Retrieve Item"
msgstr ""
+#: staff.server.admin.offline.xacts.get_patron.label
+msgctxt "staff.server.admin.offline.xacts.get_patron.label"
+msgid "Retrieve Patron"
+msgstr ""
+
#: staff.server.admin.offline.xacts.get_details.label
msgid "Details"
msgstr ""
msgid "XX-Large"
msgstr ""
+#. "5pt" is an abbreviation for "5 point font size"
#: staff.server.admin.font.5pt
msgid "5pt"
msgstr ""
+#. "6pt" is an abbreviation for "6 point font size"
#: staff.server.admin.font.6pt
msgid "6pt"
msgstr ""
+#. "7pt" is an abbreviation for "7 point font size"
#: staff.server.admin.font.7pt
msgid "7pt"
msgstr ""
+#. "8pt" is an abbreviation for "8 point font size"
#: staff.server.admin.font.8pt
msgid "8pt"
msgstr ""
+#. "9pt" is an abbreviation for "9 point font size"
#: staff.server.admin.font.9pt
msgid "9pt"
msgstr ""
+#. "10pt" is an abbreviation for "10 point font size"
#: staff.server.admin.font.10pt
msgid "10pt"
msgstr ""
+#. "11pt" is an abbreviation for "11 point font size"
#: staff.server.admin.font.11pt
msgid "11pt"
msgstr ""
+#. "12pt" is an abbreviation for "12 point font size"
#: staff.server.admin.font.12pt
msgid "12pt"
msgstr ""
+#. "13pt" is an abbreviation for "13 point font size"
#: staff.server.admin.font.13pt
msgid "13pt"
msgstr ""
+#. "14pt" is an abbreviation for "14 point font size"
#: staff.server.admin.font.14pt
msgid "14pt"
msgstr ""
+#. "15pt" is an abbreviation for "15 point font size"
#: staff.server.admin.font.15pt
msgid "15pt"
msgstr ""
+#. "16pt" is an abbreviation for "16 point font size"
#: staff.server.admin.font.16pt
msgid "16pt"
msgstr ""
+#. "17pt" is an abbreviation for "17 point font size"
#: staff.server.admin.font.17pt
msgid "17pt"
msgstr ""
+#. "18pt" is an abbreviation for "18 point font size"
#: staff.server.admin.font.18pt
msgid "18pt"
msgstr ""
msgstr ""
#: staff.server.admin.transit.list.label
-#: staff.server.admin.index.transits
+msgctxt "staff.server.admin.transit.list.label"
msgid "Transits"
msgstr ""
msgid "Actions for Selected Transits"
msgstr ""
+#: staff.server.admin.transit.list.actions.accesskey
+msgctxt "staff.server.admin.transit.list.actions.accesskey"
+msgid "S"
+msgstr ""
+
#: staff.server.admin.transit.list.copy.label
#: staff.server.admin.transit.list.copy.accesskey
+msgctxt "staff.server.admin.transit.list.copy.label staff.server.admin.transit.list.copy.accesskey"
msgid "&Copy to Clipboard"
msgstr ""
#: staff.server.admin.transit.list.add.label
#: staff.server.admin.transit.list.add.accesskey
+msgctxt "staff.server.admin.transit.list.add.label staff.server.admin.transit.list.add.accesskey"
msgid "&Add to Item Bucket"
msgstr ""
#: staff.server.admin.transit.list.show.label
#: staff.server.admin.transit.list.show.accesskey
+msgctxt "staff.server.admin.transit.list.show.label staff.server.admin.transit.list.show.accesskey"
msgid "&Show in Catalog"
msgstr ""
#: staff.server.admin.transit.list.details.label
#: staff.server.admin.transit.list.details.accesskey
+msgctxt "staff.server.admin.transit.list.details.label staff.server.admin.transit.list.details.accesskey"
msgid "Show &Item Details"
msgstr ""
#: staff.server.admin.transit.list.circs.label
#: staff.server.admin.transit.list.circs.accesskey
+msgctxt "staff.server.admin.transit.list.circs.label staff.server.admin.transit.list.circs.accesskey"
msgid "Show &Last Few Circulations"
msgstr ""
#: staff.server.admin.transit.list.edit.label
#: staff.server.admin.transit.list.edit.accesskey
+msgctxt "staff.server.admin.transit.list.edit.label staff.server.admin.transit.list.edit.accesskey"
msgid "&Edit Item Attributes"
msgstr ""
#: staff.server.admin.transit.list.abort.label
+msgctxt "staff.server.admin.transit.list.abort.label"
msgid "Abort Transits"
msgstr ""
#: staff.server.admin.transit.list.save.label
+msgctxt "staff.server.admin.transit.list.save.label"
msgid "Save Columns"
msgstr ""
msgid "Evergreen: Cash Reports"
msgstr ""
-# This will be followed by the user's name
#: staff.server.admin.cash.welcome
-#: staff.server.admin.closed_dates.welcome
-#: staff.server.admin.hold_pull.greeting
-#: staff.server.admin.non_cat_types.greeting
-#: staff.server.admin.org_settings.greeting
-#: staff.server.admin.stat_cat.greeting
+msgctxt "staff.server.admin.cash.welcome"
msgid "Welcome "
msgstr ""
msgstr ""
#: staff.server.admin.cash.date.select
+msgctxt "staff.server.admin.cash.date.select"
msgid "Date selector"
msgstr ""
msgstr ""
#: staff.server.admin.cash.submit
-msgid "Go!"
+msgctxt "staff.server.admin.cash.submit"
+msgid "Submit"
msgstr ""
#: staff.server.admin.cash.desk
msgid "Evergreen: Library Closed Dates Editor"
msgstr ""
+#: staff.server.admin.closed_dates.welcome
+msgctxt "staff.server.admin.closed_dates.welcome"
+msgid "Welcome "
+msgstr ""
+
#: staff.server.admin.closed_dates.editor.title
msgid " Closed Dates Editor "
msgstr ""
msgid "Reason for Closing"
msgstr ""
+#: staff.server.admin.closed_dates.editor.delete
+msgctxt "staff.server.admin.closed_dates.editor.delete"
+msgid "Delete"
+msgstr ""
+
#: staff.server.admin.closed_dates.editor.allmultiday.delete
msgid "delete"
msgstr ""
-# Translators: do not translate "<b>YYYY-MM-DD</b>" or "<b>HH:MM</b>"
+#. Translators: do not translate "<b>YYYY-MM-DD</b>" or "<b>HH:MM</b>"
#: staff.server.admin.closed_dates.editor.allmultiday.format
-msgid "Note: All dates must have the form <b>YYYY-MM-DD</b>. Times must have the form <b>HH:MM</b>"
+msgid ""
+"Note: All dates must have the form <b>YYYY-MM-DD</b>. Times must have the "
+"form <b>HH:MM</b>"
msgstr ""
#: staff.server.admin.closed_dates.add.allday
msgstr ""
#: staff.server.admin.closed_dates.add.multiday
-msgid "Add Mult-Date Closing"
+msgid "Add Multiple Date Closing"
msgstr ""
#: staff.server.admin.closed_dates.add.detailed
msgstr ""
#: staff.server.admin.closed_dates.save
+msgctxt "staff.server.admin.closed_dates.save"
msgid "Save"
msgstr ""
+#: staff.server.admin.closed_dates.cancel
+msgctxt "staff.server.admin.closed_dates.cancel"
+msgid "Cancel"
+msgstr ""
+
#: staff.server.admin.closed_dates.confirm_delete
msgid "Are you sure you wish to delete the selected close date?"
msgstr ""
msgid "Holdable: "
msgstr ""
+#: staff.server.admin.copy_locations.editor.yes
+msgctxt "staff.server.admin.copy_locations.editor.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.no
+msgctxt "staff.server.admin.copy_locations.editor.no"
+msgid "No"
+msgstr ""
+
#: staff.server.admin.copy_locations.editor.opac_visible.label
msgid "OPAC Visible: "
msgstr ""
msgid "Owning Library:"
msgstr ""
-#: staff.server.admin.copy_locations.editor.name
-#: staff.server.admin.non_cat_types.name
-msgid "Name"
+#: staff.server.admin.copy_locations.editor.library
+msgctxt "staff.server.admin.copy_locations.editor.library"
+msgid "Owning Library"
msgstr ""
#: staff.server.admin.copy_locations.editor.holdable
msgid "Holdable"
msgstr ""
+#: staff.server.admin.copy_locations.editor.help
+msgctxt "staff.server.admin.copy_locations.editor.help"
+msgid "Help"
+msgstr ""
+
#: staff.server.admin.copy_locations.editor.opac_visible
msgid "OPAC Visible"
msgstr ""
+#: staff.server.admin.copy_locations.editor.circulate
+msgctxt "staff.server.admin.copy_locations.editor.circulate"
+msgid "Circulate"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.edit
+msgctxt "staff.server.admin.copy_locations.editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.delete
+msgctxt "staff.server.admin.copy_locations.editor.delete"
+msgid "Delete"
+msgstr ""
+
#: staff.server.admin.copy_locations.editor.help.holdable
-msgid "If a copy location is 'Holdable', copies in that location may have holds placed on them."
+msgid ""
+"If a copy location is 'Holdable', copies in that location may have holds "
+"placed on them."
msgstr ""
#: staff.server.admin.copy_locations.editor.delete.confirm
-msgid "Are you sure you wish to delete the selected copy location? Note: If copies are currently attached to this location, the delete operation will fail."
+msgid ""
+"Are you sure you wish to delete the selected copy location? Note: If copies "
+"are currently attached to this location, the delete operation will fail."
+msgstr ""
+
+#: staff.server.admin.copy_locations.submit
+msgctxt "staff.server.admin.copy_locations.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.copy_locations.cancel
+msgctxt "staff.server.admin.copy_locations.cancel"
+msgid "Cancel"
msgstr ""
#: staff.server.admin.copy_locations.update_success
msgid "Evergreen Holds Pull List"
msgstr ""
-# This will be followed by the org_unit name
+#. This will be followed by the org_unit name
#: staff.server.admin.hold_pull.header
msgid "Evergreen Holds Pull List : "
msgstr ""
+#. This will be followed by the user's name
+#: staff.server.admin.hold_pull.greeting
+msgctxt "staff.server.admin.hold_pull.greeting"
+msgid "Welcome "
+msgstr ""
+
#: staff.server.admin.hold_pull.sort.note
msgid "Note: Click on a column header to sort the column"
msgstr ""
+#: staff.server.admin.hold_pull.title.label
+msgctxt "staff.server.admin.hold_pull.title.label"
+msgid "Title"
+msgstr ""
+
+#: staff.server.admin.hold_pull.author
+msgctxt "staff.server.admin.hold_pull.author"
+msgid "Author"
+msgstr ""
+
#: staff.server.admin.hold_pull.copy_location
msgid "Copy Location"
msgstr ""
+#: staff.server.admin.hold_pull.call_number
+msgctxt "staff.server.admin.hold_pull.call_number"
+msgid "Call Number"
+msgstr ""
+
+#: staff.server.admin.hold_pull.barcode
+msgctxt "staff.server.admin.hold_pull.barcode"
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy
+msgctxt "staff.server.admin.hold_pull.copy"
+msgid "Copy Number"
+msgstr ""
+
+#: staff.server.admin.hold_pull.format
+msgctxt "staff.server.admin.hold_pull.format"
+msgid "Format"
+msgstr ""
+
#: staff.server.admin.hold_pull.patron_barcode
msgid "Patron Barcode"
msgstr ""
msgid "Evergreen: Non Cataloged Types Editor"
msgstr ""
+#. This will be followed by the user's name
+#: staff.server.admin.non_cat_types.greeting
+msgctxt "staff.server.admin.non_cat_types.greeting"
+msgid "Welcome "
+msgstr ""
+
#: staff.server.admin.non_cat_types.editor.title
msgid " Non Cataloged Types Editor "
msgstr ""
msgid "Circulate In-House?"
msgstr ""
+#: staff.server.admin.non_cat_types.editor.create
+msgctxt "staff.server.admin.non_cat_types.editor.create"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name
+msgctxt "staff.server.admin.non_cat_types.name"
+msgid "Name"
+msgstr ""
+
#: staff.server.admin.non_cat_types.owning_location
msgid "Owning Location"
msgstr ""
msgid "Circulate In House"
msgstr ""
-#: staff.server.admin.non_cat_types.delete.confirm
-msgid "Are you sure you wish to delete the selected non-cataloged type?"
+#: staff.server.admin.non_cat_types.edit
+msgctxt "staff.server.admin.non_cat_types.edit"
+msgid "Edit"
msgstr ""
-#: staff.server.admin.non_cat_types.in_house.help
-msgid "If the \"In-House\" flag is set on a non-cataloged type, items that circulate as that type will create \"In-House\" circulations. This is ideal for computer use, room \"rentals\", etc."
+#: staff.server.admin.non_cat_types.delete
+msgctxt "staff.server.admin.non_cat_types.delete"
+msgid "Delete"
msgstr ""
-#: staff.server.admin.non_cat_types.update.success
-msgid "Non-cataloged type successfully updated"
+#: staff.server.admin.non_cat_types.submit
+msgctxt "staff.server.admin.non_cat_types.submit"
+msgid "Submit"
msgstr ""
-#: staff.server.admin.non_cat_types.name_exists
+#: staff.server.admin.non_cat_types.cancel
+msgctxt "staff.server.admin.non_cat_types.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.delete.confirm
+msgid "Are you sure you wish to delete the selected non-cataloged type?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.help
+msgid ""
+"If the \"In-House\" flag is set on a non-cataloged type, items that circulate "
+"as that type will create \"In-House\" circulations. This is ideal for "
+"computer use, room \"rentals\", etc."
+msgstr ""
+
+#: staff.server.admin.non_cat_types.update.success
+msgid "Non-cataloged type successfully updated"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name_exists
msgid "A non-cataloged type with the selected name already exists."
msgstr ""
msgid "Pull List for Hold Requests (Classic)"
msgstr ""
+#: staff.server.admin.index.reports
+msgctxt "staff.server.admin.index.reports"
+msgid "Reports"
+msgstr ""
+
#: staff.server.admin.index.cash_reports
msgid "Cash Reports"
msgstr ""
+#: staff.server.admin.index.transits
+msgctxt "staff.server.admin.index.transits"
+msgid "Transits"
+msgstr ""
+
#: staff.server.admin.index.transit_list
msgid "Transit List"
msgstr ""
msgid "Evergreen: Library Settings Editor"
msgstr ""
+#. This will be followed by the user's name
+#: staff.server.admin.org_settings.greeting
+msgctxt "staff.server.admin.org_settings.greeting"
+msgid "Welcome "
+msgstr ""
+
#: staff.server.admin.org_settings.header
msgid " Library Settings Editor "
msgstr ""
-# This will be followed by the library's name
+#. This will be followed by the library's name
#: staff.server.admin.org_settings.select_library
msgid "Edit Settings for : "
msgstr ""
-# This will be followed by the library's name
+#. This will be followed by the library's name
#: staff.server.admin.org_settings.selected_library
msgid "Library Settings for "
msgstr ""
msgstr ""
#: staff.server.admin.org_settings.apply_all.note
-msgid "I. \"Apply to all Locations\" will force the new setting to be applied to all locations in the location dropdown."
+msgid ""
+"I. \"Apply to all Locations\" will force the new setting to be applied to all "
+"locations in the location dropdown."
msgstr ""
#: staff.server.admin.org_settings.update_success
msgstr ""
#: staff.server.admin.org_settings.apply_all.confirm
-msgid "This will update the setting for all of the locations listed in the dropdown menu. Are you sure you wish to continue?"
+msgid ""
+"This will update the setting for all of the locations listed in the dropdown "
+"menu. Are you sure you wish to continue?"
msgstr ""
#: staff.server.admin.stat_cat.title
msgid "Evergreen: Statistical Category Editor"
msgstr ""
+#: staff.server.admin.stat_cat.greeting
+msgctxt "staff.server.admin.stat_cat.greeting"
+msgid "Welcome "
+msgstr ""
+
#: staff.server.admin.stat_cat.heading
msgid " Statistical Category Editor"
msgstr ""
msgstr ""
#: staff.server.admin.stat_cat.patron
+msgctxt "staff.server.admin.stat_cat.patron"
msgid "Patron"
msgstr ""
+#: staff.server.admin.stat_cat.copy
+msgctxt "staff.server.admin.stat_cat.copy"
+msgid "Copy"
+msgstr ""
+
#: staff.server.admin.stat_cat.create.submit
msgid "Create new statistical category"
msgstr ""
msgstr ""
#: staff.server.admin.stat_cat.patron_stat_cats
+msgctxt "staff.server.admin.stat_cat.patron_stat_cats"
msgid "Patron Statistical Categories"
msgstr ""
#: staff.server.admin.stat_cat.info_prompt
-msgid "* To edit or view information about an entry, click on the entry in the drop-down menu"
+msgid ""
+"* To edit or view information about an entry, click on the entry in the "
+"drop-down menu"
msgstr ""
#: staff.server.admin.stat_cat.none_defined
msgstr ""
#: staff.server.admin.stat_cat.name.label
+msgctxt "staff.server.admin.stat_cat.name.label"
msgid "Statistical Category Name"
msgstr ""
+#: staff.server.admin.stat_cat.owning_library.label
+msgctxt "staff.server.admin.stat_cat.owning_library.label"
+msgid "Owning Library"
+msgstr ""
+
#: staff.server.admin.stat_cat.opac_visibility.label
msgid "OPAC Visibility"
msgstr ""
msgid "Add Entry"
msgstr ""
+#: staff.server.admin.stat_cat.edit
+msgctxt "staff.server.admin.stat_cat.edit"
+msgid "Edit"
+msgstr ""
+
#: staff.server.admin.stat_cat.none
msgid "(none)"
msgstr ""
msgstr ""
#: staff.server.admin.stat_cat.delete.confirm
-msgid "This will delete the selected statistical category and all attached entries. Are you sure you wish to continue?"
+msgid ""
+"This will delete the selected statistical category and all attached entries. "
+"Are you sure you wish to continue?"
msgstr ""
#: staff.server.admin.stat_cat.entry_delete.confirm
msgid "Delete Statistical Category"
msgstr ""
+#: staff.server.admin.stat_cat.cancel
+msgctxt "staff.server.admin.stat_cat.cancel"
+msgid "Cancel"
+msgstr ""
+
#: staff.server.admin.stat_cat.edit_entry_owner
msgid "Owned By "
msgstr ""
#: staff.server.admin.upload_xacts.header
msgid "Uploading transactions..."
msgstr ""
+
+#: staff.server.admin.upload_xacts.upload
+msgid "Upload"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_clip.label
+#: staff.circ.checkin_overlay.sel_clip.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_clip.label staff.circ.checkin_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_bucket.label
+#: staff.circ.checkin_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_bucket.label staff.circ.checkin_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_opac.label
+#: staff.circ.checkin_overlay.sel_opac.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_opac.label staff.circ.checkin_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_copy_details.label
+#: staff.circ.checkin_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_copy_details.label staff.circ.checkin_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_patron.label
+#: staff.circ.checkin_overlay.sel_patron.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_patron.label staff.circ.checkin_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_last_patron.label
+#: staff.circ.checkin_overlay.sel_last_patron.accesskey
+msgid "&Retrieve Last Patron who circulated item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_edit.label
+#: staff.circ.checkin_overlay.sel_edit.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_edit.label staff.circ.checkin_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.label
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_mark_items_damaged.label staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_transit_abort.label
+msgid "Abort Transit"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_spine.label
+#: staff.circ.checkin_overlay.sel_spine.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_spine.label staff.circ.checkin_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.checkin_overlay.save_columns.label
+msgctxt "staff.circ.checkin_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text
+msgid "Check In or Process Item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text.hold_capture
+msgid "Auto-Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkin_overlay.effective_date.label
+msgid "Effective Date:"
+msgstr ""
+
+#: staff.circ.checkin_overlay.actions.label
+#: staff.circ.checkin_overlay.actions.accesskey
+msgctxt "staff.circ.checkin_overlay.actions.label staff.circ.checkin_overlay.actions.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_export.label
+msgctxt "staff.circ.checkin_overlay.checkin_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.checkin_overlay.trim_list.label
+msgctxt "staff.circ.checkin_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.checkin_overlay.strict_barcode.label
+msgctxt "staff.circ.checkin_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.checkin_overlay.do_not_alert_on_precat.label
+msgid "Ignore Pre-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_auto.label
+#: staff.circ.checkin_overlay.checkin_auto.accesskey
+msgid "Auto-&Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.label
+msgctxt "staff.circ.checkout_overlay.duedate_menu.label"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.accesskey
+msgid "u"
+msgstr ""
+
+#: staff.circ.checkout_overlay.barcode.accesskey
+msgctxt "staff.circ.checkout_overlay.barcode.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.accesskey
+msgctxt "staff.circ.checkout_overlay.export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.label
+msgctxt "staff.circ.checkout_overlay.export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.checkout_overlay.sel_clip.label
+msgctxt "staff.circ.checkout_overlay.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkout_overlay.save_columns.label
+msgctxt "staff.circ.checkout_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkout_overlay.strict_barcode.label
+msgctxt "staff.circ.checkout_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.circ_brief.patron_id.label
+msgid "Circulation ID: "
+msgstr ""
+
+#: staff.circ.circ_brief.add_billing.label
+msgctxt "staff.circ.circ_brief.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.circ.circ_brief.xact_start.label
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.circ_brief.due_date.label
+msgctxt "staff.circ.circ_brief.due_date.label"
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines_time.label
+msgid "Stop Fines Time"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_time.label
+msgid "Check In Time"
+msgstr ""
+
+#: staff.circ.circ_brief.circ_lib.label
+msgid "Check Out Library"
+msgstr ""
+
+#: staff.circ.circ_brief.renewal.label
+msgid "Renewal"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines.label
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_lib.label
+msgid "Check In Library"
+msgstr ""
+
+#: staff.circ.circ_summary.caption
+msgid "Last Few Circulations"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_last.label
+#: staff.circ.circ_summary.retrieve_last.accesskey
+msgctxt "staff.circ.circ_summary.retrieve_last.label staff.circ.circ_summary.retrieve_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_all.label
+#: staff.circ.circ_summary.retrieve_all.accesskey
+msgid "Retrieve &All These Patrons"
+msgstr ""
+
+#: staff.circ.circ_summary.done.label
+#: staff.circ.circ_summary.done.accesskey
+msgctxt "staff.circ.circ_summary.done.label staff.circ.circ_summary.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.circ.copy_details.hold_caption
+msgid "Captured for Hold"
+msgstr ""
+
+#: staff.circ.copy_details.transit_caption
+msgctxt "staff.circ.copy_details.transit_caption"
+msgid "In Transit"
+msgstr ""
+
+#: staff.circ.copy_details.circ_caption
+msgid "Last or Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.r_last.label
+#: staff.circ.copy_details.r_last.accesskey
+msgctxt "staff.circ.copy_details.r_last.label staff.circ.copy_details.r_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.circ.copy_details.r_hold.label
+#: staff.circ.copy_details.r_hold.accesskey
+msgid "Retrieve &Hold Patron"
+msgstr ""
+
+#: staff.circ.copy_details.done.label
+#: staff.circ.copy_details.done.accesskey
+msgctxt "staff.circ.copy_details.done.label staff.circ.copy_details.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_clip.label
+#: staff.circ.copy_status_overlay.sel_clip.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_clip.label staff.circ.copy_status_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_bucket.label
+#: staff.circ.copy_status_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_bucket.label staff.circ.copy_status_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_opac.label
+#: staff.circ.copy_status_overlay.sel_opac.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_opac.label staff.circ.copy_status_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_copy_details.label
+#: staff.circ.copy_status_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_copy_details.label staff.circ.copy_status_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_patron.label
+#: staff.circ.copy_status_overlay.sel_patron.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_patron.label staff.circ.copy_status_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_edit.label
+#: staff.circ.copy_status_overlay.sel_edit.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_edit.label staff.circ.copy_status_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_mark_items_damaged.label staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.accesskey
+msgid "&Mark Item Missing"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_transit_abort.label
+msgctxt "staff.circ.copy_status_overlay.sel_transit_abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_checkin.label
+#: staff.circ.copy_status_overlay.sel_checkin.accesskey
+msgid "Check I&n Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_renew.label
+#: staff.circ.copy_status_overlay.sel_renew.accesskey
+msgid "&Renew Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_spine.label
+#: staff.circ.copy_status_overlay.sel_spine.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_spine.label staff.circ.copy_status_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.label
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.save_columns.label
+msgctxt "staff.circ.copy_status_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_items.label
+#: staff.circ.copy_status_overlay.cmd_transfer_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_items.label staff.circ.copy_status_overlay.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_volumes.label
+#: staff.circ.copy_status_overlay.cmd_add_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_add_volumes.label staff.circ.copy_status_overlay.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_library.label
+#: staff.circ.copy_status_overlay.cmd_mark_library.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_library.label staff.circ.copy_status_overlay.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_items.label
+#: staff.circ.copy_status_overlay.cmd_add_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_add_items.label staff.circ.copy_status_overlay.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.label
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_edit_volumes.label staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_volume.label
+#: staff.circ.copy_status_overlay.cmd_mark_volume.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_volume.label staff.circ.copy_status_overlay.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.label
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_volumes.label staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.item_status.label
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.last_scanned.caption
+msgid "Scan Item"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_scan_barcode.label staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey"
+msgid "&Barcode:"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.accesskey
+msgid "Submi&t"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_upload_file.label
+#: staff.circ.copy_status_overlay.copy_status_upload_file.accesskey
+msgid "&Upload From File"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cataloger_actions.label
+#: staff.circ.copy_status_overlay.cataloger_actions.accesskey
+msgid "Actions &for Catalogers"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print.label
+#: staff.circ.copy_status_overlay.copy_status_print.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print.label staff.circ.copy_status_overlay.copy_status_print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.trim_list.label
+msgctxt "staff.circ.copy_status_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.strict_barcode.label
+msgctxt "staff.circ.copy_status_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab1.label
+#: staff.chrome.menu_frame_overlay.tab1.accesskey
+msgid "Tab &1"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab2.label
+#: staff.chrome.menu_frame_overlay.tab2.accesskey
+msgid "Tab &2"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab3.label
+#: staff.chrome.menu_frame_overlay.tab3.accesskey
+msgid "Tab &3"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab4.label
+#: staff.chrome.menu_frame_overlay.tab4.accesskey
+msgid "Tab &4"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab5.label
+#: staff.chrome.menu_frame_overlay.tab5.accesskey
+msgid "Tab &5"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab6.label
+#: staff.chrome.menu_frame_overlay.tab6.accesskey
+msgid "Tab &6"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab7.label
+#: staff.chrome.menu_frame_overlay.tab7.accesskey
+msgid "Tab &7"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab8.label
+#: staff.chrome.menu_frame_overlay.tab8.accesskey
+msgid "Tab &8"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab9.label
+#: staff.chrome.menu_frame_overlay.tab9.accesskey
+msgid "Tab &9"
+msgstr ""
+
+#: staff.circ.in_house_use.main.label
+msgid "Record In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.cmgb1.caption
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.multiplier.label
+#: staff.circ.in_house_use.multiplier.accesskey
+msgid "# of &uses:"
+msgstr ""
+
+#: staff.circ.in_house_use.submit.label
+#: staff.circ.in_house_use.submit.accesskey
+msgctxt "staff.circ.in_house_use.submit.label staff.circ.in_house_use.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.circ.in_house_use.print.label
+msgctxt "staff.circ.in_house_use.print.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.circ.in_house_use.export.label
+msgctxt "staff.circ.in_house_use.export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.in_house_use.trim_list.label
+msgctxt "staff.circ.in_house_use.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.in_house_use.strict_barcode.label
+msgctxt "staff.circ.in_house_use.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.in_house_use.sel_clip.label
+msgctxt "staff.circ.in_house_use.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.in_house_use.save_cols_btn.label
+msgctxt "staff.circ.in_house_use.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.pre_cat.window.title
+msgid "Pre-Catalog Fields"
+msgstr ""
+
+#: staff.circ.pre_cat.caption.label
+msgid "Pre-Catalog Field Entry"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_title.value
+msgctxt "staff.circ.pre_cat.dummy_title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_author.value
+msgctxt "staff.circ.pre_cat.dummy_author.value"
+msgid "Author"
+msgstr ""
+
+#: staff.circ.pre_cat.cancel.label
+#: staff.circ.pre_cat.cancel.accesskey
+msgctxt "staff.circ.pre_cat.cancel.label staff.circ.pre_cat.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.circ.pre_cat.checkout.label
+#: staff.circ.pre_cat.checkout.accesskey
+msgid "Check &Out"
+msgstr ""
+
+#: staff.circ.print_list.main.label
+msgid "Templates"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.label
+msgid "ID"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.name.label
+#: staff.circ.print_list.top_ui.name.accesskey
+msgid "&Name"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.type.label
+msgctxt "staff.circ.print_list.top_ui.type.label"
+msgid "Type"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.actions.label
+msgid "Actions"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.preview.label
+#: staff.circ.print_list.top_ui.preview.accesskey
+msgid "&Preview"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.macros.label
+#: staff.circ.print_list.top_ui.macros.accesskey
+msgid "&Macros"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.default.label
+#: staff.circ.print_list.top_ui.default.accesskey
+msgid "&Default"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.save.label
+#: staff.circ.print_list.top_ui.save.accesskey
+msgid "&Save Locally"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description
+msgid "Be sure to 'Save Locally' before export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.export.label
+#: staff.circ.print_list.top_ui.description.export.accesskey
+msgid "&Export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.import.label
+#: staff.circ.print_list.top_ui.description.import.accesskey
+msgid "&Import"
+msgstr ""
+
+#: staff.circ.print_list.header.label
+msgid "Header"
+msgstr ""
+
+#: staff.circ.print_list.line_item.label
+msgid "Line Item"
+msgstr ""
+
+#: staff.circ.print_list.footer.label
+msgid "Footer"
+msgstr ""
+
+#: staff.main.data.loading
+msgctxt "staff.main.data.loading"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.main.ws_info.entry
+msgid "Enter a workstation name and library to register this client under:"
+msgstr ""
+
+#: staff.main.ws_info.name
+msgctxt "staff.main.ws_info.name"
+msgid "Name"
+msgstr ""
+
+#: staff.main.ws_info.register_btn.label
+#: staff.main.ws_info.register_btn.accesskey
+msgid "&Register"
+msgstr ""
+
+#: staff.cat.bib_brief.record_summary
+msgid "Record Summary"
+msgstr ""
+
+#: staff.cat.bib_brief.title
+msgid "Title:"
+msgstr ""
+
+#: staff.cat.bib_brief.view_marc
+msgid "View MARC"
+msgstr ""
+
+#: staff.cat.bib_brief.author
+msgid "Author:"
+msgstr ""
+
+#: staff.cat.bib_brief.edition
+msgid "Edition:"
+msgstr ""
+
+#: staff.cat.bib_brief.pub_date
+msgid "Publication Date:"
+msgstr ""
+
+#. "TCN" is an abbreviation for "title control number"
+#: staff.cat.bib_brief.title_control_number
+msgid "TCN:"
+msgstr ""
+
+#: staff.cat.bib_brief.created_by
+msgid "Created By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_by
+msgid "Last Edited By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_on
+msgid "Last Edited On:"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard
+msgctxt "staff.circ.holds.copy_to_clipboard"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard.accesskey
+msgctxt "staff.circ.holds.copy_to_clipboard.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog
+msgctxt "staff.circ.holds.show_in_catalog"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog.accesskey
+msgctxt "staff.circ.holds.show_in_catalog.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ.holds.show_item_details
+msgid "Show Item Details"
+msgstr ""
+
+#: staff.circ.holds.show_item_details.accesskey
+msgctxt "staff.circ.holds.show_item_details.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations
+msgid "Show Last Few Circulations"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations.accesskey
+msgctxt "staff.circ.holds.show_last_few_circulations.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.circ.holds.retrieve_patron
+msgctxt "staff.circ.holds.retrieve_patron"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.circ.holds.retrieve_patron.accesskey
+msgctxt "staff.circ.holds.retrieve_patron.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.circ.holds.show_notices
+msgid "Show Notices"
+msgstr ""
+
+#: staff.circ.holds.show_notices.accesskey
+msgctxt "staff.circ.holds.show_notices.accesskey"
+msgid "N"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library
+msgid "Edit Pickup Library"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library.accesskey
+msgctxt "staff.circ.holds.edit_pickup_library.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification
+msgid "Edit Phone Notification"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification.accesskey
+msgctxt "staff.circ.holds.edit_phone_notification.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification
+msgid "Set Email Notification"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification.accesskey
+msgctxt "staff.circ.holds.set_email_notification.accesskey"
+msgid "E"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date
+msgid "Edit Activation Date"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date.accesskey
+msgctxt "staff.circ.holds.edit_activation_date.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.circ.holds.activate_hold
+msgid "Activate Hold"
+msgstr ""
+
+#: staff.circ.holds.activate_hold.accesskey
+msgctxt "staff.circ.holds.activate_hold.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold
+msgid "Suspend Hold"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold.accesskey
+msgctxt "staff.circ.holds.suspend_hold.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range
+msgid "Edit Hold Range"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range.accesskey
+msgctxt "staff.circ.holds.edit_hold_range.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus
+msgid "Edit Hold Focus"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus.accesskey
+msgctxt "staff.circ.holds.edit_hold_focus.accesskey"
+msgid "F"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged
+msgid "Mark Item Damaged"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged.accesskey
+msgctxt "staff.circ.holds.mark_item_damaged.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.circ.holds.mark_item_missing
+msgid "Mark Item Missing"
+msgstr ""
+
+#: staff.circ.holds.mark_item_missing.accesskey
+msgctxt "staff.circ.holds.mark_item_missing.accesskey"
+msgid "M"
+msgstr ""
+
+#: staff.circ.holds.retarget
+msgid "Find Another Target"
+msgstr ""
+
+#: staff.circ.holds.retarget.accesskey
+msgctxt "staff.circ.holds.retarget.accesskey"
+msgid "T"
+msgstr ""
+
+#: staff.circ.holds.cancel
+msgctxt "staff.circ.holds.cancel"
+msgid "Cancel Hold"
+msgstr ""
+
+#: staff.circ.holds.cancel.accesskey
+msgctxt "staff.circ.holds.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.holds.save_columns
+msgctxt "staff.circ.holds.save_columns"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.holds.save_columns.accesskey
+msgctxt "staff.circ.holds.save_columns.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_clip.label
+#: staff.cat.copy_browser.actions.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_clip.label staff.cat.copy_browser.actions.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_copy_details.label
+#: staff.cat.copy_browser.actions.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_copy_details.label staff.cat.copy_browser.actions.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_patron.label
+#: staff.cat.copy_browser.actions.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_patron.label staff.cat.copy_browser.actions.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_items.label
+#: staff.cat.copy_browser.actions.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_items.label staff.cat.copy_browser.actions.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_items.label
+#: staff.cat.copy_browser.actions.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_items.label staff.cat.copy_browser.actions.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_volumes.label
+#: staff.cat.copy_browser.actions.cmd_add_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_volumes.label staff.cat.copy_browser.actions.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_library.label
+#: staff.cat.copy_browser.actions.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_library.label staff.cat.copy_browser.actions.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items.label
+#: staff.cat.copy_browser.actions.cmd_add_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items.label staff.cat.copy_browser.actions.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.label
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_volumes.label staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_volume.label
+#: staff.cat.copy_browser.actions.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_volume.label staff.cat.copy_browser.actions.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.label
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_volume.label staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_damaged.label staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.label
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_missing.label staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_print_spine_labels.label staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.actions.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.save_columns.label
+msgctxt "staff.cat.copy_browser.actions.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_refresh_list.label
+#: staff.cat.copy_browser.actions.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_refresh_list.label staff.cat.copy_browser.actions.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.caption
+msgid "Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.legend
+msgid "Green in the list below means the library has volumes for this record."
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_total
+msgid "Consortial Total:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_available
+msgctxt "staff.cat.copy_browser.holdings_maintenance.consortial_available"
+msgid "Available:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acns
+msgid "Show Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acps
+msgid "Show Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.refresh_button.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.refresh_button.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.label
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.accesskey
+msgid "Show &Libraries With Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.actions.label
+#: staff.cat.copy_browser.holdings_maintenance.actions.accesskey
+msgid "Actions &for Selected Rows"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_clip.label staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_patron.label staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.save_columns.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_buckets.window_title
+msgctxt "staff.cat.copy_buckets.window_title"
+msgid "Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_copies
+msgid "Pending Copies"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.bucket_view
+msgid "Bucket View"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.save_columns1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.save_columns1"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.label
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.accesskey
+msgid "&Add All"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.refresh.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.refresh.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.delete_item.label
+msgid "Remove Selected From Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.export.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.bucket.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.owner.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.label
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print.label staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.batch.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.batch.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_export_to_copy_status.label
+msgid "Show Status"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_transfer_to_volume.label
+msgid "Transfer to Specific Volume"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_edit.label
+msgid "Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_delete.label
+msgid "Delete All from Catalog"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.label
+msgid "Item Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.new_bucket.label staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.label
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.cancel.label staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.window.label
+msgctxt "staff.cat.copy_editor.window.label"
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.groupbox1.label
+msgid "Copy Viewer"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.label
+msgid "Templates:"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.apply_template.label
+#: staff.cat.copy_editor.templates.apply_template.accesskey
+msgid "Appl&y"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.delete_template.label
+msgctxt "staff.cat.copy_editor.templates.delete_template.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.import_template.label
+msgid "Import"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.export_template.label
+msgctxt "staff.cat.copy_editor.templates.export_template.label"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.save_template.label
+msgctxt "staff.cat.copy_editor.templates.save_template.label"
+msgid "Save"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.reset.label
+#: staff.cat.copy_editor.templates.reset.accesskey
+msgid "&Reset"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.label
+msgid "Identification"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.label
+msgctxt "staff.cat.copy_editor.identification.location.label"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.accesskey
+msgctxt "staff.cat.copy_editor.identification.location.accesskey"
+msgid "1"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.circulation.label
+msgctxt "staff.cat.copy_editor.identification.circulation.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.circulation.accesskey
+msgid "2"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.label
+msgid "Miscellaneous"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.accesskey
+msgctxt "staff.cat.copy_editor.identification.miscellaneous.accesskey"
+msgid "3"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.label
+msgid "Statistics"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.accesskey
+msgctxt "staff.cat.copy_editor.identification.statistics.accesskey"
+msgid "4"
+msgstr ""
+
+#: staff.cat.copy_editor.stat_cat_lib_filter_menu.label
+msgid "Library Filter"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_notes.label
+#: staff.cat.copy_editor.copy_notes.accesskey
+msgid "Copy &Notes"
+msgstr ""
+
+#: staff.cat.copy_editor.save.label
+#: staff.cat.copy_editor.save.accesskey
+msgid "&Modify Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+#: staff.cat.copy_editor.cancel.accesskey
+msgctxt "staff.cat.copy_editor.cancel.label staff.cat.copy_editor.cancel.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.cat.copy_summary.label
+msgid "Item Summary"
+msgstr ""
+
+#: staff.cat.copy_summary.barcode.label
+msgctxt "staff.cat.copy_summary.barcode.label"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.cat.copy_summary.location.label
+msgid "Location:"
+msgstr ""
+
+#: staff.cat.copy_summary.call_number.label
+msgid "Call Number:"
+msgstr ""
+
+#: staff.cat.copy_summary.status.label
+msgid "Status:"
+msgstr ""
+
+#: staff.cat.copy_summary.circulate.label
+msgid "Circulate:"
+msgstr ""
+
+#: staff.cat.copy_summary.reference.label
+msgid "Reference:"
+msgstr ""
+
+#: staff.cat.copy_summary.holdable.label
+msgid "Holdable:"
+msgstr ""
+
+#: staff.cat.copy_summary.opac_visible.label
+msgctxt "staff.cat.copy_summary.opac_visible.label"
+msgid "OPAC Visible:"
+msgstr ""
+
+#: staff.cat.copy_summary.created.label
+msgid "Created:"
+msgstr ""
+
+#: staff.cat.copy_summary.edited.label
+msgid "Edited:"
+msgstr ""
+
+#: staff.cat.copy_summary.age_protect.label
+msgid "Age Protect:"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circulations:"
+msgstr ""
+
+#: staff.cat.copy_summary.alternate_view.label
+msgid "Alternate View"
+msgstr ""
+
+#: staff.cat.copy_summary.save_columns.label
+msgctxt "staff.cat.copy_summary.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_summary.sel_clip.label
+msgctxt "staff.cat.copy_summary.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_summary.print_export.label
+msgctxt "staff.cat.copy_summary.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.marcedit.options.label
+msgid "Options"
+msgstr ""
+
+#: staff.cat.marcedit.stackSubfields.label
+#: staff.cat.marcedit.stackSubfields.accesskey
+msgid "&Stack subfields"
+msgstr ""
+
+#: staff.cat.marcedit.validate.label
+#: staff.cat.marcedit.validate.accesskey
+msgid "&Validate"
+msgstr ""
+
+#: staff.cat.marcedit.save-button.accesskey
+msgid "d"
+msgstr ""
+
+#: staff.cat.marcedit.help.label
+#: staff.cat.marcedit.help.accesskey
+msgctxt "staff.cat.marcedit.help.label staff.cat.marcedit.help.accesskey"
+msgid "&Help"
+msgstr ""
+
+#: staff.cat.marcedit.caption.label
+msgid "MARC Record"
+msgstr ""
+
+#: staff.cat.marcedit.toggleFFE.label
+msgid "Fixed Fields -- Record type: "
+msgstr ""
+
+#: staff.cat.marc_new.load.label
+#: staff.cat.marc_new.load.accesskey
+msgid "&Load"
+msgstr ""
+
+#: staff.cat.marc_view.title
+msgid "MARC View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.opacview.label
+#: staff.cat.opac.menuitem.opacview.accesskey
+msgctxt "staff.cat.opac.menuitem.opacview.label staff.cat.opac.menuitem.opacview.accesskey"
+msgid "&OPAC View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.marcview.label
+#: staff.cat.opac.menuitem.marcview.accesskey
+msgctxt "staff.cat.opac.menuitem.marcview.label staff.cat.opac.menuitem.marcview.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.marcedit.label
+#: staff.cat.opac.menuitem.marcedit.accesskey
+msgctxt "staff.cat.opac.menuitem.marcedit.label staff.cat.opac.menuitem.marcedit.accesskey"
+msgid "MARC &Edit"
+msgstr ""
+
+#: staff.cat.opac.menuitem.holding.label
+#: staff.cat.opac.menuitem.holding.accesskey
+msgctxt "staff.cat.opac.menuitem.holding.label staff.cat.opac.menuitem.holding.accesskey"
+msgid "&Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.opac.menuitem.viewholds.label
+#: staff.cat.opac.menuitem.viewholds.accesskey
+msgctxt "staff.cat.opac.menuitem.viewholds.label staff.cat.opac.menuitem.viewholds.accesskey"
+msgid "View Hold&s"
+msgstr ""
+
+#: staff.cat.opac.menuitem.addtobucket.label
+#: staff.cat.opac.menuitem.addtobucket.accesskey
+msgctxt "staff.cat.opac.menuitem.addtobucket.label staff.cat.opac.menuitem.addtobucket.accesskey"
+msgid "Add to &Bucket"
+msgstr ""
+
+#: staff.cat.opac.menuitem.refreshinterfaces.label
+msgid "Refresh All Interfaces"
+msgstr ""
+
+#: staff.cat.opac.menuitem.dupnewtab.label
+msgctxt "staff.cat.opac.menuitem.dupnewtab.label"
+msgid "Duplicate in New Tab"
+msgstr ""
+
+#: staff.cat.opac.menuitem.removeframe.label
+msgctxt "staff.cat.opac.menuitem.removeframe.label"
+msgid "Remove this Frame"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_query_tab.label
+#: staff.cat.record_buckets_overlay.record_query_tab.accesskey
+msgid "Record &Query"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_records_tab.label
+#: staff.cat.record_buckets_overlay.pending_records_tab.accesskey
+msgid "&Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_tab.label
+#: staff.cat.record_buckets_overlay.bucket_view_tab.accesskey
+msgid "Bucket &View"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_panel.label
+msgid "Bucket Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.new_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.delete_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.refresh_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.refresh_bucket.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_query.label
+#: staff.cat.record_buckets_overlay.record_query.accesskey
+msgid "Quer&y"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.label
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey
+msgctxt "staff.cat.record_buckets_overlay.cmd_submit_query.button.label staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.query_help.button.label
+#: staff.cat.record_buckets_overlay.query_help.button.accesskey
+msgctxt "staff.cat.record_buckets_overlay.query_help.button.label staff.cat.record_buckets_overlay.query_help.button.accesskey"
+msgid "&Help"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.query_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.query_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip0.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns0.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_query_to_pending.label
+msgid "Add All to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_query_to_pending.label
+msgctxt "staff.cat.record_buckets_overlay.add_sel_query_to_pending.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.pending_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip1.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns1.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.label
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.accesskey
+msgid "&Add All to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_pending_to_record_bucket.label
+msgid "Add Selected to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_del_item.label
+msgid "Remove Selected from Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.info_box.label
+msgctxt "staff.cat.record_buckets_overlay.info_box.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_owner.label
+msgctxt "staff.cat.record_buckets_overlay.bucket_owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip2.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns2.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.box.label
+msgctxt "staff.cat.record_buckets_overlay.box.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.sel_opac.label
+msgid "Show All in Catalog"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.del_records.label
+msgid "Delete All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.merge_records.label
+msgid "Merge All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.export_records.label
+msgid "Export All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_usmarc.label
+msgid "MARC21"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_unimarc.label
+msgid "UNIMARC"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_xml.label
+msgid "XML"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_eg_bre.label
+msgid "Evergreen BRE"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.groupbox.caption
+msgctxt "staff.cat.record_buckets_quick.groupbox.caption"
+msgid "Record Buckets"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.title
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgid "&Add to Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.label
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.add_to_bucket.label staff.cat.record_buckets_quick.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.new_bucket.label
+#: staff.cat.record_buckets_quick.new_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.new_bucket.label staff.cat.record_buckets_quick.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.cancel.label
+#: staff.cat.record_buckets_quick.cancel.accesskey
+msgctxt "staff.cat.record_buckets_quick.cancel.label staff.cat.record_buckets_quick.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.cat.spine_labels.re-generate.label
+#: staff.cat.spine_labels.re-generate.accesskey
+msgid "Re-&Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview_and_print.label
+#: staff.cat.spine_labels.preview_and_print.accesskey
+msgid "&Preview and Print"
+msgstr ""
+
+#: staff.cat.spine_labels.close_window.label
+#: staff.cat.spine_labels.close_window.accesskey
+msgctxt "staff.cat.spine_labels.close_window.label staff.cat.spine_labels.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.cat.spine_labels.font_size.label
+msgid "Font size (in points):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label
+msgid "Spine Label"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.left_margin.label
+msgid "Left Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_width.label
+msgctxt "staff.cat.spine_labels.spine_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_length.label
+msgctxt "staff.cat.spine_labels.spine_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label
+msgid "Pocket Label"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.middle_margin.label
+msgid "Middle Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_width.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_length.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.title.label
+msgid "Include Title (wraps on word at label width)"
+msgstr ""
+
+#: staff.cat.spine_labels.on_line.label
+msgid "On line:"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.include_title.label
+msgid "Include Title (segment after wrapping)"
+msgstr ""
+
+#: staff.cat.spine_labels.indent_title.label
+msgid "Indent a space?"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_call_number.label
+msgid "Include Call Number"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library_policy_code.label
+msgid "Include Owning Library (policy code)"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library.label
+msgid "Include Owning Library"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_shelving_location.label
+msgid "Include Shelving Location"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_item_barcode.label
+msgid "Include Item Barcode"
+msgstr ""
+
+#: staff.cat.spine_labels.custom.label
+msgid "Custom:"
+msgstr ""
+
+#: staff.cat.spine_labels.available_macros.label
+msgid "Available Macros"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.title
+msgid "Volume and Copy Editor"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.label
+msgid "Volume and Copy Creator"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.check_barcodes.label
+#: staff.cat.volume_copy_creator.check_barcodes.accesskey
+msgid "Check &Barcodes?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.print_labels.label
+#: staff.cat.volume_copy_creator.print_labels.accesskey
+msgid "&Print Labels?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.create.label
+#: staff.cat.volume_copy_creator.create.accesskey
+msgid "Edit then &Create"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.library_label.value
+msgctxt "staff.cat.volume_copy_creator.library_label.value"
+msgid "Library"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.num_of_volumes_label.value
+msgid "# of volumes"
+msgstr ""
+
+#: staff.cat.volume_editor.caption.label
+msgid "Volume Editor"
+msgstr ""
+
+#: staff.cat.volume_editor.modify.label
+msgid "Modify"
+msgstr ""
+
+#: staff.cat.z3950.marc_import.label
+#: staff.cat.z3950.marc_import.accesskey
+msgid "MARC &Import via Z39.50"
+msgstr ""
+
+#: staff.cat.z3950.service_credentials.label
+msgid "Service and Credentials"
+msgstr ""
+
+#: staff.cat.z3950.service.label
+msgid "Service"
+msgstr ""
+
+#: staff.cat.z3950.username.label
+msgctxt "staff.cat.z3950.username.label"
+msgid "Username"
+msgstr ""
+
+#: staff.cat.z3950.password.label
+msgctxt "staff.cat.z3950.password.label"
+msgid "Password"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.label
+msgid "Local Catalog"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.tooltiptext
+msgid "Evergreen Native Catalog"
+msgstr ""
+
+#: staff.cat.z3950.save_creds.label
+#: staff.cat.z3950.save_creds.accesskey
+msgid "Save as &Default"
+msgstr ""
+
+#: staff.cat.z3950.query.label
+msgid "Query"
+msgstr ""
+
+#: staff.cat.z3950.query.description
+msgid ""
+"Tip: Click a search field label and then the 'Save as Default' button to "
+"have that field focused by default."
+msgstr ""
+
+#: staff.cat.z3950.clear.label
+#: staff.cat.z3950.clear.accesskey
+msgctxt "staff.cat.z3950.clear.label staff.cat.z3950.clear.accesskey"
+msgid "&Clear Form"
+msgstr ""
+
+#: staff.cat.z3950.search.label
+#: staff.cat.z3950.search.accesskey
+msgctxt "staff.cat.z3950.search.label staff.cat.z3950.search.accesskey"
+msgid "&Search"
+msgstr ""
+
+#: staff.cat.z3950.results_page.label
+#: staff.cat.z3950.results_page.accesskey
+msgid "Results &Page"
+msgstr ""
+
+#: staff.cat.z3950.results_caption.label
+msgid "Results"
+msgstr ""
+
+#: staff.cat.z3950.search_form.label
+#: staff.cat.z3950.search_form.accesskey
+msgctxt "staff.cat.z3950.search_form.label staff.cat.z3950.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.cat.z3950.page_next.label
+#: staff.cat.z3950.page_next.accesskey
+msgid "Fetch &More Results"
+msgstr ""
+
+#: staff.cat.z3950.export.label
+msgid "CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.clip_button.label
+msgctxt "staff.cat.z3950.clip_button.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.save_cols_btn.label
+msgctxt "staff.cat.z3950.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.z3950.marc_view.label
+#: staff.cat.z3950.marc_view.accesskey
+msgctxt "staff.cat.z3950.marc_view.label staff.cat.z3950.marc_view.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.z3950.marc_import_overlay.label
+#: staff.cat.z3950.marc_import_overlay.accesskey
+msgid "MARC Editor for &Overlay"
+msgstr ""
+
+#: staff.cat.z3950.result_message.marc_import.label
+#: staff.cat.z3950.result_message.marc_import.accesskey
+msgid "MARC Editor for &Import"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieve_patron.label
+msgctxt "staff.pat.barcode_entry.retrieve_patron.label"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.pat.barcode_entry.barcode.label
+#: staff.pat.barcode_entry.barcode.accesskey
+msgctxt "staff.pat.barcode_entry.barcode.label staff.pat.barcode_entry.barcode.accesskey"
+msgid "&Barcode:"
+msgstr ""
+
+#: staff.pat.barcode_entry.submit_btn.label
+#: staff.pat.barcode_entry.submit_btn.accesskey
+msgctxt "staff.pat.barcode_entry.submit_btn.label staff.pat.barcode_entry.submit_btn.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieving.label
+msgctxt "staff.pat.barcode_entry.retrieving.label"
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.bill_cc_info.visa.label
+msgid "Visa"
+msgstr ""
+
+#: staff.patron.bill_cc_info.mastercard.label
+msgid "Mastercard"
+msgstr ""
+
+#: staff.patron.bill_cc_info.american_express.label
+msgid "American Express"
+msgstr ""
+
+#: staff.patron.bill_cc_info.discover.label
+msgid "Discover"
+msgstr ""
+
+#: staff.patron.bill_cc_info.other.label
+msgid "Other"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cc_number.value
+msgid "Credit Card Number"
+msgstr ""
+
+#: staff.patron.bill_cc_info.month_expire.value
+msgid "Expire Month"
+msgstr ""
+
+#: staff.patron.bill_cc_info.year_expire.value
+msgid "Expire Year"
+msgstr ""
+
+#: staff.patron.bill_cc_info.approval_code.value
+msgid "Approval Code"
+msgstr ""
+
+#: staff.patron.bill_cc_info.note.value
+msgctxt "staff.patron.bill_cc_info.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cancel.label
+#: staff.patron.bill_cc_info.cancel.accesskey
+msgctxt "staff.patron.bill_cc_info.cancel.label staff.patron.bill_cc_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_cc_info.submit.label
+#: staff.patron.bill_cc_info.submit.accesskey
+msgid "&Submit this Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.info.label
+msgid "Credit Card Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.type.label
+msgid "Credit Card Type"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_info.label
+msgid "Check Information"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_number.value
+msgid "Check Number"
+msgstr ""
+
+#: staff.patron.bill_check_info.note.value
+msgctxt "staff.patron.bill_check_info.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_check_info.cancel.label
+#: staff.patron.bill_check_info.cancel.accesskey
+msgctxt "staff.patron.bill_check_info.cancel.label staff.patron.bill_check_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_check_info.submit.label
+#: staff.patron.bill_check_info.submit.accesskey
+msgid "&Submit this Information"
+msgstr ""
+
+#: staff.patron.bill_details.bills.label
+msgctxt "staff.patron.bill_details.bills.label"
+msgid "Bills"
+msgstr ""
+
+#: staff.patron.bill_details.save_columns.label
+msgctxt "staff.patron.bill_details.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.bill_details.copy_to_clipboard.label
+msgctxt "staff.patron.bill_details.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.bill_details.print_export.label
+msgctxt "staff.patron.bill_details.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.patron.bill_details.void_selection.label
+msgid "Void selected billings"
+msgstr ""
+
+#: staff.patron.bill_details.payments.label
+msgid "Payments"
+msgstr ""
+
+#: staff.patron.bill_details.show_in_catalog.label
+#: staff.patron.bill_details.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_details.show_in_catalog.label staff.patron.bill_details.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_details.close_window.label
+#: staff.patron.bill_details.close_window.accesskey
+msgctxt "staff.patron.bill_details.close_window.label staff.patron.bill_details.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.patron.bill_history.caption.label
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.add_billing.label
+msgctxt "staff.patron.bill_history.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bill_history.full_details.label
+#: staff.patron.bill_history.full_details.accesskey
+msgid "Full &Details"
+msgstr ""
+
+#: staff.patron.bill_history.show_in_catalog.label
+#: staff.patron.bill_history.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_history.show_in_catalog.label staff.patron.bill_history.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_history.print.label
+#: staff.patron.bill_history.print.accesskey
+msgctxt "staff.patron.bill_history.print.label staff.patron.bill_history.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.patron.bill_history.close_window.label
+#: staff.patron.bill_history.close_window.accesskey
+msgctxt "staff.patron.bill_history.close_window.label staff.patron.bill_history.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.patron.bills_overlay.still_checked_out.label
+msgid "Red Items are still Checked Out"
+msgstr ""
+
+#: staff.patron.bills_overlay.uncheck_all.label
+msgid "Uncheck All"
+msgstr ""
+
+#: staff.patron.bills_overlay.check_all.label
+msgid "Check All"
+msgstr ""
+
+#: staff.patron.bills_overlay.print_bills.label
+msgid "Print Bills"
+msgstr ""
+
+#: staff.patron.bills_overlay.alternate_view.label
+#: staff.patron.bills_overlay.alternate_view.accesskey
+msgid "Alternate &View"
+msgstr ""
+
+#: staff.patron.bills_overlay.summary.label
+msgid "Summary"
+msgstr ""
+
+#: staff.patron.bills_overlay.net_balance.value
+msgid "Net Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.new_balance.value
+msgid "= New Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.pay_bill.label
+msgid "Pay Bill"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.value
+msgid "Payment Type"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.accesskey
+msgctxt "staff.patron.bills_overlay.payment_type.accesskey"
+msgid "t"
+msgstr ""
+
+#: staff.patron.bills_overlay.cash.label
+msgid "Cash"
+msgstr ""
+
+#: staff.patron.bills_overlay.check.label
+msgid "Check"
+msgstr ""
+
+#: staff.patron.bills_overlay.credit_card.label
+msgid "Credit Card"
+msgstr ""
+
+#: staff.patron.bills_overlay.word.label
+msgid "Work"
+msgstr ""
+
+#: staff.patron.bills_overlay.forgive.label
+msgid "Forgive"
+msgstr ""
+
+#: staff.patron.bills_overlay.goods.label
+msgid "Goods"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.value
+msgid "Payment received"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.accesskey
+msgctxt "staff.patron.bills_overlay.payment_received.accesskey"
+msgid "a"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_applied.value
+msgid "- Payment applied"
+msgstr ""
+
+#: staff.patron.bills_overlay.change.value
+msgid "= Change"
+msgstr ""
+
+#: staff.patron.bills_overlay.patron_credit.value
+msgid "or Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.bill_patron.label
+#: staff.patron.bills_overlay.bill_patron.accesskey
+msgid "&Bill Patron"
+msgstr ""
+
+#: staff.patron.bills_overlay.history.label
+#: staff.patron.bills_overlay.history.accesskey
+msgid "&History"
+msgstr ""
+
+#: staff.patron.bills_overlay.annotate_payment.label
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills_overlay.convert_change_to_credit.label
+msgid "Convert Change to Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.apply_payment.label
+#: staff.patron.bills_overlay.apply_payment.accesskey
+msgid "Apply &Payment!"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.bill_number.value
+msgid "Bill #"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.total_billed.value
+msgctxt "staff.patron.bill_summary_overlay.total_billed.value"
+msgid "Total Billed"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.title.value
+msgctxt "staff.patron.bill_summary_overlay.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.type.value
+msgctxt "staff.patron.bill_summary_overlay.type.value"
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.total_paid.value
+msgctxt "staff.patron.bill_summary_overlay.total_paid.value"
+msgid "Total Paid"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_out.value
+msgid "Checked Out"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.start.value
+msgctxt "staff.patron.bill_summary_overlay.start.value"
+msgid "Start"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.balance_owed.value
+msgctxt "staff.patron.bill_summary_overlay.balance_owed.value"
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.due_date.value
+msgctxt "staff.patron.bill_summary_overlay.due_date.value"
+msgid "Due Date"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.finish.value
+msgctxt "staff.patron.bill_summary_overlay.finish.value"
+msgid "Finish"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.renewal.value
+msgid "Renewal?"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_in.value
+msgid "Checked In"
+msgstr ""
+
+#: staff.patron.bill_wizard.title
+msgid "Bill Patron Wizard"
+msgstr ""
+
+#: staff.patron.bill_wizard.create_bill.label
+msgid "Create Bill"
+msgstr ""
+
+#: staff.patron.bill_wizard.location.value
+msgctxt "staff.patron.bill_wizard.location.value"
+msgid "Location"
+msgstr ""
+
+#: staff.patron.bill_wizard.transaction_type.value
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.grocery.label
+msgid "Grocery"
+msgstr ""
+
+#: staff.patron.bill_wizard.circulation.label
+msgctxt "staff.patron.bill_wizard.circulation.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.patron.bill_wizard.billing_type.label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.amount.value
+msgctxt "staff.patron.bill_wizard.amount.value"
+msgid "Amount"
+msgstr ""
+
+#: staff.patron.bill_wizard.note.value
+msgctxt "staff.patron.bill_wizard.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_wizard.cancel.label
+#: staff.patron.bill_wizard.cancel.accesskey
+msgctxt "staff.patron.bill_wizard.cancel.label staff.patron.bill_wizard.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_wizard.submit.label
+#: staff.patron.bill_wizard.submit.accesskey
+msgid "&Submit this Bill"
+msgstr ""
+
+#: staff.patron.display_overlay.none_selected.value
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display_overlay.barred.value
+msgid "(Barred)"
+msgstr ""
+
+#: staff.patron.display_overlay.expired.value
+msgid "(Expired)"
+msgstr ""
+
+#: staff.patron.display_overlay.inactive.value
+msgid "(In-Active)"
+msgstr ""
+
+#: staff.patron.display_overlay.juvenile.value
+msgid "(Juvenile)"
+msgstr ""
+
+#: staff.patron.display_overlay.alert.value
+msgid "(Alert)"
+msgstr ""
+
+#: staff.patron.display_overlay.see_notes.value
+msgid "(See Notes)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_bills.value
+msgid "(Maximum Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_overdues.value
+msgid "(Maximum Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_bills.value
+msgid "(Has Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_overdues.value
+msgid "(Has Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_dob.value
+msgid "(Invalid Date of Birth)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_address.value
+msgid "(Invalid Address)"
+msgstr ""
+
+#: staff.patron.display_overlay.exit.label
+#: staff.patron.display_overlay.exit.accesskey
+msgctxt "staff.patron.display_overlay.exit.label staff.patron.display_overlay.exit.accesskey"
+msgid "E&xit"
+msgstr ""
+
+#: staff.patron.display_overlay.search_form.label
+#: staff.patron.display_overlay.search_form.accesskey
+msgctxt "staff.patron.display_overlay.search_form.label staff.patron.display_overlay.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.patron.display_overlay.retrieve_patron.label
+#: staff.patron.display_overlay.retrieve_patron.accesskey
+msgid "&Retrieve Patron"
+msgstr ""
+
+#: staff.patron.bills_overlay.selected_balance.value
+msgid "Selected Balance:"
+msgstr ""
+
+#: staff.patron.bills_overlay.unselected.value
+msgid "Un-Selected:"
+msgstr ""
+
+#: staff.patron.bills_overlay.voided.value
+msgid "Voided:"
+msgstr ""
+
+#: staff.patron.bills_overlay.auto_print.label
+msgctxt "staff.patron.bills_overlay.auto_print.label"
+msgid "Auto-Print"
+msgstr ""
+
+#: staff.patron.hold_notices.add_record_notification.label
+#: staff.patron.hold_notices.add_record_notification.accesskey
+msgid "&Add Record of Notification"
+msgstr ""
+
+#: staff.patron.hold_notices.close_window.label
+#: staff.patron.hold_notices.close_window.accesskey
+msgctxt "staff.patron.hold_notices.close_window.label staff.patron.hold_notices.close_window.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.patron.hold_notices.method.label
+msgid "Method:"
+msgstr ""
+
+#: staff.patron.holds_overlay.pickup_lib.label
+msgctxt "staff.patron.holds_overlay.pickup_lib.label"
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.request_lib.label
+msgid "Requesting Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.fulfillment_lib.label
+msgid "Fulfilling Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.circ_lib.label
+msgid "Item Circulating Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.owning_lib.label
+msgid "Volume Owning Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.home_lib.label
+msgid "Patron Home Library foo"
+msgstr ""
+
+#: staff.patron.holds_overlay.fetch_more.label
+#: staff.patron.holds_overlay.fetch_more.accesskey
+msgid "Fetch &More Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.lib_filter_checkbox.label
+msgid "Filter:"
+msgstr ""
+
+#: staff.patron.holds_overlay.actions_for_holds.label
+#: staff.patron.holds_overlay.actions_for_holds.accesskey
+msgid "Actions for &Selected Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.holds_export.label
+msgctxt "staff.patron.holds_overlay.holds_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.patron.info_group.clone.label
+#: staff.patron.info_group.clone.accesskey
+msgid "Register a &New Group Member by Cloning Selected Patrons"
+msgstr ""
+
+#: staff.patron.info_group.remove.label
+#: staff.patron.info_group.remove.accesskey
+msgid "&Remove Selected Patrons from the Group"
+msgstr ""
+
+#: staff.patron.info_group.move.label
+#: staff.patron.info_group.move.accesskey
+msgid "&Move Selected Patrons to another patron's group."
+msgstr ""
+
+#: staff.patron.info_group.add.label
+#: staff.patron.info_group.add.accesskey
+msgid "Move &another patron to this patron group."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_p.label
+#: staff.patron.info_group.retrieve_p.accesskey
+msgid "Retrieve Selected &Patrons"
+msgstr ""
+
+#: staff.patron.info_group.group_member.label
+msgid "Group Members"
+msgstr ""
+
+#: staff.patron.info_group.choose_an_action.label
+#: staff.patron.info_group.choose_an_action.accesskey
+msgid "Choose an &Action..."
+msgstr ""
+
+#: staff.patron.info_surveys.survey_number.value
+msgid "Survey #"
+msgstr ""
+
+#: staff.patron.info_surveys.last_answered.value
+msgid "Last Answered on:"
+msgstr ""
+
+#: staff.patron.info_surveys.answer.value
+msgid "Answer:"
+msgstr ""
+
+#: staff.patron.info.notes.label
+#: staff.patron.info.notes.accesskey
+msgid "&Notes"
+msgstr ""
+
+#: staff.patron.info.stat_cats.label
+#: staff.patron.info.stat_cats.accesskey
+msgid "&Statistical Categories"
+msgstr ""
+
+#: staff.patron.info.surveys.label
+#: staff.patron.info.surveys.accesskey
+msgid "Surve&ys"
+msgstr ""
+
+#: staff.patron.info.group.label
+#: staff.patron.info.group.accesskey
+msgid "&Group"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.value
+msgid "Include inactive patrons?"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.accesskey
+msgctxt "staff.patron.search_form_overlay.inactive.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.patron.search_form_overlay.search_range_menu.value
+msgid "Limit results to patrons in"
+msgstr ""
+
+#: staff.patron.search_result_overlay.save_cols.label
+msgctxt "staff.patron.search_result_overlay.save_cols.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.search_result_overlay.copy_to_clipboard.label
+msgctxt "staff.patron.search_result_overlay.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.search_result_overlay.print.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.summary_overlay.psagbc.alert.label
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.summary_overlay.pssgbc.standing.label
+msgctxt "staff.patron.summary_overlay.pssgbc.standing.label"
+msgid "Standing"
+msgstr ""
+
+#: staff.patron.summary_overlay.overdue.value
+msgid "Long Overdue:"
+msgstr ""
+
+#: staff.patron.summary_overlay.claimed_returned.value
+msgid "Claimed Returned:"
+msgstr ""
+
+#: staff.patron.summary_overlay.lost_label.value
+msgid "Lost:"
+msgstr ""
+
+#: staff.patron.summary_overlay.noncat_label.value
+msgid "Non Cataloged:"
+msgstr ""
+
+#: staff.patron.summary_overlay.summary_contact.label
+msgid "ID and Contact Information"
+msgstr ""
+
+#: staff.patron.summary_overlay.opac_login.value
+msgid "OPAC Login:"
+msgstr ""
+
+#: staff.patron.user_buckets.stub_not_implemented
+msgid "Just a stub, Not Yet Implemented"
+msgstr ""
+
+#: staff.patron.user_edit.title
+msgctxt "staff.patron.user_edit.title"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.user_edit.user_name.label
+msgid "User Name:"
+msgstr ""
+
+#: staff.patron.user_edit.barcode.label
+msgctxt "staff.patron.user_edit.barcode.label"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.patron.user_edit.firstname.label
+msgctxt "staff.patron.user_edit.firstname.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron.user_edit.middlename.label
+msgctxt "staff.patron.user_edit.middlename.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron.user_edit.lastname.label
+msgctxt "staff.patron.user_edit.lastname.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.patron.user_edit.working_location.label
+msgid "Working Location"
+msgstr ""
+
+#: staff.patron.user_edit.permission.label
+msgid "Permission"
+msgstr ""
+
+#: staff.patron.user_edit.applied.label
+msgid "Applied"
+msgstr ""
+
+#: staff.patron.user_edit.depth.label
+msgid "Depth"
+msgstr ""
+
+#: staff.patron.user_edit.grantable.label
+msgid "Grantable"
+msgstr ""
+
+#: staff.patron.user_edit.save.label
+msgctxt "staff.patron.user_edit.save.label"
+msgid "Save"
+msgstr ""
+
+#: staff.patron.ue.ev_user_editor.label
+msgctxt "staff.patron.ue.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.ue.user_greeting.label
+msgctxt "staff.patron.ue.user_greeting.label"
+msgid "Welcome "
+msgstr ""
+
+#: staff.patron.ue.interface_note.label
+msgid ""
+"Note: required or invalid fields are <span style='border-bottom: 2px solid "
+"red;'>marked with color</span>"
+msgstr ""
+
+#: staff.patron.ue.view_errors.label
+msgctxt "staff.patron.ue.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: staff.patron.ue.nav.user_id.label
+msgctxt "staff.patron.ue.nav.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: staff.patron.ue.nav.contact_info.label
+msgctxt "staff.patron.ue.nav.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: staff.patron.ue.nav.addresses.label
+msgctxt "staff.patron.ue.nav.addresses.label"
+msgid "3. Addresses"
+msgstr ""
+
+#: staff.patron.ue.nav.groups_permissions.label
+msgctxt "staff.patron.ue.nav.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: staff.patron.ue.nav.stat_categories.label
+msgctxt "staff.patron.ue.nav.stat_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.nav.surveys.label
+msgctxt "staff.patron.ue.nav.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: staff.patron.ue.nav.finish.label
+msgctxt "staff.patron.ue.nav.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: staff.patron.ue.loading_data.label
+msgctxt "staff.patron.ue.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.patron.ue.found_duplicate_patron.label
+msgctxt "staff.patron.ue.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: staff.patron.ue.mark_lost.label
+msgctxt "staff.patron.ue.mark_lost.label"
+msgid "Mark Lost"
+msgstr ""
+
+#: staff.patron.ue.username.label
+msgctxt "staff.patron.ue.username.label"
+msgid "Username"
+msgstr ""
+
+#: staff.patron.ue.password.label
+msgctxt "staff.patron.ue.password.label"
+msgid "Password"
+msgstr ""
+
+#: staff.patron.ue.reset.label
+msgctxt "staff.patron.ue.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: staff.patron.ue.re_password.label
+msgctxt "staff.patron.ue.re_password.label"
+msgid "Password: "
+msgstr ""
+
+#: staff.patron.ue.verify_password.label
+msgctxt "staff.patron.ue.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: staff.patron.ue.first_name.label
+msgctxt "staff.patron.ue.first_name.label"
+msgid "First Name"
+msgstr ""
+
+#: staff.patron.ue.middle_name.label
+msgctxt "staff.patron.ue.middle_name.label"
+msgid "Middle Name"
+msgstr ""
+
+#: staff.patron.ue.last_name.label
+msgctxt "staff.patron.ue.last_name.label"
+msgid "Last Name"
+msgstr ""
+
+#: staff.patron.ue.suffix.label
+msgctxt "staff.patron.ue.suffix.label"
+msgid "Suffix"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.choose.label
+msgctxt "staff.patron.ue.choose.label"
+msgid "- Pick -"
+msgstr ""
+
+#: staff.patron.ue.dob.label
+msgctxt "staff.patron.ue.dob.label"
+msgid "Date of Birth"
+msgstr ""
+
+#: staff.patron.ue.primary_id_type.label
+msgctxt "staff.patron.ue.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.required.label
+msgctxt "staff.patron.ue.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: staff.patron.ue.primary_id.label
+msgctxt "staff.patron.ue.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: staff.patron.ue.secondary_id_type.label
+msgctxt "staff.patron.ue.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.none_selected.label
+msgctxt "staff.patron.ue.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: staff.patron.ue.secondary_id.label
+msgctxt "staff.patron.ue.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: staff.patron.ue.parent_guardian.label
+msgctxt "staff.patron.ue.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: staff.patron.ue.email_address.label
+msgctxt "staff.patron.ue.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: staff.patron.ue.day_phone.label
+msgctxt "staff.patron.ue.day_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: staff.patron.ue.evening_phone.label
+msgctxt "staff.patron.ue.evening_phone.label"
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.patron.ue.other_phone.label
+msgctxt "staff.patron.ue.other_phone.label"
+msgid "Other Phone"
+msgstr ""
+
+#: staff.patron.ue.home_library.label
+msgctxt "staff.patron.ue.home_library.label"
+msgid "Home Library"
+msgstr ""
+
+#: staff.patron.ue.address.label
+msgctxt "staff.patron.ue.address.label"
+msgid "Address"
+msgstr ""
+
+#: staff.patron.ue.in_city_limits.label
+msgctxt "staff.patron.ue.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: staff.patron.ue.valid.label
+msgctxt "staff.patron.ue.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: staff.patron.ue.mailing_address.label
+msgctxt "staff.patron.ue.mailing_address.label"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.patron.ue.physical_address.label
+msgctxt "staff.patron.ue.physical_address.label"
+msgid "Physical Address"
+msgstr ""
+
+#: staff.patron.ue.owned_address.label
+msgctxt "staff.patron.ue.owned_address.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: staff.patron.ue.edit.label
+msgctxt "staff.patron.ue.edit.label"
+msgid "Edit"
+msgstr ""
+
+#: staff.patron.ue.label.label
+msgctxt "staff.patron.ue.label.label"
+msgid "Label"
+msgstr ""
+
+#: staff.patron.ue.zip_code.label
+msgid "Zip Code"
+msgstr ""
+
+#: staff.patron.ue.street_1.label
+msgctxt "staff.patron.ue.street_1.label"
+msgid "Street 1"
+msgstr ""
+
+#: staff.patron.ue.street_2.label
+msgctxt "staff.patron.ue.street_2.label"
+msgid "Street 2"
+msgstr ""
+
+#: staff.patron.ue.city.label
+msgctxt "staff.patron.ue.city.label"
+msgid "City"
+msgstr ""
+
+#: staff.patron.ue.county.label
+msgctxt "staff.patron.ue.county.label"
+msgid "County"
+msgstr ""
+
+#: staff.patron.ue.state.label
+msgctxt "staff.patron.ue.state.label"
+msgid "State"
+msgstr ""
+
+#: staff.patron.ue.country.label
+msgctxt "staff.patron.ue.country.label"
+msgid "Country"
+msgstr ""
+
+#: staff.patron.ue.delete_this_address.label
+msgid "Delete this Address"
+msgstr ""
+
+#: staff.patron.ue.detach_this_address.label
+msgid "Detach this Address"
+msgstr ""
+
+#: staff.patron.ue.create_address.label
+msgid "Create a New Address"
+msgstr ""
+
+#: staff.patron.ue.profile_group.label
+msgctxt "staff.patron.ue.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#: staff.patron.ue.accoutn_expire_date.label
+msgctxt "staff.patron.ue.accoutn_expire_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: staff.patron.ue.internet_access_level.label
+msgctxt "staff.patron.ue.internet_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: staff.patron.ue.active.label
+msgctxt "staff.patron.ue.active.label"
+msgid "Active"
+msgstr ""
+
+#: staff.patron.ue.barred.label
+msgctxt "staff.patron.ue.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: staff.patron.ue.set_lead_account.label
+msgctxt "staff.patron.ue.set_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: staff.patron.ue.claims_returned_count.label
+msgctxt "staff.patron.ue.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr ""
+
+#: staff.patron.ue.alert_message.label
+msgctxt "staff.patron.ue.alert_message.label"
+msgid "Alert Message"
+msgstr ""
+
+#: staff.patron.ue.stat_cat_name.label
+msgctxt "staff.patron.ue.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: staff.patron.ue.owner.label
+msgctxt "staff.patron.ue.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: staff.patron.ue.value.label
+msgctxt "staff.patron.ue.value.label"
+msgid "Value"
+msgstr ""
+
+#: staff.patron.ue.no_surveys_for_location.label
+msgctxt "staff.patron.ue.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: staff.patron.ue.message1.label
+msgid "You are now ready to save the user to the database."
+msgstr ""
+
+#: staff.patron.ue.message2.label
+msgid ""
+"To view or print a summary of the changes, click on the 'View Summary' link."
+msgstr ""
+
+#: staff.patron.ue.message3.label
+msgid "To save the user, click on the 'Save User' button."
+msgstr ""
+
+#: staff.patron.ue.view_summary.label
+msgid "View Summary"
+msgstr ""
+
+#: staff.patron.ue.back.label
+msgctxt "staff.patron.ue.back.label"
+msgid "Back"
+msgstr ""
+
+#: staff.patron.ue.forward.label
+msgctxt "staff.patron.ue.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: staff.patron.ue.user_summary.label
+msgid ""
+"User Summary Information (Deleted items are marked in <span "
+"class='deleted'>color</span><span>)</span>"
+msgstr ""
+
+#: staff.patron.ue.barcode.label
+msgctxt "staff.patron.ue.barcode.label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.patron.ue.addresses.label
+msgctxt "staff.patron.ue.addresses.label"
+msgid "Addresses"
+msgstr ""
+
+#: staff.patron.ue.address_label.label
+msgctxt "staff.patron.ue.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: staff.patron.ue.billing_address.label
+msgctxt "staff.patron.ue.billing_address.label"
+msgid "Billing Address"
+msgstr ""
+
+#: staff.patron.ue.profile.label
+msgctxt "staff.patron.ue.profile.label"
+msgid "Profile"
+msgstr ""
+
+#: staff.patron.ue.expire_date.label
+msgctxt "staff.patron.ue.expire_date.label"
+msgid "Expire Date"
+msgstr ""
+
+#: staff.patron.ue.family_lead_account.label
+msgctxt "staff.patron.ue.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: staff.patron.ue.stat_categories.label
+msgctxt "staff.patron.ue.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.survey.label
+msgctxt "staff.patron.ue.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: staff.patron.ue.question.label
+msgctxt "staff.patron.ue.question.label"
+msgid "Question"
+msgstr ""
+
+#: staff.patron.ue.answer.label
+msgctxt "staff.patron.ue.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: staff.patron.ue.bad_dob.label
+msgid ""
+"The date of birth field is not formatted correctly. We are expecting YYYY-"
+"MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_username.label
+msgid "Username is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_passwords.label
+msgid "Passwords do not match or are invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_firstname.label
+msgid "First name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_middlename.label
+msgid "Middle name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_lastname.label
+msgid "Last name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_barcode.label
+msgid "Barcode is invalid"
+msgstr ""
+
+#: staff.patron.ue.duplicate_barcode.label
+msgid "The selected barcode already exists in the database"
+msgstr ""
+
+#: staff.patron.ue.new_barcode_warn.label
+msgid ""
+"This will de-activate the existing barcode for this user! If you wish to "
+"continue, enter the new barcode below. Otherwise, click the Cancel button."
+msgstr ""
+
+#: staff.patron.ue.no_ident.label
+msgid "You must select at least one type of identification"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_dl.label
+msgid "Invalid drivers license. Should be STATE-NUMBER"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_ssn.label
+msgid "Invalid social security number. Format should be 111-22-3333"
+msgstr ""
+
+#: staff.patron.ue.bad_email.label
+msgid "The email addresses is not valid"
+msgstr ""
+
+#: staff.patron.ue.bad_phone.label
+msgid "An invalid phone number was entered"
+msgstr ""
+
+#: staff.patron.ue.no_profile.label
+msgctxt "staff.patron.ue.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: staff.patron.ue.bad_expire.label
+msgid "The user expiration date is invalid. We are expecting YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_claims_returned.label
+msgid "The claims returned count is invalid"
+msgstr ""
+
+#: staff.patron.ue.unknown_error.label
+msgid "An unknown formatting error occurred"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_label.label
+msgid "Address label is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_street.label
+msgid "Address street is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_city.label
+msgid "Address city is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_county.label
+msgid "Address county is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_state.label
+msgid "Address state is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_country.label
+msgid "Address country is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_zip.label
+msgid "Address zip is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_survey.label
+msgid "Required survey is unanswered"
+msgstr ""
+
+#: staff.patron.ue.delete_addr_warn.label
+msgid ""
+"This will remove this address from the user. Are you sure you wish to "
+"continue?"
+msgstr ""
+
+#: staff.patron.ue.yes.label
+msgctxt "staff.patron.ue.yes.label"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.ue.no.label
+msgctxt "staff.patron.ue.no.label"
+msgid "No"
+msgstr ""
+
+#: staff.patron.ue.summary_window.label
+msgid "Patron Summary"
+msgstr ""
+
+#: staff.patron.ue.success.label
+msgid "User update succeeded"
+msgstr ""
+
+#: staff.patron.ue.dup_ident1.label
+msgid ""
+"A user already exists with the primary identification provided. Do you wish "
+"to view the duplicate record now?"
+msgstr ""
+
+#: staff.patron.ue.dup_username.label
+msgid ""
+"The selected username is in use by another user. Please choose a different "
+"username."
+msgstr ""
+
+#: staff.patron.ue.dup_barcode.label
+msgid ""
+"The selected barcode is in use by another user. Please choose a different "
+"barcode."
+msgstr ""
+
+#: staff.patron.ue.cancel_confirm.label
+msgid ""
+"Are you sure you wish to cancel this editing session? Canceling will destroy "
+"any unsaved changes you have made thus far to the user."
+msgstr ""
+
+#: staff.patron.ue.juv_guardian.label
+msgid ""
+"This patron is under 18 years of age. Please enter the name of the parent "
+"or guardian for this patron."
+msgstr ""
+
+#: staff.patron.ue.bad_date.label
+msgid ""
+"The date provided is either in the future or invalid. We are expecting "
+"YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.made_barred.label
+msgid ""
+"Please add a note to the patron's alert message explaining why the patron is "
+"barred."
+msgstr ""
+
+#: staff.patron.items_overlay.sel_clip.label
+#: staff.patron.items_overlay.sel_clip.accesskey
+msgctxt "staff.patron.items_overlay.sel_clip.label staff.patron.items_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_bucket.label
+#: staff.patron.items_overlay.sel_bucket.accesskey
+msgctxt "staff.patron.items_overlay.sel_bucket.label staff.patron.items_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.patron.items_overlay.show_catalog.label
+msgctxt "staff.patron.items_overlay.show_catalog.label"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_copy_details.label
+#: staff.patron.items_overlay.sel_copy_details.accesskey
+msgctxt "staff.patron.items_overlay.sel_copy_details.label staff.patron.items_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_patron.label
+#: staff.patron.items_overlay.sel_patron.accesskey
+msgctxt "staff.patron.items_overlay.sel_patron.label staff.patron.items_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.patron.items_overlay.items_edit.label
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items_overlay.items_mark_lost.label
+msgid "Mark Lost (by Patron)"
+msgstr ""
+
+#: staff.patron.items_overlay.items_claimed_returned.label
+msgid "Mark Claimed Returned"
+msgstr ""
+
+#: staff.patron.items_overlay.items_renew.label
+msgctxt "staff.patron.items_overlay.items_renew.label"
+msgid "Renew"
+msgstr ""
+
+#: staff.patron.items_overlay.items_renew_all.label
+msgid "Renew All"
+msgstr ""
+
+#: staff.patron.items_overlay.items_checkin.label
+msgctxt "staff.patron.items_overlay.items_checkin.label"
+msgid "Check In"
+msgstr ""
+
+#: staff.patron.items_overlay.add_billing.label
+msgctxt "staff.patron.items_overlay.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.items_overlay.save_columns.label
+msgctxt "staff.patron.items_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.items_overlay.actions_for_selected_items.label
+#: staff.patron.items_overlay.actions_for_selected_items.accesskey
+msgctxt "staff.patron.items_overlay.actions_for_selected_items.label staff.patron.items_overlay.actions_for_selected_items.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.patron.items_overlay.show_noncats.label
+#: staff.patron.items_overlay.show_noncats.accesskey
+msgid "Show &Non-Cataloged Circulations in List Above"
+msgstr ""
+
+#: staff.patron.items_overlay.items_export.label
+msgctxt "staff.patron.items_overlay.items_export.label"
+msgid "Export"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.ev_user_editor.label
+msgctxt "ev.staff.patron.ue_xhtml.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.welcome.label
+msgctxt "ev.staff.patron.ue_xhtml.welcome.label"
+msgid "Welcome "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.view_errors.label
+msgctxt "ev.staff.patron.ue_xhtml.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.user_id.label
+msgctxt "ev.staff.patron.ue_xhtml.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.contact_info.label
+msgctxt "ev.staff.patron.ue_xhtml.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.addresses.label
+msgctxt "ev.staff.patron.ue_xhtml.addresses.label"
+msgid "3. Addresses"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.groups_permissions.label
+msgctxt "ev.staff.patron.ue_xhtml.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.statistical_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.statistical_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.surveys.label
+msgctxt "ev.staff.patron.ue_xhtml.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.finish.label
+msgctxt "ev.staff.patron.ue_xhtml.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.loading_data.label
+msgctxt "ev.staff.patron.ue_xhtml.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.found_duplicate_patron.label
+msgctxt "ev.staff.patron.ue_xhtml.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.barcode.label
+msgctxt "ev.staff.patron.ue_xhtml.barcode.label"
+msgid "Barcode"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mark_lost.label
+msgctxt "ev.staff.patron.ue_xhtml.mark_lost.label"
+msgid "Mark Lost"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.username.label
+msgctxt "ev.staff.patron.ue_xhtml.username.label"
+msgid "Username"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.password.label
+msgctxt "ev.staff.patron.ue_xhtml.password.label"
+msgid "Password"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.reset.label
+msgctxt "ev.staff.patron.ue_xhtml.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.re_password.label
+msgctxt "ev.staff.patron.ue_xhtml.re_password.label"
+msgid "Password: "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.verify_password.label
+msgctxt "ev.staff.patron.ue_xhtml.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.first_name.label
+msgctxt "ev.staff.patron.ue_xhtml.first_name.label"
+msgid "First Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.middle_name.label
+msgctxt "ev.staff.patron.ue_xhtml.middle_name.label"
+msgid "Middle Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.last_name.label
+msgctxt "ev.staff.patron.ue_xhtml.last_name.label"
+msgid "Last Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.suffix.label"
+msgid "Suffix"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.pick_suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.pick_suffix.label"
+msgid "- Pick -"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.dob.label
+msgctxt "ev.staff.patron.ue_xhtml.dob.label"
+msgid "Date of Birth"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.primary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.primary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.parent_guardian.label
+msgctxt "ev.staff.patron.ue_xhtml.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.email_address.label
+msgctxt "ev.staff.patron.ue_xhtml.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.daytime_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.daytime_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.evening_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.evening_phone.label"
+msgid "Evening Phone"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.other_phone.label
+msgid "Other (Cell Phone)"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.home_library.label
+msgctxt "ev.staff.patron.ue_xhtml.home_library.label"
+msgid "Home Library"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address.label
+msgctxt "ev.staff.patron.ue_xhtml.address.label"
+msgid "Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.in_city_limits.label
+msgctxt "ev.staff.patron.ue_xhtml.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.valid.label
+msgctxt "ev.staff.patron.ue_xhtml.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mailing_address.label
+msgctxt "ev.staff.patron.ue_xhtml.mailing_address.label"
+msgid "Mailing Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.physical_address.label
+msgctxt "ev.staff.patron.ue_xhtml.physical_address.label"
+msgid "Physical Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address_owned_by.label
+msgctxt "ev.staff.patron.ue_xhtml.address_owned_by.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.label.label
+msgctxt "ev.staff.patron.ue_xhtml.label.label"
+msgid "Label"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.zip.label
+msgid "Zip"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.street1.label
+msgctxt "ev.staff.patron.ue_xhtml.street1.label"
+msgid "Street 1"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.street2.label
+msgctxt "ev.staff.patron.ue_xhtml.street2.label"
+msgid "Street 2"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.city.label
+msgctxt "ev.staff.patron.ue_xhtml.city.label"
+msgid "City"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.conuty.label
+msgctxt "ev.staff.patron.ue_xhtml.conuty.label"
+msgid "County"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.state.label
+msgctxt "ev.staff.patron.ue_xhtml.state.label"
+msgid "State"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.country.label
+msgctxt "ev.staff.patron.ue_xhtml.country.label"
+msgid "Country"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.profile_group.label
+msgctxt "ev.staff.patron.ue_xhtml.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.required.label
+msgctxt "ev.staff.patron.ue_xhtml.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.account_expiration_date.label
+msgctxt "ev.staff.patron.ue_xhtml.account_expiration_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.net_access_level.label
+msgctxt "ev.staff.patron.ue_xhtml.net_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.active.label
+msgctxt "ev.staff.patron.ue_xhtml.active.label"
+msgid "Active"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.barred.label
+msgctxt "ev.staff.patron.ue_xhtml.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.set_family_group_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.set_family_group_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.claims_returned_count.label
+msgctxt "ev.staff.patron.ue_xhtml.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.alert_message.label
+msgctxt "ev.staff.patron.ue_xhtml.alert_message.label"
+msgid "Alert Message"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.stat_cat_name.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.owner.label
+msgctxt "ev.staff.patron.ue_xhtml.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.value.label
+msgctxt "ev.staff.patron.ue_xhtml.value.label"
+msgid "Value"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.none_selected.label
+msgctxt "ev.staff.patron.ue_xhtml.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.no_surveys_for_location.label
+msgctxt "ev.staff.patron.ue_xhtml.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.finishing_message.label
+msgid ""
+"You are now ready to save the user to the database.<br/>To view or print a "
+"summary of the changes, click on the 'View Summary' link.<br/>To save the "
+"user, click on the 'Save User' button."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.back.label
+msgctxt "ev.staff.patron.ue_xhtml.back.label"
+msgid "Back"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.forward.label
+msgctxt "ev.staff.patron.ue_xhtml.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.secondary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.secondary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address_label.label
+msgctxt "ev.staff.patron.ue_xhtml.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mailing.label
+msgid "Mailing"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.billing.label
+msgid "Billing"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.profile.label
+msgctxt "ev.staff.patron.ue_xhtml.profile.label"
+msgid "Profile"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.expire_date.label
+msgctxt "ev.staff.patron.ue_xhtml.expire_date.label"
+msgid "Expire Date"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.family_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.stat_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.survey.label
+msgctxt "ev.staff.patron.ue_xhtml.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.question.label
+msgctxt "ev.staff.patron.ue_xhtml.question.label"
+msgid "Question"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.answer.label
+msgctxt "ev.staff.patron.ue_xhtml.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.claims_return_confirm.label
+msgid ""
+"This will reset the claims returned count for this user. Are you sure you "
+"wish to perform this action?"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.unsaved_changes.label
+msgid "You have unsaved changes."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.xact_collision.label
+msgid ""
+"It appears that someone else was also editing this user. Saving the user now "
+"will destroy their changes. Click 'OK' to refresh the user and continue "
+"editing. Click 'Cancel' to do nothing. Note that you will not be able to "
+"save the user until this page has been refreshed."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.no_profile.label
+msgctxt "ev.staff.patron.ue_xhtml.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.print_page.label
+msgid "Print Page"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.return_to_editor.label
+msgid "Return to Editor"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.save_user.value
+msgid "Save User"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.save_clone_user.value
+msgid "Save and Clone User"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.cancel.value
+msgctxt "ev.staff.patron.ue_xhtml.cancel.value"
+msgid "Cancel"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.alert_message_reset.value
+msgid "Clear"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.date_selector.label
+msgctxt "ev.staff.patron.ue_xhtml.date_selector.label"
+msgid "Date selector"
+msgstr ""
+
+#: staff.portal.title
+msgid "Evergreen Staff Client Portal Page"
+msgstr ""
+
+#: staff.portal.default.welcome
+msgid ""
+"This is the Evergreen staff client portal page. You can customize this with "
+"the information or functionality your organization needs to support its "
+"operations. For example, you could add links to process and procedure "
+"documents."
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:3
+msgid "Recognized search keys include:"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:4
+msgid "Search key"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:5
+msgid "Definition"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:6
+msgid ""
+"keyword</strong>, <strong>title</strong>, "
+"<strong>author</strong>, <strong>subject</strong>, and "
+"<strong>series</strong> support additional search subclasses, "
+"specified with a <kbd>|</kbd>. For example: "
+"<kbd>title|proper:gone with the wind"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:7
+msgid "keyword/kw"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:8
+msgid "search keyword(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:9
+msgid "author/au/name"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:10
+msgid "search author(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:11
+msgid "title/ti"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:12
+msgid "search title"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:13
+msgid "subject/su"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:14
+msgid "search subject"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:15
+msgid "series/se"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:16
+msgid "search series"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:17
+msgid "lang"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:18
+msgid "limit by language (specifiy multiple langs with lang:l1 lang:l2 ...)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:19
+msgid "site"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:20
+msgid "search at specified org unit, corresponds to actor.org_unit.shortname"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:21
+msgid "sort"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:22
+msgid "sort type (title, author, pubdate)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:23
+msgid "dir"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:24
+msgid "sort direction (asc, desc)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:25
+msgid "available"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:26
+msgid "if set to anything other than \"false\" or \"0\", limits to available items"
+msgstr ""
-# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
+#. extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: common.exception
msgid "Invalid Date"
msgstr ""
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.unimplemented
+msgid "Not Yet Implemented"
+msgstr ""
+
#: cat.bib_record
msgid "Bib Record: %1$s"
msgstr ""
+#: cat.opac.delete_record.confirm
+msgid "Are you sure you want to delete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.delete_record
+msgid "Delete Record"
+msgstr ""
+
+#: cat.opac.delete
+msgid "Delete"
+msgstr ""
+
+#: cat.opac.undelete_record.confirm
+msgid "Are you sure you want to undelete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.undelete_record
+msgid "Undelete Record"
+msgstr ""
+
+#: cat.opac.undelete
+msgid "Undelete"
+msgstr ""
+
+#: cat.opac.cancel
+msgid "Cancel"
+msgstr ""
+
+#: cat.opac.record_deleted
+msgid "Record deleted."
+msgstr ""
+
+#: cat.opac.record_deleted.confirm
+msgctxt "cat.opac.record_deleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#: cat.opac.record_undeleted
+msgid "Record undeleted."
+msgstr ""
+
+#: cat.opac.record_undeleted.confirm
+msgctxt "cat.opac.record_undeleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#. # variables: document ID, error code, error description
+#: cat.opac.record_delete.error
+msgid "Error deleting record #%1$s : %2$s : %3$s"
+msgstr ""
+
#: cat.save_record
msgid "Save Record"
msgstr ""
#: staff.admin.survey.save_response.accesskey
msgid "R"
msgstr ""
+
+#: circ.bad_checkdigit
+msgid "This barcode has a bad check digit."
+msgstr ""
+
+#: circ.barcode.enter
+msgid "Please enter a patron barcode first."
+msgstr ""
+
+#: circ.barcode.warning
+msgid "Barcode Warning"
+msgstr ""
+
+#: circ.standalone
+msgid "Standalone"
+msgstr ""
+
+#: circ.duplicate_scan.msg
+msgid "This barcode has already been scanned."
+msgstr ""
+
+#: circ.duplicate_scan.field
+msgid "Duplicate Scan"
+msgstr ""
+
+#: circ.offline_checkout.nonbarcoded
+msgid "or choose a non-barcoded option..."
+msgstr ""
+
+#: circ.offline_checkout.items
+msgid "Enter the number of items:"
+msgstr ""
+
+#: circ.offline_checkout.download.warning
+msgid ""
+"WARNING: The non-barcode types have not been downloaded from the server. "
+"You should log in to retrieve these."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.lost
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.expired
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.barred
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.blocked
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.unknown
+msgid ""
+"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
+"%3$s."
+msgstr ""
+
+#: circ.offline_checkout.date.early
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: circ.offline_checkout.required_field
+msgid "Required Field"
+msgstr ""
+
+#: circ.offline_checkout.valid_count
+msgid "Please try again and enter a valid count."
+msgstr ""
+
+#: circ.offline_checkout.required_value
+msgid "Required Value"
+msgstr ""
+
+#: circ.offline_register.future.birth.date
+msgid "Patron needs to be born yesterday."
+msgstr ""
+
+#: circ.offline_register.invalid.birth.date
+msgid "Happy birthday! You need to be more than 0 days old."
+msgstr ""
+
+#: circ.offline_register.survey.prompt
+msgid "Choose a response..."
+msgstr ""
+
+#: circ.offline_register.missing.post_code
+msgid "Missing Address : Postal Code"
+msgstr ""
+
+#: circ.offline_register.missing.state
+msgid "Missing Address : State"
+msgstr ""
+
+#: circ.offline_register.missing.city
+msgid "Missing Address : City"
+msgstr ""
+
+#: circ.offline_register.missing.street1
+msgid "Missing Address : Line 1"
+msgstr ""
+
+#: circ.offline_register.missing.ident_value
+msgid "Missing Identification Value"
+msgstr ""
+
+#: circ.offline_register.missing.ident_type
+msgid "Missing Identification Type"
+msgstr ""
+
+#: circ.offline_register.missing.dob
+msgid "Missing Date of Birth"
+msgstr ""
+
+#: circ.offline_register.missing.first_given_name
+msgid "Missing First Name"
+msgstr ""
+
+#: circ.offline_register.missing.family_name
+msgid "Missing Last Name"
+msgstr ""
+
+#: circ.offline_register.missing.passwd
+msgid "Missing Password"
+msgstr ""
+
+#: circ.offline_register.missing.barcode
+msgid "Missing Barcode"
+msgstr ""
+
+#: circ.offline_register.missing.profile
+msgid "Missing Profile"
+msgstr ""
+
+#: circ.offline_register.missing.home_ou
+msgid "Missing Home Library"
+msgstr ""
+
+#: circ.offline_register.missing.alert
+msgid "Please fix the following:"
+msgstr ""
+
+#: circ.offline_register.patron.saved
+msgid "Patron Registration Saved"
+msgstr ""
+
+#: circ.offline_register.missing.library.list
+msgid "Missing library list."
+msgstr ""
+
+#: circ.offline_register.missing.profile.list
+msgid "Missing profile list."
+msgstr ""
+
+#: circ.offline_register.missing.id.type.list
+msgid "Missing identification type list."
+msgstr ""
+
+#: circ.offline_register.missing.required.surveys
+msgid "Missing required surveys."
+msgstr ""
+
+#: circ.offline_register.missing.files.error
+msgid ""
+"ERROR: Offline patron registration requires some server-generated files. "
+"Please login periodically to retrieve these files."
+msgstr ""
+
+#: jsan.file_not_found.error
+msgid "File not found: %1$s"
+msgstr ""
+
+#: jsan.namespace.creation.error
+msgid "Could not create namespace[%1$s]: %2$s"
+msgstr ""
+
+#: menu.cmd_edit_copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: menu.cmd_edit_volume_buckets.tab
+msgid "Volume Buckets"
+msgstr ""
+
+#: menu.cmd_edit_record_buckets.tab
+msgid "Record Buckets"
+msgstr ""
+
+#: menu.cmd_edit_user_buckets.tab
+msgid "User Buckets"
+msgstr ""
+
+#: menu.cmd_replace_barcode.prompt
+msgid "Enter original barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.label
+msgctxt "menu.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.retrieval.error
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.prompt
+msgid "Enter the replacement barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.label
+msgctxt "menu.cmd_replace_barcode.replacement.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.blank.error
+msgid "Rename aborted. Blank for barcode not allowed."
+msgstr ""
+
+#: menu.cmd_replace_barcode.duplicate.error
+msgid "Rename aborted. Another copy has barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.testing.error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.permission.error
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.error
+msgid "Error renaming item."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.failure
+msgid "The rename operation probably failed."
+msgstr ""
+
+#: menu.cmd_search_opac.tab
+msgid "Catalog"
+msgstr ""
+
+#: menu.cmd_search_bib_id.tab
+msgid "What is the internal ID for the bibliographic record?"
+msgstr ""
+
+#: menu.cmd_search_bib_id.prompt
+msgid "Bib ID Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.tab
+msgid "What is the TCN or accession ID for the record?"
+msgstr ""
+
+#: menu.cmd_search_tcn.prompt
+msgid "TCN Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.not_found.error
+msgid "\"%1$s\" not found"
+msgstr ""
+
+#: menu.cmd_search_tcn.deleted.error
+msgid "\"%1$s\" is deleted. Show the deleted record anyway?"
+msgstr ""
+
+#: menu.cmd_patron_register.related.tab
+msgid "Editing Related Patron"
+msgstr ""
+
+#: menu.cmd_patron_register.tab
+msgid "Register Patron"
+msgstr ""
+
+#: menu.cmd_browse_holds.tab
+msgid "Hold Browser"
+msgstr ""
+
+#: menu.cmd_browse_holds_shelf.tab
+msgid "Holds Shelf"
+msgstr ""
+
+#: menu.cmd_browse_hold_pull_list.tab
+msgid "On Shelf Pull List"
+msgstr ""
+
+#: menu.cmd_local_admin.tab
+msgid "Local Administration"
+msgstr ""
+
+#: menu.cmd_retrieve_last_patron.session.error
+msgid "No patron visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.session.error
+msgid "No record visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.status
+msgid "Retrieving title..."
+msgstr ""
+
+#: menu.cmd_chg_session.label
+msgid "Change Login"
+msgstr ""
+
+#: menu.cmd_chg_session.operator.label
+msgid "Change Operator: %1$s"
+msgstr ""
+
+#: menu.cmd_manage_offline_xacts.tab
+msgid "Offline Transactions"
+msgstr ""
+
+#: menu.cmd_download_patrons.complete.status
+msgid "Download completed"
+msgstr ""
+
+#: menu.cmd_download_patrons.error
+msgid ""
+"There was a problem with the download. The server returned a status %1$s : "
+"%2$s"
+msgstr ""
+
+#: menu.cmd_stat_cat_edit.tab
+msgid "Statistical Category Editor"
+msgstr ""
+
+#: menu.cmd_non_cat_type_edit.tab
+msgid "Non-Cataloged Type Editor"
+msgstr ""
+
+#: menu.cmd_copy_location_edit.tab
+msgid "Copy Location Editor"
+msgstr ""
+
+#: menu.cmd_console.tab
+msgid "JavaScript Console"
+msgstr ""
+
+#: menu.cmd_shell.tab
+msgid "JavaScript Shell"
+msgstr ""
+
+#: menu.cmd_xuleditor.tab
+msgid "XUL Editor"
+msgstr ""
+
+#: menu.cmd_fieldmapper.tab
+msgid "Fieldmapper"
+msgstr ""
+
+#: menu.cmd_public_opac.tab
+msgid "OPAC"
+msgstr ""
+
+#: menu.cmd_extension_manager.tab
+msgid "Extension Manager"
+msgstr ""
+
+#: menu.cmd_theme_manager.tab
+msgid "Theme Manager"
+msgstr ""
+
+#: menu.cmd_shutdown.prompt
+msgid "Exit Evergreen completely?"
+msgstr ""
+
+#: menu.spawn_search.msg
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: menu.close_all_tabs.error
+msgid "Error closing all tabs"
+msgstr ""
+
+#: menu.new_tab.tab
+msgid "Tab"
+msgstr ""
+
+#: menu.set_tab.error
+msgid "pause for error"
+msgstr ""
+
+#: main.testing
+msgid "Testing"
+msgstr ""
+
+#: main.transaction_export.title
+msgid "Save Transaction File As"
+msgstr ""
+
+#: main.transaction_export.prompt
+msgid "Would you like to overwrite the existing file %1$s?"
+msgstr ""
+
+#: main.transaction_export.prompt.title
+msgid "Transaction Export Warning"
+msgstr ""
+
+#: main.transaction_export.success.prompt
+msgid ""
+"Your transactions have been successfully exported to file %1$s. We strongly "
+"recommend that you now purge the transactions from this staff client. Would "
+"you like for us to do this?"
+msgstr ""
+
+#: main.transaction_export.success.title
+msgid "Transaction Export Successful"
+msgstr ""
+
+#: main.transaction_export.filename.error
+msgid ""
+"Error purging transactions: Taking too long to find a unique filename for "
+"archival."
+msgstr ""
+
+#: main.transaction_export.duplicate.warning
+msgid ""
+"Please note that you now have two sets of identical transactions. Unless "
+"the set you just exported is solely for archival purposes, we run the risk "
+"of duplicate transactions being processed on the server."
+msgstr ""
+
+#: main.transaction_export.no_filename.error
+msgid ""
+"Either you did not choose a filename, or you tried to overwrite an existing "
+"file."
+msgstr ""
+
+#: main.transaction_export.no_transactions.error
+msgid "There are no outstanding transactions to export."
+msgstr ""
+
+#: main.transaction_import.outstanding.error
+msgid ""
+"There are already outstanding transactions on this staff client. Upload "
+"these first."
+msgstr ""
+
+#: main.transaction_import.title
+msgid "Import Transaction File"
+msgstr ""
+
+#: main.transaction_import.delete.prompt
+msgid ""
+"Your transactions have been successfully migrated to this staff client.\n"
+"\n"
+"We recommend that you delete the external copy. Would you like for us to "
+"delete %1$s?"
+msgstr ""
+
+#: main.transaction_import.success
+msgid "Transaction Import Successful"
+msgstr ""
+
+#: main.on_debug.clear_cache
+msgid "cache cleared"
+msgstr ""
+
+#: main.on_debug.debug
+msgid "debug the debug :D"
+msgstr ""
+
+#: main.about_btn.label
+msgid "About this client..."
+msgstr ""
+
+#: main.new_window_btn.label
+msgid "Open New Window"
+msgstr ""
+
+#: main.new_window_btn.login_first_warning
+msgid "Please login first!"
+msgstr ""
+
+#: main.settings.migrate
+msgid ""
+"This version of the staff client stores local settings in a different "
+"location than your previous installation. Should we attempt to migrate "
+"these settings?"
+msgstr ""
+
+#: main.settings.migrate.failed
+msgid ""
+"WARNING: Unable to migrate legacy settings. The settings and configuration "
+"files appear to exist in multiple locations. \n"
+"To resolve this problem manually, please consider:\n"
+"\t%1$s\n"
+"which is in the directory where we want to store settings for the current "
+"operating system account, and:\n"
+"\t%2$s\n"
+"which is where we used to store such information.\n"
+msgstr ""
+
+#: main.settings.migrate.confirm
+msgid ""
+"Move the settings and configuration files from\n"
+"%1$s\n"
+"to\n"
+"%2$s?"
+msgstr ""
+
+#: main.settings.migrate.error
+msgid "Error trying to move %1$s to directory %2$s"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
-# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-20 23:22-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-# =================================================================
-# Some generic stuff
-# =================================================================
+#. =================================================================
+#. Some generic stuff
+#. =================================================================
#: lang.version
msgid "remote v1"
msgstr ""
msgstr ""
#: common.callnumber
-#: opac.advanced.quick.cn
+msgctxt "common.callnumber"
msgid "Call Number"
msgstr ""
msgstr ""
#: common.isbn
-#: opac.advanced.quick.isbn
+msgctxt "common.isbn"
msgid "ISBN"
msgstr ""
msgid "Format"
msgstr ""
-# Message displayed while search results are loading
+#. Message displayed while search results are loading
#: common.loading
-#: myopac.fines.status
+msgctxt "common.loading"
msgid "Loading..."
msgstr ""
#: common.login
-#: opac.login.login
+msgctxt "common.login"
msgid "Login"
msgstr ""
msgstr ""
#: common.cancel
-#: common.org.cancel
-#: myopac.holds.cancel
-#: myopac.holds.cancel_selected
+msgctxt "common.cancel"
msgid "Cancel"
msgstr ""
#: common.library
-#: rdetail.copyInfo.library
+msgctxt "common.library"
msgid "Library"
msgstr ""
msgstr ""
#: opac.advanced.wizard.title
-#: opac.navigate.advanced
+msgctxt "opac.advanced.wizard.title"
msgid "Advanced Search"
msgstr ""
msgstr ""
#: common.ofAtLeast
-msgid " of at least "
+msgid " of about "
msgstr ""
#: common.relevancy
msgstr ""
#: common.tips.tip2
-msgid "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
+msgid ""
+"If you don't find what you want try expanding your search using the range "
+"selector at the right of the search bar"
msgstr ""
#: common.org.openAll
msgid "Close All"
msgstr ""
+#: common.org.cancel
+msgctxt "common.org.cancel"
+msgid "Cancel"
+msgstr ""
+
#: common.org.loading
msgid "Loading library selector..."
msgstr ""
-# ==========================================================
-# Tips
#: common.org.note
-#: tips.label
+msgctxt "common.org.note"
msgid "Tip:"
msgstr ""
#: common.org.notetext
-msgid "Click on a location's name to select it. Click on the folder icons to expand a section."
+msgid ""
+"Click on a location's name to select it. Click on the folder icons to "
+"expand a section."
+msgstr ""
+
+#: opac.login.login
+msgctxt "opac.login.login"
+msgid "Login"
msgstr ""
-# =================================================================
-# Footer
#: opac.basic
-#: footer.basic
+msgctxt "opac.basic"
msgid "Basic Catalog (HTML only)"
msgstr ""
#: common.password_criteria
-msgid "The password must be at least 7 characters in length, "
-"\tcontain at least one letter (a-z/A-Z), "
-"\tand contain at least one number."
+msgid ""
+"The password must be at least 7 characters in length, \n"
+"contain at least one letter (a-z/A-Z), \n"
+"and contain at least one number."
msgstr ""
#: common.a2z.title
msgstr ""
#: holds.where_am_i
-msgid "PINES is a statewide system with both patrons and items "
-"\tassociated with over 250 libraries, holds lists are not as simple as "
-"\t'first come, first served' in PINES. A complex matrix combining "
-"\tconsideration of item ownership, patron home library, and item purchase "
-"\tdate determines priorities for holds; the list is dynamic, changing "
-"\twith every hold placed. Therefore, any indication of a place in the "
-"\tholds list would be inaccurate. The PINES holds system is designed to "
-"\tobtain a requested item in the fastest and most efficient way possible. "
-"\tYour PINES library will contact you when you hold items become "
-"\tavailable."
+msgid ""
+"Holds lists are not as simple as \n"
+"'first come, first served.' A complex matrix combining \n"
+"consideration of item ownership, patron home library, and item purchase \n"
+"date determines priorities for holds; the list is dynamic, changing \n"
+"with every hold placed. Therefore, any indication of a place in the \n"
+"holds list would be inaccurate. The holds system is designed to \n"
+"obtain a requested item in the fastest and most efficient way possible. \n"
+"Your library will contact you when you hold items become \n"
+"available."
msgstr ""
#: holds.advanced_options
-msgid "If you wish to broaden the scope of your hold to include other "
-"\tversions of this title, select the formats that would be acceptable. "
-"\tThe first available copy will be sent to you."
+msgid ""
+"If you wish to broaden the scope of your hold to include other \n"
+"versions of this title, select the formats that would be acceptable. \n"
+"The first available copy will be sent to you."
msgstr ""
-# =================================================================
-# Events and Permissions
-# =================================================================
+#. =================================================================
+#. Events and Permissions
+#. =================================================================
#: ilsevent.0
msgid "Operation Succeeded"
msgstr ""
msgid "User is not allowed to create holds for other users at this location"
msgstr ""
-# =================================================================
-# common/pages
-# =================================================================
+#. =================================================================
+#. common/pages
+#. =================================================================
#: common.cn.loading
msgid "Loading Callnumber Page..."
msgstr ""
msgstr ""
#: common.cn.shelf
-#: rdetail.extras.browser
+msgctxt "common.cn.shelf"
msgid "Shelf Browser"
msgstr ""
msgid "Regular"
msgstr ""
-# Regular / Large
+#. Regular / Large
#: common.textsize.separator
msgid "/"
msgstr ""
msgstr ""
#: home.js.disabled
-msgid "JavaScript must be enabled in order for you to use the regular Evergreen Catalog. "
-"However, it seems JavaScript is either disabled or not supported by your browser. "
-"To use the regular Evergreen Catalog, enable JavaScript by changing your browser options, then "
-"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. "
-"<br/><br/>Alternatively, you can use the basic HTML-only catalog "
-"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
-msgstr ""
-
-# =================================================================
-# MyOPAC bookbag page
-# =================================================================
+msgid ""
+"JavaScript must be enabled in order for you to use the regular Evergreen "
+"Catalog. \n"
+"However, it seems JavaScript is either disabled or not supported by your "
+"browser. \n"
+"To use the regular Evergreen Catalog, enable JavaScript by changing your "
+"browser options, then \n"
+"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. \n"
+"<br/><br/>Alternatively, you can use the basic HTML-only catalog \n"
+"<a style='color: blue; text-decoration: underline;' "
+"href='/opac/extras/slimpac/start.html'>here</a>."
+msgstr ""
+
+#. =================================================================
+#. MyOPAC bookbag page
+#. =================================================================
#: myopac.delete.bookbag
-msgid "This will remove the selected bookbag and all items contained within the bookbag. "
+msgid ""
+"This will remove the selected bookbag and all items contained within the "
+"bookbag. \n"
"Are you sure you wish to continue?"
msgstr ""
msgstr ""
#: myopac.bookbags.title
-#: myopac.bookbags
+msgctxt "myopac.bookbags.title"
msgid "My Bookbags"
msgstr ""
msgid "Hide"
msgstr ""
-#: myopac.bookbag.share
-msgid "Share"
-msgstr ""
-
#: myopac.delete
msgid "Delete"
msgstr ""
msgstr ""
#: myopac.publish.text
-msgid "Sharing a Bookbag means that the contents of the Bookbag will be visible to others. "
-"To see the public view of a shared Bookbag, click the \"View\" link in the "
+msgid ""
+"Sharing a Bookbag means that the contents of the Bookbag will be visible to "
+"others. \n"
+"To see the public view of a shared Bookbag, click the \"View\" link in the \n"
"\"Shared\" column of the Bookbag list at the top of this page."
msgstr ""
msgstr ""
#: myopac.publish.confirm
-msgid "Sharing this bookbag will allow the contents "
-"of the bookback to be seen by others. Are you sure you wish to share this bookbag?"
+msgid ""
+"Sharing this bookbag will allow the contents \n"
+"of the bookbag to be seen by others. Are you sure you wish to share this "
+"bookbag?"
msgstr ""
#: myopac.unpublish.confirm
msgstr ""
#: myopac.create.warning
-msgid "Warning: Adding items to a bookbag creates a link between you and the "
-"items in the database. The contents of the bookbag are NOT publicly "
-"viewable unless the bookbag is shared. However, if you prefer not to "
-"have any link between your patron record and a particular item or items, "
-"we suggest that you do not place said items in a bookbag or that you "
+msgid ""
+"Warning: Adding items to a bookbag creates a link between you and the \n"
+"items in the database. The contents of the bookbag are NOT publicly \n"
+"viewable unless the bookbag is shared. However, if you prefer not to \n"
+"have any link between your patron record and a particular item or items, \n"
+"we suggest that you do not place said items in a bookbag or that you \n"
"avoid using bookbags all together. Thank you."
msgstr ""
msgid "Bookbags are..."
msgstr ""
-# =================================================================
-# MyOPAC Checked Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Checked Page
+#. =================================================================
#: myopac.checked.out
msgid "Total items out:"
msgstr ""
msgstr ""
#: myopac.checked.renew.fail
-msgid "The system is unable to renew the selected item at this time. This usually means the item is needed to fulfill a hold. Please see a librarian for further help."
+msgid ""
+"The system is unable to renew the selected item at this time. This usually "
+"means the item is needed to fulfill a hold. Please see a librarian for "
+"further help."
msgstr ""
#: myopac.checked.renew.fail2
-msgid "PINES policy prevents the renewal of this item at this time. Please see a librarian for further details."
+msgid ""
+"Library policy prevents the renewal of this item at this time. Please see a "
+"librarian for further details."
msgstr ""
-# =================================================================
-# MyOPAC Fines Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Fines Page
+#. =================================================================
#: myopac.fines.title
msgid "Summary"
msgstr ""
msgid "Balance Owed"
msgstr ""
+#: myopac.fines.status
+msgctxt "myopac.fines.status"
+msgid "Loading..."
+msgstr ""
+
#: myopac.fines.overdue
msgid "Overdue Materials"
msgstr ""
msgstr ""
#: myopac.fines.due
-#: rdetail.cn.due
+msgctxt "myopac.fines.due"
msgid "Due Date"
msgstr ""
msgid "Billing Type"
msgstr ""
-# =================================================================
-# MyOPAC Holds Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Holds Page
+#. =================================================================
#: myopac.holds.formats
msgid "Formats"
msgstr ""
msgid "Ready for Pickup"
msgstr ""
+#: myopac.holds.cancel
+msgctxt "myopac.holds.cancel"
+msgid "Cancel"
+msgstr ""
+
#: myopac.holds.verify
-msgid "If you wish to cancel the selected hold, click OK, otherwise click Cancel."
+msgid ""
+"If you wish to cancel the selected hold, click OK, otherwise click Cancel."
msgstr ""
#: myopac.holds.freeze_selected
-msgid "Freeze"
+msgid "Suspend"
msgstr ""
#: myopac.holds.thaw_selected
-msgid "Un-freeze"
+msgid "Activate"
msgstr ""
#: myopac.holds.thaw_date_selected
-msgid "Set Un-freeze date"
+msgid "Set Active Date"
+msgstr ""
+
+#: myopac.holds.cancel_selected
+msgctxt "myopac.holds.cancel_selected"
+msgid "Cancel"
msgstr ""
#: myopac.holds.processing
msgstr ""
#: myopac.holds.freeze.confirm
-msgid "Are you sure you wish to freeze the selected holds? "
-"Note that if an item has already been selected to fulfill the hold, it will not be frozen"
+msgid ""
+"Are you sure you wish to suspend the selected holds? \n"
+"If an item has already been selected to fulfill the hold, it will not be "
+"suspended"
msgstr ""
#: myopac.holds.thaw.confirm
-msgid "Are you sure you wish to un-freeze the selected holds?"
+msgid "Are you sure you wish to activate the selected holds?"
msgstr ""
#: myopac.holds.thaw_date.confirm
-msgid "Are you sure you wish to change the un-freeze date for the selected holds?"
+msgid ""
+"Are you sure you wish to change the activate date for the selected holds?"
msgstr ""
#: myopac.holds.freeze.select_thaw
-msgid "Select an 'Un-Freeze' date. This is the date at which the holds will become active again. "
-"If no date is chosen, the holds will remain frozen until they are manually un-frozen."
+msgid ""
+"Select an automatic activation date. If no date is chosen, the holds will "
+"remain suspended until they are manually activated."
msgstr ""
#: opac.holds.freeze
-msgid "Freeze this hold"
+msgid "Suspend this hold"
msgstr ""
#: opac.holds.freeze.help
-msgid "A 'frozen' will retain its place in the queue, but will not be fulfilled until it has been unfrozen."
+msgid ""
+"A suspended hold will retain its place in the queue, but will not be "
+"fulfilled until it has been activated."
msgstr ""
#: opac.holds.freeze.thaw_date
-msgid "Automatically un-freeze hold on:"
+msgid "Automatically activate hold on:"
msgstr ""
#: opac.holds.freeze.thaw_date.format
msgid "YYYY-MM-DD"
msgstr ""
-# =================================================================
-# MyOPAC Preferences Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Preferences Page
+#. =================================================================
#: myopac.prefs.title
msgid "Preferences"
msgstr ""
msgstr ""
#: myopac.prefs.help
-msgid "This setting defines how you will be notified of holds that are ready to be picked up from the library. "
-"By default, holds will use the notification style you choose here. "
-"However, you will still have the option to change individual holds regardless of this setting."
+msgid ""
+"This setting defines how you will be notified of holds that are ready to be "
+"picked up from the library. \n"
+"By default, holds will use the notification style you choose here. \n"
+"However, you will still have the option to change individual holds "
+"regardless of this setting."
msgstr ""
#: myopac.holds.unfrozen
-msgid "Un-Frozen"
+msgid "Active"
msgstr ""
#: myopac.holds.frozen.until
-msgid "Frozen Until"
+msgid "Activate on..."
msgstr ""
-# =================================================================
-# MyOPAC Summary page
-# =================================================================
+#. =================================================================
+#. MyOPAC Summary page
+#. =================================================================
#: myopac.summary.expired
-msgid "Your account expired on <span id='myopac.expired.date'/>! "
+msgid ""
+"Your account expired on <span id='myopac.expired.date'/>! \n"
"Please see a librarian to renew your account."
msgstr ""
msgstr ""
#: myopac.summary.username.dup
-msgid "The requested username is not available. Please choose a different username."
+msgid ""
+"The requested username is not available. Please choose a different "
+"username."
msgstr ""
#: myopac.summary.username.success
msgstr ""
#: myopac.summary.password.success
-#: login.password.success
+msgctxt "myopac.summary.password.success"
msgid "Password successfully updated"
msgstr ""
msgid "Password update failed"
msgstr ""
-# =================================================================
-# Advanced Search Page
-# =================================================================
+#. =================================================================
+#. Advanced Search Page
+#. =================================================================
#: opac.advanced.wizard.contains
msgid "Selected field contains the following words"
msgstr ""
msgid "For Librarians"
msgstr ""
-# ==========================================================
-# MARC expert search
#: opac.advanced.marc.title
-#: search.marc
+msgctxt "opac.advanced.marc.title"
msgid "MARC Expert Search"
msgstr ""
msgstr ""
#: opac.advanced.quick.title
-#: sidebar.quick.search
+msgctxt "opac.advanced.quick.title"
msgid "Quick Search"
msgstr ""
+#: opac.advanced.quick.isbn
+msgctxt "opac.advanced.quick.isbn"
+msgid "ISBN"
+msgstr ""
+
#: opac.advanced.quick.issn
msgid "ISSN"
msgstr ""
msgid "LCCN"
msgstr ""
-# title control number
+#. title control number
#: opac.advanced.quick.tcn
msgid "TCN"
msgstr ""
msgid "Item Barcode"
msgstr ""
+#: opac.advanced.quick.cn
+msgctxt "opac.advanced.quick.cn"
+msgid "Call Number"
+msgstr ""
+
+#: opac.advanced.copy_loc_filter
+msgid "Shelving Location"
+msgstr ""
+
+#. ==========================================================
+#. MARC expert search
+#. ==========================================================
+#: search.marc
+msgctxt "search.marc"
+msgid "MARC Expert Search"
+msgstr ""
+
#: search.marc.tag
msgid "Tag:"
msgstr ""
msgid "Add Row"
msgstr ""
-# ==========================================================
-# Status bar
-# ==========================================================
+#. ==========================================================
+#. Status bar
+#. ==========================================================
#: status.results
msgid "Including results for"
msgstr ""
-# =================================================================
-# More generic stuff
-# =================================================================
+#. ==========================================================
+#. Tips
+#. ==========================================================
+#: tips.label
+msgctxt "tips.label"
+msgid "Tip:"
+msgstr ""
+
+#. =================================================================
+#. More generic stuff
+#. =================================================================
#: opac.session_expiring
msgid "Your login session will timeout in 1 minute unless there is activity."
msgstr ""
msgid "Go to the Home page"
msgstr ""
+#: opac.navigate.advanced
+msgctxt "opac.navigate.advanced"
+msgid "Advanced Search"
+msgstr ""
+
#: opac.navigate.advanced.title
msgid "Go to the Advanced Search Page"
msgstr ""
#: navigate.myopac
+msgctxt "navigate.myopac"
+msgid "My Account"
+msgstr ""
+
#: opac.navigate.myopac
+msgctxt "opac.navigate.myopac"
msgid "My Account"
msgstr ""
msgstr ""
#: navigate.logout
+msgctxt "navigate.logout"
+msgid "Log out"
+msgstr ""
+
#: navigate.logout.title
+msgctxt "navigate.logout.title"
msgid "Log out"
msgstr ""
msgstr ""
#: opac.navigate.selectOrg
-#: library.select.help
+msgctxt "opac.navigate.selectOrg"
msgid "Choose a library to search"
msgstr ""
msgid "Record Details"
msgstr ""
+#. =================================================================
+#. Footer
+#. =================================================================
+#: footer.basic
+msgctxt "footer.basic"
+msgid "Basic Catalog (HTML only)"
+msgstr ""
+
#: footer.find.library
msgid "Find a Library Near Me"
msgstr ""
msgstr ""
#: footer.copyright
-msgid "Copyright © 2006 Georgia Public Library Service"
+msgid "Copyright © 2006-2008 Georgia Public Library Service"
msgstr ""
-# Introduces the logo for the project
+#. Introduces the logo for the project
#: footer.logo
msgid "Powered by"
msgstr ""
-# =================================================================
-# My OPAC
-# =================================================================
+#. =================================================================
+#. My OPAC
+#. =================================================================
#: myopac.account
msgid "Account Summary"
msgstr ""
msgid "Account Preferences"
msgstr ""
-# =================================================================
-# Sidebar
-# =================================================================
+#: myopac.bookbags
+msgctxt "myopac.bookbags"
+msgid "My Bookbags"
+msgstr ""
+
+#. =================================================================
+#. Sidebar
+#. =================================================================
#: sidebar.relevantSubjects.headerLabel
msgid "Relevant Subjects"
msgstr ""
msgstr ""
#: sidebar.relevantReviews.headerLabel
-#: rdetail.extras.reviews
+msgctxt "sidebar.relevantReviews.headerLabel"
msgid "Reviews"
msgstr ""
+#: sidebar.quick.search
+msgctxt "sidebar.quick.search"
+msgid "Quick Search"
+msgstr ""
+
#: sidebar.copy.not.found
msgid "No copy with the requested barcode was found"
msgstr ""
-# =================================================================
-# Search formats
-# =================================================================
+#. =================================================================
+#. Search formats
+#. =================================================================
#: opac.search.books
msgid "Books"
msgstr ""
msgid "Now Searching"
msgstr ""
-# =================================================================
-# Page Titles
-# =================================================================
+#. =================================================================
+#. Page Titles
+#. =================================================================
#: opac.title.home
msgid "Evergreen Home"
msgstr ""
msgid "Hold was not successfully placed"
msgstr ""
-# =================================================================
-# Advanced
-# =================================================================
+#. =================================================================
+#. Advanced
+#. =================================================================
#: advanced.search.title
msgid "Search Input"
msgstr ""
msgid "Submit Search"
msgstr ""
+#: advanced.search.reset
+msgid "Reset Form"
+msgstr ""
+
#: advanced.search.filters
msgid "Search Filters"
msgstr ""
msgid "Go"
msgstr ""
-# =================================================================
-# Rdetail
-# =================================================================
+#. =================================================================
+#. Rdetail
+#. =================================================================
#: rdetail.print
msgid "print these details"
msgstr ""
msgid "Holdable"
msgstr ""
+#: rdetail.cn.due
+msgctxt "rdetail.cn.due"
+msgid "Due Date"
+msgstr ""
+
#: rdetail.cn.more
msgid "more info..."
msgstr ""
msgstr ""
#: rdetail.cn.hold
-#: rdetail.copyInfo.hold
+msgctxt "rdetail.cn.hold"
msgid "place hold"
msgstr ""
msgid "First results page"
msgstr ""
-# Result # &common.of; #
+#. Result # &common.of; #
#: rdetail.result
msgid "Result"
msgstr ""
msgstr ""
#: rdetail.record.deleted
-msgid "This record has been deleted from the database. "
-"We recommend that you remove this title from any bookbags it may have been added to."
+msgid ""
+"This record has been deleted from the database. \n"
+"We recommend that you remove this title from any bookbags it may have been "
+"added to."
msgstr ""
#: rdetail.none
msgid "Copy Information"
msgstr ""
+#: rdetail.copyInfo.library
+msgctxt "rdetail.copyInfo.library"
+msgid "Library"
+msgstr ""
+
#: rdetail.copyInfo.callnumber
msgid "Callnumber"
msgstr ""
msgid "browse"
msgstr ""
+#: rdetail.copyInfo.hold
+msgctxt "rdetail.copyInfo.hold"
+msgid "place hold"
+msgstr ""
+
#: rdetail.extras.summary
msgid "Copy Summary"
msgstr ""
+#: rdetail.extras.browser
+msgctxt "rdetail.extras.browser"
+msgid "Shelf Browser"
+msgstr ""
+
+#: rdetail.extras.reviews
+msgctxt "rdetail.extras.reviews"
+msgid "Reviews"
+msgstr ""
+
#: rdetail.extras.toc
msgid "Table of Contents"
msgstr ""
msgid "Perform an Author Search"
msgstr ""
+#: result.googleBooks.browse
+msgid "Browse in Google Books Search"
+msgstr ""
+
#: common.call.number.label
msgid "Call Number:"
msgstr ""
msgstr ""
#: common.hold.place
-msgid "Place hold for me"
+msgid "Place hold for my account"
msgstr ""
#: common.hold.check
msgstr ""
#: common.hold.exists.override
-msgid "A hold already exists on the requested "
+msgid ""
+"A hold already exists on the requested \n"
"item. Would you like to create the hold anyway?"
msgstr ""
#: common.hold.barred
-msgid "PATRON BARRED. Please see any notes in the "
-"\"Staff Notes\" section of your \"My Account\" page or contact your local library."
+msgid ""
+"PATRON BARRED. Please see any notes in the \n"
+"\"Staff Notes\" section of your \"My Account\" page or contact your local "
+"library."
msgstr ""
#: common.hold.item.invalid
-msgid "This hold is no longer valid. It's likely that the "
-"target for the hold was deleted from the system. Please cancel this hold and "
+msgid ""
+"This hold is no longer valid. It's likely that the \n"
+"target for the hold was deleted from the system. Please cancel this hold "
+"and \n"
"place a new one."
msgstr ""
msgid "The patron barcode entered as the hold recipient is invalid."
msgstr ""
-# Was (??), perhaps change to a button or icon?
+#. Was (??), perhaps change to a button or icon?
#: common.help
msgid "(Help)"
msgstr ""
#: common.phone.format.help
-msgid "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ"
+msgid ""
+"The phone number does not have the correct format. The expected format is "
+"XXX-YYY-ZZZZ"
msgstr ""
#: common.hold.failed
-msgid "No items were found that could fulfill the requested holds. "
-"It's possible that choosing a different format will result in a successful hold. "
-"It is also possible that you have exceeded the number of allowable holds. "
+msgid ""
+"No items were found that could fulfill the requested holds. \n"
+"It's possible that choosing a different format will result in a successful "
+"hold. \n"
+"It is also possible that you have exceeded the number of allowable holds. \n"
"For further information, please consult your local librarian."
msgstr ""
msgstr ""
#: common.email.set
-msgid "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)"
+msgid ""
+"(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> "
+"for setting your email address)"
msgstr ""
#: common.keywords.label
msgid "Choose a different library..."
msgstr ""
+#: library.select.help
+msgctxt "library.select.help"
+msgid "Choose a library to search"
+msgstr ""
+
#: login.username
msgid "Enter your username or library barcode"
msgstr ""
msgstr ""
#: login.first.time
-msgid "This appears to be the first time you have logged in. "
+msgid ""
+"This appears to be the first time you have logged in. \n"
"You will need to change your password."
msgstr ""
msgid "Passwords do not match"
msgstr ""
+#: login.password.success
+msgctxt "login.password.success"
+msgid "Password successfully updated"
+msgstr ""
+
#: login.password.strength
msgid "The password provided is not strong enough."
msgstr ""
#: login.barcode.inactive
-msgid "The barcode used to login is marked as inactive. Please contact your local library."
+msgid ""
+"The barcode used to login is marked as inactive. Please contact your local "
+"library."
msgstr ""
#: login.account.inactive
msgstr ""
#: login.failed
-msgid "Login failed. The username or password provided was not valid. "
+msgid ""
+"Login failed. The username or password provided was not valid. \n"
"Ensure Caps-Lock is off and try again or contact your local library."
msgstr ""
msgid "Go!"
msgstr ""
-# =================================================================
-# Slimpac Simple Search
-# =================================================================
+#. =================================================================
+#. Slimpac Simple Search
+#. =================================================================
#: slimpac.start.title
msgid "Simple Search"
msgstr ""
msgid "Dynamic Catalog"
msgstr ""
-# =================================================================
-# Slimpac Advanced Search
-# =================================================================
+#. =================================================================
+#. Slimpac Advanced Search
+#. =================================================================
#: slimpac.advanced.language
msgid "Item Language"
msgstr ""
--- /dev/null
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.patron.barcode_entry.user_permission_editor
+msgid "User Permission Editor"
+msgstr ""
+
+#: staff.patron.barcode_entry.check_out
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron.barcode_entry.no_barcode
+msgid "No barcode entered."
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_retrieval_problem
+msgid ""
+"Problem retrieving %1$s. Please report this message: \n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_not_found
+msgid "Barcode %1$s not found."
+msgstr ""
+
+#: staff.patron.barcode_entry.consent_from_patron
+msgid ""
+"Does patron %1$s, %2$s from %3$s (%4$s) consent to having their personal "
+"information shared with your library?"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_title
+msgid "Patron/Library Opt-In Confirmation"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_accept
+msgid "Accept"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_deny
+msgid "Deny"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_confirm
+msgctxt "staff.patron.barcode_entry.patron_consent_confirm"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_display_error
+msgid "spawning patron display"
+msgstr ""
+
+#: staff.patron.barcode_entry.user_perm_display_error
+msgid "spawning user perm editor"
+msgstr ""
+
+#: staff.patron.bill_details.my_init.error
+msgid "bill_details.xul, my_init:"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voided_billings.alert
+msgid "All selected billings have already voided."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_title
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_yes
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_no
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voiding_error
+msgctxt "staff.patron.bill_details.handle_void.voiding_error"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.billings_voided
+msgctxt "staff.patron.bill_details.handle_void.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_history.retrieve_mbts_for_list.close_win_try_again
+msgid "Please close this window and try again."
+msgstr ""
+
+#: staff.patron.bill_history.my_init.current_bills
+msgid "Current Bills"
+msgstr ""
+
+#: staff.patron.bill_history.my_init.bill_history
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_plural
+msgid "Are you sure you would like to add a billing to bills %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_singular
+msgid "Are you sure you would like to add a billing to bill %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.title
+msgid "Bill Patron"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_yes
+msgctxt "staff.patron.bill_history.handle_add.btn_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_no
+msgctxt "staff.patron.bill_history.handle_add.btn_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.confirm_message
+msgctxt "staff.patron.bill_history.handle_add.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_history.print_bills.print_error
+msgid "printing bills"
+msgstr ""
+
+#: staff.patron.bills.init_controller.money_summary_label
+msgid "Money Summary"
+msgstr ""
+
+#: staff.patron.bills.bill_payment_amount.credit_amount
+msgid "Patron only has %1$s in credit."
+msgstr ""
+
+#: staff.patron.bills.bill_change_amount.greedy
+msgid "Someone wanted more money than they deserved"
+msgstr ""
+
+#: staff.patron.bills.apply_payment.nothing_applied
+msgid "No payments or patron credit applied."
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment
+msgid "Please annotate this payment:"
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment.title
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills.pay.refund_exceeds_desk_payment
+msgid ""
+"%1$s\n"
+"\n"
+"Another way to \"zero\" this transaction is to use Add Billing and add a "
+"miscellaneous bill to counter the negative balance."
+msgstr ""
+
+#: staff.patron.bills.pay.payment_failed
+msgid "Bill payment likely failed"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.title
+msgctxt "staff.patron.bills.info_box.label_value.title"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.type
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.last_billing
+msgid "Last Billing:"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.add_billing
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.refund
+msgid "Refund"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.void_all_billings
+msgid "Void All Billings"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.full_details
+msgid "Full Details"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.all_voided
+msgid "All billings already voided on this bill."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.message
+msgctxt "staff.patron.bills.void_all_billings.void.message"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.title
+msgctxt "staff.patron.bills.void_all_billings.void.title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.yes
+msgctxt "staff.patron.bills.void_all_billings.void.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.no
+msgctxt "staff.patron.bills.void_all_billings.void.no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.confirm_message
+msgctxt "staff.patron.bills.void_all_billings.void.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.error_voiding_bills
+msgctxt "staff.patron.bills.void_all_billings.error_voiding_bills"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.billings_voided
+msgctxt "staff.patron.bills.void_all_billings.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_wizard.patron_bill_finish.billing_added
+msgid "Billing added."
+msgstr ""
+
+#: staff.patron.display.cmd_search_form.no_patron
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display.cmd_patron_edit.edit_search
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: staff.patron.display.spawn_editor.editing_related_patron
+msgctxt "staff.patron.display.spawn_editor.editing_related_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.display.init.retrieving_patron
+msgid "Retrieving Patron..."
+msgstr ""
+
+#: staff.patron.display.init.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.display.init.network_request.alert_message
+msgid "Alert message: \"%1$s\"<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.inactive_card
+msgid "Patron account retrieved with an INACTIVE card.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_barred
+msgid "Patron account is BARRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_inactive
+msgid "Patron account is INACTIVE.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_expired
+msgid "Patron account is EXPIRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.holds_ready
+msgid "Holds available: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_title
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_message
+msgid ""
+"Press a navigation button above (for example, Check Out) to clear this "
+"alert."
+msgstr ""
+
+#: staff.patron.display.init.network_request.dump_error_message
+msgid "Not re-displaying this alert message: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.error_showing_alert
+msgid "Error showing patron alert and holds availability."
+msgstr ""
+
+#: staff.patron.display.render_search_form.patron_search
+msgid "Patron Search"
+msgstr ""
+
+#: staff.patron.display.tab_name
+msgid "Patron:"
+msgstr ""
+
+#: staff.patron.hold_notices.tooltiptext
+msgid "ID: %1$s Hold ID: %2$s Notifying Staff ID: %3$s"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification_record
+msgid "New Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.method
+msgid "Method"
+msgstr ""
+
+#: staff.patron.hold_notices.note
+msgctxt "staff.patron.hold_notices.note"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel
+msgctxt "staff.patron.hold_notices.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel_accesskey
+msgctxt "staff.patron.hold_notices.cancel_accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record
+msgid "Add Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record_accesskey
+msgctxt "staff.patron.hold_notices.add_notif_record_accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification.not_created
+msgid "The notification was not likely created."
+msgstr ""
+
+#: staff.patron.holds.init.hold_num_error
+msgid "Error retrieving details for hold #%1$s"
+msgstr ""
+
+#: staff.patron.holds.show_notifications.error_rendering_notifs
+msgid "Error rendering or retrieving hold notifications."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_hold_range
+msgid "Please choose a Hold Range:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_library
+msgctxt "staff.patron.holds.holds_edit_selection_depth.choose_library"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.singular
+msgid ""
+"Are you sure you would like to change the Hold Range for hold %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.plural
+msgid ""
+"Are you sure you would like to change the Hold Range for holds %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_title
+msgctxt "staff.patron.holds.holds_edit_selection_depth.modify_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_not_modified
+msgid "Holds not likely modified."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.new_pickup_lib.description
+msgid "Please choose a new Pickup Library:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.choose_lib
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.choose_lib"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.singular
+msgid ""
+"Are you sure you would like to change the Pick Up Library for hold %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.plural
+msgid ""
+"Are you sure you would like to change the Pick Up Library for holds %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.new_phone_number
+msgid ""
+"Please enter a new phone number for hold notification (leave the field empty "
+"to disable phone notification):"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.choose_phone_number
+msgid "Choose a Hold Notification Phone Number"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.singular
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for hold "
+"%1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.plural
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for "
+"holds %1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.modifying_holds_title
+msgctxt "staff.patron.holds.holds_edit_phone_notify.modifying_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.description
+msgid ""
+"Send email notifications (when appropriate)? The email address used is "
+"found in the hold recipient account."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.label
+msgid "Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.accesskey
+msgid "E"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.label
+msgid "No Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.accesskey
+msgid "N"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.set_notifs
+msgid "Set Email Notification for Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.singular
+msgid "Are you sure you would like to enable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.plural
+msgid ""
+"Are you sure you would like to enable email notification for holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.singular
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.singular"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.plural
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.plural"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.mod_holds_title
+msgctxt "staff.patron.holds.holds_edit_email_notify.mod_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.singular
+msgid "Are you sure you would like to reset hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.plural
+msgid "Are you sure you would like to reset holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_title
+msgid "Resetting Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.holds_not_reset
+msgid "Holds not likely reset."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.singular
+msgid "Are you sure you would like to cancel hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.plural
+msgid "Are you sure you would like to cancel holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_title
+msgid "Cancelling Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes
+msgid "For barcodes %1$s, should the associated transits also be cancelled?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes.title
+msgid "Cancelling Transits"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_transits_not_cancelled
+msgid "Hold transits not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_not_cancelled
+msgid "Holds not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.unknown_htype
+msgid ""
+"I do not understand the hold type of %1$s so I can not display the "
+"appropriate record in the catalog."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.retrieving_title
+msgctxt "staff.patron.holds.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.holds.lib_menus.missing_library_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_group_members.failure
+msgid "Failed to retrieve all the group members."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.tab_name
+msgid "Retrieving Patron.."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patron
+msgid "Failed to retrieve patron."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patrons
+msgid "Failed to retrieve patrons."
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.register_clone.tab_name
+msgid "Register Patron Clone for Group"
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.error_spawning_editors
+msgid "error spawning user editors"
+msgstr ""
+
+#: staff.patron.info_group.spwan_editor.editing_patron
+msgctxt "staff.patron.info_group.spwan_editor.editing_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.info_group.spwan_search
+msgid "spawn search"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message
+msgid ""
+"WARNING: If you remove the currently displayed patron, a NEW group will be "
+"displayed in this interface."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message_confirm
+msgid "Remove selected patrons from this group? %1$s"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.error_removing_patron
+msgid "error removing patron (ID=%1$s) from usergroup"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_removed_from_group
+msgid "Patrons removed from group."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_not_removed_from_group
+msgid "Patron not removed from group."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.null_not_allowed
+msgid "null parameter not allowed"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.invalid_parameter
+msgid "Invalid parameter. Expected boolean."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.scan_patron_barcode
+msgid "Please scan a patron barcode:"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_new_usergroup
+msgid "Move patron %1$s into patron %2$s's usergroup..."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.label
+msgid "Move"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.accesskey
+msgid "M"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.label
+msgctxt "staff.patron.info_group.link_patron.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.accesskey
+msgctxt "staff.patron.info_group.link_patron.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_usergroup
+msgid "Move Patron into a Usergroup"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patron
+msgid "error linking patron (ID=%1$s)"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.usergroups_updated
+msgid "User groups updated."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patrons
+msgid "error linking patrons"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.accesskey
+msgctxt "staff.patron.info_notes.render_notes.add_new_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.tooltiptext
+msgid "Note ID: %1$s Creator ID: %2$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.patron_visible
+msgid "Patron Visible"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.staff_only
+msgid "Staff Only"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_message
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn1.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.note_deleted
+msgid "Note deleted."
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pertaining_to
+msgid "Pertaining to"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.created_on
+msgid "created on"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.printing_note_num
+msgid "printing note #%1$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn2.print_note.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.patron_visible.value
+msgid "Patron Visible?"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.title.value
+msgctxt "staff.patron.info_notes.new_note.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note.value
+msgctxt "staff.patron.info_notes.new_note.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.label
+msgctxt "staff.patron.info_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.accesskey
+msgctxt "staff.patron.info_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.label
+msgctxt "staff.patron.info_notes.new_note.add.label"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.accesskey
+msgctxt "staff.patron.info_notes.new_note.add.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgctxt "staff.patron.info_notes.new_note.add_note_title"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgid "Note added."
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note_not_created
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.patron.info_stat_cats.retrieve_fleshed_patron.failed
+msgid "Failed to retrieve patron stat cats."
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.opac_visible
+msgid "OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.not_opac_visible
+msgid "Not OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.rendering_exception
+msgid "rendering or retrieving stat cat"
+msgstr ""
+
+#: staff.patron.info_surveys.retrieve_surveys.failed
+msgid "Failed to retrieve all the survey responses."
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.required
+msgid "Required"
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.not_required
+msgid "Not Required"
+msgstr ""
+
+#: staff.patron.items.show_noncats.14_days
+msgid "14 days"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_noncat
+msgid "Error showing NonCat #%1$s"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_circulations
+msgid "Error showing NonCat circulations"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.list_is_busy
+msgid ""
+"This is list is busy retrieving or rendering rows for a prior action. Abort "
+"the prior action and proceed?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.renew_items_in_list
+msgid "Renew all the items in this list?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.items_not_renewed
+msgid "All items were not likely renewed (%1$s)"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewing
+msgid "Renewing %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewed
+msgid "%1$s renewed."
+msgstr ""
+
+#: staff.patron.items.items_renew.not_renewed
+msgid ""
+"%1%s not renewed.\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.err_in_renew_via_barcode
+msgid ""
+"Error in renew_via_barcode callback\n"
+"Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew_for_barcode
+msgid "Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew
+msgid "Renew probably did not happen."
+msgstr ""
+
+#: staff.patron.items.items_edit.invalid_date
+msgid "Invalid Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.need_later_date
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.singular
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.plural
+msgid "Edit Due Dates"
+msgstr ""
+
+#: staff.patron.items.items_edit.new_due_date
+msgid "Enter a new due date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.dates_not_modified
+msgid "The due dates were not likely modified."
+msgstr ""
+
+#: staff.patron.items.items_edit.mark_barcode_lost
+msgid "Mark barcode lost = %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.item_barcode
+msgid ""
+"Item Barcode %1$s\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.items_not_marked_lost
+msgid "The items were not likely marked lost."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.date_cannot_be_in_future
+msgid "Claims Returned Date cannot be in the future."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.claimed_returned
+msgid "Claimed Returned"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.enter_returned_date
+msgid "Enter a claimed returned date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.not_marked_claimed_returned
+msgid "The items were not likely marked Claimed Returned."
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.singular
+msgid "Are you sure you would like to check in item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.plural
+msgid "Are you sure you would like to check in items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.no_checkin
+msgid "Checkin probably did not happen."
+msgstr ""
+
+#: staff.patron.items.show_catalog.barcode_not_cataloged
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.patron.items.show_catalog.retrieving_title
+msgctxt "staff.patron.items.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.items.retrieve_row.callback_error
+msgid "Error in callback for FM_CIRC_DETAILS.authoritative in patron/items.js"
+msgstr ""
+
+#: staff.patron.items.retrieve_row.error_in_retrieve_row
+msgid "error in patron/items.js retrieve_row():"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row2
+msgid ""
+"2 Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row
+msgid ""
+"Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.retrieve.err_retrieving_circulations
+msgid "Error retrieving circulations."
+msgstr ""
+
+#: staff.patron.items.gen_list_append.error
+msgid "patron/items.js: error in gen_list_append"
+msgstr ""
+
+#: staff.patron.search_result.search.no_patrons_found
+msgid "No patrons found matching search criteria."
+msgstr ""
+
+#: staff.patron.search_result.search.capped_results
+msgid "Results capped at %1$s patrons."
+msgstr ""
+
+#: staff.patron.search_result.search.enter_search_terms
+msgid "Please enter some search terms."
+msgstr ""
+
+#: staff.patron.search_result.init.typeof_params
+msgid "typeof params.on_retrieve == %1$s"
+msgstr ""
+
+#: staff.patron.search_result.init.search_print
+msgid "patron search print"
+msgstr ""
+
+#: staff.patron.search_result.init.search_clipboard
+msgid "patron search clipboard"
+msgstr ""
+
+#: staff.patron.search_result.init.search_saving_columns
+msgid "patron search saving columns"
+msgstr ""
+
+#: staff.patron.summary.patron_bill.money
+msgid "$ %1$s"
+msgstr ""
+
+#: staff.patron.summary.retrieve.no_barcode
+msgid "summary: No barcode or ID"
+msgstr ""
+
+#: staff.patron.summary.patron_net_access
+msgid "Internet"
+msgstr ""
+
+#: staff.patron.summary.expires_on
+msgid "Expires on"
+msgstr ""
+
+#: staff.patron.ue.uEditInit.session_no_defined
+msgctxt "staff.patron.ue.uEditInit.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: staff.patron.ue.uEditSaveuser.error_creating_note
+msgid "Error creating patron guardian or parent note"
+msgstr ""
+
+#: staff.patron.ue.uEditShowSearch.search
+msgctxt "staff.patron.ue.uEditShowSearch.search"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
+
+#: staff.patron.user_edit.save_user.depth_required
+msgid "Depth is required on the %1$s permission."
+msgstr ""
+
+#: staff.patron.user_edit.save_user.user_modified_successfully
+msgid ""
+"User %1$s [%2$s] successfully modified.\n"
+"%3$s permissions and %4$s work locations updated."
+msgstr ""
+
+#: staff.patron.user_edit.display_perm.select_one
+msgid "-- Select One --"
+msgstr ""
+
+#: web.staff.patron.ue.session_no_defined
+msgctxt "web.staff.patron.ue.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: web.staff.patron.ue.uedit_show_search.search_would_be
+msgctxt "web.staff.patron.ue.uedit_show_search.search_would_be"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/admin.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/admin.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: staff.admin.survey.save_response.label
-msgid "Save this response"
+#: staff.admin.font_settings.sound
+msgid "Sound preference saved to file system."
msgstr ""
-#: staff.admin.survey.save_response.accesskey
-msgid "R"
+#: staff.admin.font_settings.save
+msgid "Global Font saved to file system."
+msgstr ""
+
+#: staff.admin.font_settings.sound.disabled
+msgid "Sound is now disabled."
+msgstr ""
+
+#: staff.admin.font_settings.sound.enabled
+msgid "Sound is now enabled."
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_SMALLER
+msgid "Global Font Adjust set to Smaller than Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_LARGER
+msgid "Global Font Adjust set to Larger than Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_XX_SMALL
+msgid "Global Font set to XX-Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_X_SMALL
+msgid "Global Font set to X-Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_SMALL
+msgid "Global Font set to Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_MEDIUM
+msgid "Global Font set to Medium"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_LARGE
+msgid "Global Font set to Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_X_LARGE
+msgid "Global Font set to X-Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_XX_LARGE
+msgid "Global Font set to XX-Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_5PT
+msgid "Global Font set to 5pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_6PT
+msgid "Global Font set to 6pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_7PT
+msgid "Global Font set to 7pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_8PT
+msgid "Global Font set to 8pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_9PT
+msgid "Global Font set to 9pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_10PT
+msgid "Global Font set to 10pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_11PT
+msgid "Global Font set to 11pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_12PT
+msgid "Global Font set to 12pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_13PT
+msgid "Global Font set to 13pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_14PT
+msgid "Global Font set to 14pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_15PT
+msgid "Global Font set to 15pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_16PT
+msgid "Global Font set to 16pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_17PT
+msgid "Global Font set to 17pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_18PT
+msgid "Global Font set to 18pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.transit_list.missing_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.admin.transit_list.no_match
+msgid "No matching transits."
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date
+msgid "Invalid Date (%1$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date_format
+msgid "Invalid Date (%1$s,%2$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.date_processing.error
+msgid "error processing date"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_transit.error
+msgid "error retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.preretrieving_transit.error
+msgid "error pre-retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_row.error
+msgid "error retrieving row"
+msgstr ""
+
+#: staff.admin.transit_list.empty_array.error
+msgid "Empty array returned by hold retrieve."
+msgstr ""
+
+#: staff.admin.transit_list.retrieve_hold.error
+msgid "retrieving hold id = %1$s for transit id = %2$s"
+msgstr ""
+
+#: staff.admin.transit_list.transit_id.error
+msgid "retrieving transit id = %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.organization
+msgid "Organization"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.description
+msgid "Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_created
+msgid "Date Created"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.created_by
+msgid "Created By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.upload_count
+msgid "Upload Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.transactions_processed
+msgid "Transactions Processed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.processing
+msgid "Processing?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_started
+msgid "Date Started"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_completed
+msgid "Date Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.session
+msgid "Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.date_uploaded
+msgid "Date Uploaded"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.uploaded_by
+msgid "Uploaded By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.time_delta
+msgid "Server/Local Time Delta"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_script_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_error_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.type
+msgid "Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_code
+msgid "Event Code"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_name
+msgid "Event Name"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_description
+msgid "Event Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.count
+msgid "In House Use Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_type
+msgid "Non-Cataloged Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_count
+msgid "Non-Cataloged Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.backdate
+msgid "Check In Backdate"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.check_perm
+msgid "Error checking permissions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.bad_cgi_response
+msgid "Bad response from CGI component"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.execute_error
+msgid "Execute error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_execute_error
+msgid "Error executing session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_retrieval
+msgid "Error retrieving session errors:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.non_existent_file
+msgid "Cannot rename a non-existent file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.renaming_file
+msgid "Error renaming transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.unique_file
+msgid "Taking too long to find a unique filename."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts
+msgid ""
+"Something bad happened. New offline transactions were accumulated during "
+"our attempted upload. Tell your system admin that the file involved is %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.title
+msgid "Transaction conflicts"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.ok
+msgid "Ok"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.reverting_file
+msgid "Error reverting transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.archiving_file
+msgid "Error archiving transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.session_upload
+msgid "Please select a session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.single_session_upload
+msgid "Please select a single session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no_transactions
+msgid "No pending transactions to upload."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_file
+msgid "There was an error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_transactions
+msgid "Error uploading transactions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_session
+msgid "Error retrieving session status"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session.prompt
+msgid "Please enter a description:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session
+msgid "Create an Offline Transaction Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session
+msgid "Error creating session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session.alert
+msgid "Error: %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_sessions
+msgid "Error retrieving offline sessions."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_session
+msgid "Error rendering session list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.upload_status
+msgid "Uploaded Transactions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_script
+msgid "Error rendering script list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_errors
+msgid "Exceptions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_error_list
+msgid "Error rendering error list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.completed
+msgid "Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no
+msgid "No"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.yes
+msgid "Yes"
msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/auth.properties
+#. extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/auth.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.auth.controller.not_configured
+msgid "Not yet configured for the specified server."
+msgstr ""
+
+#: staff.auth.controller.testing_hostname
+msgid "Testing hostname..."
+msgstr ""
+
+#: staff.auth.controller.prompt_hostname
+msgid "Please enter a server hostname."
+msgstr ""
+
+#: staff.auth.controller.error_hostname
+msgid "There was an error testing this hostname."
+msgstr ""
+
+#: staff.auth.controller.status
+msgid "%1$s : %2$s"
+msgstr ""
+
+#: staff.auth.controller.testing_version
+msgid "Testing version..."
+msgstr ""
+
+#: staff.auth.controller.error_version
+msgid "There was an error checking version support."
+msgstr ""
+
+#: staff.auth.controller.version_mismatch
+msgid ""
+"This server does not support your version of the staff client. Please check "
+"with your system administrator."
+msgstr ""
+
+#. # login with <username> and <password> at <server>
+#: staff.auth.controller.error_login
+msgid "login with %1$s and %2$s at %3$s"
+msgstr ""
+
+#: staff.auth.controller.confirm_close
+msgid "Are you sure you would like to exit the program completely?"
+msgstr ""
+
+#: staff.auth.session.unregistered
+msgid "%1$s is not registered with this server."
+msgstr ""
+
+#: staff.auth.session.login_failed
+msgid ""
+"Login failed. Please check your Server Hostname, Username, Password, and "
+"your CAPS LOCK key."
+msgstr ""
+
+#: staff.auth.session.init_false
+msgid "open-ils.auth.authenticate.init returned false"
+msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/cat.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: cat.bib_record
-msgid "Bib Record: %1$s"
+#: cat.barcode_for_item
+msgid "The barcode for the item is %1$s"
msgstr ""
-#: cat.save_record
+#: cat.batch_operation_failed
+msgid "The whole batch operation failed. %1$s"
+msgstr ""
+
+#: cat.copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: cat.total_bucket_items_in_bucket
+msgid "Contains %1$s bucket items"
+msgstr ""
+
+#: cat.results_returned
+msgid "Returning %1$s hits"
+msgstr ""
+
+#: staff.cat.bib_brief.record_id
+msgid "Record ID = %1$s"
+msgstr ""
+
+#: staff.cat.bib_brief.deleted
+msgid "(Deleted)"
+msgstr ""
+
+#: staff.cat.bib_brief.inactive
+msgid "(Inactive)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat
+msgid "(Not Cataloged)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat.alert
+msgid "Item not cataloged."
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.title
+msgid "Add Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.error
+msgid "copy browser -> add copies"
+msgstr ""
+
+#: staff.cat.copy_browser.add_items_bucket.error
+msgid "copy browser -> add copies to bucket"
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.failed
+msgid "Barcode %1$s not likely replaced."
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.error
+msgid "copy browser -> replace barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_items.error
+msgid "Copy Browser -> Edit Items"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm.plural
+msgid "Are you sure you would like to delete these %1$s items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm
+msgid "Are you sure you would like to delete this item?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.title
+msgid "Delete Items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.delete
+msgctxt "staff.cat.copy_browser.delete_items.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.cancel
+msgctxt "staff.cat.copy_browser.delete_items.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.override
+msgctxt "staff.cat.copy_browser.delete_items.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.error
+msgid "copy browser -> delete items"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.tab
+msgctxt "staff.cat.copy_browser.print_spine.tab"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.error
+msgid "copy browser -> Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.permission_error
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.title
+msgid "Add Volume/Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.error
+msgid "copy browser -> add volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.permission_error
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title
+msgid "Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title.plural
+msgctxt "staff.cat.copy_browser.edit_volume.title.plural"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.failed
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.error
+msgid "volume update error:"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.exception
+msgid "Copy Browser -> Volume Edit"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt.plural
+msgid "Are you sure you would like to delete these %1$s volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.delete
+msgctxt "staff.cat.copy_browser.delete_volume.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.cancel
+msgctxt "staff.cat.copy_browser.delete_volume.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.override
+msgctxt "staff.cat.copy_browser.delete_volume.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.copies_remain
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.exception
+msgid "copy browser -> delete volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.alert
+msgid "Library + Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.prompt
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.title
+msgctxt "staff.cat.copy_browser.mark_library.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.alert
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.title
+msgctxt "staff.cat.copy_browser.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_volume.alert
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.prompt
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.submit.label
+msgctxt "staff.cat.copy_browser.transfer.submit.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.label
+msgctxt "staff.cat.copy_browser.transfer.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.accesskey
+msgctxt "staff.cat.copy_browser.transfer.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.incomplete
+msgctxt "staff.cat.copy_browser.transfer.incomplete"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.override.failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.ineligible_destination
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.unexpected_error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.missing_volume
+msgctxt "staff.cat.copy_browser.transfer_items.missing_volume"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.unexpected_error
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.missing_library
+msgid "Missing library list."
+msgstr ""
+
+#: staff.cat.copy_browser.consortial_copy_count.error
+msgid "Error retrieving consortial copy count."
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.tree_location
+msgid "Location/Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.volume_count
+msgctxt "staff.cat.copy_browser.list_init.volume_count"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.copy_count
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.error
+msgid "Copy Browser Actions"
+msgstr ""
+
+#: staff.cat.copy_browser.refresh_list.error
+msgid "Problem refreshing the volume/copy tree."
+msgstr ""
+
+#: staff.cat.copy_buckets.render_pending_copies.complete
+msgctxt "staff.cat.copy_buckets.render_pending_copies.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.retrieve_row.error
+msgid "Error retrieving details for item with copy id = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.choose_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.choose_bucket"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.retrieve_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.retrieve_bucket"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.prompt
+msgctxt "staff.cat.copy_buckets.menulist.change_bucket.prompt"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.undefined
+msgid "Could not find a bucket with ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket id?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_sel_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_sel_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.error
+msgid "Deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_item.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.error
+msgid "Bucket deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.success
+msgid "Bucket \"%1$s\" created."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.batch.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.no_volume
+msgid ""
+"Please mark a volume as the destination from within the copy browser and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.confirm
+msgid ""
+"Transfer the items in bucket \"%1$s\" from their original volumes to the "
+"volume labelled \"%2$s\" for the library \"%3$s\" on the following record?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.error
+msgid "Items not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_buckets.cmd_export_to_copy_status.error
+msgid "Copy Status from Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets.prep_item_for_list.error
+msgid "List building failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt
+msgid "Copy this item into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt.plural
+msgctxt "staff.cat.copy_buckets_quick.bucket_prompt.plural"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.addition.error
+msgid "Addition likely failed for bucket = %1$s and copy ID = %2$s."
+msgstr ""
+
+#: staff.cat.copy_editor.caption
+msgid "Copy Editor"
+msgstr ""
+
+#: staff.cat.copy_editor.create_copies
+msgid "Create Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.status
+msgid "Status"
+msgstr ""
+
+#: staff.cat.copy_editor.retrieve_templates.error
+msgid "Error retrieving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_templates.error
+msgid "Error applying template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.prompt
+msgid "Enter template name:"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.title
+msgid "Save As Template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.success
+msgid "Template \"%1$s\" saved."
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.error
+msgid "Error saving template"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.confirm
+msgid "Delete template \"%1$s\"?"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.success
+msgid "Template \"%1$s\" deleted."
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.error
+msgid "Error deleting template"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.title
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.error
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.title
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.prompt
+msgid "Replace the existing template with the imported template?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.title
+msgid "Template %1$s already exists."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.yes
+msgctxt "staff.cat.copy_editor.import_templates.replace.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.no
+msgctxt "staff.cat.copy_editor.import_templates.replace.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.click_here
+msgctxt "staff.cat.copy_editor.import_templates.replace.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.prompt
+msgid "Save all of these imported templates permanently to this account?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.title
+msgid "Final warning"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.yes
+msgctxt "staff.cat.copy_editor.import_templates.save.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.no
+msgctxt "staff.cat.copy_editor.import_templates.save.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.click_here
+msgctxt "staff.cat.copy_editor.import_templates.save.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.success
+msgid "All templates saved."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.error
+msgid "Error saving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.note
+msgid ""
+"Note: These imported templates will get saved along with any new template "
+"you try to create, but if that does not happen, then these templates will "
+"disappear with the next invocation of the item attribute editor."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.error
+msgid "Error importing templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.undefined_volume.error
+msgid ""
+"Error retrieving Volume information for copy %1$s. The owning library for "
+"this copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.call_number.error
+msgid ""
+"Error changing owning library for copy %1$s. The owning library for this "
+"copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count
+msgid "1 copy"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count.plural
+msgid "%1$s copies"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.label
+msgctxt "staff.cat.copy_editor.apply.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.accesskey
+msgctxt "staff.cat.copy_editor.apply.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+msgctxt "staff.cat.copy_editor.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.success
+msgid "Items were added or modified."
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.error
+msgid "copy update error:"
+msgstr ""
+
+#: staff.cat.copy_editor.add_stat_cat.error
+msgid "Error adding statistical category to display definition"
+msgstr ""
+
+#: staff.cat.copy_editor.populate_stat_cat.error
+msgid "Error populating statistical categories for display"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.accesskey
+msgctxt "staff.cat.copy_notes.render_notes.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.note_id
+msgid "Note ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.creator_id
+msgid "Creator ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.public
+msgid "Public"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.private
+msgid "Private"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.msg
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.yes
+msgctxt "staff.cat.copy_notes.delete_note.prompt.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.no
+msgctxt "staff.cat.copy_notes.delete_note.prompt.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.success
+msgid "Note deleted."
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.close_window
+msgid "Close Window"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.public
+msgid "Public?"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.title
+msgid "Title"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.note
+msgid "Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.label
+msgctxt "staff.cat.copy_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.accesskey
+msgctxt "staff.cat.copy_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.label
+msgid "Add Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.accesskey
+msgctxt "staff.cat.copy_notes.new_note.add_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.success
+msgid "Note added."
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.error
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.cat.copy_summary.copy_id
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circs"
+msgstr ""
+
+#: staff.cat.copy_summary.yes
+msgctxt "staff.cat.copy_summary.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_summary.no
+msgctxt "staff.cat.copy_summary.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_summary.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.cat.copy_summary.not_cataloged
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_row
+msgid "Add Row: CTRL+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.insert_row
+msgid "Insert Row: CTRL+Shift+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_subfield
+msgid "Add Subfield: CTRL+D"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_row
+msgid "Remove Row: CTRL+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_subfield
+msgid "Remove Subfield: SHIFT+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_006
+msgid "Create/Replace 006: CTRL+F6"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_007
+msgid "Create/Replace 007: CTRL+F7"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_008
+msgid "Create/Replace 008: CTRL+F8"
+msgstr ""
+
+#: staff.cat.marcedit.save.label
msgid "Save Record"
msgstr ""
-#: cat.save.success
-msgid "Record successfully saved."
+#: staff.cat.marcedit.marcTag.LDR.label
+msgid "MARC Leader"
+msgstr ""
+
+#: staff.cat.marcedit.add_row.label
+msgid "Add Row"
+msgstr ""
+
+#: staff.cat.marcedit.remove_row.label
+msgid "Remove Row"
+msgstr ""
+
+#: staff.cat.marcedit.replace_006.label
+msgid "Add/Replace 006"
+msgstr ""
+
+#: staff.cat.marcedit.replace_007.label
+msgid "Add/Replace 007"
+msgstr ""
+
+#: staff.cat.marcedit.replace_008.label
+msgid "Add/Replace 008"
+msgstr ""
+
+#: staff.cat.marcedit.not_authority_field.label
+msgid "Not a controlled subfield"
+msgstr ""
+
+#: staff.cat.marcedit.apply_selected.label
+msgid "Apply Selected"
+msgstr ""
+
+#: staff.cat.marcedit.no_authority_match.label
+msgid "No matching authority records found"
+msgstr ""
+
+#: staff.cat.marc_new.create_record.label
+msgid "Create Record"
+msgstr ""
+
+#: staff.cat.marc_new.system_local.label
+msgid "System Local"
+msgstr ""
+
+#: staff.cat.marc_new.record_created.label
+msgid "Record created."
+msgstr ""
+
+#: staff.cat.marc_new.retrieving.label
+msgctxt "staff.cat.marc_new.retrieving.label"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.marc_new.creating_record.error
+msgid "Error creating MARC record."
+msgstr ""
+
+#: staff.cat.marc_new.loading_template.error
+msgid "Error loading MARC template: %1$s"
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.alert
+msgid "Record successfully saved."
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.std_unexpected_error
+msgid "Record not likely updated."
+msgstr ""
+
+#: staff.cat.opac.refresh.function_not_implemented.alert
+msgid "Not yet implemented. Work around: Choose Duplicate in New Tab option"
+msgstr ""
+
+#: staff.cat.opac.set_tab_name
+msgid "Record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.save_file_as
+msgid "Save File As"
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.alert
+msgid "File not downloaded."
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.std_unexpected_error
+msgid "Records could not be exported."
+msgstr ""
+
+#: staff.cat.record_buckets.rednder_pending_records.alert
+msgctxt "staff.cat.record_buckets.rednder_pending_records.alert"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.record_buckets.retrieve_row.std_unexpected_error
+msgid "Error retrieving mvr for record with ID = %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.buckets.std_unexpected_error
+msgid "Could not retrieve your buckets."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item1
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item1"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item2
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item2"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.bucket_id
+msgctxt "staff.cat.record_buckets.change_bucket.bucket_id"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket ID?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_bucket_named
+msgctxt "staff.cat.record_buckets.delete_bucket_named"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt_title
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt_title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.same_name_alert
+msgctxt "staff.cat.record_buckets.new_bucket.same_name_alert"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_created
+msgid "Bucket %1$s created."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.merge_lead
+msgid "Merge these records? (Select the \"lead\" record first)"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.button.label
+msgid "Merge"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead_record_number
+msgid "Lead Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead
+msgid "Lead"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt_title
+msgid "Record Merging"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt.alert
+msgid "Merge Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.success
+msgid "Records were successfully merged."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.catch.std_unex_error
+msgid "Records were not likely merged."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml1
+msgid "Delete these records?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.button.label
+msgctxt "staff.cat.record_buckets.delete_records.button.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml2
+msgid "Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt_title
+msgid "Record Purging"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt.alert
+msgid "Delete Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s1
+msgid "Error deleting these records:\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s2
+msgid "Record #%1$s : %2$s : %3$s\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.delete_success.alert
+msgid "Records deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.catch.std_unex_err
+msgid "Records were not likely deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_broken.alert
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.tab_name
+msgctxt "staff.cat.record_buckets.cmd_sel_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.catch.std_unex_err
+msgid "Showing in OPAC"
+msgstr ""
+
+#: staff.cat.record_buckets.submit.query_status
+msgctxt "staff.cat.record_buckets.submit.query_status"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.record_buckets.prep_record_for_list.std_unex_err
+msgid "Could not retrieve this record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_one_record
+msgid "Copy this record into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_multiple_records
+msgctxt "staff.cat.record_buckets_quick.copy_multiple_records"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.initing_record_buckets_quick_xul
+msgid "Trying to init record_buckets_quick.xul"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket.title
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.bucket_creation_failure
+msgctxt "staff.cat.record_buckets_quick.bucket_creation_failure"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.addition_failed
+msgid "Addition likely failed for bucket = %1$s and record ID = %2$s"
+msgstr ""
+
+#: staff.cat.spine_labels.copy
+msgid "copy"
+msgstr ""
+
+#: staff.cat.spine_labels.copies
+msgid "copies"
+msgstr ""
+
+#: staff.cat.spine_labels.generate.std_unexpeceted_err
+msgid "Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.title
+msgctxt "staff.cat.spine_labels.preview.title"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.std_unexpected_err
+msgid "Preview and Print"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.prompt
+msgid "Enter original barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.old_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.error_alert
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
msgstr ""
-#: cat.save.failure
-msgid "Record not likely updated."
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.prompt
+msgid "Enter the replacement barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.new_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc.failed
+msgid "Rename aborted. Blank barcodes are not allowed."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.testing_error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.insufficient_permission_for_rename
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.item_rename_error
+msgid "Error renaming item."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.rename_error
+msgid "Rename did not likely occur."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.unmarked_volume_alert
+msgctxt "staff.cat.util.transfer_copies.unmarked_volume_alert"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.params_message
+msgid ""
+"Transfer items from their original volumes to %1$s's volume labelled %2$s on "
+"the following record (and change their circulation libs to match)?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer.label
+msgctxt "staff.cat.util.transfer_copies.transfer.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.label
+msgctxt "staff.cat.util.transfer_copies.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.accesskey
+msgctxt "staff.cat.util.transfer_copies.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.window_title
+msgid "Item Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.aborted_transfer
+msgctxt "staff.cat.util.transfer_copies.aborted_transfer"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.override_transfer_failure
+msgid "Override Transfer Failure?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.successful_transfer
+msgid "Items transferred."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer_error
+msgid "All items not likely transferred."
+msgstr ""
+
+#: staff.cat.util.spine_editor.tab_name
+msgctxt "staff.cat.util.spine_editor.tab_name"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.spine_editor.spine_editor_error
+msgctxt "staff.cat.util.spine_editor.spine_editor_error"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.unknown_barcode
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.catalog_error_for_doc_id
+msgid "Error opening catalog for document ID = %1$s"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_in_title
+msgid "Batch"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit_in_title
+msgctxt "staff.cat.util.copy_editor.edit_in_title"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view_in_title
+msgctxt "staff.cat.util.copy_editor.view_in_title"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.copy_attributes_in_title
+msgid "Copy Attributes"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_edit
+msgid "Batch Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_view
+msgid "Batch View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit
+msgctxt "staff.cat.util.copy_editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view
+msgctxt "staff.cat.util.copy_editor.view"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.not_modified
+msgid "Copies not modified."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Damaged status."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_title
+msgctxt "staff.cat.util.mark_item_damaged.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_message
+msgid ""
+"Change the status for these items to Damaged? You will have to manually "
+"retrieve the last circulation if you need to bill a patron. Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_title
+msgid "Mark Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.md_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_cancel_label
+msgctxt "staff.cat.util.mark_item_damaged.md_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.md_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.marking_error
+msgid "Error marking item %1$s damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.one_item_damaged
+msgid "Item marked Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.multiple_item_damaged
+msgid "%1$s items marked Damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Missing status."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_title
+msgctxt "staff.cat.util.mark_item_missing.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_ok_label
+msgctxt "staff.cat.util.mark_item_missing.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_message
+msgid "'Change the status for these items to Missing? Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_title
+msgid "Mark Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_ok_label
+msgctxt "staff.cat.util.mark_item_missing.ms_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_cancel_label
+msgctxt "staff.cat.util.mark_item_missing.ms_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.ms_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.marking_error
+msgid "Error marking item %1$s missing."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.one_item_missing
+msgid "Item marked Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.multiple_item_missing
+msgid "%1$s items marked Missing."
+msgstr ""
+
+#: staff.cat.volume_buckets.window_tab_name
+msgid "Volume Buckets"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.my_init.btn.label
+msgctxt "staff.cat.volume_copy_creator.my_init.btn.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.message
+msgid ""
+"You may not add more than %1$s items at a time for a given volume in this "
+"interface."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.title
+msgid "Maximum items exceeded."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.ok_label
+msgid "Ok"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.call_nums
+msgid "Call Numbers"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.num_of_copies
+msgid "# of Copies"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_message
+msgid "\"%1$s\" is an invalid barcode."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_title
+msgid "Invalid Barcode"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button
+msgctxt "staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.problem_with_volume
+msgid ""
+"Problem finding or creating %1$s. We will skip item creation for this "
+"volume."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err2
+msgid "volume tree update 2"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err3
+msgid "volume tree update 3"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.load_prefs.err_retrieving_prefs
+msgid "Error retrieving stored preferences"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.save_prefs.err_storing_prefs
+msgid "Error storing preferences"
+msgstr ""
+
+#: staff.cat.z3950.obj_list_init.list_construction_error
+msgid "Failure during list construction."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.deck_label
+msgid "Results View"
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_view_error
+msgid "Failure during MARC view."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_error
+msgid "Failure during MARC import."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_overlay_error
+msgid "Failure during MARC import overlay."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.search_fields_error
+msgid "Error setting up search fields."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.z39_service_error
+msgid "Z39.50 services not likely retrieved."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.no_search_selection
+msgid "No services selected to search."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.searching
+msgctxt "staff.cat.z3950.initial_search.searching"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.failed_search
+msgid "Failure during initial search."
+msgstr ""
+
+#: staff.cat.z3950.page_next.more_results
+msgid "Retrieving more results..."
+msgstr ""
+
+#: staff.cat.z3950.page_next.subsequent_search_error
+msgid "Failure during subsequent search."
+msgstr ""
+
+#: staff.cat.z3950.search.search_error
+msgid "Failure during actual search."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.null_server_error
+msgid "Server Error: request returned null"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.server_error
+msgid "Server Error: %1$s : %2$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.raw_query
+msgid "Raw query: %1$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.showing_results
+msgid "Showing %1$s of %2$s for %3$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.num_of_results
+msgid "%1$s records found"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.result_error
+msgid "Error retrieving results."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.search_result_error
+msgid "Failure during search result handling."
+msgstr ""
+
+#: staff.cat.z3950.replace_tab_with_opac.tab_name
+msgctxt "staff.cat.z3950.replace_tab_with_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.title
+msgctxt "staff.cat.z3950.spawn_marc_editor.title"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn1_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn1_overlay"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn2_import
+msgid "Import with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn3_cancel_import
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn3_cancel_import"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.successful_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import_with_new_tcn
+msgid "Record successfully imported with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_cancelled
+msgid "Record import cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import
+msgid "Record successfully imported."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_error
+msgid "Record not likely imported."
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.description
+msgid "Overlay this record?"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.label
+msgctxt "staff.cat.z3950.confirm_overlay.lead.label"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.accesskey
+msgid "O"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.label
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.accesskey
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.title
+msgid "Record Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.aborted
+msgid "Overlay Aborted"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.try_again
+msgid ""
+"Please mark a record for overlay from within the catalog and try this again."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.tab_name
+msgid "MARC Editor"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_record_label
+msgid "Overlay Record"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn1_overlay
+msgid "Overlay with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.successful_overlay_with_new_TCN
+msgid "Record successfully overlaid with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.cancelled_overlay
+msgid "Record overlay cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_error
+msgid "Record not likely overlaid."
msgstr ""
-#: cat.record.counter
-msgid "Record %1$s of %2$s"
+#: staff.cat.z3950.load_creds.z3950_cred_error
+msgid "Error retrieving stored z39.50 credentials"
msgstr ""
-#: cat.preference.error
-msgid "Preference not likely updated."
+#: staff.cat.z3950.save_creds.z3950_cred_error
+msgid "Problem storing z39.50 credentials."
msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/circ.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
-#: circ.bad_checkdigit
-msgid "This barcode has a bad check digit."
+#: staff.circ.alert
+msgid "Alert"
msgstr ""
-#: circ.barcode.enter
-msgid "Please enter a patron barcode first."
+#: staff.circ.item_no_circs
+msgid "Item %1$s has never circulated."
msgstr ""
-#: circ.barcode.warning
-msgid "Barcode Warning"
+#: staff.circ.invalid_date
+msgctxt "staff.circ.invalid_date"
+msgid "Invalid Date"
msgstr ""
-#: circ.standalone
-msgid "Standalone"
+#: staff.circ.future_date
+msgid "Future Date"
msgstr ""
-#: circ.duplicate_scan.msg
-msgid "This barcode has already been scanned."
+#: staff.circ.process_item
+msgid "Check In / Process Item"
msgstr ""
-#: circ.duplicate_scan.field
-msgid "Duplicate Scan"
+#: staff.circ.backdated_checkin
+msgid "Backdated %1$s Check In"
msgstr ""
-#: circ.offline_checkout.nonbarcoded
-msgid "or choose a non-barcoded option..."
+#: staff.circ.backdate.exception
+msgid "Problem setting backdate: %1$s"
msgstr ""
-#: circ.offline_checkout.items
-msgid "Enter the number of items:"
+#: staff.circ.unimplemented
+msgctxt "staff.circ.unimplemented"
+msgid "Not Yet Implemented"
msgstr ""
-#: circ.offline_checkout.download.warning
+#: staff.circ.check_digit.bad
+msgctxt "staff.circ.check_digit.bad"
msgid ""
-"WARNING: The non-barcode types have not been downloaded from the server. "
-"You should log in to retrieve these."
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.lost
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+#: staff.circ.barcode.bad
+msgid "Bad Barcode"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.expired
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+#: staff.circ.cancel
+msgctxt "staff.circ.cancel"
+msgid "Cancel"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.barred
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+#: staff.circ.barcode.accept
+msgid "Accept Barcode"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.blocked
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+#: staff.circ.confirm
+msgid "Check here to confirm this action"
msgstr ""
-#: circ.offline_checkout.barcode.flagged.unknown
+#: staff.circ.confirm.msg
+msgid "Check here to confirm this message."
+msgstr ""
+
+#. # If we know the name of the object, we could parameterize that as well
+#: staff.circ.checkin.exception
+msgid "Something went wrong in circ.util.checkin: %1$s"
+msgstr ""
+
+#: staff.circ.checkin2.exception
+msgid "Something went wrong in circ.util.checkin2: %1$s"
+msgstr ""
+
+#: staff.circ.checkin.exception.external
+msgctxt "staff.circ.checkin.exception.external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.external
+msgid "circ.checkin2: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin.exception.no_external
+msgctxt "staff.circ.checkin.exception.no_external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.no_external
+msgid "circ.util.checkin2: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.external
+msgctxt "staff.circ.util.checkin.exception.external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.no_external
+msgctxt "staff.circ.util.checkin.exception.no_external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkout.sorting.exception
+msgid "error in sorting non-cataloged items: %1$s"
+msgstr ""
+
+#: staff.circ.checkout.date.exception
+msgid "Use this format: YYYY-MM-DD"
+msgstr ""
+
+#: staff.circ.checkout.unimplemented
+msgctxt "staff.circ.checkout.unimplemented"
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.msg
+msgid "Enter the number of %1$s circulating:"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.title
+msgid "Non-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.msg
+msgid "You tried to circulate %1$d %2$s. The maximum is 99 per action."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.too_many.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.ok.btn
+msgctxt "staff.circ.checkout.ok.btn"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.msg
+msgid "Are you sure you want to circulate %1$d %2$s?"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.confirm.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.yes.btn
+msgctxt "staff.circ.checkout.yes.btn"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.checkout.no.btn
+msgctxt "staff.circ.checkout.no.btn"
+msgid "No"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.msg
+msgid "Error with non-cataloged checkout. %1$s is not a valid number."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.non_numeric.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.disable.error
+msgid "Error determining whether to disable checkout."
+msgstr ""
+
+#: staff.circ.checkout.date.too_early.error
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed
+msgid "%1$s failed."
+msgstr ""
+
+#: staff.circ.checkout.non_cataloged.pending
+msgid "Non-cataloged checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.pending
+msgid "%1$s checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed.alert
+msgid "Check Out Failed %1$s"
+msgstr ""
+
+#: staff.circ.checkout.override.confirm
+msgid "Override Checkout Failure?"
+msgstr ""
+
+#: staff.circ.checkout.not_cataloged.confirm
+msgid "Mis-scan or non-cataloged item. Checkout as a pre-cataloged item?"
+msgstr ""
+
+#: staff.circ.pre_cataloged
+msgid "Pre-cataloged"
+msgstr ""
+
+#: staff.circ.non_cataloged
+msgid "Non-cataloged"
+msgstr ""
+
+#: staff.circ.checkout.cancelled
+msgid "Checkout cancelled"
+msgstr ""
+
+#: staff.circ.checkout.card.inactive
+msgid ""
+"The card used to retrieve this account is inactive and may not be used to "
+"circulate items."
+msgstr ""
+
+#: staff.circ.checkout.barcode.check_out_failed
+msgid "Check Out Failed"
+msgstr ""
+
+#: staff.circ.checkout.account.inactive
+msgid "This account is inactive and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.account.expired
+msgid "This account has expired and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.item_due
+msgid "This item was due on %1$s."
+msgstr ""
+
+#: staff.circ.checkout.normal_checkin_then_checkout
+msgid "Normal Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.forgiving_checkin_then_checkout
+msgid "Forgiving Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.abort_transit_then_checkout
+msgid "Abort Transit then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.network_failure
+msgid "There was a network failure."
+msgstr ""
+
+#: staff.circ.checkout.copy_status
+msgid "Copy status = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.alert_message
+msgid "Alert Message = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.permission_denied
+msgid "Permission Denied = %1$s"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkout.suggest_offline
+msgid ""
+"Check Out Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkout.barcode
+msgctxt "staff.circ.checkout.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_out_id
+msgid "Check Out Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_in_id
+msgid "Check In Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.failure
+msgid "Failure rendering circulation."
+msgstr ""
+
+#: staff.circ.copy_details.hold
+msgid "Hold ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.transit
+msgid "Transit ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.circ
+msgid "Circulation ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.last_circ
+msgid "Last Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.current_circ
+msgid "Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.no_circ
+msgid "This item has yet to circulate."
+msgstr ""
+
+#: staff.circ.copy_details.not_transit
+msgid "This item is not in transit."
+msgstr ""
+
+#. # Displays user info: "Family name, First name : Barcode"
+#: staff.circ.copy_details.user_details
+msgid "%1$s, %2$s : %3$s"
+msgstr ""
+
+#: staff.circ.copy_details.bad_hold_status
+msgid ""
+"This item is not captured for a hold, however its status is incorrectly set "
+"to \"On Holds Shelf\". Please check this item in to correct the status."
+msgstr ""
+
+#: staff.circ.copy_details.no_hold
+msgid "This item is not captured for a hold."
+msgstr ""
+
+#: staff.circ.copy_status.tab_name
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status.action.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.circ.copy_status.sel_checkin.error
+msgid "Checkin did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcode.error
+msgid "Barcode %1$s was not likely replaced."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcodes.error
+msgid "Barcode replacements did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.sel_edit.error
+msgid "with copy editor"
+msgstr ""
+
+#: staff.circ.copy_status.sel_renew.not_circulating
+msgid "Item with barcode %1$s is not circulating."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.title
+msgid "Import Barcode File"
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.complete
+msgid "File uploaded."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.no_barcodes
+msgid "No barcodes found in file."
+msgstr ""
+
+#: staff.circ.copy_status.add_items.title
+msgid "Add Item for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.confirm
+msgid "Are you sure sure you want to delete these items? %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.title
+msgctxt "staff.circ.copy_status.del_items.title"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success
+msgid "Items Deleted"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.mark_destination
+msgid "Please mark a volume as the destination and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.problem
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.perm_failure
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.title
+msgid "Add Volume/Item for Record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.perm_failure
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volume.title
+msgid "Volume for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.title
+msgid "Volumes for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.duplicate
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.singular
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.plural
+msgid "Are you sure you would like to delete these volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete
+msgid "Delete"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.cancel
+msgctxt "staff.circ.copy_status.delete_volumes.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.override
+msgctxt "staff.circ.copy_status.delete_volumes.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete_copies
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.status
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.title
+msgctxt "staff.circ.copy_status.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.ok
+msgctxt "staff.circ.copy_status.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library
+msgid "Library and Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one.title
+msgctxt "staff.circ.copy_status.mark_library.limit_one.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.none
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.confirm
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.transfer.label
+msgid "Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.label
+msgctxt "staff.circ.copy_status.transfer_volume.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.accesskey
+msgid "C"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.aborted
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.override_failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cannot_have_vols
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.test_barcode.prompt
+msgctxt "staff.circ.copy_status.test_barcode.prompt"
+msgid ""
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
+msgstr ""
+
+#: staff.circ.copy_status.status.null_result
+msgid "Something weird happened. Result was null."
+msgstr ""
+
+#: staff.circ.copy_status.status.copy_not_found
+msgid "%1$s was either mis-scanned or is not cataloged."
+msgstr ""
+
+#: staff.circ.copy_status.status.not_cataloged
+msgctxt "staff.circ.copy_status.status.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.copy_status.status.pre_cat
+msgid "Item is a pre-cataloged item."
+msgstr ""
+
+#: staff.circ.copy_status.status.hold
+msgid "Item is captured for a Hold."
+msgstr ""
+
+#: staff.circ.copy_status.status.transit
+msgid "Item is in Transit."
+msgstr ""
+
+#: staff.circ.copy_status.status.circ
+msgid "Item is circulating."
+msgstr ""
+
+#: staff.circ.hold_capture.print.to_printer
+msgid "To Printer"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.barcode
+msgctxt "staff.circ.hold_capture.print.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.title
+msgid "Title:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.author
+msgid "Author:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.route_to
+msgid "Route to:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.patron
+msgid "Patron:"
+msgstr ""
+
+#: staff.circ.hold_capture.calling_external
+msgid "circ.hold_capture: Calling external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.no_external
+msgid "circ.hold_capture: No external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.capture_failed
+msgid "Could not capture hold."
+msgstr ""
+
+#: staff.circ.hold_capture.error
+msgid "FIXME: need special alert and error handling"
+msgstr ""
+
+#: staff.circ.in_house_use.tab_name
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.barcode
+msgctxt "staff.circ.in_house_use.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncat_sort_error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncataloged
+msgid "Non-Cataloged"
+msgstr ""
+
+#: staff.circ.in_house_use.items_dump
+msgid "items ="
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple
+msgid "Are you sure you want to mark %1$s as having been used %2$s times?"
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple.title
+msgid "In-House Use Verification"
+msgstr ""
+
+#: staff.circ.in_house_use.yes
+msgctxt "staff.circ.in_house_use.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.in_house_use.no
+msgctxt "staff.circ.in_house_use.no"
+msgid "No"
+msgstr ""
+
+#. # adjust Circulation -> Offline Interface to match your translation in lang.dtd
+#: staff.circ.in_house_use.failed.verbose
+msgid ""
+"In House Use Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.in_house_use.failed
+msgid "In House Use Failed"
+msgstr ""
+
+#: staff.circ.in_house_use.ok
+msgctxt "staff.circ.in_house_use.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.in_house_use.external
+msgid "circ.in_house_use: Calling external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.no_external
+msgid "circ.in_house_use: No external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.external
+msgid "circ.in_house_use: Calling external .on_failure()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.no_external
+msgid "circ.in_house_use: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.print_list_template.window.title
+msgid "Template Macros"
+msgstr ""
+
+#: staff.circ.print_list_template.window.heading
+msgid "General:"
+msgstr ""
+
+#: staff.circ.print_list_template.window.template_type
+msgid "For type: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.window.close
+msgid "Close Window"
+msgstr ""
+
+#: staff.circ.print_list_template.preview
+msgid "preview:"
+msgstr ""
+
+#: staff.circ.print_list_template.save
+msgid "Template Saved"
+msgstr ""
+
+#: staff.circ.print_list_template.save_as
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.circ.print_list_template.export.error
+msgctxt "staff.circ.print_list_template.export.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.import
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.circ.print_list_template.import_results
+msgid "Imported these templates: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.reload
+msgid "Please reload this interface."
+msgstr ""
+
+#: staff.circ.print_list_template.import.error
+msgctxt "staff.circ.print_list_template.import.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.tab_name
+msgid "Receipt Template Editor"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.confirm
+msgid "Are you sure you would like to abort transits for copies: %1$s?"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.title
+msgid "Aborting Transits"
+msgstr ""
+
+#: staff.circ.utils.yes
+msgctxt "staff.circ.utils.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.utils.no
+msgctxt "staff.circ.utils.no"
+msgid "No"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_allowed
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_found
msgid ""
-"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
-"%3$s."
+"This item was no longer in transit at the time of the abort. Perhaps this "
+"happened from a stale display?"
msgstr ""
-#: circ.offline_checkout.date.early
-msgid "Due date needs to be after today."
+#: staff.circ.utils.abort_transits.unexpected_error
+msgid "Transit not likely aborted."
+msgstr ""
+
+#: staff.circ.utils.retrieve_patron.failure
+msgid "Problem retrieving patron."
+msgstr ""
+
+#: staff.circ.utils.retrieve_copy.failure
+msgid "Problem retrieving copy details."
+msgstr ""
+
+#: staff.circ.utils.retrieve_circs.failure
+msgid "Problem retrieving circulations."
+msgstr ""
+
+#: staff.circ.utils.offline.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.circ.utils.offline.checkout_time
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.utils.offline.type
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat_type
+msgid "Non-Cataloged Type ID"
+msgstr ""
+
+#: staff.circ.utils.offline.count
+msgid "Count"
+msgstr ""
+
+#: staff.circ.utils.offline.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.utils.offline.backdate
+msgid "Back Date"
+msgstr ""
+
+#: staff.circ.utils.offline.use_time
+msgid "Use Time"
+msgstr ""
+
+#: staff.circ.utils.not_cataloged
+msgctxt "staff.circ.utils.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.utils.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.circ.utils.owning_lib
+msgid "Owning Library"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.short
+msgid "Short"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.normal
+msgctxt "staff.circ.utils.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.long
+msgid "Long"
+msgstr ""
+
+#: staff.circ.utils.fine_level.low
+msgid "Low"
+msgstr ""
+
+#: staff.circ.utils.fine_level.normal
+msgctxt "staff.circ.utils.fine_level.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.fine_level.high
+msgid "High"
+msgstr ""
+
+#: staff.circ.utils.circulate
+msgid "Circulate?"
+msgstr ""
+
+#: staff.circ.utils.deleted
+msgid "Deleted?"
+msgstr ""
+
+#: staff.circ.utils.holdable
+msgid "Holdable?"
+msgstr ""
+
+#: staff.circ.utils.opac_visible
+msgid "OPAC Visible?"
+msgstr ""
+
+#: staff.circ.utils.reference
+msgid "Reference?"
+msgstr ""
+
+#: staff.circ.utils.deposit
+msgid "Deposit?"
+msgstr ""
+
+#. # The < and > highlight that the value is not set; translate Unset and change the delimiters as needed
+#: staff.circ.utils.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.circ.utils.checkout_lib
+msgid "Checkout Library"
+msgstr ""
+
+#: staff.circ.utils.checkout_timestamp
+msgid "Checkout Timestamp"
+msgstr ""
+
+#: staff.circ.utils.checkin_timestamp
+msgid "Checkin Timestamp"
+msgstr ""
+
+#: staff.circ.utils.xact_start
+msgid "Checkout Date"
+msgstr ""
+
+#: staff.circ.utils.checkin_time
+msgid "Checkin Date"
+msgstr ""
+
+#: staff.circ.utils.xact_finish
+msgid "Transaction Finished"
+msgstr ""
+
+#: staff.circ.utils.create_date
+msgid "Date Created"
+msgstr ""
+
+#: staff.circ.utils.edit_date
+msgid "Date Last Edited"
+msgstr ""
+
+#: staff.circ.utils.edition
+msgid "Edition"
+msgstr ""
+
+#: staff.circ.utils.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.circ.utils.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.circ.utils.publisher
+msgid "Publisher"
+msgstr ""
+
+#. # TCN is an acronym for Title Control Number
+#: staff.circ.utils.tcn
+msgid "TCN"
+msgstr ""
+
+#: staff.circ.utils.stop_fines
+msgid "Fines Stopped"
+msgstr ""
+
+#: staff.circ.utils.stop_fines_time
+msgid "Fines Stopped Time"
+msgstr ""
+
+#: staff.circ.utils.route_to
+msgid "Route To"
+msgstr ""
+
+#: staff.circ.utils.message
+msgid "Message"
+msgstr ""
+
+#: staff.circ.utils.uses
+msgid "# of Uses"
+msgstr ""
+
+#: staff.circ.utils.alert_message
+msgid "Alert Message"
+msgstr ""
+
+#: staff.circ.utils.barcode
+msgid "Barcode"
msgstr ""
-#: circ.offline_checkout.required_field
-msgid "Required Field"
+#: staff.circ.utils.title
+msgid "Title"
msgstr ""
-#: circ.offline_checkout.valid_count
-msgid "Please try again and enter a valid count."
+#: staff.circ.utils.author
+msgid "Author"
msgstr ""
-#: circ.offline_checkout.required_value
-msgid "Required Value"
+#: staff.circ.utils.callnumber
+msgid "Call Number"
msgstr ""
-#: circ.offline_register.future.birth.date
-msgid "Patron needs to be born yesterday."
+#: staff.circ.utils.transit_id
+msgid "Transit ID"
msgstr ""
-#: circ.offline_register.invalid.birth.date
-msgid "Happy birthday! You need to be more than 0 days old."
+#: staff.circ.utils.transit_source
+msgid "Transit Source"
msgstr ""
-#: circ.offline_register.survey.prompt
-msgid "Choose a response..."
+#: staff.circ.utils.transit_source_send_time
+msgid "Transit Send Time"
msgstr ""
-#: circ.offline_register.missing.post_code
-msgid "Missing Address : Postal Code"
+#: staff.circ.utils.transit_dest
+msgid "Transit Destination"
msgstr ""
-#: circ.offline_register.missing.state
-msgid "Missing Address : State"
+#: staff.circ.utils.transit_dest_recv_time
+msgid "Transit Completion Time"
msgstr ""
-#: circ.offline_register.missing.city
-msgid "Missing Address : City"
+#: staff.circ.utils.transit_target_copy
+msgid "Transit Copy ID"
msgstr ""
-#: circ.offline_register.missing.street1
-msgid "Missing Address : Line 1"
+#: staff.circ.utils.request_lib
+msgid "Request Library (Full Name)"
msgstr ""
-#: circ.offline_register.missing.ident_value
-msgid "Missing Identification Value"
+#: staff.circ.utils.request_lib_shortname
+msgid "Request Library"
msgstr ""
-#: circ.offline_register.missing.ident_type
-msgid "Missing Identification Type"
+#: staff.circ.utils.request_timestamp
+msgid "Request Timestamp"
msgstr ""
-#: circ.offline_register.missing.dob
-msgid "Missing Date of Birth"
+#: staff.circ.utils.request_time
+msgid "Request Date"
msgstr ""
-#: circ.offline_register.missing.first_given_name
-msgid "Missing First Name"
+#. # Time the hold became available
+#: staff.circ.utils.available_timestamp
+msgid "Available On (Timestamp)"
+msgstr ""
+
+#. # Date the hold became available
+#: staff.circ.utils.available_time
+msgid "Available On"
+msgstr ""
+
+#. # Time the hold was captured
+#: staff.circ.utils.capture_timestamp
+msgid "Capture Timestamp"
+msgstr ""
+
+#. # Date the hold was captured
+#: staff.circ.utils.capture_time
+msgid "Capture Date"
+msgstr ""
+
+#: staff.circ.utils.hold_status.1
+msgid "Waiting for copy"
+msgstr ""
+
+#: staff.circ.utils.hold_status.2
+msgid "Waiting for capture"
+msgstr ""
+
+#: staff.circ.utils.hold_status.3
+msgid "In-Transit"
+msgstr ""
+
+#: staff.circ.utils.hold_status.4
+msgid "Ready for pickup"
+msgstr ""
+
+#: staff.circ.utils.frozen
+msgid "Frozen?"
+msgstr ""
+
+#: staff.circ.utils.active
+msgid "Active?"
+msgstr ""
+
+#: staff.circ.utils.thaw_date
+msgid "Activation Date"
+msgstr ""
+
+#: staff.circ.utils.thaw_date.none
+msgid "No Date"
+msgstr ""
+
+#: staff.circ.utils.pickup_lib
+msgid "Pickup Library (Full Name)"
+msgstr ""
+
+#: staff.circ.utils.current_copy.none
+msgid "No Copy"
+msgstr ""
+
+#: staff.circ.utils.title.none
+msgid "No Title?"
+msgstr ""
+
+#: staff.circ.utils.author.none
+msgid "No Author?"
+msgstr ""
+
+#: staff.circ.utils.notify_time
+msgid "Last Notify Time"
+msgstr ""
+
+#: staff.circ.utils.notify_count
+msgid "Notices"
+msgstr ""
+
+#: staff.circ.utils.patron_family_name
+msgid "Patron Last Name"
+msgstr ""
+
+#: staff.circ.utils.patron_first_given_name
+msgid "Patron First Name"
+msgstr ""
+
+#: staff.circ.utils.checkin.override
+msgid "Override Checkin Failure?"
+msgstr ""
+
+#: staff.circ.utils.billable.amount
+msgid "Transaction for %1$s billable $%2$s"
+msgstr ""
+
+#: staff.circ.utils.transit_hold_cancelled
+msgid "Original hold for transit cancelled."
+msgstr ""
+
+#: staff.circ.utils.item_checked_in
+msgid "%1$s was already checked in."
+msgstr ""
+
+#: staff.circ.utils.item_not_cataloged
+msgid "ITEM_NOT_CATALOGED event but copy status is %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_to.msg
+msgid "This item needs to be routed to %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_item_error
+msgid "We should have received a ROUTE_ITEM"
+msgstr ""
+
+#: staff.circ.utils.route_item_status_error
+msgid "status of Holds Shelf, but no actual hold found."
+msgstr ""
+
+#: staff.circ.utils.payload.hold.barcode
+msgctxt "staff.circ.utils.payload.hold.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.title
+msgid "Title: %1$s"
+msgstr ""
+
+#. # Hold for patron familyName, firstName secondName
+#: staff.circ.utils.payload.hold.patron
+msgid "Hold for patron %1$s, %2$s %3$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.phone_notify
+msgid "Notify by phone: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.email_notify
+msgid "Notify by email: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.request_date
+msgid "Request Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.slip_date
+msgid "Slip Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.hold_slip
+msgid "Hold Slip"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.yes
+msgid "Print"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.no
+msgid "Do Not Print"
+msgstr ""
+
+#: staff.circ.utils.capture
+msgid "%1$s has been captured for a hold."
+msgstr ""
+
+#: staff.circ.utils.needs_cataloging
+msgid "%1$s needs to be cataloged."
+msgstr ""
+
+#: staff.circ.utils.copy_status.error
+msgid "FIXME -- this case \"%1$s\" is unhandled."
+msgstr ""
+
+#: staff.circ.utils.msg.ok
+msgctxt "staff.circ.utils.msg.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.utils.route_to.destination
+msgid "Destination: %1$s."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address
+msgid "We do not have a holds address for this library."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address.error
+msgid "Unable to retrieve mailing address."
+msgstr ""
+
+#: staff.circ.utils.payload.author
+msgid "Author: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.in_transit
+msgid "%1$s is in transit."
+msgstr ""
+
+#: staff.circ.checkin.hold_capture
+msgid "Hold Capture"
+msgstr ""
+
+#: staff.circ.checkin.check_in.tab
+msgid "Item Check In"
+msgstr ""
+
+#: staff.circ.checkin.error
+msgid "Check In Failed (in circ.util.checkin) (%1$s):"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkin.suggest_offline
+msgid ""
+"Check In Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.error
+msgid "Renew Failed for %1$s"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.override
+msgid "Override Renew Failure?"
+msgstr ""
+
+#: staff.circ.renew.barcode
+msgctxt "staff.circ.renew.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.status
+msgid "Barcode: %1$s Status: %2$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.msg
+msgid "Barcode: %1$s Message: %2$s"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt
+msgid "Are you sure you would like to activate hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt.plural
+msgid "Are you sure you would like to activate holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt
+msgid "Are you sure you would like to suspend hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt.plural
+msgid "Are you sure you would like to suspend holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for hold %1$s. "
+"This will also Suspend the hold."
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt.plural
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for holds %1$s. "
+"This will also Suspend the holds."
+msgstr ""
+
+#: staff.circ.holds.activation_date.too_early.error
+msgid ""
+"Activation Date needs to be either unset or set to fall on a future date."
msgstr ""
-#: circ.offline_register.missing.family_name
-msgid "Missing Last Name"
+#: staff.circ.holds.activation_date.invalid_date
+msgctxt "staff.circ.holds.activation_date.invalid_date"
+msgid "Invalid Date"
msgstr ""
-#: circ.offline_register.missing.passwd
-msgid "Missing Password"
+#: staff.circ.holds.modifying_holds
+msgid "Modifying Holds"
msgstr ""
-#: circ.offline_register.missing.barcode
-msgid "Missing Barcode"
+#: staff.circ.holds.modifying_holds.yes
+msgctxt "staff.circ.holds.modifying_holds.yes"
+msgid "Yes"
msgstr ""
-#: circ.offline_register.missing.profile
-msgid "Missing Profile"
+#: staff.circ.holds.modifying_holds.no
+msgctxt "staff.circ.holds.modifying_holds.no"
+msgid "No"
msgstr ""
-#: circ.offline_register.missing.home_ou
-msgid "Missing Home Library"
+#: staff.circ.holds.already_activated
+msgid "Hold %1$s was already activated."
msgstr ""
-#: circ.offline_register.missing.alert
-msgid "Please fix the following:"
+#: staff.circ.holds.already_activated.plural
+msgid "Holds %1$s were already activated."
msgstr ""
-#: circ.offline_register.patron.saved
-msgid "Patron Registration Saved"
+#: staff.circ.holds.already_suspended
+msgid "Hold %1$s was already suspended."
msgstr ""
-#: circ.offline_register.missing.library.list
-msgid "Missing library list."
+#: staff.circ.holds.already_suspended.plural
+msgid "Holds %1$s were already suspended."
msgstr ""
-#: circ.offline_register.missing.profile.list
-msgid "Missing profile list."
+#: staff.circ.holds.unexpected_error.not_likely_modified
+msgid "Holds not likely modified."
msgstr ""
-#: circ.offline_register.missing.id.type.list
-msgid "Missing identification type list."
+#: staff.circ.holds.unexpected_error.not_likely_activated
+msgid "Holds not likely activated."
msgstr ""
-#: circ.offline_register.missing.required.surveys
-msgid "Missing required surveys."
+#: staff.circ.holds.unexpected_error.not_likely_suspended
+msgid "Holds not likely suspended."
msgstr ""
-#: circ.offline_register.missing.files.error
+#: staff.circ.holds.error.may_not_edit_pickup_lib_for_hold_intransit
msgid ""
-"ERROR: Offline patron registration requires some server-generated files. "
-"Please login periodically to retrieve these files."
+"You may not edit the pickup library for holds that are in-transit or ready "
+"for pickup."
msgstr ""
# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/common.properties
+#. extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/common.properties
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: common.exception
msgid "The JSAN library object is missing."
msgstr ""
+#: common.error
+msgid "Please inform your help desk or developers of this error:"
+msgstr ""
+
#: common.ok
msgid "Ok"
msgstr ""
msgstr ""
#: common.barcode.status.warning
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3$s."
msgstr ""
#: common.barcode.status.warning.lost
msgstr ""
#: common.barcode.status.warning.barred
+msgctxt "common.barcode.status.warning.barred"
msgid "Barred"
msgstr ""
#: common.date.invalid
msgid "Invalid Date"
msgstr ""
+
+#: common.action_complete
+msgid "Action completed."
+msgstr ""
+
+#. # common.grouping_string = the string that should be inserted between elements of a grouped list
+#: common.grouping_string
+msgid ","
+msgstr ""
+
+#: common.unimplemented
+msgid "Not yet implemented"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.check_to_confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
+
+#: staff.acp_label_barcode
+msgctxt "staff.acp_label_barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.acp_label_call_number
+msgid "Call Number"
+msgstr ""
+
+#: staff.acp_label_circ_as_type
+msgid "Circulate As Type"
+msgstr ""
+
+#: staff.acp_label_circ_lib
+msgid "Circulation Library"
+msgstr ""
+
+#: staff.acp_label_circ_modifier
+msgid "Circulation Modifier"
+msgstr ""
+
+#: staff.acp_label_copy_number
+msgid "Copy Number"
+msgstr ""
+
+#: staff.acp_label_deposit_amount
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.acp_label_fine_level
+msgid "Fine Level"
+msgstr ""
+
+#: staff.acp_label_id
+msgid "Copy ID"
+msgstr ""
+
+#: staff.acp_label_loan_duration
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.acp_label_location
+msgid "Location"
+msgstr ""
+
+#: staff.acp_label_price
+msgid "Price"
+msgstr ""
+
+#: staff.acp_label_status
+msgctxt "staff.acp_label_status"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_current_copy_label
+msgid "Current Copy"
+msgstr ""
+
+#: staff.ahr_email_notify_label
+msgid "Email Notify"
+msgstr ""
+
+#: staff.ahr_expire_time_label
+msgid "Expire Time"
+msgstr ""
+
+#: staff.ahr_fulfillment_time_label
+msgid "Fulfillment Time"
+msgstr ""
+
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.ahr_holdable_formats_label
+msgid "Holdable Formats"
+msgstr ""
+
+#: staff.ahr_id_label
+msgid "Hold ID"
+msgstr ""
+
+#: staff.ahr_phone_notify_label
+msgid "Phone Notify"
+msgstr ""
+
+#: staff.ahr_pickup_lib_label
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.ahr_prev_check_time_label
+msgid "Previous Check Time"
+msgstr ""
+
+#: staff.ahr_requestor_label
+msgid "Requestor"
+msgstr ""
+
+#: staff.ahr_selection_depth_label
+msgid "Selection Depth"
+msgstr ""
+
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_target_label
+msgid "Target"
+msgstr ""
+
+#: staff.ahr_usr_label
+msgctxt "staff.ahr_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.circ_label_due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ_label_id
+msgid "Circulation ID"
+msgstr ""
+
+#: staff.circ_label_renewal_remaining
+msgid "Remaining Renewals"
+msgstr ""
+
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr ""
+
+#: staff.bills_xact_dates_label
+msgid "Record / Dates"
+msgstr ""
+
+#: staff.bills_information
+msgid "Information"
+msgstr ""
+
+#: staff.bills_current_payment_label
+msgid "Current Payment"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill #"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgid "Start"
+msgstr ""
+
+#: staff.mbts_xact_finish_label
+msgid "Finish"
+msgstr ""
+
+#: staff.mbts_xact_type_label
+msgctxt "staff.mbts_xact_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_usr_label
+msgctxt "staff.mbts_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.mbts_last_billing_note_label
+msgid "Last Billing Note"
+msgstr ""
+
+#: staff.mbts_last_billing_type_label
+msgid "Last Billing Type"
+msgstr ""
+
+#: staff.mbts_last_billing_timestamp_label
+msgid "Last Billed"
+msgstr ""
+
+#: staff.mbts_last_payment_note_label
+msgid "Last Payment Note"
+msgstr ""
+
+#: staff.mbts_last_payment_type_label
+msgid "Last Payment Type"
+msgstr ""
+
+#: staff.mbts_last_payment_timestamp_label
+msgid "Last Payment"
+msgstr ""
+
+#: staff.mb_billing_type_label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.mb_xact_label
+msgctxt "staff.mb_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mb_billing_ts_label
+msgctxt "staff.mb_billing_ts_label"
+msgid "When"
+msgstr ""
+
+#: staff.mb_void_time_label
+msgid "Void Time"
+msgstr ""
+
+#: staff.mb_note_label
+msgctxt "staff.mb_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mb_amount_label
+msgctxt "staff.mb_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mb_voider_label
+msgid "Voider"
+msgstr ""
+
+#: staff.mb_voided_label
+msgctxt "staff.mb_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mb_id_label
+msgid "Billing ID"
+msgstr ""
+
+#: staff.mp_credit_card_payment_label
+msgid "Credit Card Payment"
+msgstr ""
+
+#: staff.mp_forgive_payment_label
+msgid "Forgive Payment"
+msgstr ""
+
+#: staff.mp_payment_timestamp_label
+msgctxt "staff.mp_payment_timestamp_label"
+msgid "When"
+msgstr ""
+
+#: staff.mp_payment_type_label
+msgid "Payment Type"
+msgstr ""
+
+#: staff.mp_voided_label
+msgctxt "staff.mp_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mp_id_label
+msgid "Payment ID"
+msgstr ""
+
+#: staff.mp_goods_payment_label
+msgid "Goods Payment"
+msgstr ""
+
+#: staff.mp_xact_label
+msgctxt "staff.mp_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mp_credit_payment_label
+msgid "Credit Payment"
+msgstr ""
+
+#: staff.mp_work_payment_label
+msgid "Work Payment"
+msgstr ""
+
+#: staff.mp_note_label
+msgctxt "staff.mp_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mp_cash_payment_label
+msgid "Cash Payment"
+msgstr ""
+
+#: staff.mp_amount_label
+msgctxt "staff.mp_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mp_check_payment_label
+msgid "Check Payment"
+msgstr ""
+
+#: staff.mp_cash_drawer_label
+msgid "Workstation"
+msgstr ""
+
+#: staff.mp_accepting_usr_label
+msgid "Staff"
+msgstr ""
+
+#: staff.card_barcode_label
+msgctxt "staff.card_barcode_label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.au_active_label
+msgid "Active"
+msgstr ""
+
+#: staff.au_usrname_label
+msgid "Login Name"
+msgstr ""
+
+#: staff.au_profile_label
+msgid "Profile"
+msgstr ""
+
+#: staff.au_barred_label
+msgctxt "staff.au_barred_label"
+msgid "Barred"
+msgstr ""
+
+#: staff.au_alert_message_label
+msgid "Alert"
+msgstr ""
+
+#: staff.au_claims_returned_count_label
+msgid "Returns Claimed"
+msgstr ""
+
+#: staff.au_create_date_label
+msgid "Created On"
+msgstr ""
+
+#: staff.au_expire_date_label
+msgid "Expires On"
+msgstr ""
+
+#: staff.au_home_library_label
+msgid "Home Library"
+msgstr ""
+
+#: staff.au_home_library_fullname_label
+msgid "Home Library (Full Name)"
+msgstr ""
+
+#: staff.au_credit_forward_balance_label
+msgid "Credit"
+msgstr ""
+
+#: staff.au_day_phone_label
+msgid "Day Phone"
+msgstr ""
+
+#: staff.au_evening_phone_label
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.au_other_phone_label
+msgid "Other Phone"
+msgstr ""
+
+#: staff.au_email_label
+msgid "Email"
+msgstr ""
+
+#: staff.au_birth_date_label
+msgid "Birth Date"
+msgstr ""
+
+#: staff.au_ident_type_label
+msgid "Identification Type"
+msgstr ""
+
+#: staff.au_ident_value_label
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ident_type2_label
+msgid "Identification Type 2"
+msgstr ""
+
+#: staff.au_ident_value2_label
+msgid "Identification Value 2"
+msgstr ""
+
+#: staff.au_net_access_level_label
+msgid "Internet Access"
+msgstr ""
+
+#: staff.au_master_account_label
+msgid "Group Lead"
+msgstr ""
+
+#: staff.au_group_id_label
+msgid "Group ID"
+msgstr ""
+
+#: staff.au_id_label
+msgid "User ID"
+msgstr ""
+
+#: staff.au_name_prefix_label
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_family_name_label
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_first_given_name_label
+msgid "First Name"
+msgstr ""
+
+#: staff.au_second_given_name_label
+msgid "Middle Name"
+msgstr ""
+
+#: staff.au_name_suffix_label
+msgid "Suffix"
+msgstr ""
+
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgid "ISSN"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers/Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.ser
+msgid "Serials"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.z39_50.search_class.publisher
+msgid "Publisher"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.main.data.loaded
+msgid "Data loaded."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.synced
+msgid "Offline interface synchronized with server."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.noncat_sort.error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.please_wait
+msgid "Please wait"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.workstation_registration_denied
+msgid "You do not have permission to register a workstation."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.override
+msgid "Override Registration Failure?"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.error
+msgid "Workstation Registration error (%1$s)"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.success
+msgid "Registration successful"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:45-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: config.bib_source:3
+msgid "oclc"
+msgstr ""
+
+#: config.bib_source:5
+msgid "System Local"
+msgstr ""
+
+#: config.bib_source:7
+msgid "Project Gutenberg"
+msgstr ""
+
+#: config.standing:9
+msgid "Good"
+msgstr ""
+
+#: config.standing:10
+msgid "Barred"
+msgstr ""
+
+#: config.non_cataloged_type:43
+msgid "Paperback Book"
+msgstr ""
+
+#: config.identification_type:46
+msgid "Drivers License"
+msgstr ""
+
+#: config.identification_type:48
+msgid "SSN"
+msgstr ""
+
+#: config.identification_type:50
+msgid "Other"
+msgstr ""
+
+#: config.rule_circ_duration:53
+msgid "7_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:55
+msgid "28_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:57
+msgid "3_months_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:59
+msgid "3_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:61
+msgid "2_months_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:63
+msgid "35_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:65
+msgid "7_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:67
+msgid "1_hour_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:69
+msgid "28_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:71
+msgid "14_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:73
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:76
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:78
+msgid "overdue_min"
+msgstr ""
+
+#: config.rule_max_fine:80
+msgid "overdue_mid"
+msgstr ""
+
+#: config.rule_max_fine:82
+msgid "overdue_max"
+msgstr ""
+
+#: config.rule_max_fine:84
+msgid "overdue_equip_min"
+msgstr ""
+
+#: config.rule_max_fine:86
+msgid "overdue_equip_mid"
+msgstr ""
+
+#: config.rule_max_fine:88
+msgid "overdue_equip_max"
+msgstr ""
+
+#: config.rule_recuring_fine:91
+msgid "default"
+msgstr ""
+
+#: config.rule_recuring_fine:93
+msgid "10_cent_per_day"
+msgstr ""
+
+#: config.rule_recuring_fine:95
+msgid "50_cent_per_day"
+msgstr ""
+
+#: config.rule_age_hold_protect:97
+msgid "3month"
+msgstr ""
+
+#: config.rule_age_hold_protect:98
+msgid "6month"
+msgstr ""
+
+#: config.copy_status:100
+msgid "Available"
+msgstr ""
+
+#: config.copy_status:102
+msgid "Checked out"
+msgstr ""
+
+#: config.copy_status:104
+msgid "Bindery"
+msgstr ""
+
+#: config.copy_status:105
+msgid "Lost"
+msgstr ""
+
+#: config.copy_status:106
+msgid "Missing"
+msgstr ""
+
+#: config.copy_status:108
+msgid "In process"
+msgstr ""
+
+#: config.copy_status:109
+msgid "In transit"
+msgstr ""
+
+#: config.copy_status:110
+msgid "Reshelving"
+msgstr ""
+
+#: config.copy_status:111
+msgid "On holds shelf"
+msgstr ""
+
+#: config.copy_status:112
+msgid "On order"
+msgstr ""
+
+#: config.copy_status:114
+msgid "ILL"
+msgstr ""
+
+#: config.copy_status:115
+msgid "Cataloging"
+msgstr ""
+
+#: config.copy_status:116
+msgid "Reserves"
+msgstr ""
+
+#: config.copy_status:117
+msgid "Discard/Weed"
+msgstr ""
+
+#: config.copy_status:118
+msgid "Damaged"
+msgstr ""
+
+#: config.net_access_level:123
+msgid "Filtered"
+msgstr ""
+
+#: config.net_access_level:125
+msgid "Unfiltered"
+msgstr ""
+
+#: config.net_access_level:127
+msgid "No Access"
+msgstr ""
+
+#: config.audience_map:130
+msgid "Unknown or unspecified"
+msgstr ""
+
+#: config.audience_map:132
+msgid "Preschool"
+msgstr ""
+
+#: config.audience_map:134
+msgid "Primary"
+msgstr ""
+
+#: config.audience_map:136
+msgid "Pre-adolescent"
+msgstr ""
+
+#: config.audience_map:138
+msgid "Adolescent"
+msgstr ""
+
+#: config.audience_map:140
+msgid "Adult"
+msgstr ""
+
+#: config.audience_map:142
+msgid "Specialized"
+msgstr ""
+
+#: config.audience_map:144
+msgid "General"
+msgstr ""
+
+#: config.audience_map:146
+msgid "Juvenile"
+msgstr ""
+
+#: config.lit_form_map:149
+msgid "Not fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:151
+msgid "Fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:153
+msgid "Comic strips"
+msgstr ""
+
+#: config.lit_form_map:155
+msgid "Dramas"
+msgstr ""
+
+#: config.lit_form_map:157
+msgid "Essays"
+msgstr ""
+
+#: config.lit_form_map:159
+msgid "Novels"
+msgstr ""
+
+#: config.lit_form_map:161
+msgid "Humor, satires, etc."
+msgstr ""
+
+#: config.lit_form_map:163
+msgid "Letters"
+msgstr ""
+
+#: config.lit_form_map:165
+msgid "Short stories"
+msgstr ""
+
+#: config.lit_form_map:167
+msgid "Mixed forms"
+msgstr ""
+
+#: config.lit_form_map:169
+msgid "Poetry"
+msgstr ""
+
+#: config.lit_form_map:171
+msgid "Speeches"
+msgstr ""
+
+#: config.lit_form_map:173
+msgid "Unknown"
+msgstr ""
+
+#: config.language_map:177
+msgid "Afar"
+msgstr ""
+
+#: config.language_map:178
+msgid "Abkhaz"
+msgstr ""
+
+#: config.language_map:179
+msgid "Achinese"
+msgstr ""
+
+#: config.language_map:180
+msgid "Acoli"
+msgstr ""
+
+#: config.language_map:181
+msgid "Adangme"
+msgstr ""
+
+#: config.language_map:182
+msgid "Adygei"
+msgstr ""
+
+#: config.language_map:183
+msgid "Afroasiatic (Other)"
+msgstr ""
+
+#: config.language_map:184
+msgid "Afrihili (Artificial language)"
+msgstr ""
+
+#: config.language_map:185
+msgid "Afrikaans"
+msgstr ""
+
+#: config.language_map:186
+msgid "Aljamía"
+msgstr ""
+
+#: config.language_map:187
+msgid "Akan"
+msgstr ""
+
+#: config.language_map:188
+msgid "Akkadian"
+msgstr ""
+
+#: config.language_map:189
+msgid "Albanian"
+msgstr ""
+
+#: config.language_map:190
+msgid "Aleut"
+msgstr ""
+
+#: config.language_map:191
+msgid "Algonquian (Other)"
+msgstr ""
+
+#: config.language_map:192
+msgid "Amharic"
+msgstr ""
+
+#: config.language_map:193
+msgid "English, Old (ca. 450-1100)"
+msgstr ""
+
+#: config.language_map:194
+msgid "Apache languages"
+msgstr ""
+
+#: config.language_map:195
+msgid "Arabic"
+msgstr ""
+
+#: config.language_map:196
+msgid "Aramaic"
+msgstr ""
+
+#: config.language_map:197
+msgid "Aragonese Spanish"
+msgstr ""
+
+#: config.language_map:198
+msgid "Armenian"
+msgstr ""
+
+#: config.language_map:199
+msgid "Mapuche"
+msgstr ""
+
+#: config.language_map:200
+msgid "Arapaho"
+msgstr ""
+
+#: config.language_map:201
+msgid "Artificial (Other)"
+msgstr ""
+
+#: config.language_map:202
+msgid "Arawak"
+msgstr ""
+
+#: config.language_map:203
+msgid "Assamese"
+msgstr ""
+
+#: config.language_map:204
+msgid "Bable"
+msgstr ""
+
+#: config.language_map:205
+msgid "Athapascan (Other)"
+msgstr ""
+
+#: config.language_map:206
+msgid "Australian languages"
+msgstr ""
+
+#: config.language_map:207
+msgid "Avaric"
+msgstr ""
+
+#: config.language_map:208
+msgid "Avestan"
+msgstr ""
+
+#: config.language_map:209
+msgid "Awadhi"
+msgstr ""
+
+#: config.language_map:210
+msgid "Aymara"
+msgstr ""
+
+#: config.language_map:211
+msgid "Azerbaijani"
+msgstr ""
+
+#: config.language_map:212
+msgid "Banda"
+msgstr ""
+
+#: config.language_map:213
+msgid "Bamileke languages"
+msgstr ""
+
+#: config.language_map:214
+msgid "Bashkir"
+msgstr ""
+
+#: config.language_map:215
+msgid "Baluchi"
+msgstr ""
+
+#: config.language_map:216
+msgid "Bambara"
+msgstr ""
+
+#: config.language_map:217
+msgid "Balinese"
+msgstr ""
+
+#: config.language_map:218
+msgid "Basque"
+msgstr ""
+
+#: config.language_map:219
+msgid "Basa"
+msgstr ""
+
+#: config.language_map:220
+msgid "Baltic (Other)"
+msgstr ""
+
+#: config.language_map:221
+msgid "Beja"
+msgstr ""
+
+#: config.language_map:222
+msgid "Belarusian"
+msgstr ""
+
+#: config.language_map:223
+msgid "Bemba"
+msgstr ""
+
+#: config.language_map:224
+msgid "Bengali"
+msgstr ""
+
+#: config.language_map:225
+msgid "Berber (Other)"
+msgstr ""
+
+#: config.language_map:226
+msgid "Bhojpuri"
+msgstr ""
+
+#: config.language_map:227
+msgid "Bihari"
+msgstr ""
+
+#: config.language_map:228
+msgid "Bikol"
+msgstr ""
+
+#: config.language_map:229
+msgid "Edo"
+msgstr ""
+
+#: config.language_map:230
+msgid "Bislama"
+msgstr ""
+
+#: config.language_map:231
+msgid "Siksika"
+msgstr ""
+
+#: config.language_map:232
+msgid "Bantu (Other)"
+msgstr ""
+
+#: config.language_map:233
+msgid "Bosnian"
+msgstr ""
+
+#: config.language_map:234
+msgid "Braj"
+msgstr ""
+
+#: config.language_map:235
+msgid "Breton"
+msgstr ""
+
+#: config.language_map:236
+msgid "Batak"
+msgstr ""
+
+#: config.language_map:237
+msgid "Buriat"
+msgstr ""
+
+#: config.language_map:238
+msgid "Bugis"
+msgstr ""
+
+#: config.language_map:239
+msgid "Bulgarian"
+msgstr ""
+
+#: config.language_map:240
+msgid "Burmese"
+msgstr ""
+
+#: config.language_map:241
+msgid "Caddo"
+msgstr ""
+
+#: config.language_map:242
+msgid "Central American Indian (Other)"
+msgstr ""
+
+#: config.language_map:243
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:244
+msgid "Carib"
+msgstr ""
+
+#: config.language_map:245
+msgid "Catalan"
+msgstr ""
+
+#: config.language_map:246
+msgid "Caucasian (Other)"
+msgstr ""
+
+#: config.language_map:247
+msgid "Cebuano"
+msgstr ""
+
+#: config.language_map:248
+msgid "Celtic (Other)"
+msgstr ""
+
+#: config.language_map:249
+msgid "Chamorro"
+msgstr ""
+
+#: config.language_map:250
+msgid "Chibcha"
+msgstr ""
+
+#: config.language_map:251
+msgid "Chechen"
+msgstr ""
+
+#: config.language_map:252
+msgid "Chagatai"
+msgstr ""
+
+#: config.language_map:253
+msgid "Chinese"
+msgstr ""
+
+#: config.language_map:254
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:255
+msgid "Mari"
+msgstr ""
+
+#: config.language_map:256
+msgid "Chinook jargon"
+msgstr ""
+
+#: config.language_map:257
+msgid "Choctaw"
+msgstr ""
+
+#: config.language_map:258
+msgid "Chipewyan"
+msgstr ""
+
+#: config.language_map:259
+msgid "Cherokee"
+msgstr ""
+
+#: config.language_map:260
+msgid "Church Slavic"
+msgstr ""
+
+#: config.language_map:261
+msgid "Chuvash"
+msgstr ""
+
+#: config.language_map:262
+msgid "Cheyenne"
+msgstr ""
+
+#: config.language_map:263
+msgid "Chamic languages"
+msgstr ""
+
+#: config.language_map:264
+msgid "Coptic"
+msgstr ""
+
+#: config.language_map:265
+msgid "Cornish"
+msgstr ""
+
+#: config.language_map:266
+msgid "Corsican"
+msgstr ""
+
+#: config.language_map:267
+msgid "Creoles and Pidgins, English-based (Other)"
+msgstr ""
+
+#: config.language_map:268
+msgid "Creoles and Pidgins, French-based (Other)"
+msgstr ""
+
+#: config.language_map:269
+msgid "Creoles and Pidgins, Portuguese-based (Other)"
+msgstr ""
+
+#: config.language_map:270
+msgid "Cree"
+msgstr ""
+
+#: config.language_map:271
+msgid "Crimean Tatar"
+msgstr ""
+
+#: config.language_map:272
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
+
+#: config.language_map:273
+msgid "Cushitic (Other)"
+msgstr ""
+
+#: config.language_map:274
+msgid "Czech"
+msgstr ""
+
+#: config.language_map:275
+msgid "Dakota"
+msgstr ""
+
+#: config.language_map:276
+msgid "Danish"
+msgstr ""
+
+#: config.language_map:277
+msgid "Dargwa"
+msgstr ""
+
+#: config.language_map:278
+msgid "Dayak"
+msgstr ""
+
+#: config.language_map:279
+msgid "Delaware"
+msgstr ""
+
+#: config.language_map:280
+msgid "Slave"
+msgstr ""
+
+#: config.language_map:281
+msgid "Dogrib"
+msgstr ""
+
+#: config.language_map:282
+msgid "Dinka"
+msgstr ""
+
+#: config.language_map:283
+msgid "Divehi"
+msgstr ""
+
+#: config.language_map:284
+msgid "Dogri"
+msgstr ""
+
+#: config.language_map:285
+msgid "Dravidian (Other)"
+msgstr ""
+
+#: config.language_map:286
+msgid "Duala"
+msgstr ""
+
+#: config.language_map:287
+msgid "Dutch, Middle (ca. 1050-1350)"
+msgstr ""
+
+#: config.language_map:288
+msgid "Dutch"
+msgstr ""
+
+#: config.language_map:289
+msgid "Dyula"
+msgstr ""
+
+#: config.language_map:290
+msgid "Dzongkha"
+msgstr ""
+
+#: config.language_map:291
+msgid "Efik"
+msgstr ""
+
+#: config.language_map:292
+msgid "Egyptian"
+msgstr ""
+
+#: config.language_map:293
+msgid "Ekajuk"
+msgstr ""
+
+#: config.language_map:294
+msgid "Elamite"
+msgstr ""
+
+#: config.language_map:295
+msgid "English"
+msgstr ""
+
+#: config.language_map:296
+msgid "English, Middle (1100-1500)"
+msgstr ""
+
+#: config.language_map:297
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:298
+msgid "Eskimo languages"
+msgstr ""
+
+#: config.language_map:299
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:300
+msgid "Estonian"
+msgstr ""
+
+#: config.language_map:301
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:302
+msgid "Ewe"
+msgstr ""
+
+#: config.language_map:303
+msgid "Ewondo"
+msgstr ""
+
+#: config.language_map:304
+msgid "Fang"
+msgstr ""
+
+#: config.language_map:305
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:306
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:307
+msgid "Fanti"
+msgstr ""
+
+#: config.language_map:308
+msgid "Fijian"
+msgstr ""
+
+#: config.language_map:309
+msgid "Finnish"
+msgstr ""
+
+#: config.language_map:310
+msgid "Finno-Ugrian (Other)"
+msgstr ""
+
+#: config.language_map:311
+msgid "Fon"
+msgstr ""
+
+#: config.language_map:312
+msgid "French"
+msgstr ""
+
+#: config.language_map:313
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:314
+msgid "French, Middle (ca. 1400-1600)"
+msgstr ""
+
+#: config.language_map:315
+msgid "French, Old (ca. 842-1400)"
+msgstr ""
+
+#: config.language_map:316
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:317
+msgid "Fula"
+msgstr ""
+
+#: config.language_map:318
+msgid "Friulian"
+msgstr ""
+
+#: config.language_map:319
+msgid "Gã"
+msgstr ""
+
+#: config.language_map:320
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:321
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:322
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:323
+msgid "Gayo"
+msgstr ""
+
+#: config.language_map:324
+msgid "Gbaya"
+msgstr ""
+
+#: config.language_map:325
+msgid "Germanic (Other)"
+msgstr ""
+
+#: config.language_map:326
+msgid "Georgian"
+msgstr ""
+
+#: config.language_map:327
+msgid "German"
+msgstr ""
+
+#: config.language_map:328
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:329
+msgid "Gilbertese"
+msgstr ""
+
+#: config.language_map:330
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:331
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:332
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:333
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:334
+msgid "German, Middle High (ca. 1050-1500)"
+msgstr ""
+
+#: config.language_map:335
+msgid "German, Old High (ca. 750-1050)"
+msgstr ""
+
+#: config.language_map:336
+msgid "Gondi"
+msgstr ""
+
+#: config.language_map:337
+msgid "Gorontalo"
+msgstr ""
+
+#: config.language_map:338
+msgid "Gothic"
+msgstr ""
+
+#: config.language_map:339
+msgid "Grebo"
+msgstr ""
+
+#: config.language_map:340
+msgid "Greek, Ancient (to 1453)"
+msgstr ""
+
+#: config.language_map:341
+msgid "Greek, Modern (1453- )"
+msgstr ""
+
+#: config.language_map:342
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:343
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:344
+msgid "Gujarati"
+msgstr ""
+
+#: config.language_map:345
+msgid "Gwich'in"
+msgstr ""
+
+#: config.language_map:346
+msgid "Haida"
+msgstr ""
+
+#: config.language_map:347
+msgid "Haitian French Creole"
+msgstr ""
+
+#: config.language_map:348
+msgid "Hausa"
+msgstr ""
+
+#: config.language_map:349
+msgid "Hawaiian"
+msgstr ""
+
+#: config.language_map:350
+msgid "Hebrew"
+msgstr ""
+
+#: config.language_map:351
+msgid "Herero"
+msgstr ""
+
+#: config.language_map:352
+msgid "Hiligaynon"
+msgstr ""
+
+#: config.language_map:353
+msgid "Himachali"
+msgstr ""
+
+#: config.language_map:354
+msgid "Hindi"
+msgstr ""
+
+#: config.language_map:355
+msgid "Hittite"
+msgstr ""
+
+#: config.language_map:356
+msgid "Hmong"
+msgstr ""
+
+#: config.language_map:357
+msgid "Hiri Motu"
+msgstr ""
+
+#: config.language_map:358
+msgid "Hungarian"
+msgstr ""
+
+#: config.language_map:359
+msgid "Hupa"
+msgstr ""
+
+#: config.language_map:360
+msgid "Iban"
+msgstr ""
+
+#: config.language_map:361
+msgid "Igbo"
+msgstr ""
+
+#: config.language_map:362
+msgid "Icelandic"
+msgstr ""
+
+#: config.language_map:363
+msgid "Ido"
+msgstr ""
+
+#: config.language_map:364
+msgid "Sichuan Yi"
+msgstr ""
+
+#: config.language_map:365
+msgid "Ijo"
+msgstr ""
+
+#: config.language_map:366
+msgid "Inuktitut"
+msgstr ""
+
+#: config.language_map:367
+msgid "Interlingue"
+msgstr ""
+
+#: config.language_map:368
+msgid "Iloko"
+msgstr ""
+
+#: config.language_map:369
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:370
+msgid "Indic (Other)"
+msgstr ""
+
+#: config.language_map:371
+msgid "Indonesian"
+msgstr ""
+
+#: config.language_map:372
+msgid "Indo-European (Other)"
+msgstr ""
+
+#: config.language_map:373
+msgid "Ingush"
+msgstr ""
+
+#: config.language_map:374
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:375
+msgid "Inupiaq"
+msgstr ""
+
+#: config.language_map:376
+msgid "Iranian (Other)"
+msgstr ""
+
+#: config.language_map:377
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:378
+msgid "Iroquoian (Other)"
+msgstr ""
+
+#: config.language_map:379
+msgid "Italian"
+msgstr ""
+
+#: config.language_map:380
+msgid "Javanese"
+msgstr ""
+
+#: config.language_map:381
+msgid "Japanese"
+msgstr ""
+
+#: config.language_map:382
+msgid "Judeo-Persian"
+msgstr ""
+
+#: config.language_map:383
+msgid "Judeo-Arabic"
+msgstr ""
+
+#: config.language_map:384
+msgid "Kara-Kalpak"
+msgstr ""
+
+#: config.language_map:385
+msgid "Kabyle"
+msgstr ""
+
+#: config.language_map:386
+msgid "Kachin"
+msgstr ""
+
+#: config.language_map:387
+msgid "Kalâtdlisut"
+msgstr ""
+
+#: config.language_map:388
+msgid "Kamba"
+msgstr ""
+
+#: config.language_map:389
+msgid "Kannada"
+msgstr ""
+
+#: config.language_map:390
+msgid "Karen"
+msgstr ""
+
+#: config.language_map:391
+msgid "Kashmiri"
+msgstr ""
+
+#: config.language_map:392
+msgid "Kanuri"
+msgstr ""
+
+#: config.language_map:393
+msgid "Kawi"
+msgstr ""
+
+#: config.language_map:394
+msgid "Kazakh"
+msgstr ""
+
+#: config.language_map:395
+msgid "Kabardian"
+msgstr ""
+
+#: config.language_map:396
+msgid "Khasi"
+msgstr ""
+
+#: config.language_map:397
+msgid "Khoisan (Other)"
+msgstr ""
+
+#: config.language_map:398
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:399
+msgid "Khotanese"
+msgstr ""
+
+#: config.language_map:400
+msgid "Kikuyu"
+msgstr ""
+
+#: config.language_map:401
+msgid "Kinyarwanda"
+msgstr ""
+
+#: config.language_map:402
+msgid "Kyrgyz"
+msgstr ""
+
+#: config.language_map:403
+msgid "Kimbundu"
+msgstr ""
+
+#: config.language_map:404
+msgid "Konkani"
+msgstr ""
+
+#: config.language_map:405
+msgid "Komi"
+msgstr ""
+
+#: config.language_map:406
+msgid "Kongo"
+msgstr ""
+
+#: config.language_map:407
+msgid "Korean"
+msgstr ""
+
+#: config.language_map:408
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:409
+msgid "Kpelle"
+msgstr ""
+
+#: config.language_map:410
+msgid "Kru"
+msgstr ""
+
+#: config.language_map:411
+msgid "Kurukh"
+msgstr ""
+
+#: config.language_map:412
+msgid "Kuanyama"
+msgstr ""
+
+#: config.language_map:413
+msgid "Kumyk"
+msgstr ""
+
+#: config.language_map:414
+msgid "Kurdish"
+msgstr ""
+
+#: config.language_map:415
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:416
+msgid "Kutenai"
+msgstr ""
+
+#: config.language_map:417
+msgid "Ladino"
+msgstr ""
+
+#: config.language_map:418
+msgid "Lahnda"
+msgstr ""
+
+#: config.language_map:419
+msgid "Lamba"
+msgstr ""
+
+#: config.language_map:420
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:421
+msgid "Lao"
+msgstr ""
+
+#: config.language_map:422
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:423
+msgid "Latin"
+msgstr ""
+
+#: config.language_map:424
+msgid "Latvian"
+msgstr ""
+
+#: config.language_map:425
+msgid "Lezgian"
+msgstr ""
+
+#: config.language_map:426
+msgid "Limburgish"
+msgstr ""
+
+#: config.language_map:427
+msgid "Lingala"
+msgstr ""
+
+#: config.language_map:428
+msgid "Lithuanian"
+msgstr ""
+
+#: config.language_map:429
+msgid "Mongo-Nkundu"
+msgstr ""
+
+#: config.language_map:430
+msgid "Lozi"
+msgstr ""
+
+#: config.language_map:431
+msgid "Letzeburgesch"
+msgstr ""
+
+#: config.language_map:432
+msgid "Luba-Lulua"
+msgstr ""
+
+#: config.language_map:433
+msgid "Luba-Katanga"
+msgstr ""
+
+#: config.language_map:434
+msgid "Ganda"
+msgstr ""
+
+#: config.language_map:435
+msgid "Luiseño"
+msgstr ""
+
+#: config.language_map:436
+msgid "Lunda"
+msgstr ""
+
+#: config.language_map:437
+msgid "Luo (Kenya and Tanzania)"
+msgstr ""
+
+#: config.language_map:438
+msgid "Lushai"
+msgstr ""
+
+#: config.language_map:439
+msgid "Macedonian"
+msgstr ""
+
+#: config.language_map:440
+msgid "Madurese"
+msgstr ""
+
+#: config.language_map:441
+msgid "Magahi"
+msgstr ""
+
+#: config.language_map:442
+msgid "Marshallese"
+msgstr ""
+
+#: config.language_map:443
+msgid "Maithili"
+msgstr ""
+
+#: config.language_map:444
+msgid "Makasar"
+msgstr ""
+
+#: config.language_map:445
+msgid "Malayalam"
+msgstr ""
+
+#: config.language_map:446
+msgid "Mandingo"
+msgstr ""
+
+#: config.language_map:447
+msgid "Maori"
+msgstr ""
+
+#: config.language_map:448
+msgid "Austronesian (Other)"
+msgstr ""
+
+#: config.language_map:449
+msgid "Marathi"
+msgstr ""
+
+#: config.language_map:450
+msgid "Masai"
+msgstr ""
+
+#: config.language_map:451
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:452
+msgid "Malay"
+msgstr ""
+
+#: config.language_map:453
+msgid "Mandar"
+msgstr ""
+
+#: config.language_map:454
+msgid "Mende"
+msgstr ""
+
+#: config.language_map:455
+msgid "Irish, Middle (ca. 1100-1550)"
+msgstr ""
+
+#: config.language_map:456
+msgid "Micmac"
+msgstr ""
+
+#: config.language_map:457
+msgid "Minangkabau"
+msgstr ""
+
+#: config.language_map:458
+msgid "Miscellaneous languages"
+msgstr ""
+
+#: config.language_map:459
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+#: config.language_map:460
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:461
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:462
+msgid "Maltese"
+msgstr ""
+
+#: config.language_map:463
+msgid "Manchu"
+msgstr ""
+
+#: config.language_map:464
+msgid "Manipuri"
+msgstr ""
+
+#: config.language_map:465
+msgid "Manobo languages"
+msgstr ""
+
+#: config.language_map:466
+msgid "Mohawk"
+msgstr ""
+
+#: config.language_map:467
+msgid "Moldavian"
+msgstr ""
+
+#: config.language_map:468
+msgid "Mongolian"
+msgstr ""
+
+#: config.language_map:469
+msgid "Mooré"
+msgstr ""
+
+#: config.language_map:470
+msgid "Multiple languages"
+msgstr ""
+
+#: config.language_map:471
+msgid "Munda (Other)"
+msgstr ""
+
+#: config.language_map:472
+msgid "Creek"
+msgstr ""
+
+#: config.language_map:473
+msgid "Marwari"
+msgstr ""
+
+#: config.language_map:474
+msgid "Mayan languages"
+msgstr ""
+
+#: config.language_map:475
+msgid "Nahuatl"
+msgstr ""
+
+#: config.language_map:476
+msgid "North American Indian (Other)"
+msgstr ""
+
+#: config.language_map:477
+msgid "Neapolitan Italian"
+msgstr ""
+
+#: config.language_map:478
+msgid "Nauru"
+msgstr ""
+
+#: config.language_map:479
+msgid "Navajo"
+msgstr ""
+
+#: config.language_map:480
+msgid "Ndebele (South Africa)"
+msgstr ""
+
+#: config.language_map:481
+msgid "Ndebele (Zimbabwe) "
+msgstr ""
+
+#: config.language_map:482
+msgid "Ndonga"
+msgstr ""
+
+#: config.language_map:483
+msgid "Low German"
+msgstr ""
+
+#: config.language_map:484
+msgid "Nepali"
+msgstr ""
+
+#: config.language_map:485
+msgid "Newari"
+msgstr ""
+
+#: config.language_map:486
+msgid "Nias"
+msgstr ""
+
+#: config.language_map:487
+msgid "Niger-Kordofanian (Other)"
+msgstr ""
+
+#: config.language_map:488
+msgid "Niuean"
+msgstr ""
+
+#: config.language_map:489
+msgid "Norwegian (Nynorsk)"
+msgstr ""
+
+#: config.language_map:490
+msgid "Norwegian (Bokmål)"
+msgstr ""
+
+#: config.language_map:491
+msgid "Nogai"
+msgstr ""
+
+#: config.language_map:492
+msgid "Old Norse"
+msgstr ""
+
+#: config.language_map:493
+msgid "Norwegian"
+msgstr ""
+
+#: config.language_map:494
+msgid "Northern Sotho"
+msgstr ""
+
+#: config.language_map:495
+msgid "Nubian languages"
+msgstr ""
+
+#: config.language_map:496
+msgid "Nyanja"
+msgstr ""
+
+#: config.language_map:497
+msgid "Nyamwezi"
+msgstr ""
+
+#: config.language_map:498
+msgid "Nyankole"
+msgstr ""
+
+#: config.language_map:499
+msgid "Nyoro"
+msgstr ""
+
+#: config.language_map:500
+msgid "Nzima"
+msgstr ""
+
+#: config.language_map:501
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:502
+msgid "Ojibwa"
+msgstr ""
+
+#: config.language_map:503
+msgid "Oriya"
+msgstr ""
+
+#: config.language_map:504
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:505
+msgid "Osage"
+msgstr ""
+
+#: config.language_map:506
+msgid "Ossetic"
+msgstr ""
+
+#: config.language_map:507
+msgid "Turkish, Ottoman"
+msgstr ""
+
+#: config.language_map:508
+msgid "Otomian languages"
+msgstr ""
+
+#: config.language_map:509
+msgid "Papuan (Other)"
+msgstr ""
+
+#: config.language_map:510
+msgid "Pangasinan"
+msgstr ""
+
+#: config.language_map:511
+msgid "Pahlavi"
+msgstr ""
+
+#: config.language_map:512
+msgid "Pampanga"
+msgstr ""
+
+#: config.language_map:513
+msgid "Panjabi"
+msgstr ""
+
+#: config.language_map:514
+msgid "Papiamento"
+msgstr ""
+
+#: config.language_map:515
+msgid "Palauan"
+msgstr ""
+
+#: config.language_map:516
+msgid "Old Persian (ca. 600-400 B.C.)"
+msgstr ""
+
+#: config.language_map:517
+msgid "Persian"
+msgstr ""
+
+#: config.language_map:518
+msgid "Philippine (Other)"
+msgstr ""
+
+#: config.language_map:519
+msgid "Phoenician"
+msgstr ""
+
+#: config.language_map:520
+msgid "Pali"
+msgstr ""
+
+#: config.language_map:521
+msgid "Polish"
+msgstr ""
+
+#: config.language_map:522
+msgid "Ponape"
+msgstr ""
+
+#: config.language_map:523
+msgid "Portuguese"
+msgstr ""
+
+#: config.language_map:524
+msgid "Prakrit languages"
+msgstr ""
+
+#: config.language_map:525
+msgid "Provençal (to 1500)"
+msgstr ""
+
+#: config.language_map:526
+msgid "Pushto"
+msgstr ""
+
+#: config.language_map:527
+msgid "Quechua"
+msgstr ""
+
+#: config.language_map:528
+msgid "Rajasthani"
+msgstr ""
+
+#: config.language_map:529
+msgid "Rapanui"
+msgstr ""
+
+#: config.language_map:530
+msgid "Rarotongan"
+msgstr ""
+
+#: config.language_map:531
+msgid "Romance (Other)"
+msgstr ""
+
+#: config.language_map:532
+msgid "Raeto-Romance"
+msgstr ""
+
+#: config.language_map:533
+msgid "Romani"
+msgstr ""
+
+#: config.language_map:534
+msgid "Romanian"
+msgstr ""
+
+#: config.language_map:535
+msgid "Rundi"
+msgstr ""
+
+#: config.language_map:536
+msgid "Russian"
+msgstr ""
+
+#: config.language_map:537
+msgid "Sandawe"
+msgstr ""
+
+#: config.language_map:538
+msgid "Sango (Ubangi Creole)"
+msgstr ""
+
+#: config.language_map:539
+msgid "Yakut"
+msgstr ""
+
+#: config.language_map:540
+msgid "South American Indian (Other)"
+msgstr ""
+
+#: config.language_map:541
+msgid "Salishan languages"
+msgstr ""
+
+#: config.language_map:542
+msgid "Samaritan Aramaic"
+msgstr ""
+
+#: config.language_map:543
+msgid "Sanskrit"
+msgstr ""
+
+#: config.language_map:544
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:545
+msgid "Sasak"
+msgstr ""
+
+#: config.language_map:546
+msgid "Santali"
+msgstr ""
+
+#: config.language_map:547
+msgid "Serbian"
+msgstr ""
+
+#: config.language_map:548
+msgid "Scots"
+msgstr ""
+
+#: config.language_map:549
+msgid "Croatian"
+msgstr ""
+
+#: config.language_map:550
+msgid "Selkup"
+msgstr ""
+
+#: config.language_map:551
+msgid "Semitic (Other)"
+msgstr ""
+
+#: config.language_map:552
+msgid "Irish, Old (to 1100)"
+msgstr ""
+
+#: config.language_map:553
+msgid "Sign languages"
+msgstr ""
+
+#: config.language_map:554
+msgid "Shan"
+msgstr ""
+
+#: config.language_map:555
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:556
+msgid "Sidamo"
+msgstr ""
+
+#: config.language_map:557
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:558
+msgid "Siouan (Other)"
+msgstr ""
+
+#: config.language_map:559
+msgid "Sino-Tibetan (Other)"
+msgstr ""
+
+#: config.language_map:560
+msgid "Slavic (Other)"
+msgstr ""
+
+#: config.language_map:561
+msgid "Slovak"
+msgstr ""
+
+#: config.language_map:562
+msgid "Slovenian"
+msgstr ""
+
+#: config.language_map:563
+msgid "Southern Sami"
+msgstr ""
+
+#: config.language_map:564
+msgid "Northern Sami"
+msgstr ""
+
+#: config.language_map:565
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:566
+msgid "Lule Sami"
+msgstr ""
+
+#: config.language_map:567
+msgid "Inari Sami"
+msgstr ""
+
+#: config.language_map:568
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:569
+msgid "Skolt Sami"
+msgstr ""
+
+#: config.language_map:570
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:571
+msgid "Sindhi"
+msgstr ""
+
+#: config.language_map:572
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:573
+msgid "Soninke"
+msgstr ""
+
+#: config.language_map:574
+msgid "Sogdian"
+msgstr ""
+
+#: config.language_map:575
+msgid "Somali"
+msgstr ""
+
+#: config.language_map:576
+msgid "Songhai"
+msgstr ""
+
+#: config.language_map:577
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:578
+msgid "Spanish"
+msgstr ""
+
+#: config.language_map:579
+msgid "Sardinian"
+msgstr ""
+
+#: config.language_map:580
+msgid "Serer"
+msgstr ""
+
+#: config.language_map:581
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#: config.language_map:582
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:583
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:584
+msgid "Sukuma"
+msgstr ""
+
+#: config.language_map:585
+msgid "Sundanese"
+msgstr ""
+
+#: config.language_map:586
+msgid "Susu"
+msgstr ""
+
+#: config.language_map:587
+msgid "Sumerian"
+msgstr ""
+
+#: config.language_map:588
+msgid "Swahili"
+msgstr ""
+
+#: config.language_map:589
+msgid "Swedish"
+msgstr ""
+
+#: config.language_map:590
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:591
+msgid "Syriac"
+msgstr ""
+
+#: config.language_map:592
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:593
+msgid "Tahitian"
+msgstr ""
+
+#: config.language_map:594
+msgid "Tai (Other)"
+msgstr ""
+
+#: config.language_map:595
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:596
+msgid "Tamil"
+msgstr ""
+
+#: config.language_map:597
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:598
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:599
+msgid "Telugu"
+msgstr ""
+
+#: config.language_map:600
+msgid "Temne"
+msgstr ""
+
+#: config.language_map:601
+msgid "Terena"
+msgstr ""
+
+#: config.language_map:602
+msgid "Tetum"
+msgstr ""
+
+#: config.language_map:603
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:604
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:605
+msgid "Thai"
+msgstr ""
+
+#: config.language_map:606
+msgid "Tibetan"
+msgstr ""
+
+#: config.language_map:607
+msgid "Tigré"
+msgstr ""
+
+#: config.language_map:608
+msgid "Tigrinya"
+msgstr ""
+
+#: config.language_map:609
+msgid "Tiv"
+msgstr ""
+
+#: config.language_map:610
+msgid "Tokelauan"
+msgstr ""
+
+#: config.language_map:611
+msgid "Tlingit"
+msgstr ""
+
+#: config.language_map:612
+msgid "Tamashek"
+msgstr ""
+
+#: config.language_map:613
+msgid "Tonga (Nyasa)"
+msgstr ""
+
+#: config.language_map:614
+msgid "Tongan"
+msgstr ""
+
+#: config.language_map:615
+msgid "Tok Pisin"
+msgstr ""
+
+#: config.language_map:616
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:617
+msgid "Tsimshian"
+msgstr ""
+
+#: config.language_map:618
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:619
+msgid "Tsonga"
+msgstr ""
+
+#: config.language_map:620
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:621
+msgid "Turkmen"
+msgstr ""
+
+#: config.language_map:622
+msgid "Tumbuka"
+msgstr ""
+
+#: config.language_map:623
+msgid "Tupi languages"
+msgstr ""
+
+#: config.language_map:624
+msgid "Turkish"
+msgstr ""
+
+#: config.language_map:625
+msgid "Altaic (Other)"
+msgstr ""
+
+#: config.language_map:626
+msgid "Tuvaluan"
+msgstr ""
+
+#: config.language_map:627
+msgid "Twi"
+msgstr ""
+
+#: config.language_map:628
+msgid "Tuvinian"
+msgstr ""
+
+#: config.language_map:629
+msgid "Udmurt"
+msgstr ""
+
+#: config.language_map:630
+msgid "Ugaritic"
+msgstr ""
+
+#: config.language_map:631
+msgid "Uighur"
+msgstr ""
+
+#: config.language_map:632
+msgid "Ukrainian"
+msgstr ""
+
+#: config.language_map:633
+msgid "Umbundu"
+msgstr ""
+
+#: config.language_map:634
+msgid "Undetermined"
+msgstr ""
+
+#: config.language_map:635
+msgid "Urdu"
+msgstr ""
+
+#: config.language_map:636
+msgid "Uzbek"
+msgstr ""
+
+#: config.language_map:637
+msgid "Vai"
+msgstr ""
+
+#: config.language_map:638
+msgid "Venda"
+msgstr ""
+
+#: config.language_map:639
+msgid "Vietnamese"
+msgstr ""
+
+#: config.language_map:640
+msgid "Volapük"
+msgstr ""
+
+#: config.language_map:641
+msgid "Votic"
+msgstr ""
+
+#: config.language_map:642
+msgid "Wakashan languages"
+msgstr ""
+
+#: config.language_map:643
+msgid "Walamo"
+msgstr ""
+
+#: config.language_map:644
+msgid "Waray"
+msgstr ""
+
+#: config.language_map:645
+msgid "Washo"
+msgstr ""
+
+#: config.language_map:646
+msgid "Welsh"
+msgstr ""
+
+#: config.language_map:647
+msgid "Sorbian languages"
+msgstr ""
+
+#: config.language_map:648
+msgid "Walloon"
+msgstr ""
+
+#: config.language_map:649
+msgid "Wolof"
+msgstr ""
+
+#: config.language_map:650
+msgid "Kalmyk"
+msgstr ""
+
+#: config.language_map:651
+msgid "Xhosa"
+msgstr ""
+
+#: config.language_map:652
+msgid "Yao (Africa)"
+msgstr ""
+
+#: config.language_map:653
+msgid "Yapese"
+msgstr ""
+
+#: config.language_map:654
+msgid "Yiddish"
+msgstr ""
+
+#: config.language_map:655
+msgid "Yoruba"
+msgstr ""
+
+#: config.language_map:656
+msgid "Yupik languages"
+msgstr ""
+
+#: config.language_map:657
+msgid "Zapotec"
+msgstr ""
+
+#: config.language_map:658
+msgid "Zenaga"
+msgstr ""
+
+#: config.language_map:659
+msgid "Zhuang"
+msgstr ""
+
+#: config.language_map:660
+msgid "Zande"
+msgstr ""
+
+#: config.language_map:661
+msgid "Zulu"
+msgstr ""
+
+#: config.language_map:662
+msgid "Zuni"
+msgstr ""
+
+#: config.item_form_map:664
+msgid "Microfilm"
+msgstr ""
+
+#: config.item_form_map:665
+msgid "Microfiche"
+msgstr ""
+
+#: config.item_form_map:666
+msgid "Microopaque"
+msgstr ""
+
+#: config.item_form_map:667
+msgid "Large print"
+msgstr ""
+
+#: config.item_form_map:668
+msgid "Braille"
+msgstr ""
+
+#: config.item_form_map:669
+msgid "Regular print reproduction"
+msgstr ""
+
+#: config.item_form_map:670
+msgid "Electronic"
+msgstr ""
+
+#: config.item_type_map:672
+msgid "Language material"
+msgstr ""
+
+#: config.item_type_map:673
+msgid "Manuscript language material"
+msgstr ""
+
+#: config.item_type_map:674
+msgid "Projected medium"
+msgstr ""
+
+#: config.item_type_map:675
+msgid "Two-dimensional nonprojectable graphic"
+msgstr ""
+
+#: config.item_type_map:676
+msgid "Three-dimensional artifact or naturally occurring object"
+msgstr ""
+
+#: config.item_type_map:677
+msgid "Kit"
+msgstr ""
+
+#: config.item_type_map:678
+msgid "Mixed materials"
+msgstr ""
+
+#: config.item_type_map:679
+msgid "Cartographic material"
+msgstr ""
+
+#: config.item_type_map:680
+msgid "Manuscript cartographic material"
+msgstr ""
+
+#: config.item_type_map:681
+msgid "Notated music"
+msgstr ""
+
+#: config.item_type_map:682
+msgid "Manuscript notated music"
+msgstr ""
+
+#: config.item_type_map:683
+msgid "Nonmusical sound recording"
+msgstr ""
+
+#: config.item_type_map:684
+msgid "Musical sound recording"
+msgstr ""
+
+#: config.item_type_map:685
+msgid "Computer file"
+msgstr ""
+
+#: config.bib_level_map:687
+msgid "Monographic component part"
+msgstr ""
+
+#: config.bib_level_map:688
+msgid "Serial component part"
+msgstr ""
+
+#: config.bib_level_map:689
+msgid "Collection"
+msgstr ""
+
+#: config.bib_level_map:690
+msgid "Subunit"
+msgstr ""
+
+#: config.bib_level_map:691
+msgid "Integrating resource"
+msgstr ""
+
+#: config.bib_level_map:692
+msgid "Monograph/Item"
+msgstr ""
+
+#: config.bib_level_map:693
+msgid "Serial"
+msgstr ""
+
+#: config.i18n_locale:698
+msgid "American English"
+msgstr ""
+
+#: config.i18n_locale:700
+msgid "Canadian English"
+msgstr ""
+
+#: config.i18n_locale:702
+msgid "Canadian Fench"
+msgstr ""
+
+#: config.i18n_locale:704
+msgid "American Spanish"
+msgstr ""
+
+#: config.i18n_locale:706
+msgid "Mexican Spanish"
+msgstr ""
+
+#: actor.org_unit_type:713
+msgid "Consortium"
+msgstr ""
+
+#: actor.org_unit_type:715
+msgid "System"
+msgstr ""
+
+#: actor.org_unit_type:717
+msgid "Branch"
+msgstr ""
+
+#: actor.org_unit_type:719
+msgid "Sub-lib"
+msgstr ""
+
+#: actor.org_unit_type:721
+msgid "Bookmobile"
+msgstr ""
+
+#: actor.org_unit:724
+msgid "Example Consortium"
+msgstr ""
+
+#: actor.org_unit:726
+msgid "Example System 1"
+msgstr ""
+
+#: actor.org_unit:728
+msgid "Example System 2"
+msgstr ""
+
+#: actor.org_unit:730
+msgid "Example Branch 1"
+msgstr ""
+
+#: actor.org_unit:732
+msgid "Example Branch 2"
+msgstr ""
+
+#: actor.org_unit:734
+msgid "Example Branch 3"
+msgstr ""
+
+#: actor.org_unit:736
+msgid "Example Branch 4"
+msgstr ""
+
+#: actor.org_unit:738
+msgid "Example Sub-lib 1"
+msgstr ""
+
+#: actor.org_unit:740
+msgid "Example Bookmobile 1"
+msgstr ""
+
+#: actor.org_address:742
+msgid "123 Main St."
+msgstr ""
+
+#: permission.perm_list:760
+msgid "User is allowed to place a hold on a specific copy"
+msgstr ""
+
+#: permission.perm_list:766
+msgid "Allows a user to view another user's holds"
+msgstr ""
+
+#: permission.perm_list:770
+msgid "Allows a user to update another user's hold"
+msgstr ""
+
+#: permission.perm_list:780
+msgid "User is allowed to create new MARC records"
+msgstr ""
+
+#: permission.perm_list:820
+msgid "User may create new billable transactions"
+msgstr ""
+
+#: permission.perm_list:822
+msgid "Allows a user to create a new bill on a transaction"
+msgstr ""
+
+#: permission.perm_list:824
+msgid "Allows a user to view another user's containers (buckets)"
+msgstr ""
+
+#: permission.perm_list:826
+msgid "Allows a user to create a new container for another user"
+msgstr ""
+
+#: permission.perm_list:828
+msgid "User is allowed to create a new copy object"
+msgstr ""
+
+#: permission.perm_list:830
+msgid "Allows a user to change org unit settings"
+msgstr ""
+
+#: permission.perm_list:832
+msgid "Allows a user to see what another use has checked out"
+msgstr ""
+
+#: permission.perm_list:834
+msgid "User may view another user's transactions"
+msgstr ""
+
+#: permission.perm_list:836
+msgid "Allows a user to delete another user container"
+msgstr ""
+
+#: permission.perm_list:838
+msgid "Create a container item for another user"
+msgstr ""
+
+#: permission.perm_list:840
+msgid "User can add other users to permission groups"
+msgstr ""
+
+#: permission.perm_list:842
+msgid "User can remove other users from permission groups"
+msgstr ""
+
+#: permission.perm_list:844
+msgid "Allow user to view others' permission groups"
+msgstr ""
+
+#: permission.perm_list:846
+msgid "Allows a user to determine of another user can checkout an item"
+msgstr ""
+
+#: permission.perm_list:848
+msgid "Allows a user to edit copies in batch"
+msgstr ""
+
+#: permission.perm_list:850
+msgid "User may create a new patron statistical category"
+msgstr ""
+
+#: permission.perm_list:852
+msgid "User may create a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:854
+msgid "User may create a new patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:856
+msgid "User may create a new copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:858
+msgid "User may update a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:860
+msgid "User may update a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:862
+msgid "User may update a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:864
+msgid "User may update a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:866
+msgid "User may link a copy to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:868
+msgid "User may link another user to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:870
+msgid "User may delete a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:872
+msgid "User may delete a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:874
+msgid "User may delete a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:876
+msgid "User may delete a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:878
+msgid "User may delete a patron stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:880
+msgid "User may delete a copy stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:882
+msgid "Allows a user to create a new non-cataloged item type"
+msgstr ""
+
+#: permission.perm_list:884
+msgid "Allows a user to update a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:886
+msgid "Allows a user to create a new in-house-use "
+msgstr ""
+
+#: permission.perm_list:888
+msgid "Allows a user to check out a copy"
+msgstr ""
+
+#: permission.perm_list:890
+msgid "Allows a user to create a new copy location"
+msgstr ""
+
+#: permission.perm_list:892
+msgid "Allows a user to update a copy location"
+msgstr ""
+
+#: permission.perm_list:894
+msgid "Allows a user to delete a copy location"
+msgstr ""
+
+#: permission.perm_list:896
+msgid "Allows a user to create a transit_copy object for transiting a copy"
+msgstr ""
+
+#: permission.perm_list:898
+msgid "Allows a user to close out a transit on a copy"
+msgstr ""
+
+#: permission.perm_list:900
+msgid "Allows a user to see if another user has permission to place a hold on a given copy"
+msgstr ""
+
+#: permission.perm_list:902
+msgid "Allows a user to view which users have checked out a given copy"
+msgstr ""
+
+#: permission.perm_list:904
+msgid "Allows a user to perform z3950 queries against remote servers"
+msgstr ""
+
+#: permission.perm_list:906
+msgid "Allows a user to register a new workstation"
+msgstr ""
+
+#: permission.perm_list:908
+msgid "Allows a user to view all notes attached to a copy"
+msgstr ""
+
+#: permission.perm_list:910
+msgid "Allows a user to view all notes attached to a volume"
+msgstr ""
+
+#: permission.perm_list:912
+msgid "Allows a user to view all notes attached to a title"
+msgstr ""
+
+#: permission.perm_list:914
+msgid "Allows a user to create a new volume note"
+msgstr ""
+
+#: permission.perm_list:916
+msgid "Allows a user to create a new copy note"
+msgstr ""
+
+#: permission.perm_list:918
+msgid "Allows a user to create a new title note"
+msgstr ""
+
+#: permission.perm_list:920
+msgid "Allows a user to delete someone elses copy notes"
+msgstr ""
+
+#: permission.perm_list:922
+msgid "Allows a user to delete someone elses volume note"
+msgstr ""
+
+#: permission.perm_list:924
+msgid "Allows a user to delete someone elses title note"
+msgstr ""
+
+#: permission.perm_list:926
+msgid "Allows a user to update another users container"
+msgstr ""
+
+#: permission.perm_list:928
+msgid "Allows a user to create a container for themselves"
+msgstr ""
+
+#: permission.perm_list:930
+msgid "Allows a user to view notifications attached to a hold"
+msgstr ""
+
+#: permission.perm_list:932
+msgid "Allows a user to create new hold notifications"
+msgstr ""
+
+#: permission.perm_list:934
+msgid "Allows a user to update an org unit setting"
+msgstr ""
+
+#: permission.perm_list:936
+msgid "Allows a user to upload an offline script"
+msgstr ""
+
+#: permission.perm_list:938
+msgid "Allows a user to view uploaded offline script information"
+msgstr ""
+
+#: permission.perm_list:940
+msgid "Allows a user to execute an offline script batch"
+msgstr ""
+
+#: permission.perm_list:942
+msgid "Allows a user to change set the due date on an item to any date"
+msgstr ""
+
+#: permission.perm_list:944
+msgid "Allows a user to bypass the circ permit call for checkout"
+msgstr ""
+
+#: permission.perm_list:946
+msgid "Allows a user to override the copy_is_reference event"
+msgstr ""
+
+#: permission.perm_list:948
+msgid "Allows a user to void a bill"
+msgstr ""
+
+#: permission.perm_list:950
+msgid "Allows a person to check in/out an item that is claims returned"
+msgstr ""
+
+#: permission.perm_list:952
+msgid "Allows a user to check out an item in a non-circulatable status"
+msgstr ""
+
+#: permission.perm_list:954
+msgid "Allows a user to check in/out an item that has an alert message"
+msgstr ""
+
+#: permission.perm_list:956
+msgid "Allows a user to remove the lost status from a copy"
+msgstr ""
+
+#: permission.perm_list:958
+msgid "Allows a user to change the missing status on a copy"
+msgstr ""
+
+#: permission.perm_list:960
+msgid "Allows a user to abort a copy transit if the user is at the transit destination or source"
+msgstr ""
+
+#: permission.perm_list:962
+msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest"
+msgstr ""
+
+#: permission.perm_list:964
+msgid "Allowsa user to query the zip code data method"
+msgstr ""
+
+#: permission.perm_list:968
+msgid "Allows a user to create duplicate holds (e.g. two holds on the same title)"
+msgstr ""
+
+#: permission.perm_list:970
+msgid "Allows a user to update a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:972
+msgid "Allows a user to remove a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:974
+msgid "Allows a user to create a new closed date for a location"
+msgstr ""
+
+#: permission.perm_list:976
+msgid "Allows a user to delete a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:978
+msgid "Allows a user to put someone into collections"
+msgstr ""
+
+#: permission.perm_list:980
+msgid "Allows a user to remove someone from collections"
+msgstr ""
+
+#: permission.perm_list:982
+msgid "Allows a user to bar a patron"
+msgstr ""
+
+#: permission.perm_list:984
+msgid "Allows a user to un-bar a patron"
+msgstr ""
+
+#: permission.perm_list:986
+msgid "Allows a user to remove an existing workstation so a new one can replace it"
+msgstr ""
+
+#: permission.perm_list:988
+msgid "Allows a user to add/remove users to/from the \"User\" group"
+msgstr ""
+
+#: permission.perm_list:990
+msgid "Allows a user to add/remove users to/from the \"Patron\" group"
+msgstr ""
+
+#: permission.perm_list:992
+msgid "Allows a user to add/remove users to/from the \"Staff\" group"
+msgstr ""
+
+#: permission.perm_list:994
+msgid "Allows a user to add/remove users to/from the \"Circulator\" group"
+msgstr ""
+
+#: permission.perm_list:996
+msgid "Allows a user to add/remove users to/from the \"Cataloger\" group"
+msgstr ""
+
+#: permission.perm_list:998
+msgid "Allows a user to add/remove users to/from the \"GlobalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:1000
+msgid "Allows a user to add/remove users to/from the \"LocalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:1002
+msgid "Allows a user to add/remove users to/from the \"LibraryManager\" group"
+msgstr ""
+
+#: permission.perm_list:1004
+msgid "Allows a user to add/remove users to/from the \"Cat1\" group"
+msgstr ""
+
+#: permission.perm_list:1006
+msgid "Allows a user to add/remove users to/from the \"Supercat\" group"
+msgstr ""
+
+#: permission.perm_list:1008
+msgid "Allows a user to add/remove users to/from the \"SIP-Client\" group"
+msgstr ""
+
+#: permission.perm_list:1010
+msgid "Allows a user to add/remove users to/from the \"Vendor\" group"
+msgstr ""
+
+#: permission.perm_list:1012
+msgid "Allows a user to place a hold on an age-protected item"
+msgstr ""
+
+#: permission.perm_list:1014
+msgid "Allows a user to renew an item past the maximun renewal count"
+msgstr ""
+
+#: permission.perm_list:1016
+msgid "Allow staff to override checkout count failure"
+msgstr ""
+
+#: permission.perm_list:1018
+msgid "Allow staff to override overdue count failure"
+msgstr ""
+
+#: permission.perm_list:1020
+msgid "Allow staff to override fine amount checkout failure"
+msgstr ""
+
+#: permission.perm_list:1026
+msgid "Allow staff to force checkout of Missing/Lost type items"
+msgstr ""
+
+#: permission.perm_list:1028
+msgid "allows users to place multiple holds on a single title"
+msgstr ""
+
+#: permission.perm_list:1030
+msgid "Allows a users to run reports"
+msgstr ""
+
+#: permission.perm_list:1032
+msgid "Allows a user to share report his own folders"
+msgstr ""
+
+#: permission.perm_list:1034
+msgid "Allow user to view report output"
+msgstr ""
+
+#: permission.perm_list:1036
+msgid "Allows a user to checkout an item that is marked as non-circ"
+msgstr ""
+
+#: permission.perm_list:1038
+msgid "Allows a user to delete an item out of another user's container"
+msgstr ""
+
+#: permission.perm_list:1040
+msgid "Allow a staff member to define where another staff member has their permissions"
+msgstr ""
+
+#: permission.perm_list:1042
+msgid "Allow a staff member to directly remove a bibliographic record"
+msgstr ""
+
+#: actor.usr:1254
+msgid "Administrator"
+msgstr ""
+
+#: asset.copy_location:1267
+msgid "Stacks"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:28-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: field.aihu.org_unit.label:705 field.ancihu.org_unit.label:722
+msgid "Using Library"
+msgstr ""
+
+#: field.rxbt.voided.label:3519
+msgid "Voided Billing Amount"
+msgstr ""
+
+#: field.bre.source.label:1067
+msgid "Record Source"
+msgstr ""
+
+#: field.bre.marc.label:1065
+msgid "MARC21Slim"
+msgstr ""
+
+#: field.rocit.title.label:3779
+msgid "Title"
+msgstr ""
+
+#: field.mbts.xact_start.label:644
+msgid "Transaction Start Time"
+msgstr ""
+
+#: field.mrd.vr_format.label:1515
+msgid "Video Recording Format"
+msgstr ""
+
+#: field.vqbr.bib_source.label:173
+msgid "Bib Source"
+msgstr ""
+
+#: field.aua.within_city_limits.label:1576
+msgid "Within City Limits?"
+msgstr ""
+
+#: field.rhrr.hold_type.label:3504
+msgid "Hold Request Type"
+msgstr ""
+
+#: field.au.demographic.label:1272
+msgid "Demographic Info"
+msgstr ""
+
+#: class.mwp.label:2562
+msgid "Work Payment"
+msgstr ""
+
+#: field.au.ident_value2.label:1253
+msgid "Secondary Identification"
+msgstr ""
+
+#: class.acirc.label:1754
+msgid "Aged (patronless) Circulation"
+msgstr ""
+
+#: field.mbts.last_payment_note.label:637
+#: field.rccbs.last_payment_note.label:3661
+msgid "Last Payment Note"
+msgstr ""
+
+#: field.au.expire_date.label:1245
+msgid "Privilege Expiration Date"
+msgstr ""
+
+#: field.ac.id.label:2262
+msgid "Card ID"
+msgstr ""
+
+#: field.mp.credit_card_payment.label:3011
+#: field.mbp.credit_card_payment.label:3042
+msgid "Credit Card Payment Detail"
+msgstr ""
+
+#: class.rssr.label:3416
+msgid "Simple Record Extracts"
+msgstr ""
+
+#: field.au.id.label:1249 field.rud.id.label:3477
+msgid "User ID"
+msgstr ""
+
+#: field.asc.entries.label:2244 field.actsc.entries.label:2274
+msgid "Entries"
+msgstr ""
+
+#: field.acp.dummy_title.label:2716
+msgid "Precat Dummy Title"
+msgstr ""
+
+#: field.acpn.create_date.label:1324
+msgid "Note Creation Date/Time"
+msgstr ""
+
+#: field.aua.street2.label:1573
+msgid "Street (2)"
+msgstr ""
+
+#: field.au.barred.label:1235
+msgid "Barred"
+msgstr ""
+
+#: field.mcrp.id.label:2326
+msgid "Pyament ID"
+msgstr ""
+
+#: field.au.claims_returned_count.label:1238
+msgid "Claims-returned Count"
+msgstr ""
+
+#: field.bre.series_field_entries.label:1077
+msgid "Indexed Series Field Entries"
+msgstr ""
+
+#: field.rccbs.demographic_general_division.label:3668
+msgid "User Age Demographic"
+msgstr ""
+
+#: field.rccc.dewey.label:3579
+msgid "Call Number Dewey/Prefix"
+msgstr ""
+
+#: field.crahp.name.label:2771 field.crmf.name.label:2783
+msgid "Rule Name"
+msgstr ""
+
+#: field.clfm.code.label:2548
+msgid "LitF Code"
+msgstr ""
+
+#: field.mrd.type_mat.label:1514
+msgid "TMat"
+msgstr ""
+
+#: field.mb.billing_type.label:3183 field.rmocbbol.billing_type.label:3830
+#: field.rmocbbcol.billing_type.label:3861
+#: field.rmocbbhol.billing_type.label:3895
+msgid "Billing Type"
+msgstr ""
+
+#: class.mckp.label:2671 field.mdp.check_payment.label:3099
+msgid "Check Payment"
+msgstr ""
+
+#: field.rccc.stat_cat_1.label:3586
+msgid "Legacy CAT1 Link"
+msgstr ""
+
+#: field.mfr.tag.label:1363
+msgid "Tag"
+msgstr ""
+
+#: field.aout.org_units.label:2384
+msgid "Org Units"
+msgstr ""
+
+#: field.rccbs.profile_group.label:3674
+msgid "User Profile Group"
+msgstr ""
+
+#: field.vbm.field.label:246 field.vam.field.label:371
+msgid "Matched Attribute"
+msgstr ""
+
+#: field.ahn.method.label:1875
+msgid "Notification Method"
+msgstr ""
+
+#: field.vqbrad.xpath.label:200 field.vqarad.xpath.label:325
+msgid "XPath"
+msgstr ""
+
+#: field.au.groups.label:1269
+msgid "Additional Permission Groups"
+msgstr ""
+
+#: field.ccm.magnetic_media.label:433
+msgid "Magnetic Media"
+msgstr ""
+
+#: field.ahr.request_lib.label:2136
+msgid "Requesting Library"
+msgstr ""
+
+#: field.ahtc.source.label:3152
+msgid "Sending Library"
+msgstr ""
+
+#: field.rccc.call_number.label:3577
+msgid "Call Number Link"
+msgstr ""
+
+#: field.ahr.target.label:2141
+msgid "Target Object ID"
+msgstr ""
+
+#: field.circ.checkin_lib.label:1637 field.combcirc.checkin_lib.label:1692
+#: field.acirc.checkin_lib.label:1759 field.rodcirc.checkin_lib.label:3724
+msgid "Check In Library"
+msgstr ""
+
+#: field.aua.state.label:1571
+msgid "State"
+msgstr ""
+
+#: field.mp.voided.label:3009 field.mbp.voided.label:3040
+#: field.mndp.voided.label:3071 field.mdp.voided.label:3096
+#: field.mb.voided.label:3187
+msgid "Voided?"
+msgstr ""
+
+#: class.citm.label:1925
+msgid "Item Type Map"
+msgstr ""
+
+#: field.rccbs.billing_location_shortname.label:3642
+msgid "Billing Location Short (Policy) Name"
+msgstr ""
+
+#: field.rud.general_division.label:3479
+msgid "General Demographic Division"
+msgstr ""
+
+#: field.asvq.responses.label:616 field.asv.responses.label:2061
+msgid "Responses"
+msgstr ""
+
+#: field.mrd.item_form.label:1508
+msgid "Form"
+msgstr ""
+
+#: field.ssr.deleted.label:2050 field.rocit.deleted.label:3806
+msgid "Deleted"
+msgstr ""
+
+#: field.aou.ou_type.label:2179 class.aout.label:2371
+msgid "Organizational Unit Type"
+msgstr ""
+
+#: field.mcrp.payment_ts.label:2328 field.mwp.payment_ts.label:2572
+#: field.mgp.payment_ts.label:2593 field.mckp.payment_ts.label:2683
+msgid "Payment Timestamp"
+msgstr ""
+
+#: field.mfr.ind1.label:1359
+msgid "Indicator 1"
+msgstr ""
+
+#: field.mfr.ind2.label:1360
+msgid "Indicator 2"
+msgstr ""
+
+#: field.au.checkins.label:1274 field.aou.checkins.label:2190
+msgid "Checkins"
+msgstr ""
+
+#: field.cblvl.code.label:1948
+msgid "Bib Level Code"
+msgstr ""
+
+#: field.bre.call_numbers.label:1054
+msgid "Call Numbers"
+msgstr ""
+
+#: field.mp.payment_ts.label:3006 field.mbp.payment_ts.label:3037
+#: field.mndp.payment_ts.label:3068 field.mdp.payment_ts.label:3091
+msgid "Payment Date/Time"
+msgstr ""
+
+#: field.clm.value.label:847
+msgid "Language"
+msgstr ""
+
+#: None:1300
+msgid "Check-ins Performed as Staff"
+msgstr ""
+
+#: field.au.other_phone.label:1258
+msgid "Other Phone"
+msgstr ""
+
+#: field.bre.simple_record.label:1079
+msgid "Simple Record Extracts "
+msgstr ""
+
+#: class.actsce.label:2499
+msgid "User Stat Cat Entry"
+msgstr ""
+
+#: field.rccc.stat_cat_2_value.label:3593
+msgid "Legacy CAT2 Value"
+msgstr ""
+
+#: class.acn.label:969 field.acp.call_number.label:2704
+msgid "Call Number/Volume"
+msgstr ""
+
+#: field.mrd.control_type.label:1505
+msgid "Ctrl"
+msgstr ""
+
+#: field.au.family_name.label:1246
+msgid "Last Name"
+msgstr ""
+
+#: field.rccc.stat_cat_2.label:3587
+msgid "Legacy CAT2 Link"
+msgstr ""
+
+#: field.au.stat_cat_entries.label:1229
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: field.vbq.owner.label:145 field.vaq.owner.label:271
+msgid "Owner"
+msgstr ""
+
+#: class.ancihu.label:715
+msgid "Non-cataloged In House Use"
+msgstr ""
+
+#: field.ahr.holdable_formats.label:2131
+msgid "Holdable Formats (for M-type hold)"
+msgstr ""
+
+#: field.acp.notes.label:2728
+msgid "Copy Notes"
+msgstr ""
+
+#: field.vbm.eg_record.label:247 field.vam.eg_record.label:372
+msgid "Evergreen Record"
+msgstr ""
+
+#: field.vbm.id.label:244 field.vam.id.label:369
+msgid "Match ID"
+msgstr ""
+
+#: field.mbts.total_owed.label:640
+msgid "Total Owed"
+msgstr ""
+
+#: field.pgt.application_perm.label:2798
+msgid "Required Permission"
+msgstr ""
+
+#: field.au.ident_type2.label:1251
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: field.actscecm.stat_cat.label:2900
+msgid "Statistical Category"
+msgstr ""
+
+#: field.mbts.last_payment_ts.label:638
+msgid "Last Payment Timestamp"
+msgstr ""
+
+#: class.rmobbcol.label:3871
+msgid "Open Circulation Balance by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.ahr.usr.label:2142
+msgid "Hold User"
+msgstr ""
+
+#: class.mdp.label:3083
+msgid "Payments: Desk"
+msgstr ""
+
+#: field.asvr.answer.label:769
+msgid "Answer"
+msgstr ""
+
+#: field.rocit.status.label:3808
+msgid "Status"
+msgstr ""
+
+#: field.aun.pub.label:659 field.acpn.pub.label:1328
+#: field.acpl.opac_visible.label:1894
+msgid "Is OPAC Visible?"
+msgstr ""
+
+#: field.ahr.notifications.label:2146
+msgid "Notifications"
+msgstr ""
+
+#: field.aou.shortname.label:2181
+msgid "Short (Policy) Name"
+msgstr ""
+
+#: field.asvr.answer_date.label:770
+msgid "Answer Date/Time"
+msgstr ""
+
+#: field.rccc.dewey_block_hundreds.label:3591
+msgid "Dewey Block -- Hundreds"
+msgstr ""
+
+#: field.acn.deleted.label:977 field.au.deleted.label:1270
+#: field.acp.deleted.label:2712
+msgid "Is Deleted"
+msgstr ""
+
+#: field.acn.edit_date.label:978 field.acp.edit_date.label:2717
+msgid "Last Edit Date/Time"
+msgstr ""
+
+#: field.mbts.xact_type.label:645 field.rccbs.xact_type.label:3655
+msgid "Transaction Type"
+msgstr ""
+
+#: field.mbt.xact_start.label:2481 field.rccbs.xact_start.label:3653
+msgid "Transaction Start Date/Time"
+msgstr ""
+
+#: class.mbts.label:627
+msgid "Billable Transaction Summary"
+msgstr ""
+
+#: field.mb.billing_ts.label:3182
+msgid "Billing Timestamp"
+msgstr ""
+
+#: field.au.billing_address.label:1236
+msgid "Physical Address"
+msgstr ""
+
+#: field.mrd.item_lang.label:1509
+msgid "Lang"
+msgstr ""
+
+#: field.cblvl.value.label:1949
+msgid "Bib Level"
+msgstr ""
+
+#: field.actsce.stat_cat.label:2506 field.asce.stat_cat.label:3132
+msgid "Stat Cat"
+msgstr ""
+
+#: field.mrd.id.label:1507
+msgid "Descriptor ID"
+msgstr ""
+
+#: field.cit.name.label:605
+msgid "Identification Name"
+msgstr ""
+
+#: field.rccc.dewey_range_tens.label:3588
+msgid "Dewey Range -- Tens"
+msgstr ""
+
+#: field.rocit.dewey_block_hundreds.label:3787
+msgid "Dewy Hundreds"
+msgstr ""
+
+#: class.rocit.label:3774
+msgid "Classic Item List"
+msgstr ""
+
+#: field.mdp.accepting_usr.label:3094
+msgid "Accepting User"
+msgstr ""
+
+#: class.vqbrad.label:192
+msgid "Queued Bib Record Attribute Definition"
+msgstr ""
+
+#: field.rmsr.biblio_record.label:3410 field.rssr.biblio_record.label:3432
+#: field.rsr.biblio_record.label:3465
+msgid "Full Bibliographic record"
+msgstr ""
+
+#: field.vqbr.marc.label:171 field.vqar.marc.label:298
+msgid "MARC"
+msgstr ""
+
+#: class.iatc.label:3685
+msgid "Inter-system Copy Transit"
+msgstr ""
+
+#: class.aihu.label:698
+msgid "In House Use"
+msgstr ""
+
+#: field.circ.circ_type.label:1665 field.combcirc.circ_type.label:1720
+#: field.acirc.circ_type.label:1787 class.rcirct.label:3485
+#: field.rcirct.type.label:3491 field.rccc.circ_type.label:3566
+#: field.rodcirc.circ_type.label:3751
+msgid "Circulation Type"
+msgstr ""
+
+#: field.ahtc.hold.label:3148
+msgid "Hold requiring Transit"
+msgstr ""
+
+#: field.bre.notes.label:1072
+msgid "Non-MARC Record Notes"
+msgstr ""
+
+#: field.aou.ill_address.label:2176
+msgid "ILL Receiving Address"
+msgstr ""
+
+#: field.aout.name.label:2381
+msgid "Type Name"
+msgstr ""
+
+#: field.rmsr.author.label:3405 field.rssr.author.label:3427
+#: field.rsr.author.label:3451
+msgid "Author (normalized)"
+msgstr ""
+
+#: field.ssr.excluded.label:2051
+msgid "Excluded"
+msgstr ""
+
+#: field.circ.stop_fines_time.label:1656
+#: field.combcirc.stop_fines_time.label:1711
+#: field.acirc.stop_fines_time.label:1778
+#: field.rodcirc.stop_fines_time.label:3743
+msgid "Fine Stop Date/Time"
+msgstr ""
+
+#: field.au.settings.label:1227
+msgid "All User Settings"
+msgstr ""
+
+#: field.acn.copies.label:974
+msgid "Copies"
+msgstr ""
+
+#: field.ahr.cancel_time.label:2143
+msgid "Hold Cancel Date/Time"
+msgstr ""
+
+#: field.pgt.perm_interval.label:2797
+msgid "User Expiration Interval"
+msgstr ""
+
+#: field.circ.fine_interval.label:1646 field.combcirc.fine_interval.label:1701
+#: field.acirc.fine_interval.label:1768 field.rodcirc.fine_interval.label:3733
+msgid "Fine Interval"
+msgstr ""
+
+#: class.mrd.label:1496
+msgid "Basic Record Descriptor"
+msgstr ""
+
+#: field.circ.billing_total.label:1666 field.combcirc.billing_total.label:1721
+#: field.acirc.billing_total.label:1788 field.mg.billing_total.label:2448
+#: field.mbt.billing_total.label:2486 field.rodcirc.billing_total.label:3752
+msgid "Billing Totals"
+msgstr ""
+
+#: field.chmt.transit_range.label:537
+msgid "Transit Range"
+msgstr ""
+
+#: class.aua.label:1560
+msgid "User Address"
+msgstr ""
+
+#: class.aou.label:2167
+msgid "Organizational Unit"
+msgstr ""
+
+#: field.ancc.circ_time.label:2835 field.rccc.xact_start.label:3565
+msgid "Circulation Date/Time"
+msgstr ""
+
+#: field.cvrfm.value.label:452
+msgid "Format"
+msgstr ""
+
+#: field.rmsr.issn.label:3409 field.rssr.issn.label:3431
+#: field.rsr.issn.label:3458
+msgid "ISSN"
+msgstr ""
+
+#: class.cifm.label:951
+msgid "Item Form Map"
+msgstr ""
+
+#: field.rmsr.title.label:3404 field.rssr.title.label:3426
+#: field.rsr.title.label:3449
+msgid "Title Proper (normalized)"
+msgstr ""
+
+#: field.ahr.selection_depth.label:2139
+msgid "Item Selection Depth"
+msgstr ""
+
+#: field.circ.circ_lib.label:1640 field.combcirc.circ_lib.label:1695
+#: field.acirc.circ_lib.label:1762 field.acp.circ_lib.label:2706
+#: field.ancc.circ_lib.label:2834 field.rodcirc.circ_lib.label:3727
+#: field.rmocbbcol.circ_lib.label:3859 field.rmobbcol.circ_lib.label:3876
+msgid "Circulating Library"
+msgstr ""
+
+#: field.rxpt.unvoided.label:3532
+msgid "Unvoided Paid Amount"
+msgstr ""
+
+#: field.aou.opac_visible.label:2184 field.asc.opac_visible.label:2247
+#: field.actsc.opac_visible.label:2277 field.acp.opac_visible.label:2724
+#: field.rocit.opac_visible.label:3803
+msgid "OPAC Visible"
+msgstr ""
+
+#: field.asc.id.label:2245 field.actsc.id.label:2275
+msgid "Stat Cat ID"
+msgstr ""
+
+#: field.cam.code.label:937
+msgid "Audience Code"
+msgstr ""
+
+#: field.rsr.genre.label:3461
+msgid "Genres (normalized)"
+msgstr ""
+
+#: field.rmsr.publisher.label:3406 field.rssr.publisher.label:3428
+#: field.rsr.publisher.label:3452
+msgid "Publisher (normalized)"
+msgstr ""
+
+#: field.mbts.usr.label:642
+msgid "Billed User"
+msgstr ""
+
+#: field.ccmrs.max_fine_rule.label:589 field.circ.max_fine_rule.label:1649
+#: field.combcirc.max_fine_rule.label:1704
+#: field.acirc.max_fine_rule.label:1771 class.crmf.label:2776
+#: field.rodcirc.max_fine_rule.label:3736
+msgid "Max Fine Rule"
+msgstr ""
+
+#: field.ssr.total.label:2047
+msgid "Total Results"
+msgstr ""
+
+#: field.rccc.circ_lib_id.label:3564
+msgid "Library Circulation Location Link"
+msgstr ""
+
+#: field.au.alert_message.label:1234 field.acp.alert_message.label:2702
+msgid "Alert Message"
+msgstr ""
+
+#: field.rccbs.last_payment_ts.label:3660
+msgid "Last Payment Date/Time"
+msgstr ""
+
+#: field.mbts.id.label:633 field.mg.id.label:2440 field.mbt.id.label:2478
+#: field.mwp.xact.label:2573 field.mgp.xact.label:2594
+#: field.rxbt.xact.label:3517 field.rxpt.xact.label:3531
+#: field.rccbs.id.label:3640
+msgid "Transaction ID"
+msgstr ""
+
+#: field.mwp.id.label:2570 field.mgp.id.label:2591 field.mckp.id.label:2681
+#: field.mp.id.label:3004 field.mbp.id.label:3035 field.mndp.id.label:3066
+#: field.mdp.id.label:3089
+msgid "Payment ID"
+msgstr ""
+
+#: field.mcrp.amount.label:2324 field.mwp.amount.label:2568
+#: field.mgp.amount.label:2589 field.mckp.amount.label:2677
+#: field.mp.amount.label:3003 field.mbp.amount.label:3034
+#: field.mndp.amount.label:3065 field.mdp.amount.label:3088
+#: field.mb.amount.label:3181
+msgid "Amount"
+msgstr ""
+
+#: field.ahn.notify_time.label:1878
+msgid "Notification Date/Time"
+msgstr ""
+
+#: class.chmt.label:529
+msgid "Hold Matrix Test Set"
+msgstr ""
+
+#: class.chmm.label:465
+msgid "Hold Matrix Matchpoint"
+msgstr ""
+
+#: field.bre.subject_field_entries.label:1074
+msgid "Indexed Subject Field Entries"
+msgstr ""
+
+#: field.ccmrs.duration_rule.label:587
+msgid "Duration Rule"
+msgstr ""
+
+#: class.acpl.label:1885
+msgid "Copy/Shelving Location"
+msgstr ""
+
+#: field.auoi.org_unit.label:399
+msgid "Allowed Org Unit"
+msgstr ""
+
+#: class.clfm.label:2543 field.rccc.lit_form.label:3571
+msgid "Literary Form"
+msgstr ""
+
+#: field.ahr.prev_check_time.label:2135
+msgid "Last Targeting Date/Time"
+msgstr ""
+
+#: field.asvr.response_group_id.label:774
+msgid "Response Group ID"
+msgstr ""
+
+#: field.chmm.active.label:471 field.ccmm.active.label:507
+msgid "Active?"
+msgstr ""
+
+#: field.au.usrname.label:1268
+msgid "OPAC/Staff Client User Name"
+msgstr ""
+
+#: field.ssr.rel.label:2045
+msgid "Relevance"
+msgstr ""
+
+#: class.aus.label:669
+msgid "User Setting"
+msgstr ""
+
+#: field.circ.duration.label:1644 field.combcirc.duration.label:1699
+#: field.acirc.duration.label:1766 field.cnct.circ_duration.label:2361
+#: field.rodcirc.duration.label:3731
+msgid "Circulation Duration"
+msgstr ""
+
+#: field.rccc.language.label:3570
+msgid "Item Language"
+msgstr ""
+
+#: class.mbp.label:3029
+msgid "Payments: Brick-and-mortar"
+msgstr ""
+
+#: class.actscecm.label:2894
+msgid "User Statistical Category Entry"
+msgstr ""
+
+#: class.vqarad.label:317
+msgid "Queued Authority Record Attribute Definition"
+msgstr ""
+
+#: field.ahn.note.label:1876
+msgid "Notification Note"
+msgstr ""
+
+#: field.ccmrs.recurring_fine_rule.label:588
+#: field.circ.recuring_fine_rule.label:1653
+#: field.combcirc.recuring_fine_rule.label:1708
+#: field.acirc.recuring_fine_rule.label:1775
+#: field.rodcirc.recuring_fine_rule.label:3740
+msgid "Recurring Fine Rule"
+msgstr ""
+
+#: field.circ.duration_rule.label:1645 field.combcirc.duration_rule.label:1700
+#: field.acirc.duration_rule.label:1767 field.rodcirc.duration_rule.label:3732
+msgid "Circ Duration Rule"
+msgstr ""
+
+#: field.ccmt.max_overdue.label:556
+msgid "Max Overdue"
+msgstr ""
+
+#: field.ccmt.max_items_out.label:555
+msgid "Max Items Out"
+msgstr ""
+
+#: class.asc.label:2239
+msgid "Asset Statistical Category"
+msgstr ""
+
+#: field.asv.required.label:2069
+msgid "Is Required?"
+msgstr ""
+
+#: field.au.survey_responses.label:1230
+msgid "Survey Responses"
+msgstr ""
+
+#: field.atc.id.label:740 field.ahtc.id.label:3149 field.iatc.id.label:3702
+msgid "Transit ID"
+msgstr ""
+
+#: field.acp.total_circ_count.label:2731
+msgid "Total Circulations"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_name.label:3647
+msgid "User Home Library Name"
+msgstr ""
+
+#: field.au.credit_forward_balance.label:1240
+msgid "User Credit Balance"
+msgstr ""
+
+#: class.vqbra.label:215
+msgid "Queued Bib Record Attribute"
+msgstr ""
+
+#: field.aun.create_date.label:656 field.acp.create_date.label:2710
+msgid "Creation Date/Time"
+msgstr ""
+
+#: field.rocit.due_date.label:3810
+msgid "Due Date"
+msgstr ""
+
+#: field.aout.id.label:2380
+msgid "Type ID"
+msgstr ""
+
+#: field.circ.payments.label:1663 field.combcirc.payments.label:1718
+#: field.acirc.payments.label:1785 field.rodcirc.payments.label:3749
+msgid "Transaction Payments"
+msgstr ""
+
+#: class.bre.label:1049
+msgid "Bibliographic Record"
+msgstr ""
+
+#: field.ahr.eligible_copies.label:2148
+msgid "Eligible Copies"
+msgstr ""
+
+#: field.mp.cash_payment.label:3010 field.mbp.cash_payment.label:3041
+msgid "Cash Payment Detail"
+msgstr ""
+
+#: field.mfr.id.label:1358
+msgid "Field ID"
+msgstr ""
+
+#: field.rocit.ref.label:3804
+msgid "Reference"
+msgstr ""
+
+#: field.ancc.item_type.label:2837
+msgid "Non-cat Item Type"
+msgstr ""
+
+#: field.chmm.user_home_ou.label:472 field.rmocbbhol.home_ou.label:3893
+#: field.rmobbhol.home_ou.label:3910
+msgid "User Home Library"
+msgstr ""
+
+#: class.vam.label:364
+msgid "Queued Authority Record Match"
+msgstr ""
+
+#: field.rccbs.total_owed.label:3658 field.rmocbbol.billed.label:3831
+#: field.rmocbbcol.billed.label:3862 field.rmocbbhol.billed.label:3896
+msgid "Total Billed"
+msgstr ""
+
+#: class.aun.label:651
+msgid "User Note"
+msgstr ""
+
+#: class.actsc.label:2269
+msgid "User Statistical Category"
+msgstr ""
+
+#: field.ccmm.grp.label:509 class.pgt.label:2787
+msgid "Permission Group"
+msgstr ""
+
+#: field.mp.forgive_payment.label:3015 field.mbp.forgive_payment.label:3046
+#: field.mndp.forgive_payment.label:3073
+msgid "Forgive Payment Detail"
+msgstr ""
+
+#: field.rhrr.target.label:3503
+msgid "Hold Target"
+msgstr ""
+
+#: field.au.suffix.label:1265
+msgid "Suffix/Title"
+msgstr ""
+
+#: field.asvr.effective_date.label:771
+msgid "Effective Answer Date/Time"
+msgstr ""
+
+#: field.acp.deposit.label:2713
+msgid "Is Deposit Required"
+msgstr ""
+
+#: field.ahr.capture_time.label:2123
+msgid "Capture Date/Time"
+msgstr ""
+
+#: field.mbts.balance_owed.label:632 field.rccbs.balance_owed.label:3673
+msgid "Balance Owed"
+msgstr ""
+
+#: field.chmt.max_holds.label:538
+msgid "Max Holds"
+msgstr ""
+
+#: field.rhrr.bib_record.label:3505
+msgid "Target Bib Record"
+msgstr ""
+
+#: class.ac.label:2255
+msgid "Library Card"
+msgstr ""
+
+#: field.au.second_given_name.label:1263
+msgid "Middle Name"
+msgstr ""
+
+#: field.aihu.staff.label:706 field.ancihu.staff.label:723
+msgid "Recording Staff"
+msgstr ""
+
+#: field.aou.billing_address.label:2173
+msgid "Billing Address"
+msgstr ""
+
+#: field.acp.stat_cat_entries.label:2700
+msgid "Statistical Catagory Entries"
+msgstr ""
+
+#: field.crahp.id.label:2770 field.crmf.id.label:2782
+msgid "Rule ID"
+msgstr ""
+
+#: field.acp.loan_duration.label:2722
+msgid "Loan Duration"
+msgstr ""
+
+#: field.vbq.queue_type.label:148 field.vaq.queue_type.label:274
+#: field.mrd.item_type.label:1510 field.aua.address_type.label:1565
+msgid "Type"
+msgstr ""
+
+#: field.ahr.expire_time.label:2126
+msgid "Hold Expire Date/Time"
+msgstr ""
+
+#: field.bre.full_record_entries.label:1078
+msgid "Flattened MARC Fields "
+msgstr ""
+
+#: field.rmsr.quality.label:3401 field.rssr.quality.label:3423
+#: field.rsr.quality.label:3446
+msgid "Overall Record Quality"
+msgstr ""
+
+#: class.mg.label:2434
+msgid "Grocery Transaction"
+msgstr ""
+
+#: field.rocit.age_protect.label:3802
+msgid "Age Protection"
+msgstr ""
+
+#: field.acn.record.label:983 field.combcirc.copy_bib_record.label:1730
+#: field.acirc.copy_bib_record.label:1797
+msgid "Bib Record"
+msgstr ""
+
+#: field.rccbs.patron_city.label:3670
+msgid "User City"
+msgstr ""
+
+#: field.ahn.hold.label:1873 field.aufh.hold.label:2870
+msgid "Hold"
+msgstr ""
+
+#: field.cifm.value.label:957
+msgid "Item Form"
+msgstr ""
+
+#: class.cit.label:599
+msgid "Identification Type"
+msgstr ""
+
+#: field.ahr.requestor.label:2138
+msgid "Requesting User"
+msgstr ""
+
+#: field.auoi.opt_in_ws.label:396 class.aws.label:410
+msgid "Workstation"
+msgstr ""
+
+#: field.mcrp.xact.label:2329 field.mb.xact.label:3189
+msgid "Transaction"
+msgstr ""
+
+#: field.rocit.owning_lib_name.label:3797
+msgid "Owning Lib Name"
+msgstr ""
+
+#: field.rccc.circ_lib.label:3563
+msgid "Library Circulation Location Short (Policy) Name"
+msgstr ""
+
+#: field.acp.fine_level.label:2719
+msgid "Fine Level"
+msgstr ""
+
+#: field.vqbra.record.label:221 field.vqara.record.label:346
+#: field.ssr.record.label:2046
+msgid "Record"
+msgstr ""
+
+#: field.aun.id.label:658 field.acpn.id.label:1326
+msgid "Note ID"
+msgstr ""
+
+#: field.ahr.bib_rec.label:2147
+msgid "Bib Record link"
+msgstr ""
+
+#: field.rsr.uniform_title.label:3450
+msgid "Uniform Title (normalized)"
+msgstr ""
+
+#: field.mg.xact_finish.label:2443
+msgid "Transaction Finish Timestamp"
+msgstr ""
+
+#: class.ahr.label:2116
+msgid "Hold Request"
+msgstr ""
+
+#: field.aihu.item.label:704 class.acp.label:2695
+msgid "Item"
+msgstr ""
+
+#: field.chmm.marc_form.label:481 field.ccmm.marc_form.label:512
+#: field.rccc.item_form.label:3572
+msgid "MARC Form"
+msgstr ""
+
+#: class.ccmt.label:548
+msgid "Circulation Matrix Test Set"
+msgstr ""
+
+#: field.chmm.usr_grp.label:477
+msgid "User Permission Group"
+msgstr ""
+
+#: field.ancihu.item_type.label:721 field.citm.value.label:1931
+msgid "Item Type"
+msgstr ""
+
+#: field.ssr.visible.label:2049
+msgid "Visible"
+msgstr ""
+
+#: class.rmocbbol.label:3823
+msgid "Open Circulation Billing by Owning Library"
+msgstr ""
+
+#: field.ahr.phone_notify.label:2133
+msgid "Notifications Phone Number"
+msgstr ""
+
+#: field.mg.billable_transaction.label:2447
+msgid "Billable Transaction link"
+msgstr ""
+
+#: field.circ.id.label:1647 field.combcirc.id.label:1702
+#: field.acirc.id.label:1769 field.rodcirc.id.label:3734
+msgid "Circ ID"
+msgstr ""
+
+#: field.bre.deleted.label:1059
+msgid "Is Deleted?"
+msgstr ""
+
+#: class.vaq.label:265
+msgid "Import/Overlay Authority Queue"
+msgstr ""
+
+#: field.mbt.billings.label:2484
+msgid "Billing Line Items"
+msgstr ""
+
+#: field.acp.circulate.label:2708
+msgid "Can Circulate"
+msgstr ""
+
+#: field.rocit.call_number_label.label:3785
+msgid "Callnumber Label"
+msgstr ""
+
+#: field.aou.parent_ou.label:2180
+msgid "Parent Organizational Unit"
+msgstr ""
+
+#: class.erfcc.label:3541
+msgid "Total Circulation Count, Including Legacy"
+msgstr ""
+
+#: field.bre.last_xact_id.label:1064
+msgid "Last Transaction ID"
+msgstr ""
+
+#: field.mp.check_payment.label:3013 field.mbp.check_payment.label:3044
+msgid "Check Payment Detail"
+msgstr ""
+
+#: field.ahr.id.label:2132 field.rhrr.id.label:3502
+msgid "Hold ID"
+msgstr ""
+
+#: field.mbts.last_billing_ts.label:635
+msgid "Last Billing Timestamp"
+msgstr ""
+
+#: field.rocit.dewey_block_tens.label:3786
+msgid "Dewy Tens"
+msgstr ""
+
+#: field.rocit.stat_cat_1_value.label:3793
+msgid "Legacy Stat Cat 1 Value"
+msgstr ""
+
+#: field.pgt.usergroup.label:2799
+msgid "Is User Group"
+msgstr ""
+
+#: field.rccbs.usr.label:3651
+msgid "User Link"
+msgstr ""
+
+#: field.acpl.circulate.label:1890
+msgid "Can Circulate?"
+msgstr ""
+
+#: field.acp.stat_cat_entry_copy_maps.label:2729
+msgid "Stat-Cat entry maps"
+msgstr ""
+
+#: field.aout.children.label:2376
+msgid "Subordinate Types"
+msgstr ""
+
+#: field.bre.fixed_fields.label:1055
+msgid "Fixed Field Entry"
+msgstr ""
+
+#: field.bre.fingerprint.label:1062 field.rmsr.fingerprint.label:3400
+#: field.rssr.fingerprint.label:3422 field.rsr.fingerprint.label:3445
+msgid "Fingerprint"
+msgstr ""
+
+#: field.chmm.ref_flag.label:483 field.ccmm.ref_flag.label:514
+msgid "Reference?"
+msgstr ""
+
+#: field.pgt.children.label:2792
+msgid "Child Groups"
+msgstr ""
+
+#: field.rccc.dewey_block_tens.label:3590
+msgid "Dewey Block -- Tens"
+msgstr ""
+
+#: field.aws.owning_lib.label:417 field.chmm.item_owning_ou.label:475
+#: field.acn.owning_lib.label:982 field.asv.owner.label:2067
+#: field.asc.owner.label:2248 field.actsc.owner.label:2278
+#: field.cnct.owning_lib.label:2365 field.rmocbbol.owning_lib.label:3829
+#: field.rmobbol.owning_lib.label:3844 field.rmocbbcol.owning_lib.label:3860
+#: field.rmobbcol.owning_lib.label:3877 field.rmocbbhol.owning_lib.label:3894
+#: field.rmobbhol.owning_lib.label:3911
+msgid "Owning Library"
+msgstr ""
+
+#: field.rocit.circ_lib_name.label:3798
+msgid "Circ Lib Name"
+msgstr ""
+
+#: field.vqbr.create_time.label:169 field.vqar.create_time.label:296
+msgid "Create Time"
+msgstr ""
+
+#: field.amtr.success.label:129
+msgid "Success"
+msgstr ""
+
+#: field.circ.circ_staff.label:1641 field.combcirc.circ_staff.label:1696
+#: field.acirc.circ_staff.label:1763 field.ancc.staff.label:2839
+#: field.rodcirc.circ_staff.label:3728
+msgid "Circulating Staff"
+msgstr ""
+
+#: class.asce.label:3125
+msgid "Item Stat Cat Entry"
+msgstr ""
+
+#: field.combcirc.usr_birth_year.label:1725
+#: field.acirc.usr_birth_year.label:1792
+msgid "Patron Birth Year"
+msgstr ""
+
+#: field.atc.hold_transit_copy.label:746 class.ahtc.label:3140
+#: field.iatc.hold_transit_copy.label:3708
+msgid "Hold Transit"
+msgstr ""
+
+#: field.asv.opac.label:2066
+msgid "OPAC Surevey?"
+msgstr ""
+
+#: field.vqbra.id.label:220 field.vqara.id.label:345
+msgid "Attribute ID"
+msgstr ""
+
+#: field.aun.creator.label:657
+msgid "Creating Staff"
+msgstr ""
+
+#: class.ccmrs.label:581
+msgid "Circulation Matrix Rule Set"
+msgstr ""
+
+#: field.ccm.sip2_media_type.label:432
+msgid "SIP2 Media Type"
+msgstr ""
+
+#: field.vqbrad.code.label:198 field.vqarad.code.label:323
+#: field.ccm.code.label:429 field.cvrfm.code.label:451
+msgid "Code"
+msgstr ""
+
+#: field.rocit.patron_name.label:3812
+msgid "Patron Name"
+msgstr ""
+
+#: class.cvrfm.label:446 field.chmm.marc_vr_format.label:482
+#: field.ccmm.marc_vr_format.label:513
+msgid "Videorecording Format"
+msgstr ""
+
+#: field.circ.due_date.label:1643 field.combcirc.due_date.label:1698
+#: field.acirc.due_date.label:1765 field.rodcirc.due_date.label:3730
+msgid "Due Date/Time"
+msgstr ""
+
+#: field.asvq.id.label:617
+msgid "Question ID"
+msgstr ""
+
+#: class.mb.label:3176
+msgid "Billing Line Item"
+msgstr ""
+
+#: field.rsr.external_uri.label:3464
+msgid "External URI List (normalized)"
+msgstr ""
+
+#: field.actsce.id.label:2504 field.actscecm.id.label:2899
+#: field.asce.id.label:3130 field.rsce1.id.label:3612
+#: field.rsce2.id.label:3626
+msgid "Entry ID"
+msgstr ""
+
+#: field.acp.age_protect.label:2701
+msgid "Age Hold Protection"
+msgstr ""
+
+#: field.amtr.fail_part.label:130
+msgid "Failure Part"
+msgstr ""
+
+#: field.acp.copy_number.label:2709
+msgid "Copy Number on Volume"
+msgstr ""
+
+#: field.mbts.last_payment_type.label:639
+#: field.rccbs.last_payment_type.label:3662
+msgid "Last Payment Type"
+msgstr ""
+
+#: class.mgp.label:2583
+msgid "Goods Payment"
+msgstr ""
+
+#: field.rmsr.isbn.label:3408 field.rssr.isbn.label:3430
+#: field.rsr.isbn.label:3457
+msgid "ISBN"
+msgstr ""
+
+#: field.circ.checkin_staff.label:1638 field.combcirc.checkin_staff.label:1693
+#: field.acirc.checkin_staff.label:1760 field.rodcirc.checkin_staff.label:3725
+msgid "Check In Staff"
+msgstr ""
+
+#: field.ccmt.script_test.label:558
+msgid "Test Script"
+msgstr ""
+
+#: field.mdp.cash_drawer.label:3095
+msgid "Cash Drawer"
+msgstr ""
+
+#: class.asvr.label:764
+msgid "Survey Response"
+msgstr ""
+
+#: class.crahp.label:2764
+msgid "Age Hold Protection Rule"
+msgstr ""
+
+#: field.au.first_given_name.label:1247
+msgid "First Name"
+msgstr ""
+
+#: field.acpl.owning_lib.label:1895
+msgid "Owning Org Unit"
+msgstr ""
+
+#: field.au.permissions.label:1226
+msgid "All Permissions"
+msgstr ""
+
+#: field.mbts.xact_finish.label:643
+msgid "Transaction Finish Time"
+msgstr ""
+
+#: field.cit.id.label:604
+msgid "Identification ID"
+msgstr ""
+
+#: field.atc.source_send_time.label:744 field.ahtc.source_send_time.label:3153
+#: field.iatc.source_send_time.label:3706
+msgid "Send Date/Time"
+msgstr ""
+
+#: class.circ.label:1632 field.rccc.id.label:3562
+msgid "Circulation"
+msgstr ""
+
+#: field.acp.price.label:2725 field.rocit.price.label:3783
+msgid "Price"
+msgstr ""
+
+#: field.ac.barcode.label:2261 field.acp.barcode.label:2703
+#: field.rocit.barcode.label:3784
+msgid "Barcode"
+msgstr ""
+
+#: field.pgt.id.label:2794
+msgid "Group ID"
+msgstr ""
+
+#: field.mrd.pub_status.label:1512
+msgid "Pub Status"
+msgstr ""
+
+#: field.rocit.create_date.label:3796
+msgid "Create Date"
+msgstr ""
+
+#: field.acp.deposit_amount.label:2714 field.rocit.deposit_amount.label:3805
+msgid "Deposit Amount"
+msgstr ""
+
+#: field.rxbt.total.label:3520
+msgid "Total Billing Amount"
+msgstr ""
+
+#: field.circ.xact_finish.label:1659 field.combcirc.xact_finish.label:1714
+#: field.acirc.xact_finish.label:1781 field.mbt.xact_finish.label:2480
+#: field.rodcirc.xact_finish.label:3746
+msgid "Transaction Finish Date/Time"
+msgstr ""
+
+#: field.acp.ref.label:2726
+msgid "Is Reference"
+msgstr ""
+
+#: field.vbq.name.label:146 field.vaq.name.label:272 field.ccm.name.label:430
+#: field.aus.name.label:675 field.cxt.name.label:893
+#: field.acpl.name.label:1893 field.asv.name.label:2065
+#: field.aou.name.label:2178 field.asc.name.label:2246
+#: field.actsc.name.label:2276 field.cnct.name.label:2364
+msgid "Name"
+msgstr ""
+
+#: field.mckp.cash_drawer.label:2679
+msgid "Workstation link"
+msgstr ""
+
+#: field.chmm.marc_type.label:480 field.ccmm.marc_type.label:511
+#: field.rccc.item_type.label:3573
+msgid "MARC Type"
+msgstr ""
+
+#: field.bre.edit_date.label:1060
+msgid "Last Edit Data/Time"
+msgstr ""
+
+#: field.clm.code.label:846 field.bre.language.label:1071
+msgid "Language Code"
+msgstr ""
+
+#: field.pgt.parent.label:2796
+msgid "Parent Group"
+msgstr ""
+
+#: field.combcirc.usr_post_code.label:1713
+#: field.acirc.usr_post_code.label:1780
+msgid "Patron ZIP"
+msgstr ""
+
+#: field.circ.xact_start.label:1660 field.combcirc.xact_start.label:1715
+#: field.acirc.xact_start.label:1782 field.rodcirc.xact_start.label:3747
+msgid "Check Out Date/Time"
+msgstr ""
+
+#: field.rxbt.unvoided.label:3518
+msgid "Unvoided Billing Amount"
+msgstr ""
+
+#: field.rxpt.total.label:3534
+msgid "Total Paid Amount"
+msgstr ""
+
+#: field.circ.billable_transaction.label:1664
+#: field.combcirc.billable_transaction.label:1719
+#: field.acirc.billable_transaction.label:1786
+#: field.rodcirc.billable_transaction.label:3750
+msgid "Base Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib_shortname.label:3582
+msgid "Patron Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.ac.active.label:2260
+msgid "IsActive?"
+msgstr ""
+
+#: field.cnct.in_house.label:2363
+msgid "In House?"
+msgstr ""
+
+#: field.rsr.geographic_subject.label:3460
+msgid "Geographic Subjects (normalized)"
+msgstr ""
+
+#: field.combcirc.copy_call_number.label:1726
+#: field.acirc.copy_call_number.label:1793
+msgid "Call Number"
+msgstr ""
+
+#: field.au.card.label:1237
+msgid "Current Library Card"
+msgstr ""
+
+#: field.atc.target_copy.label:745 field.ahtc.target_copy.label:3154
+#: field.iatc.target_copy.label:3707
+msgid "Transited Copy"
+msgstr ""
+
+#: field.actsce.value.label:2507 field.rsce1.value.label:3614
+#: field.rsce2.value.label:3628
+msgid "Entry Value"
+msgstr ""
+
+#: field.acpn.creator.label:1325
+msgid "Note Creator"
+msgstr ""
+
+#: field.combcirc.copy_circ_lib.label:1729
+#: field.acirc.copy_circ_lib.label:1796
+msgid "Copy Circulating Library"
+msgstr ""
+
+#: class.vbm.label:239
+msgid "Queued Bib Record Match"
+msgstr ""
+
+#: field.ssr.checked.label:2048
+msgid "Checked"
+msgstr ""
+
+#: field.mfr.record.label:1361 field.mrd.record.label:1513
+msgid "Bib Record Entry"
+msgstr ""
+
+#: field.rccbs.usr_home_ou.label:3648
+msgid "User Home Library Link"
+msgstr ""
+
+#: field.ccmm.usr_age_lower_bound.label:515
+msgid "User Age: Lower Bound"
+msgstr ""
+
+#: field.acp.id.label:2721 field.erfcc.id.label:3546 field.rocit.id.label:3782
+msgid "Copy ID"
+msgstr ""
+
+#: field.au.day_phone.label:1241
+msgid "Daytime Phone"
+msgstr ""
+
+#: field.circ.target_copy.label:1657 field.combcirc.target_copy.label:1712
+#: field.acirc.target_copy.label:1779 field.rodcirc.target_copy.label:3744
+msgid "Circulating Item"
+msgstr ""
+
+#: field.rocit.author.label:3780
+msgid "Author"
+msgstr ""
+
+#: field.ahr.email_notify.label:2125
+msgid "Notify by Email?"
+msgstr ""
+
+#: field.circ.payment_total.label:1667 field.combcirc.payment_total.label:1722
+#: field.acirc.payment_total.label:1789 field.mg.payment_total.label:2449
+#: field.mbt.payment_total.label:2487 field.rodcirc.payment_total.label:3753
+msgid "Payment Totals"
+msgstr ""
+
+#: field.rccc.patron_id.label:3580
+msgid "Patron Link"
+msgstr ""
+
+#: field.ccmcmt.id.label:570
+msgid "Test ID"
+msgstr ""
+
+#: field.mp.goods_payment.label:3016 field.mbp.goods_payment.label:3047
+#: field.mndp.goods_payment.label:3074
+msgid "Goods Payment Detail"
+msgstr ""
+
+#: field.au.notes.label:1271
+msgid "User Notes"
+msgstr ""
+
+#: field.acn.notes.label:984
+msgid "Notes"
+msgstr ""
+
+#: class.rmsr.label:3394
+msgid "Fast Simple Record Extracts"
+msgstr ""
+
+#: field.vqbra.attr_value.label:223 field.vqara.attr_value.label:348
+#: field.aus.value.label:677 field.asce.value.label:3133
+msgid "Value"
+msgstr ""
+
+#: field.bre.tcn_source.label:1068 field.rmsr.tcn_source.label:3402
+#: field.rssr.tcn_source.label:3424 field.rsr.tcn_source.label:3447
+msgid "TCN Source"
+msgstr ""
+
+#: class.rsce1.label:3607
+msgid "CAT1 Entry"
+msgstr ""
+
+#: field.mrd.enc_level.label:1506
+msgid "ELvl"
+msgstr ""
+
+#: field.ahtc.dest.label:3146
+msgid "Destination Library"
+msgstr ""
+
+#: class.aufh.label:2862
+msgid "Unfulfilled Hold Targets"
+msgstr ""
+
+#: field.rocit.creator.label:3801
+msgid "Creator"
+msgstr ""
+
+#: field.rccc.dewey_range_hundreds.label:3589
+msgid "Dewey Range -- Hundreds"
+msgstr ""
+
+#: field.rccc.copy_id.label:3567
+msgid "Copy Link"
+msgstr ""
+
+#: field.ahr.selection_ou.label:2140
+msgid "Selection Locus"
+msgstr ""
+
+#: field.rsr.series_statement.label:3455
+msgid "Series Statement (normalized)"
+msgstr ""
+
+#: class.rccbs.label:3635
+msgid "Classic Open Transaction Summary"
+msgstr ""
+
+#: class.cnct.label:2356
+msgid "Non-cataloged Type"
+msgstr ""
+
+#: field.asvq.question.label:618 field.asvr.question.label:773
+#: field.asva.question.label:2822
+msgid "Question"
+msgstr ""
+
+#: field.ahtc.prev_hop.label:3151
+msgid "Previous Stop"
+msgstr ""
+
+#: field.bre.tcn_value.label:1069 field.rmsr.tcn_value.label:3403
+#: field.rssr.tcn_value.label:3425 field.rsr.tcn_value.label:3448
+msgid "TCN Value"
+msgstr ""
+
+#: class.ahn.label:1868
+msgid "Hold Notification"
+msgstr ""
+
+#: field.rcirct.id.label:3490 field.rmocbbol.id.label:3828
+#: field.rmocbbcol.id.label:3858 field.rmocbbhol.id.label:3892
+msgid "Circulation ID"
+msgstr ""
+
+#: field.circ.opac_renewal.label:1650 field.combcirc.opac_renewal.label:1705
+#: field.acirc.opac_renewal.label:1772 field.rodcirc.opac_renewal.label:3737
+msgid "OPAC Renewal"
+msgstr ""
+
+#: field.rsr.topic_subject.label:3459
+msgid "Topic Subjects (normalized)"
+msgstr ""
+
+#: field.rccbs.barcode.label:3650
+msgid "User Barcode"
+msgstr ""
+
+#: field.au.profile.label:1262
+msgid "Main (Profile) Permission Group"
+msgstr ""
+
+#: field.mfr.subfield.label:1362
+msgid "Subfield"
+msgstr ""
+
+#: field.acn.creator.label:976 field.acp.creator.label:2711
+msgid "Creating User"
+msgstr ""
+
+#: field.acp.holdable.label:2720
+msgid "Is Holdable"
+msgstr ""
+
+#: field.rocit.tcn_value.label:3807
+msgid "TCN"
+msgstr ""
+
+#: field.acn.editor.label:979 field.bre.editor.label:1061
+#: field.acp.editor.label:2718
+msgid "Last Editing User"
+msgstr ""
+
+#: field.circ.max_fine.label:1648 field.combcirc.max_fine.label:1703
+#: field.acirc.max_fine.label:1770 field.crmf.amount.label:2781
+#: field.rodcirc.max_fine.label:3735
+msgid "Max Fine Amount"
+msgstr ""
+
+#: field.ahtc.copy_status.label:3145
+msgid "Copy Status at Transit"
+msgstr ""
+
+#: field.aou.settings.label:2188
+msgid "Settings"
+msgstr ""
+
+#: field.ahr.hold_type.label:2130
+msgid "Hold Type"
+msgstr ""
+
+#: field.vqbr.queue.label:172 field.vqar.queue.label:299
+msgid "Queue"
+msgstr ""
+
+#: field.mp.credit_payment.label:3012 field.mbp.credit_payment.label:3043
+msgid "Credit Payment Detail"
+msgstr ""
+
+#: field.ahr.request_time.label:2137
+msgid "Request Date/Time"
+msgstr ""
+
+#: field.vbm.queued_record.label:245 field.vam.queued_record.label:370
+msgid "Queued Record"
+msgstr ""
+
+#: field.rccbs.xact_finish.label:3654
+msgid "Transaction End Date/Time"
+msgstr ""
+
+#: field.mrd.bib_level.label:1502
+msgid "BLvl"
+msgstr ""
+
+#: field.aou.workstations.label:2191
+msgid "Workstations"
+msgstr ""
+
+#: field.au.hold_requests.label:1225
+msgid "All Hold Requests"
+msgstr ""
+
+#: field.au.master_account.label:1256
+msgid "Is Group Lead Account"
+msgstr ""
+
+#: class.ccmm.label:501
+msgid "Circulation Matrix Matchpoint"
+msgstr ""
+
+#: field.aihu.use_time.label:707 field.ancihu.use_time.label:724
+msgid "Use Date/Time"
+msgstr ""
+
+#: field.mfr.value.label:1364
+msgid "Normalized Value"
+msgstr ""
+
+#: field.ccmt.circulate.label:554
+msgid "Circulate?"
+msgstr ""
+
+#: class.cxt.label:887
+msgid "XML/XSLT Transform Definition"
+msgstr ""
+
+#: field.mcrp.accepting_usr.label:2323 field.mwp.accepting_usr.label:2567
+#: field.mgp.accepting_usr.label:2588 field.mckp.accepting_usr.label:2676
+msgid "Accepting Staff Member"
+msgstr ""
+
+#: field.rccc.demographic_general_division.label:3576
+msgid "Patron Age Demographic"
+msgstr ""
+
+#: class.ccmcmt.label:565
+msgid "Circulation Matrix Circulation Modifier Subtest"
+msgstr ""
+
+#: field.rsr.corporate_subject.label:3463
+msgid "Corporate Name Subjects (normalized)"
+msgstr ""
+
+#: field.acp.dummy_author.label:2715
+msgid "Precat Dummy Author"
+msgstr ""
+
+#: class.rodcirc.label:3719
+msgid "Overdue Circulation"
+msgstr ""
+
+#: field.bre.active.label:1056
+msgid "Is Active?"
+msgstr ""
+
+#: field.ccmm.org_unit.label:508
+msgid "Org Unit"
+msgstr ""
+
+#: field.crahp.prox.label:2772
+msgid "Allowed Proximity"
+msgstr ""
+
+#: field.ahr.fulfillment_time.label:2129
+msgid "Fulfillment Date/Time"
+msgstr ""
+
+#: field.mg.note.label:2441 field.mwp.note.label:2571
+#: field.mgp.note.label:2592 field.mckp.note.label:2682
+#: field.mp.note.label:3005 field.mbp.note.label:3036
+#: field.mndp.note.label:3067 field.mdp.note.label:3090
+#: field.mb.note.label:3185
+msgid "Note"
+msgstr ""
+
+#: class.vqbr.label:163
+msgid "Queued Bib Record"
+msgstr ""
+
+#: field.rocit.stat_cat_1.label:3791
+msgid "Legacy Stat Cat 1"
+msgstr ""
+
+#: field.rocit.stat_cat_2.label:3792
+msgid "Legacy Stat Cat 2"
+msgstr ""
+
+#: field.aua.id.label:1569
+msgid "Address ID"
+msgstr ""
+
+#: field.rccbs.patron_county.label:3669
+msgid "User County"
+msgstr ""
+
+#: field.rocit.circ_lib.label:3800
+msgid "Circ Lib"
+msgstr ""
+
+#: field.chmt.include_frozen_holds.label:539
+msgid "Max includes Frozen"
+msgstr ""
+
+#: field.acn.id.label:980
+msgid "Call Number/Volume ID"
+msgstr ""
+
+#: field.aout.opac_label.label:2382
+msgid "OPAC Label"
+msgstr ""
+
+#: class.vqar.label:290
+msgid "Queued Authority Record"
+msgstr ""
+
+#: class.au.label:1217
+msgid "ILS User"
+msgstr ""
+
+#: class.asvq.label:610
+msgid "User Survey Question"
+msgstr ""
+
+#: field.circ.phone_renewal.label:1651 field.combcirc.phone_renewal.label:1706
+#: field.acirc.phone_renewal.label:1773 field.rodcirc.phone_renewal.label:3738
+msgid "Phone Renewal"
+msgstr ""
+
+#: field.combcirc.usr_home_ou.label:1723 field.acirc.usr_home_ou.label:1790
+msgid "Patron Home Library"
+msgstr ""
+
+#: field.chmm.requestor_grp.label:478
+msgid "Requestor Permission Group"
+msgstr ""
+
+#: field.bre.quality.label:1066
+msgid "Overall Quality"
+msgstr ""
+
+#: field.au.active.label:1233 field.sra.active.label:1967
+msgid "Active"
+msgstr ""
+
+#: field.mdp.cash_payment.label:3097
+msgid "Cash Payment"
+msgstr ""
+
+#: class.cblvl.label:1943
+msgid "Bib Level Map"
+msgstr ""
+
+#: field.cxt.xslt.label:896
+msgid "XSLT"
+msgstr ""
+
+#: field.au.addresses.label:1222
+msgid "All Addresses"
+msgstr ""
+
+#: class.sra.label:1961
+msgid "Relevance Adjustment"
+msgstr ""
+
+#: field.ccmm.usr_age_upper_bound.label:516
+msgid "User Age: Upper Bound"
+msgstr ""
+
+#: field.ahr.fulfillment_lib.label:2127
+msgid "Fulfilling Library"
+msgstr ""
+
+#: field.aua.post_code.label:1570
+msgid "Postal Code"
+msgstr ""
+
+#: field.rocit.shelving_location.label:3790
+msgid "Shelving Location Name"
+msgstr ""
+
+#: field.mb.voider.label:3188
+msgid "Voiding Staff Member"
+msgstr ""
+
+#: field.mcrp.note.label:2327
+msgid "Payment Note"
+msgstr ""
+
+#: field.amtr.matchpoint.label:128 field.chmm.id.label:470
+#: field.ccmm.id.label:506 field.chmt.matchpoint.label:534
+#: field.ccmt.matchpoint.label:553 field.ccmcmt.matchpoint.label:571
+#: field.ccmrs.matchpoint.label:586
+msgid "Matchpoint ID"
+msgstr ""
+
+#: field.mbts.total_paid.label:641 field.rccbs.total_paid.label:3657
+msgid "Total Paid"
+msgstr ""
+
+#: field.vqbra.field.label:222 field.vqara.field.label:347
+msgid "Field"
+msgstr ""
+
+#: field.ahtc.transit_copy.label:3155
+msgid "Base Transit"
+msgstr ""
+
+#: field.ccmt.max_fines.label:557
+msgid "Max Fines"
+msgstr ""
+
+#: field.aufh.fail_time.label:2869
+msgid "Retargeting Date/Time"
+msgstr ""
+
+#: field.au.performed_circulations.label:1275 None:1302
+msgid "Circulations Performed as Staff"
+msgstr ""
+
+#: field.asvr.id.label:772 field.asva.id.label:2821
+msgid "Answer ID"
+msgstr ""
+
+#: field.mcrp.payment.label:2331 field.mwp.payment.label:2574
+#: field.mgp.payment.label:2595 field.mckp.payment.label:2685
+msgid "Payment link"
+msgstr ""
+
+#: field.rmobbol.billing_types.label:3845
+#: field.rmobbcol.billing_types.label:3878
+#: field.rmobbhol.billing_types.label:3912
+msgid "Billing Types"
+msgstr ""
+
+#: field.aua.city.label:1566
+msgid "City"
+msgstr ""
+
+#: field.acpl.holdable.label:1891
+msgid "Is Holdable?"
+msgstr ""
+
+#: field.bre.create_date.label:1057 field.au.create_date.label:1239
+#: field.circ.create_time.label:1661 field.combcirc.create_time.label:1716
+#: field.acirc.create_time.label:1783
+msgid "Record Creation Date/Time"
+msgstr ""
+
+#: field.acp.holds.label:2732
+msgid "Holds"
+msgstr ""
+
+#: field.chmm.request_ou.label:473
+msgid "Request Library"
+msgstr ""
+
+#: field.rccc.patron_city.label:3584
+msgid "Patron City"
+msgstr ""
+
+#: field.aou.children.label:2172
+msgid "Subordinate Organizational Units"
+msgstr ""
+
+#: field.asva.responses.label:2819
+msgid "Responses using this Answer"
+msgstr ""
+
+#: field.ahr.thaw_date.label:2150
+msgid "Thaw Date (if frozen)"
+msgstr ""
+
+#: field.asvr.usr.label:776
+msgid "Responding User"
+msgstr ""
+
+#: class.rccc.label:3557
+msgid "Classic Circulation View"
+msgstr ""
+
+#: field.ahr.frozen.label:2149
+msgid "Currently Frozen"
+msgstr ""
+
+#: field.aihu.id.label:703 field.ancihu.id.label:720
+msgid "Use ID"
+msgstr ""
+
+#: field.vbq.complete.label:147 field.vaq.complete.label:273
+msgid "Complete"
+msgstr ""
+
+#: field.atc.dest_recv_time.label:739 field.ahtc.dest_recv_time.label:3147
+#: field.iatc.dest_recv_time.label:3701
+msgid "Receive Date/Time"
+msgstr ""
+
+#: field.asv.poll.label:2068
+msgid "Poll Style?"
+msgstr ""
+
+#: field.rmsr.pubdate.label:3407 field.rssr.pubdate.label:3429
+#: field.rsr.pubdate.label:3453
+msgid "Publication Year (normalized)"
+msgstr ""
+
+#: field.cnct.id.label:2362
+msgid "Non-cat Type ID"
+msgstr ""
+
+#: field.asva.answer.label:2820
+msgid "Answer Text"
+msgstr ""
+
+#: field.aou.holds_address.label:2174
+msgid "Holds Receiving Address"
+msgstr ""
+
+#: field.acpn.owning_copy.label:1327
+msgid "Copy"
+msgstr ""
+
+#: field.aout.can_have_vols.label:2378
+msgid "Can Have Volumes?"
+msgstr ""
+
+#: field.vqbr.id.label:168 field.vqar.id.label:295 field.bre.id.label:1063
+#: field.aufh.id.label:2871 field.rmsr.id.label:3399 field.rssr.id.label:3421
+#: field.rsr.id.label:3443
+msgid "Record ID"
+msgstr ""
+
+#: class.cam.label:932
+msgid "Audience Map"
+msgstr ""
+
+#: field.rocit.stop_fines.label:3809
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: field.au.email.label:1243 field.aou.email.label:2182
+msgid "Email Address"
+msgstr ""
+
+#: field.clfm.description.label:2549
+msgid "LitF Description"
+msgstr ""
+
+#: field.au.passwd.label:1259
+msgid "Password (obfuscated)"
+msgstr ""
+
+#: field.mrd.audience.label:1501
+msgid "Audn"
+msgstr ""
+
+#: field.cam.value.label:939
+msgid "Audience"
+msgstr ""
+
+#: field.aout.parent.label:2383
+msgid "Parent Type"
+msgstr ""
+
+#: class.rud.label:3472
+msgid "User Demographics"
+msgstr ""
+
+#: field.atc.prev_hop.label:742 field.iatc.prev_hop.label:3704
+msgid "Previous Hop (unused)"
+msgstr ""
+
+#: field.vqbrad.id.label:197 field.vqarad.id.label:322 field.sra.id.label:1966
+#: field.ssr.id.label:2044
+msgid "ID"
+msgstr ""
+
+#: field.aou.users.label:2185
+msgid "Users"
+msgstr ""
+
+#: field.circ.usr.label:1658 field.ancc.patron.label:2838
+#: field.rodcirc.usr.label:3745
+msgid "Patron"
+msgstr ""
+
+#: class.mcrp.label:2318
+msgid "House Credit Payment"
+msgstr ""
+
+#: field.atc.source.label:743 field.iatc.source.label:3705
+msgid "Source"
+msgstr ""
+
+#: field.chmt.age_hold_protect_rule.label:540
+msgid "Copy Age Hold Protection Rule"
+msgstr ""
+
+#: field.cxt.prefix.label:895
+msgid "Namespace Prefix"
+msgstr ""
+
+#: field.au.cards.label:1223
+msgid "All Library Cards"
+msgstr ""
+
+#: field.rxpt.voided.label:3533
+msgid "Voided (Returned) Paid Amount"
+msgstr ""
+
+#: class.rmocbbhol.label:3887
+msgid "Open Circulation Billing by User Home Library and Owning Library"
+msgstr ""
+
+#: field.mbts.last_billing_note.label:634
+#: field.rccbs.last_billing_note.label:3665
+msgid "Last Billing Note"
+msgstr ""
+
+#: field.rccbs.billing_location.label:3644
+msgid "Billing Location Link"
+msgstr ""
+
+#: field.mrd.cat_form.label:1503
+msgid "Cat Form"
+msgstr ""
+
+#: class.combcirc.label:1687
+msgid "Combined Aged and Active Circulations"
+msgstr ""
+
+#: field.atc.dest.label:738 field.iatc.dest.label:3700
+msgid "Destination"
+msgstr ""
+
+#: field.au.evening_phone.label:1244
+msgid "Evening Phone"
+msgstr ""
+
+#: field.au.ident_type.label:1250
+msgid "Primary Identification Type"
+msgstr ""
+
+#: class.rmobbol.label:3839
+msgid "Open Circulation Balance by Owning Library"
+msgstr ""
+
+#: field.mg.billing_location.label:2439
+msgid "Billing Location"
+msgstr ""
+
+#: field.vqbr.imported_as.label:174 field.vqar.imported_as.label:300
+msgid "Final Target Record"
+msgstr ""
+
+#: class.mndp.label:3060
+msgid "Payments: Non-drawer Staff"
+msgstr ""
+
+#: field.pgt.name.label:2795
+msgid "Group Name"
+msgstr ""
+
+#: field.aout.can_have_users.label:2377
+msgid "Can Have Users?"
+msgstr ""
+
+#: field.rocit.stat_cat_2_value.label:3794
+msgid "Legacy Stat Cat 2 Value"
+msgstr ""
+
+#: field.chmt.distance_is_from_owner.label:536
+msgid "Range is from Owning Lib?"
+msgstr ""
+
+#: field.rocit.use_count.label:3788
+msgid "Use Count"
+msgstr ""
+
+#: field.chmm.item_circ_ou.label:476
+msgid "Item Circ Library"
+msgstr ""
+
+#: field.mckp.xact.label:2684
+msgid "Transaction link"
+msgstr ""
+
+#: field.mbt.circulation.label:2483
+msgid "Circulation Billing link"
+msgstr ""
+
+#: class.vqara.label:340
+msgid "Queued Authority Record Attribute"
+msgstr ""
+
+#: field.vqbr.purpose.label:175 field.vaq.queue_purpose.label:275
+#: field.vqar.purpose.label:301
+msgid "Purpose"
+msgstr ""
+
+#: field.bre.author_field_entries.label:1076
+msgid "Indexed Author Field Entries"
+msgstr ""
+
+#: field.vqbrad.remove.label:201 field.vqarad.remove.label:326
+msgid "Remove RegExp"
+msgstr ""
+
+#: field.aou.phone.label:2183
+msgid "Phone Number"
+msgstr ""
+
+#: field.acn.create_date.label:975
+msgid "Create Date/Time"
+msgstr ""
+
+#: class.atc.label:732
+msgid "Copy Transit"
+msgstr ""
+
+#: field.au.super_user.label:1266
+msgid "Is Super User"
+msgstr ""
+
+#: class.mfr.label:1353
+msgid "Flattened MARC Fields"
+msgstr ""
+
+#: class.acpn.label:1319
+msgid "Copy Note"
+msgstr ""
+
+#: field.chmt.holdable.label:535
+msgid "Holdable?"
+msgstr ""
+
+#: field.acp.circ_as_type.label:2705
+msgid "Circulation Type (MARC)"
+msgstr ""
+
+#: field.auoi.staff.label:397
+msgid "Staff Member"
+msgstr ""
+
+#: field.aws.id.label:415
+msgid "Workstation ID"
+msgstr ""
+
+#: class.vbq.label:139
+msgid "Import/Overlay Bib Queue"
+msgstr ""
+
+#: field.atc.persistant_transfer.label:741
+#: field.iatc.persistant_transfer.label:3703
+msgid "Is Persistent? (unused)"
+msgstr ""
+
+#: field.rccc.patron_zip.label:3585
+msgid "Patron ZIP Code"
+msgstr ""
+
+#: field.ahtc.persistant_transfer.label:3150
+msgid "Is Persistent?"
+msgstr ""
+
+#: field.au.net_access_level.label:1257
+msgid "Internet Access Level"
+msgstr ""
+
+#: class.rmocbbcol.label:3853
+msgid "Open Circulation Billing by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.rccbs.patron_zip.label:3671
+msgid "User ZIP Code"
+msgstr ""
+
+#: field.mcrp.payment_type.label:2330 field.mwp.payment_type.label:2575
+#: field.mgp.payment_type.label:2596 field.mckp.payment_type.label:2686
+#: field.mp.payment_type.label:3007 field.mbp.payment_type.label:3038
+#: field.mndp.payment_type.label:3069 field.mdp.payment_type.label:3092
+msgid "Payment Type"
+msgstr ""
+
+#: field.mdp.credit_card_payment.label:3098
+msgid "Credit Card Payment"
+msgstr ""
+
+#: field.au.usrgroup.label:1267
+msgid "Family Linkage or other Group"
+msgstr ""
+
+#: field.ahn.id.label:1874
+msgid "Notification ID"
+msgstr ""
+
+#: field.rccbs.last_billing_ts.label:3664
+msgid "Last Billing Date/Time"
+msgstr ""
+
+#: field.mcrp.amount_collected.label:2325
+#: field.mwp.amount_collected.label:2569 field.mgp.amount_collected.label:2590
+#: field.mckp.amount_collected.label:2678
+msgid "Amount Collected"
+msgstr ""
+
+#: field.ahr.current_copy.label:2124
+msgid "Currently Targeted Copy"
+msgstr ""
+
+#: field.aout.depth.label:2379
+msgid "Type Depth"
+msgstr ""
+
+#: field.rccc.stat_cat_1_value.label:3592
+msgid "Legacy CAT1 Value"
+msgstr ""
+
+#: class.auoi.label:390
+msgid "User Sharing Opt-in"
+msgstr ""
+
+#: field.combcirc.usr_profile.label:1724 field.acirc.usr_profile.label:1791
+#: field.rccc.profile_group.label:3575
+msgid "Patron Profile Group"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_shortname.label:3646
+msgid "User Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.au.dob.label:1242 field.rud.dob.label:3478
+msgid "Date of Birth"
+msgstr ""
+
+#: field.aun.title.label:660 field.acpn.title.label:1329
+msgid "Note Title"
+msgstr ""
+
+#: field.auoi.id.label:395
+msgid "Opt-in ID"
+msgstr ""
+
+#: field.asvq.answers.label:615
+msgid "Answers"
+msgstr ""
+
+#: field.combcirc.copy_owning_lib.label:1728
+#: field.acirc.copy_owning_lib.label:1795
+msgid "Copy Owning Library"
+msgstr ""
+
+#: field.ccmcmt.items_out.label:572
+msgid "Items Out"
+msgstr ""
+
+#: field.bre.creator.label:1058
+msgid "Record Creator"
+msgstr ""
+
+#: field.vbm.field_type.label:248
+msgid "Field Type"
+msgstr ""
+
+#: field.acpl.id.label:1892
+msgid "Location ID"
+msgstr ""
+
+#: field.rocit.patron_barcode.label:3811
+msgid "Patron Barcode"
+msgstr ""
+
+#: field.rccc.owning_lib_name.label:3569
+msgid "Owning Library Short (Policy) Name"
+msgstr ""
+
+#: class.ancc.label:2829
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: class.asva.label:2814
+msgid "Survey Answer"
+msgstr ""
+
+#: class.mbt.label:2473 field.mp.xact.label:3008 field.mbp.xact.label:3039
+#: field.mndp.xact.label:3070 field.mdp.xact.label:3093
+msgid "Billable Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib.label:3581
+msgid "Patron Home Library Link"
+msgstr ""
+
+#: field.ahr.transit.label:2122
+msgid "Transit"
+msgstr ""
+
+#: field.circ.billings.label:1662 field.combcirc.billings.label:1717
+#: field.acirc.billings.label:1784 field.rodcirc.billings.label:3748
+msgid "Transaction Billings"
+msgstr ""
+
+#: field.au.photo_url.label:1260
+msgid "Photo URL"
+msgstr ""
+
+#: class.mp.label:2998
+msgid "Payments: All"
+msgstr ""
+
+#: field.asv.questions.label:2060
+msgid "Questions"
+msgstr ""
+
+#: field.cifm.code.label:956
+msgid "Item Form Code"
+msgstr ""
+
+#: field.clfm.value.label:2550
+msgid "LitF Name"
+msgstr ""
+
+#: field.aun.value.label:662 field.acpn.value.label:1330
+msgid "Note Content"
+msgstr ""
+
+#: field.asv.start_date.label:2070
+msgid "Survey Start Date/Time"
+msgstr ""
+
+#: field.au.checkouts.label:1224
+msgid "All Circulations"
+msgstr ""
+
+#: field.aws.name.label:416
+msgid "Workstation Name"
+msgstr ""
+
+#: field.mckp.check_number.label:2680
+msgid "Check Number"
+msgstr ""
+
+#: field.rsr.summary.label:3456
+msgid "Summary (normalized)"
+msgstr ""
+
+#: field.vbq.id.label:144 field.vaq.id.label:270
+msgid "Queue ID"
+msgstr ""
+
+#: field.au.ident_value.label:1252
+msgid "Primary Identification"
+msgstr ""
+
+#: field.sra.bump.label:1969
+msgid "Bump Type"
+msgstr ""
+
+#: field.ahr.fulfillment_staff.label:2128
+msgid "Fulfilling Staff"
+msgstr ""
+
+#: field.mrd.char_encoding.label:1504
+msgid "Character Encoding"
+msgstr ""
+
+#: field.mp.work_payment.label:3014 field.mbp.work_payment.label:3045
+#: field.mndp.work_payment.label:3072
+msgid "Work Payment Detail"
+msgstr ""
+
+#: field.erfcc.circ_count.label:3547
+msgid "Total Circulation Count"
+msgstr ""
+
+#: field.ancc.id.label:2836
+msgid "Non-cat Circulation ID"
+msgstr ""
+
+#: field.auoi.usr.label:398 field.aun.usr.label:661 field.aus.usr.label:676
+#: field.aua.usr.label:1574 field.ac.usr.label:2263 field.mg.usr.label:2442
+#: field.mbt.usr.label:2479 field.actscecm.target_usr.label:2902
+msgid "User"
+msgstr ""
+
+#: field.aua.street1.label:1572
+msgid "Street (1)"
+msgstr ""
+
+#: field.mg.billings.label:2445
+msgid "Billings"
+msgstr ""
+
+#: field.mrd.lit_form.label:1511
+msgid "LitF"
+msgstr ""
+
+#: field.rccbs.billing_location_name.label:3643
+msgid "Billing Location Name"
+msgstr ""
+
+#: field.circ.stop_fines.label:1655 field.combcirc.stop_fines.label:1710
+#: field.acirc.stop_fines.label:1777 field.rodcirc.stop_fines.label:3742
+msgid "Fine Stop Reason"
+msgstr ""
+
+#: field.mbt.payments.label:2485
+msgid "Payment Line Items"
+msgstr ""
+
+#: field.cxt.namespace_uri.label:894
+msgid "Namespace URI"
+msgstr ""
+
+#: field.sra.multiplier.label:1970
+msgid "Multiplier"
+msgstr ""
+
+#: class.rmobbhol.label:3905
+msgid "Open Circulation Balance by User Home Library and Owning Library"
+msgstr ""
+
+#: field.aua.valid.label:1575
+msgid "Valid Address?"
+msgstr ""
+
+#: field.acp.status.label:2727
+msgid "Copy Status"
+msgstr ""
+
+#: field.sra.field.label:1968
+msgid "Index Field"
+msgstr ""
+
+#: field.asvq.survey.label:619 field.asvr.survey.label:775
+#: class.asv.label:2055
+msgid "Survey"
+msgstr ""
+
+#: field.mb.id.label:3184
+msgid "Billing ID"
+msgstr ""
+
+#: field.aou.circulations.label:2187 field.acp.circulations.label:2730
+msgid "Circulations"
+msgstr ""
+
+#: field.aus.id.label:674
+msgid "Setting ID"
+msgstr ""
+
+#: field.rmobbol.balance.label:3846 field.rmobbcol.balance.label:3879
+#: field.rmobbhol.balance.label:3913
+msgid "Balance"
+msgstr ""
+
+#: field.au.mailing_address.label:1255 field.aou.mailing_address.label:2177
+msgid "Mailing Address"
+msgstr ""
+
+#: field.rocit.pubdate.label:3781
+msgid "Pubdate"
+msgstr ""
+
+#: field.acn.label.label:981 field.rccc.call_number_label.label:3578
+msgid "Call Number Label"
+msgstr ""
+
+#: field.au.standing_penalties.label:1228
+msgid "Standing Penalties"
+msgstr ""
+
+#: field.asv.id.label:2064
+msgid "Survey ID"
+msgstr ""
+
+#: field.bre.metarecord.label:1070 field.rsr.metarecord.label:3444
+msgid "Metarecord"
+msgstr ""
+
+#: field.aua.county.label:1568
+msgid "County"
+msgstr ""
+
+#: field.au.prefix.label:1261
+msgid "Prefix"
+msgstr ""
+
+#: field.rccc.patron_county.label:3583
+msgid "Patron County"
+msgstr ""
+
+#: field.actsce.owner.label:2505 field.asce.owner.label:3131
+#: field.rsce1.owner.label:3613 field.rsce2.owner.label:3627
+msgid "Entry Owner"
+msgstr ""
+
+#: field.rccc.circ_modifier.label:3568 field.rocit.circ_modifier.label:3789
+msgid "Circ Modifier"
+msgstr ""
+
+#: field.rsr.series_title.label:3454
+msgid "Series Title (normalized)"
+msgstr ""
+
+#: field.mbt.grocery.label:2482
+msgid "Grocery Billing link"
+msgstr ""
+
+#: field.actscecm.stat_cat_entry.label:2901
+msgid "Entry Text"
+msgstr ""
+
+#: field.aufh.current_copy.label:2868
+msgid "Non-fulfilling Copy"
+msgstr ""
+
+#: field.combcirc.copy_location.label:1727
+#: field.acirc.copy_location.label:1794 field.acp.location.label:2723
+#: field.rccc.shelving_location.label:3574
+msgid "Shelving Location"
+msgstr ""
+
+#: field.aou.id.label:2175
+msgid "Organizational Unit ID"
+msgstr ""
+
+#: field.chmm.pickup_ou.label:474 field.ahr.pickup_lib.label:2134
+msgid "Pickup Library"
+msgstr ""
+
+#: field.vqbrad.description.label:199 field.vqarad.description.label:324
+#: field.ccm.description.label:431 field.cam.description.label:938
+#: field.asv.description.label:2062 field.pgt.description.label:2793
+msgid "Description"
+msgstr ""
+
+#: field.bre.keyword_field_entries.label:1073
+msgid "Indexed Keyword Field Entries"
+msgstr ""
+
+#: field.vqbr.import_time.label:170 field.vqar.import_time.label:297
+msgid "Import Time"
+msgstr ""
+
+#: field.aufh.circ_lib.label:2867
+msgid "Non-fulfilling Library"
+msgstr ""
+
+#: field.au.home_ou.label:1248
+msgid "Home Library"
+msgstr ""
+
+#: field.rocit.edit_date.label:3795
+msgid "Edit Date"
+msgstr ""
+
+#: class.clm.label:841
+msgid "Language Map"
+msgstr ""
+
+#: field.atc.copy_status.label:737 field.iatc.copy_status.label:3699
+msgid "Pretransit Copy Status"
+msgstr ""
+
+#: field.crahp.age.label:2769
+msgid "Item Age"
+msgstr ""
+
+#: field.au.standing.label:1264
+msgid "Standing (unused)"
+msgstr ""
+
+#: field.rsr.name_subject.label:3462
+msgid "Personal Name Subjects (normalized)"
+msgstr ""
+
+#: field.asv.usr_summary.label:2071
+msgid "Display in User Summary"
+msgstr ""
+
+#: field.ahn.notify_staff.label:1877
+msgid "Notifying Staff"
+msgstr ""
+
+#: field.aua.country.label:1567
+msgid "Country"
+msgstr ""
+
+#: field.circ.checkin_time.label:1639 field.combcirc.checkin_time.label:1694
+#: field.acirc.checkin_time.label:1761 field.rodcirc.checkin_time.label:3726
+msgid "Check In Date/Time"
+msgstr ""
+
+#: field.mg.payments.label:2446
+msgid "Payments"
+msgstr ""
+
+#: field.rocit.owning_lib.label:3799
+msgid "Owning Lib"
+msgstr ""
+
+#: class.rsce2.label:3621
+msgid "CAT2 Entry"
+msgstr ""
+
+#: field.mbts.last_billing_type.label:636
+#: field.rccbs.last_billing_type.label:3666
+msgid "Last Billing Type"
+msgstr ""
+
+#: field.circ.recuring_fine.label:1652 field.combcirc.recuring_fine.label:1707
+#: field.acirc.recuring_fine.label:1774 field.rodcirc.recuring_fine.label:3739
+msgid "Recurring Fine Amount"
+msgstr ""
+
+#: field.asv.end_date.label:2063
+msgid "Survey End Date/Time"
+msgstr ""
+
+#: field.mg.xact_start.label:2444
+msgid "Transaction Start Timestamp"
+msgstr ""
+
+#: field.bre.title_field_entries.label:1075
+msgid "Indexed Title Field Entries"
+msgstr ""
+
+#: field.aou.closed_dates.label:2186
+msgid "Closed Dates"
+msgstr ""
+
+#: class.ccm.label:424 field.chmm.circ_modifier.label:479
+#: field.ccmm.circ_modifier.label:510 field.ccmcmt.circ_mod.label:573
+#: field.acp.circ_modifier.label:2707
+msgid "Circulation Modifier"
+msgstr ""
+
+#: field.aou.addresses.label:2189
+msgid "Addresses"
+msgstr ""
+
+#: field.vqbrad.ident.label:202 field.vqarad.ident.label:327
+msgid "Is Identifier?"
+msgstr ""
+
+#: field.auoi.opt_in_ts.label:400
+msgid "Opt-in Date/Time"
+msgstr ""
+
+#: field.circ.desk_renewal.label:1642 field.combcirc.desk_renewal.label:1697
+#: field.acirc.desk_renewal.label:1764 field.rodcirc.desk_renewal.label:3729
+msgid "Desk Renewal"
+msgstr ""
+
+#: field.citm.code.label:1930
+msgid "Item Type Code"
+msgstr ""
+
+#: field.circ.renewal_remaining.label:1654
+#: field.combcirc.renewal_remaining.label:1709
+#: field.acirc.renewal_remaining.label:1776
+#: field.rodcirc.renewal_remaining.label:3741
+msgid "Remaining Renewals"
+msgstr ""
+
+#: field.mb.void_time.label:3186
+msgid "Void Timestamp"
+msgstr ""
+
+#: field.au.billable_transactions.label:1273 None:1295
+msgid "Billable Transactions"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:44-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: 1208.TITLE_LAST_COPY:66
+msgid "The last copy attached to a title is being removed or deleted"
+msgstr ""
+
+#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:441
+msgid "The requested container_user_bucket_item was not found"
+msgstr ""
+
+#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:426
+msgid "The requested money_user_circulation_summary was not found"
+msgstr ""
+
+#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:494
+msgid "The requested container_copy_bucket was not found"
+msgstr ""
+
+#: 1218.ITEM_AGE_PROTECTED:104
+msgid "This item is too new to have a hold placed on it"
+msgstr ""
+
+#: 1214.PATRON_DUP_IDENT1:87
+msgid "The selected primary identification type and value are in use by another patron"
+msgstr ""
+
+#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:318
+msgid "The requested permission_perm_list was not found"
+msgstr ""
+
+#: 1213.PATRON_BARRED:83
+msgid "The patron is barred"
+msgstr ""
+
+#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:405
+msgid "The requested metabib_series_field_entry was not found"
+msgstr ""
+
+#: 8002.OFFLINE_FILE_ERROR:697
+msgid " An offline file or directory could not be created or accessed "
+msgstr ""
+
+#: 1502.ASSET_COPY_NOT_FOUND:173
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a copy object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1639.REPORTER_SCHEDULE_NOT_FOUND:548
+msgid "The requested reporter_schedule was not found"
+msgstr ""
+
+#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:554
+msgid "The requested action_open_circ_count_by_circ_mod was not found"
+msgstr ""
+
+#: 0.SUCCESS:14
+msgid " "
+msgstr ""
+
+#: 7006.COPY_IS_REFERENCE:641
+msgid " Copy is reference material "
+msgstr ""
+
+#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:459
+msgid "The requested config_rules_recuring_fine was not found"
+msgstr ""
+
+#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:456
+msgid "The requested metabib_subject_field_entry was not found"
+msgstr ""
+
+#: 2001.DATABASE_UPDATE_FAILED:599
+msgid "The attempt to write to the DB failed"
+msgstr ""
+
+#: 1507.CONTAINER_ITEM_NOT_FOUND:196
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container item object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:253
+msgid "The requested action_survey_response was not found"
+msgstr ""
+
+#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:301
+msgid "The requested money_open_billable_transaction_summary was not found"
+msgstr ""
+
+#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:298
+msgid "The requested config_rules_circ_duration was not found"
+msgstr ""
+
+#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:453
+msgid "The requested action_open_circulation was not found"
+msgstr ""
+
+#: 1559.METABIB_FULL_REC_NOT_FOUND:312
+msgid "The requested metabib_full_rec was not found"
+msgstr ""
+
+#: 1527.OPEN_TCN_NOT_FOUND:219
+msgid "No TCN could be found that does not collide with existing records"
+msgstr ""
+
+#: 8000.OFFLINE_SESSION_ACTIVE:691
+msgid " An offline session for this location is currently processing "
+msgstr ""
+
+#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:324
+msgid "The requested metabib_keyword_field_entry was not found"
+msgstr ""
+
+#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:277
+msgid "The requested config_audience_map was not found"
+msgstr ""
+
+#: 1001.NO_SESSION:26
+msgid "User login session has either timed out or does not exist"
+msgstr ""
+
+#: 1525.BILLING_NOT_FOUND:215
+msgid " Requested billing note does not exist "
+msgstr ""
+
+#: 8001.OFFLINE_SESSION_FILE_EXISTS:694
+msgid " An offline file for this workstation exists within this session "
+msgstr ""
+
+#: 1529.ACTOR_WORKSTATION_NOT_FOUND:227
+msgid "The requested actor_workstation was not found"
+msgstr ""
+
+#: 1227.COPY_DELETE_WARNING:140
+msgid "The copy in question is not in an ideal status for deleting"
+msgstr ""
+
+#: 1223.PATRON_NO_PHONE:122
+msgid "The user does not have a valid phone number assigned"
+msgstr ""
+
+#: 1002.ACTOR_USER_NOT_FOUND:29
+msgid "Someone attempted to retrieve a user from the system and the user was not found"
+msgstr ""
+
+#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:539
+msgid "The requested reporter_output_folder was not found"
+msgstr ""
+
+#: 1217.PATRON_INACTIVE:101
+msgid "This account is marked as inactive"
+msgstr ""
+
+#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:542
+msgid "The requested reporter_report_folder was not found"
+msgstr ""
+
+#: 1545.PERM_EX_NOT_FOUND:274
+msgid "The requested perm_ex was not found"
+msgstr ""
+
+#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:295
+msgid "The requested actor_org_unit_closed_date was not found"
+msgstr ""
+
+#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:262
+msgid "The requested authority_record_descriptor was not found"
+msgstr ""
+
+#: 7011.COPY_STATUS_LOST:656
+msgid "Copy has is marked as lost"
+msgstr ""
+
+#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:393
+msgid "The requested container_call_number_bucket was not found"
+msgstr ""
+
+#: 1229.VOLUME_DELETED:147
+msgid "The requested volume is marked as deleted"
+msgstr ""
+
+#: 1635.REPORTER_REPORT_NOT_FOUND:536
+msgid "The requested reporter_report was not found"
+msgstr ""
+
+#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:524
+#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:527
+#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:530
+msgid "The requested money_collections_tracker was not found"
+msgstr ""
+
+#: 5000.PERM_FAILURE:608
+msgid "Permission Denied"
+msgstr ""
+
+#: 7015.NEGATIVE_PATRON_BALANCE:668
+msgid "This requested action would result in a negative patron balance"
+msgstr ""
+
+#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:342
+msgid "The requested actor_user_standing_penalty was not found"
+msgstr ""
+
+#: 1200.USERNAME_EXISTS:39
+msgid "The given username already exists in the database"
+msgstr ""
+
+#: 9000.REPORT_TEMPLATE_EXISTS:725
+msgid " A report template with the given name and folder already exists"
+msgstr ""
+
+#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:438
+msgid "The requested actor_stat_cat_entry was not found"
+msgstr ""
+
+#: 1710.CONTAINER_EXISTS:591
+msgid "User has already created a bucket with the requested name"
+msgstr ""
+
+#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:358
+msgid "The requested container_biblio_record_entry_bucket was not found"
+msgstr ""
+
+#: 1701.COPY_LOCATION_EXISTS:564
+msgid " The copy location object already exists "
+msgstr ""
+
+#: 1703.WORKSTATION_NAME_EXISTS:570
+msgid " A workstation with that name already exists "
+msgstr ""
+
+#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:488
+msgid "The requested actor_stat_cat_entry_user_map was not found"
+msgstr ""
+
+#: 8007.OFFLINE_SESSION_EXISTS:712
+msgid " A session with the given name already exists "
+msgstr ""
+
+#: 1558.ASSET_COPY_NOTE_NOT_FOUND:309
+msgid "The requested asset_copy_note was not found"
+msgstr ""
+
+#: 7017.ROUTE_TO_COPY_LOCATION:677
+msgid ""
+" \n"
+"\t\tA copy needs to be routed to a copy location. The location\n"
+"\t\tshould be specified within the event with a 'location' key\n"
+"\t\t"
+msgstr ""
+
+#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:182
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a transit object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1624.MONEY_PAYMENT_NOT_FOUND:503
+msgid "The requested money_payment was not found"
+msgstr ""
+
+#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:420
+msgid "The requested actor_org_unit_type was not found"
+msgstr ""
+
+#: 1004.Z3950_BAD_QUERY:35
+msgid "The Z query is not formatted correctly"
+msgstr ""
+
+#: 1205.CARD_EXISTS:57
+msgid "The given user barcode already exists"
+msgstr ""
+
+#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:385
+msgid "The requested actor_org_address was not found"
+msgstr ""
+
+#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:167
+msgid "The requested biblio_record_entry was not found"
+msgstr ""
+
+#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:470
+msgid "The requested permission_grp_tree was not found"
+msgstr ""
+
+#: 1523.TITLE_NOTE_NOT_FOUND:212
+msgid " Requested title note does not exist "
+msgstr ""
+
+#: 9001.REPORT_REPORT_EXISTS:729
+msgid " A report with the given name and folder already exists"
+msgstr ""
+
+#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:248
+msgid "The requested action_in_house_use was not found"
+msgstr ""
+
+#: 7016.ITEM_ON_HOLDS_SHELF:671
+msgid "This requested item is currently on the holds shelf"
+msgstr ""
+
+#: 7005.LOCATION_CIRC_NOT_ALLOWED:638
+msgid " Location does not allow materials to circulate "
+msgstr ""
+
+#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:321
+msgid "The requested metabib_metarecord_source_map was not found"
+msgstr ""
+
+#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:233
+msgid "The requested action_survey_question was not found"
+msgstr ""
+
+#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:467
+msgid "The requested config_rules_max_fine was not found"
+msgstr ""
+
+#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:306
+msgid "The requested actor_org_unit_setting was not found"
+msgstr ""
+
+#: 7009.CIRC_CLAIMS_RETURNED:650
+msgid " Requested circulation is marked claims returned "
+msgstr ""
+
+#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:517
+msgid "The requested permission_usr_grp_map was not found"
+msgstr ""
+
+#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:450
+msgid "The requested money_work_payment was not found"
+msgstr ""
+
+#: 2000.BAD_PARAMS:596
+msgid "Invalid parameters were encountered in a method"
+msgstr ""
+
+#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:327
+msgid "The requested money_cash_payment was not found"
+msgstr ""
+
+#: 1221.ORG_CANNOT_HAVE_VOLS:115
+msgid "The selected location cannot have volumes attached"
+msgstr ""
+
+#: 1704.TCN_EXISTS:573
+msgid "A record already exists with the requested TCN value"
+msgstr ""
+
+#: 1.UNKNOWN:17
+msgid "Placeholder event. Used for development only"
+msgstr ""
+
+#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:497
+msgid "The requested biblio_record_node was not found"
+msgstr ""
+
+#: 8003.OFFLINE_PARAM_ERROR:700
+msgid " Missing params in offline upload "
+msgstr ""
+
+#: 1534.ACTOR_USER_SETTING_NOT_FOUND:242
+msgid "The requested actor_user_setting was not found"
+msgstr ""
+
+#: 1211.BILL_ALREADY_VOIDED:76
+msgid "The selecte bill has already been voided"
+msgstr ""
+
+#: 1222.PATRON_NO_EMAIL_ADDRESS:119
+msgid "The user does not have a valid email address assigned"
+msgstr ""
+
+#: 7001.PATRON_BAD_STANDING:625
+msgid ""
+"\n"
+"\t\t\tThe patron in question is not able to check out materials because\n"
+"\t\t\ttheir account is in bad standing\n"
+"\t\t"
+msgstr ""
+
+#: 1215.CIRC_EXCEEDS_COPY_RANGE:94
+msgid ""
+"\n"
+"\t\t\tThe selected copy may not circulate because the recipient's home \n"
+"\t\t\tlocation is not within the copy's circulation range\n"
+"\t\t"
+msgstr ""
+
+#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:447
+msgid "The requested config_lit_form_map was not found"
+msgstr ""
+
+#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:336
+msgid "The requested metabib_record_descriptor was not found"
+msgstr ""
+
+#: 1702.OPEN_CIRCULATION_EXISTS:567
+msgid " There is an open circulation on the requested item "
+msgstr ""
+
+#: 8009.OFFLINE_NO_ORG:718 8010.OFFLINE_SESSION_COMPLETE:721
+msgid " No org id was provided "
+msgstr ""
+
+#: 1630.ACTOR_USER_NOTE_NOT_FOUND:520
+msgid "The requested actor_user_note was not found"
+msgstr ""
+
+#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:199
+msgid "Requested asset_call_number was not found"
+msgstr ""
+
+#: 1209.Z3950_LOGIN_FAILED:69
+msgid "The login failed"
+msgstr ""
+
+#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:268
+msgid "The requested money_credit_card_payment was not found"
+msgstr ""
+
+#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:473
+msgid "The requested action_survey_answer was not found"
+msgstr ""
+
+#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:245
+msgid "The requested metabib_author_field_entry was not found"
+msgstr ""
+
+#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:509
+msgid "The requested asset_stat_cat_entry was not found"
+msgstr ""
+
+#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:417
+msgid "The requested config_non_cataloged_type was not found"
+msgstr ""
+
+#: 1225.TRANSIT_ABORT_NOT_ALLOWED:128
+msgid "The transit on this item may not be aborted due to the state the item is in"
+msgstr ""
+
+#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:265
+msgid "The requested config_language_map was not found"
+msgstr ""
+
+#: 1206.VOLUME_NOT_EMPTY:60
+msgid "The selected volume has copies attached"
+msgstr ""
+
+#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:259
+msgid "The requested authority_record_entry was not found"
+msgstr ""
+
+#: 1203.COPY_BAD_STATUS:48
+msgid "The given copy is not in a standard circulation status"
+msgstr ""
+
+#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:435
+msgid "The requested money_billable_transaction was not found"
+msgstr ""
+
+#: 7004.COPY_NOT_AVAILABLE:635
+msgid " Copy is not available "
+msgstr ""
+
+#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:287
+msgid "The requested money_open_user_summary was not found"
+msgstr ""
+
+#: 1207.REFUND_EXCEEDS_BALANCE:63
+msgid "A refund greater than the negative balance on a transaction was provided"
+msgstr ""
+
+#: 3.NO_CHANGE:20
+msgid "No change occurred"
+msgstr ""
+
+#: 1201.CIRC_PERMIT_BAD_KEY:42
+msgid "A checkout was attempted without a valid checkout permit key"
+msgstr ""
+
+#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:411
+msgid "The requested money_credit_payment was not found"
+msgstr ""
+
+#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:485
+msgid "The requested metabib_title_field_entry was not found"
+msgstr ""
+
+#: 1202.ITEM_NOT_CATALOGED:45
+msgid "The requested item is not cataloged in the database"
+msgstr ""
+
+#: 1628.MONEY_BILLING_NOT_FOUND:514
+msgid "The requested money_billing was not found"
+msgstr ""
+
+#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:271
+msgid "The requested config_metabib_field was not found"
+msgstr ""
+
+#: 2002.DATABASE_QUERY_FAILED:602
+msgid "The attempt to query to the DB failed"
+msgstr ""
+
+#: 1549.CONFIG_STANDING_NOT_FOUND:284
+msgid "The requested config_standing was not found"
+msgstr ""
+
+#: 1210.INCORRECT_PASSWORD:73
+msgid "The provided password is not correct"
+msgstr ""
+
+#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:379
+msgid "The requested config_item_type_map was not found"
+msgstr ""
+
+#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:230
+msgid "The requested config_identification_type was not found"
+msgstr ""
+
+#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:370
+msgid "The requested asset_copy_location was not found"
+msgstr ""
+
+#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:347
+msgid "The requested asset_call_number_note was not found"
+msgstr ""
+
+#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:222
+msgid "Requested address was not found"
+msgstr ""
+
+#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:629
+msgid "The patron in question has the maximum number of items already checked out"
+msgstr ""
+
+#: 1003.Z3950_SEARCH_FAILED:32
+msgid "The Z search did not succeed"
+msgstr ""
+
+#: 1533.ACTOR_USR_NOTE_NOT_FOUND:239
+msgid "The requested actor_usr_note was not found"
+msgstr ""
+
+#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:491
+msgid "The requested permission_grp_perm_map was not found"
+msgstr ""
+
+#: 1204.CIRC_BAD_STATUS:54
+msgid ""
+"\n"
+"\t\t\tThe given circulation is not in a standard status or\n"
+"\t\t\tthe circulation was never fully closed properly\n"
+"\t\t"
+msgstr ""
+
+#: 1709.MAX_HOLDS:588
+msgid "User has reached the maximum number of holds"
+msgstr ""
+
+#: 1706.ITEM_BARCODE_EXISTS:579
+msgid "An item with the same barcode exists"
+msgstr ""
+
+#: 7014.COPY_IN_TRANSIT:665
+msgid "Copy is in transit"
+msgstr ""
+
+#: 1219.COPY_REMOTE_CIRC_LIB:107 1220.ITEM_NOT_HOLDABLE:111
+msgid "A copy with a remote circulating library (circ_lib) was encountered"
+msgstr ""
+
+#: 7000.ROUTE_ITEM:618
+msgid ""
+" \n"
+"\t\t\tA copy needs to be routed to a different location\t\n"
+"\t\t\tThe destination location will be specified by an 'org' key\n"
+"\t\t\twithin the event object\n"
+"\t\t"
+msgstr ""
+
+#: 7007.COPY_NEEDED_FOR_HOLD:644
+msgid " Copy is needed to fulfil a hold "
+msgstr ""
+
+#: 7010.COPY_ALERT_MESSAGE:653
+msgid " The requested copy has an alert message attached "
+msgstr ""
+
+#: 1231.RECORD_NOT_EMPTY:154
+msgid "The selected bib record has volumes attached"
+msgstr ""
+
+#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:176
+msgid "The requested action_hold_request was not found"
+msgstr ""
+
+#: 1212.PATRON_EXCEEDS_OVERDUE_COUNT:79
+msgid "The patron has too many overdue items"
+msgstr ""
+
+#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:367
+msgid "The requested action_hold_notification was not found"
+msgstr ""
+
+#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:462
+msgid "The requested money_check_payment was not found"
+msgstr ""
+
+#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:500
+msgid "The requested permission_usr_perm_map was not found"
+msgstr ""
+
+#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:376
+msgid "The requested asset_stat_cat_entry_copy_map was not found"
+msgstr ""
+
+#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:280
+msgid "The requested config_item_form_map was not found"
+msgstr ""
+
+#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:408
+msgid "The requested container_user_bucket was not found"
+msgstr ""
+
+#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:482
+msgid "The requested action_unfulfilled_hold_list was not found"
+msgstr ""
+
+#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:292
+msgid "The requested actor_org_unit_hours_of_operation was not found"
+msgstr ""
+
+#: 1576.EX_NOT_FOUND:361
+msgid "The requested ex was not found"
+msgstr ""
+
+#: 8004.OFFLINE_CONFIG_ERROR:703 8005.OFFLINE_CHECKSUM_FAILED:706
+#: 8006.OFFLINE_SESSION_NOT_FOUND:709
+msgid " Offline server is not configured properly "
+msgstr ""
+
+#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:339
+msgid "The requested config_copy_status was not found"
+msgstr ""
+
+#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:256
+msgid "The requested container_copy_bucket_item was not found"
+msgstr ""
+
+#: 1590.ACTOR_STAT_CAT_NOT_FOUND:402
+msgid "The requested actor_stat_cat was not found"
+msgstr ""
+
+#: 7003.COPY_CIRC_NOT_ALLOWED:632
+msgid " Target copy is not allowed to circulate "
+msgstr ""
+
+#: 7008.MAX_RENEWALS_REACHED:647
+msgid " Circulation has no more renewals remaining "
+msgstr ""
+
+#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:364
+msgid "The requested action_hold_copy_map was not found"
+msgstr ""
+
+#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:545
+msgid "The requested reporter_template_folder was not found"
+msgstr ""
+
+#: 1500.ACTION_CIRCULATION_NOT_FOUND:164
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a circulation object from the system and \n"
+"\t\t\tthe object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135
+msgid ""
+"\n"
+"\t\t\tThis refund amount is not allowed because it exceeds \n"
+"\t\t\tthe total amount of desk payments for this transaction.\n"
+"\t\t"
+msgstr ""
+
+#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:479
+msgid "The requested money_open_user_circulation_summary was not found"
+msgstr ""
+
+#: 1583.ACTION_SURVEY_NOT_FOUND:382
+msgid "The requested action_survey was not found"
+msgstr ""
+
+#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:506
+msgid "The requested container_biblio_record_entry_bucket_item was not found"
+msgstr ""
+
+#: 1000.LOGIN_FAILED:23
+msgid "User login failed"
+msgstr ""
+
+#: 1599.MONEY_GROCERY_NOT_FOUND:429
+msgid "The requested money_grocery was not found"
+msgstr ""
+
+#: 7012.COPY_STATUS_MISSING:659
+msgid "Copy has is marked as missing"
+msgstr ""
+
+#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:236
+msgid "The requested money_billable_transaction_summary was not found"
+msgstr ""
+
+#: 2003.INTERNAL_SERVER_ERROR:605
+msgid "There was an internal server error"
+msgstr ""
+
+#: 8008.OFFLINE_INVALID_SESSION:715
+msgid " The session name is invalid "
+msgstr ""
+
+#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:423
+msgid "The requested biblio_record_note was not found"
+msgstr ""
+
+#: 1588.ASSET_STAT_CAT_NOT_FOUND:396
+msgid "The requested asset_stat_cat was not found"
+msgstr ""
+
+#: 1224.PATRON_ACCOUNT_EXPIRED:125
+msgid "The patron's account has expired"
+msgstr ""
+
+#: 1560.METABIB_METARECORD_NOT_FOUND:315
+msgid "The requested metabib_metarecord was not found"
+msgstr ""
+
+#: 1707.HOLD_EXISTS:582
+msgid "User already has an open hold on the selected item"
+msgstr ""
+
+#: 1506.CONTAINER_NOT_FOUND:190
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:333
+msgid "The requested money_forgive_payment was not found"
+msgstr ""
+
+#: 1230.XACT_COLLISION:150
+msgid "The saved item has been edited by another user"
+msgstr ""
+
+#: 1700.NON_CAT_TYPE_EXISTS:561
+msgid " The non-cataloged type object already exists "
+msgstr ""
+
+#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:585
+msgid "A duplicate money.collections_tracker object already exists in the database"
+msgstr ""
+
+#: 1634.REPORTER_TEMPLATE_NOT_FOUND:533
+msgid "The requested reporter_template was not found"
+msgstr ""
+
+#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:432
+msgid "The requested config_bib_source was not found"
+msgstr ""
+
+#: 1228.BIB_RECORD_DELETED:144
+msgid "The requested bib record is marked as deleted"
+msgstr ""
+
+#: 7018.COPY_MARKED_LOST:682
+msgid "The requested item is already marked as lost"
+msgstr ""
+
+#: 1705.VOLUME_LABEL_EXISTS:576
+msgid "A volume with the same label, title and owning library exists"
+msgstr ""
+
+#: 1589.ACTOR_CARD_NOT_FOUND:399
+msgid "The requested actor_card was not found"
+msgstr ""
+
+#: 1216.PATRON_CARD_INACTIVE:98
+msgid "The patron's card is not active"
+msgstr ""
+
+#: 7013.PATRON_EXCEEDS_FINES:662
+msgid "The patron in question has reached the maximum fine amount"
+msgstr ""
+
+#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:390
+msgid "The requested actor_org_unit was not found"
+msgstr ""
+
+#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:355
+msgid "The requested container_call_number_bucket_item was not found"
+msgstr ""
+
+#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:204
+msgid "The requested action_hold_transit_copy was not found"
+msgstr ""
+
+#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:414
+msgid "The requested authority_full_rec was not found"
+msgstr ""
+
+#: 1565.ACTOR_PROFILE_NOT_FOUND:330
+msgid "The requested actor_profile was not found"
+msgstr ""
+
+#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:373
+msgid "The requested metabib_virtual_record was not found"
+msgstr ""
+
+#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:551
+msgid "The requested actor_usr_org_unit_opt_in was not found"
+msgstr ""
+
+#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:350
+msgid "The requested authority_record_note was not found"
+msgstr ""
+
+#: 1520.WORKSTATION_NOT_FOUND:209
+msgid " Requested workstation object does not exist "
+msgstr ""
+
+#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:476
+msgid "The requested action_non_cataloged_circulation was not found"
+msgstr ""
+
+#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:444
+msgid "The requested money_user_summary was not found"
+msgstr ""
# extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
"X-Accelerator-Marker: &\n"
#: lang.version
msgid "or choose one of these"
msgstr ""
+#: common.date_helper.normal
+msgctxt "common.date_helper.normal"
+msgid "Normal"
+msgstr ""
+
#: common.date_helper.3_days
msgid "Today + 3 days"
msgstr ""
#: common.enter.label
#: common.enter.accesskey
-#: staff.circ.offline_checkin.step2a.label
-#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "common.enter.label common.enter.accesskey"
msgid "&Enter"
msgstr ""
msgstr ""
#: common.title
-#: staff.cat.search_title
-#: staff.mvr_label_title
-#: staff.record_list.title
-#: staff.z39_50.search_class.title
+msgctxt "common.title"
msgid "Title"
msgstr ""
#: common.author
-#: staff.cat.search_author
-#: staff.mvr_label_author
-#: staff.record_list.author
-#: staff.z39_50.search_class.author
+msgctxt "common.author"
msgid "Author"
msgstr ""
#: common.subject
-#: staff.cat.search_subject
+msgctxt "common.subject"
msgid "Subject"
msgstr ""
msgstr ""
#: common.keyword
-#: staff.cat.search_all
+msgctxt "common.keyword"
msgid "Keyword"
msgstr ""
#: common.type
-#: staff.ahr_hold_type_label
-#: staff.cat.search_type
-#: staff.marc.LDR.type.short
+msgctxt "common.type"
msgid "Type"
msgstr ""
#: common.isbn
-#: staff.record_list.isbn
-#: staff.z39_50.search_class.isbn
+msgctxt "common.isbn"
msgid "ISBN"
msgstr ""
#: common.format
-#: staff.cat.search_format
+msgctxt "common.format"
msgid "Format"
msgstr ""
#: common.login
-#: staff.auth.login_header
msgid "Login"
msgstr ""
msgstr ""
#: common.of
-#: staff.displaying.of
+msgctxt "common.of"
msgid "of"
msgstr ""
#: common.cancel
+msgctxt "common.cancel"
msgid "Cancel"
msgstr ""
#: common.library
+msgctxt "common.library"
msgid "Library"
msgstr ""
msgstr ""
#: common.username
+msgctxt "common.username"
msgid "Username"
msgstr ""
msgstr ""
#: common.password
-#: staff.au_password_label
+msgctxt "common.password"
msgid "Password"
msgstr ""
+#: common.refresh
+msgctxt "common.refresh"
+msgid "Refresh"
+msgstr ""
+
#: common.submit
-#: staff.auth.submit_prompt
-#: staff.circ.checkin.submit_label
-#: staff.circ.hold_capture.submit_label
-#: staff.patron_display.checkout.submit_label
+msgctxt "common.submit"
msgid "Submit"
msgstr ""
msgstr ""
#: common.cancel.accesskey
-#: staff.cat.fixed.SCO.key
-#: staff.copy.close.key
-#: staff.main.auth.debug.clear.accesskey
-#: staff.main.menu.circ.checkin.key
-#: staff.main.menu.circ.claimed_returned.key
-#: staff.main.menu.circ.key
-#: staff.main.menu.edit.copy.key
-#: staff.main.menu.file.close.key
-#: staff.marc.display.fixed.SCO.key
-#: staff.marc.file.close.key
-#: staff.patron_navbar.checkout.accesskey
+msgctxt "common.cancel.accesskey"
msgid "C"
msgstr ""
#: common.login.accesskey
-#: staff.auth.logoff_prompt.key
-#: staff.cat.search_count_copy.key
-#: staff.cat.search_location.key
-#: staff.checkin.reprint_receipt_label.accesskey
-#: staff.hold_capture.reprint_receipt_label.accesskey
-#: staff.main.menu.circ.lost.key
-#: staff.marc.display.legend.key
-#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "common.login.accesskey"
msgid "L"
msgstr ""
#: common.password.accesskey
-#: staff.auth.password_prompt.accesskey
-#: staff.auth.password_prompt.key
-#: staff.cat.fixed.MAP.key
-#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
-#: staff.main.menu.circ.patron_status.key
-#: staff.main.menu.edit.paste.key
-#: staff.marc.display.fixed.MAP.key
-#: staff.patron_display.items.print_receipt_label.accesskey
-#: staff.previous.range.key
+msgctxt "common.password.accesskey"
msgid "P"
msgstr ""
msgstr ""
#: staff.acp_label_barcode
-#: staff.browse_list.barcode
-#: staff.copy.attr.barcode
+msgctxt "staff.acp_label_barcode"
msgid "Barcode"
msgstr ""
#: staff.acp_label_call_number
-#: staff.browse_list.callnumber
-#: staff.cat.search_callnumber
-#: staff.volume.attr.callnumber
+msgctxt "staff.acp_label_call_number"
msgid "Call Number"
msgstr ""
#: staff.acp_label_circ_as_type
-msgid "Circ As Type"
+msgid "Circulate As Type"
msgstr ""
#: staff.acp_label_circ_lib
-msgid "Circ Lib"
+msgid "Circulation Library"
msgstr ""
#: staff.acp_label_circ_modifier
-#: staff.browse_list.circ_modifier
-msgid "Circ Modifier"
+msgid "Circulation Modifier"
msgstr ""
#: staff.acp_label_copy_number
-#: staff.browse_list.copy_number
+msgctxt "staff.acp_label_copy_number"
msgid "Copy Number"
msgstr ""
#: staff.acp_label_deposit
-#: staff.browse_list.deposit
+msgctxt "staff.acp_label_deposit"
msgid "Deposit"
msgstr ""
#: staff.acp_label_deposit_amount
-#: staff.browse_list.deposit_amount
+msgctxt "staff.acp_label_deposit_amount"
msgid "Deposit Amount"
msgstr ""
#: staff.acp_label_fine_level
-#: staff.browse_list.fine_level
-#: staff.copy.attr.fine_level
+msgctxt "staff.acp_label_fine_level"
msgid "Fine Level"
msgstr ""
msgstr ""
#: staff.acp_label_loan_duration
-#: staff.browse_list.loan_duration
-#: staff.copy.attr.loan_duration
+msgctxt "staff.acp_label_loan_duration"
msgid "Loan Duration"
msgstr ""
#: staff.acp_label_location
-#: staff.browse_list.location2
-#: staff.cat.search_count_copy
-#: staff.cat.search_location
+msgctxt "staff.acp_label_location"
msgid "Location"
msgstr ""
#: staff.acp_label_price
-#: staff.browse_list.price
-#: staff.copy.attr.price
+msgctxt "staff.acp_label_price"
msgid "Price"
msgstr ""
#: staff.acp_label_status
-#: staff.ahr_status_label
-#: staff.browse_list.status
-#: staff.checkin_label_status
-#: staff.main.auth.status
-#: staff.patron_display.status.caption
+msgctxt "staff.acp_label_status"
msgid "Status"
msgstr ""
msgid "Fulfillment Time"
msgstr ""
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
#: staff.ahr_holdable_formats_label
msgid "Holdable Formats"
msgstr ""
#: staff.ahr_id_label
-msgid "Hold Id"
+msgid "Hold ID"
msgstr ""
#: staff.ahr_ischanged_label
-#: staff.au_ischanged_label
-msgid "Ischanged"
+msgctxt "staff.ahr_ischanged_label"
+msgid "Is changed"
msgstr ""
#: staff.ahr_isdeleted_label
-#: staff.au_isdeleted_label
-msgid "Isdeleted"
+msgctxt "staff.ahr_isdeleted_label"
+msgid "Is deleted"
msgstr ""
#: staff.ahr_isnew_label
-#: staff.au_isnew_label
-msgid "Isnew"
+msgctxt "staff.ahr_isnew_label"
+msgid "Is new"
msgstr ""
#: staff.ahr_phone_notify_label
msgstr ""
#: staff.ahr_pickup_lib_label
-msgid "Pickup Lib"
+msgctxt "staff.ahr_pickup_lib_label"
+msgid "Pickup Library"
msgstr ""
#: staff.ahr_prev_check_time_label
-msgid "Prev Check Time"
+msgid "Previous Check Time"
msgstr ""
#: staff.ahr_request_time_label
msgid "Selection Depth"
msgstr ""
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
#: staff.ahr_target_label
msgid "Target"
msgstr ""
#: staff.ahr_usr_label
-msgid "Usr"
+msgid "User"
msgstr ""
#: staff.au_active_label
-#: staff.au_label_active
+msgctxt "staff.au_active_label"
msgid "Active"
msgstr ""
#: staff.au_addresses_label
+msgctxt "staff.au_addresses_label"
msgid "Addresses"
msgstr ""
#: staff.au_alert_message_label
+msgctxt "staff.au_alert_message_label"
msgid "Alert Message"
msgstr ""
#: staff.au_billing_address_label
-#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.au_billing_address_label"
msgid "Billing Address"
msgstr ""
msgstr ""
#: staff.au_checkouts_label
-msgid "Checkouts"
+msgid "Check Outs"
msgstr ""
#: staff.au_claims_returned_count_label
+msgctxt "staff.au_claims_returned_count_label"
msgid "Claims Returned Count"
msgstr ""
msgstr ""
#: staff.au_dob_label
-msgid "Dob"
+msgctxt "staff.au_dob_label"
+msgid "Date of Birth"
msgstr ""
#: staff.au_email_label
msgstr ""
#: staff.au_evening_phone_label
+msgctxt "staff.au_evening_phone_label"
msgid "Evening Phone"
msgstr ""
#: staff.au_expire_date_label
+msgctxt "staff.au_expire_date_label"
msgid "Expire Date"
msgstr ""
#: staff.au_family_name_label
-#: staff.au_label_family_name
+msgctxt "staff.au_family_name_label"
msgid "Family Name"
msgstr ""
msgid "Hold Requests"
msgstr ""
+#. "OU" is an organization unit - typically a library
#: staff.au_home_ou_label
-msgid "Home Ou"
+msgid "Home OU"
msgstr ""
#: staff.au_id_label
-msgid "User Id"
+msgid "User ID"
msgstr ""
#: staff.au_ident_type2_label
-msgid "Ident Type2"
+msgid "Identification Type2"
msgstr ""
#: staff.au_ident_type_label
-msgid "Ident Type"
+msgid "Identification Type"
msgstr ""
#: staff.au_ident_value2_label
-msgid "Ident Value2"
+msgid "Identification Value2"
msgstr ""
#: staff.au_ident_value_label
-msgid "Ident Value"
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ischanged_label
+msgctxt "staff.au_ischanged_label"
+msgid "Is changed"
+msgstr ""
+
+#: staff.au_isdeleted_label
+msgctxt "staff.au_isdeleted_label"
+msgid "Is deleted"
+msgstr ""
+
+#: staff.au_isnew_label
+msgctxt "staff.au_isnew_label"
+msgid "Is new"
+msgstr ""
+
+#: staff.au_label_active
+msgctxt "staff.au_label_active"
+msgid "Active"
+msgstr ""
+
+#: staff.au_label_family_name
+msgctxt "staff.au_label_family_name"
+msgid "Family Name"
msgstr ""
#: staff.au_label_first_given_name
+msgctxt "staff.au_label_first_given_name"
msgid "First Name"
msgstr ""
msgstr ""
#: staff.au_label_prefix
-#: staff.au_prefix_label
+msgctxt "staff.au_label_prefix"
msgid "Prefix"
msgstr ""
#: staff.au_label_second_given_name
+msgctxt "staff.au_label_second_given_name"
msgid "Middle Name"
msgstr ""
#: staff.au_label_suffix
-#: staff.au_suffix_label
+msgctxt "staff.au_label_suffix"
msgid "Suffix"
msgstr ""
+#. "xact" is a transaction
#: staff.au_last_xact_id_label
-msgid "Last Xact Id"
+msgid "Last Xact ID"
msgstr ""
#: staff.au_mailing_address_label
-#: staff.patron_display.mailing_address
+msgctxt "staff.au_mailing_address_label"
msgid "Mailing Address"
msgstr ""
msgstr ""
#: staff.au_other_phone_label
+msgctxt "staff.au_other_phone_label"
msgid "Other Phone"
msgstr ""
#: staff.au_passwd_label
-msgid "Passwd"
+msgctxt "staff.au_passwd_label"
+msgid "Password"
+msgstr ""
+
+#: staff.au_password_label
+msgctxt "staff.au_password_label"
+msgid "Password"
msgstr ""
#: staff.au_photo_url_label
-msgid "Photo Url"
+msgid "Photo URL"
+msgstr ""
+
+#: staff.au_prefix_label
+msgctxt "staff.au_prefix_label"
+msgid "Prefix"
msgstr ""
#: staff.au_profile_label
+msgctxt "staff.au_profile_label"
msgid "Profile"
msgstr ""
msgstr ""
#: staff.au_standing_label
+msgctxt "staff.au_standing_label"
msgid "Standing"
msgstr ""
#: staff.au_stat_cat_entries_label
-msgid "Stat Cat Entries"
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: staff.au_suffix_label
+msgctxt "staff.au_suffix_label"
+msgid "Suffix"
msgstr ""
#: staff.au_super_user_label
msgstr ""
#: staff.au_usrgroup_label
-msgid "Usrgroup"
+msgid "User group"
msgstr ""
#: staff.au_usrname_label
-msgid "Usrname"
+msgid "User name"
msgstr ""
#: staff.admin.survey.available.label
msgstr ""
#: staff.admin.survey.name.label
-#: staff.auth.name_prompt
+msgctxt "staff.admin.survey.name.label"
msgid "Name:"
msgstr ""
#: staff.admin.survey.opac_visible.label
+msgctxt "staff.admin.survey.opac_visible.label"
msgid "OPAC Visible:"
msgstr ""
msgid "Start:"
msgstr ""
+#: staff.auth.login_header
+msgid "Log in"
+msgstr ""
+
#: staff.auth.logoff_prompt
-msgid "Log Off"
+msgid "Log off"
msgstr ""
#: staff.auth.logoff_prompt.accesskey
msgid "f"
msgstr ""
+#: staff.auth.logoff_prompt.key
+msgctxt "staff.auth.logoff_prompt.key"
+msgid "L"
+msgstr ""
+
+#: staff.auth.name_prompt
+msgctxt "staff.auth.name_prompt"
+msgid "Name:"
+msgstr ""
+
#: staff.auth.name_prompt.key
-#: staff.main.menu.file.new.key
-#: staff.next.range.key
+msgctxt "staff.auth.name_prompt.key"
msgid "N"
msgstr ""
msgid "Password:"
msgstr ""
+#: staff.auth.password_prompt.accesskey
+msgctxt "staff.auth.password_prompt.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.auth.password_prompt.key
+msgctxt "staff.auth.password_prompt.key"
+msgid "P"
+msgstr ""
+
#: staff.auth.quit_prompt
msgid "Exit Evergreen"
msgstr ""
msgid "x"
msgstr ""
+#: staff.auth.submit_prompt
+msgctxt "staff.auth.submit_prompt"
+msgid "Submit"
+msgstr ""
+
#: staff.auth.submit_prompt.key
-#: staff.cat.fixed.SER.key
-#: staff.cat.search_submit.key
-#: staff.circ.checkin.submit_label.accesskey
-#: staff.circ.hold_capture.submit_label.accesskey
-#: staff.copy.save.key
-#: staff.main.auth.offline.interface.accesskey
-#: staff.main.menu.cat.bib_search.key
-#: staff.main.menu.circ.special.key
-#: staff.main.menu.file.save.key
-#: staff.marc.display.fixed.SER.key
-#: staff.marc.file.publish.key
-#: staff.patron_display.checkout.submit_label.accesskey
+msgctxt "staff.auth.submit_prompt.key"
msgid "S"
msgstr ""
msgstr ""
#: staff.bills_interface_label
-msgid "BILLS"
+msgctxt "staff.bills_interface_label"
+msgid "Bills"
msgstr ""
#: staff.bills_money_label
msgstr ""
#: staff.bills_xact_dates_label
-msgid "Record / Dates"
+msgid "Record and Dates"
+msgstr ""
+
+#: staff.browse_list.barcode
+msgctxt "staff.browse_list.barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.browse_list.callnumber
+msgctxt "staff.browse_list.callnumber"
+msgid "Call Number"
msgstr ""
#: staff.browse_list.circ_as_type
msgstr ""
#: staff.browse_list.circ_lib
-msgid "Circulating Lib"
+msgctxt "staff.browse_list.circ_lib"
+msgid "Circulating Library"
+msgstr ""
+
+#: staff.browse_list.circ_modifier
+msgid "Circ Modifier"
msgstr ""
#: staff.browse_list.circulate
+msgctxt "staff.browse_list.circulate"
msgid "Circulate"
msgstr ""
+#: staff.browse_list.copy_number
+msgctxt "staff.browse_list.copy_number"
+msgid "Copy Number"
+msgstr ""
+
#: staff.browse_list.create_date
msgid "Creation Date"
msgstr ""
msgid "Creator"
msgstr ""
+#: staff.browse_list.deposit
+msgctxt "staff.browse_list.deposit"
+msgid "Deposit"
+msgstr ""
+
+#: staff.browse_list.deposit_amount
+msgctxt "staff.browse_list.deposit_amount"
+msgid "Deposit Amount"
+msgstr ""
+
#: staff.browse_list.edit_date
msgid "Edit Date"
msgstr ""
msgid "Editor"
msgstr ""
+#: staff.browse_list.fine_level
+msgctxt "staff.browse_list.fine_level"
+msgid "Fine Level"
+msgstr ""
+
#: staff.browse_list.library
msgid "Owning Lib"
msgstr ""
+#: staff.browse_list.loan_duration
+msgctxt "staff.browse_list.loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
#: staff.browse_list.location
-msgid "Location/Barcode"
+msgid "Location and Barcode"
+msgstr ""
+
+#: staff.browse_list.location2
+msgctxt "staff.browse_list.location2"
+msgid "Location"
msgstr ""
#: staff.browse_list.opac_visible
-#: staff.copy.notes.opac
+msgctxt "staff.browse_list.opac_visible"
msgid "OPAC"
msgstr ""
+#: staff.browse_list.price
+msgctxt "staff.browse_list.price"
+msgid "Price"
+msgstr ""
+
#: staff.browse_list.ref
-#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.browse_list.ref"
msgid "Reference"
msgstr ""
#: staff.browse_list.shelving_loc
-#: staff.copy.attr.shelving_location
+msgctxt "staff.browse_list.shelving_loc"
msgid "Shelving Location"
msgstr ""
+#: staff.browse_list.status
+msgctxt "staff.browse_list.status"
+msgid "Status"
+msgstr ""
+
#: staff.browse_list.win_title
-#: staff.record_list.win_title
+msgctxt "staff.browse_list.win_title"
msgid "Cataloging"
msgstr ""
msgstr ""
#: staff.cat.fixed.BKS.key
-#: staff.copy.bucket.key
-#: staff.main.menu.cat.add_bib.key
-#: staff.main.menu.cat.bib_status.key
-#: staff.main.menu.cat.copy_status.accesskey
-#: staff.main.menu.circ.barcode.show_item.accesskey
-#: staff.main.menu.edit.buckets.copies.accesskey
-#: staff.main.menu.edit.buckets.key
-#: staff.marc.display.fixed.BKS.key
-#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.cat.fixed.BKS.key"
msgid "B"
msgstr ""
msgstr ""
#: staff.cat.fixed.COM.key
-#: staff.cat.search_order.key
-#: staff.main.menu.circ.checkout.key
-#: staff.main.menu.file.open.key
-#: staff.marc.display.fixed.COM.key
+msgctxt "staff.cat.fixed.COM.key"
msgid "O"
msgstr ""
msgid "MAP"
msgstr ""
+#: staff.cat.fixed.MAP.key
+msgctxt "staff.cat.fixed.MAP.key"
+msgid "P"
+msgstr ""
+
#: staff.cat.fixed.MIX
msgid "MIX"
msgstr ""
#: staff.cat.fixed.MIX.key
-#: staff.main.menu.cat.dedup.key
-#: staff.main.menu.circ.missing.key
-#: staff.marc.display.fixed.MIX.key
-#: staff.marc.file.key
+msgctxt "staff.cat.fixed.MIX.key"
msgid "M"
msgstr ""
msgstr ""
#: staff.cat.fixed.REC.key
-#: staff.checkin_patron.retrieve.accesskey
-#: staff.copy.reload.key
-#: staff.hold_capture_patron.retrieve.accesskey
-#: staff.main.auth.retest.accesskey
-#: staff.main.menu.circ.patron_registration.key
-#: staff.main.menu.edit.buckets.records.accesskey
-#: staff.main.menu.edit.redo.key
-#: staff.main.menu.entity.patron.register.key
-#: staff.marc.display.fixed.REC.key
-#: staff.marc.file.reload.key
-#: staff.patron_navbar.refresh.accesskey
-#: staff.patron_navbar.retrieve.accesskey
+msgctxt "staff.cat.fixed.REC.key"
msgid "R"
msgstr ""
msgid "SCO"
msgstr ""
+#: staff.cat.fixed.SCO.key
+msgctxt "staff.cat.fixed.SCO.key"
+msgid "C"
+msgstr ""
+
#: staff.cat.fixed.SER
msgid "SER"
msgstr ""
+#: staff.cat.fixed.SER.key
+msgctxt "staff.cat.fixed.SER.key"
+msgid "S"
+msgstr ""
+
#: staff.cat.fixed.VIS
msgid "VIS"
msgstr ""
#: staff.cat.fixed.VIS.key
-#: staff.cat.search_advanced.key
-#: staff.main.menu.cat.add_volume.key
-#: staff.main.menu.cat.volume_status.key
-#: staff.main.menu.edit.buckets.volumes.accesskey
-#: staff.marc.display.fixed.VIS.key
-#: staff.marc.file.validate.key
+msgctxt "staff.cat.fixed.VIS.key"
msgid "V"
msgstr ""
#: staff.cat.opac.add_bucket.label
#: staff.cat.opac.add_bucket.accesskey
+msgctxt "staff.cat.opac.add_bucket.label staff.cat.opac.add_bucket.accesskey"
msgid "Add to &Bucket"
msgstr ""
#: staff.cat.opac.bib_in_new_tab.label
+msgctxt "staff.cat.opac.bib_in_new_tab.label"
msgid "Duplicate in New Tab"
msgstr ""
#: staff.cat.opac.copy_browse.label
#: staff.cat.opac.copy_browse.accesskey
+msgctxt "staff.cat.opac.copy_browse.label staff.cat.opac.copy_browse.accesskey"
msgid "&Holdings Maintenance"
msgstr ""
#: staff.cat.opac.marc_edit.label
#: staff.cat.opac.marc_edit.accesskey
+msgctxt "staff.cat.opac.marc_edit.label staff.cat.opac.marc_edit.accesskey"
msgid "MARC &Edit"
msgstr ""
#: staff.cat.opac.marc_view.label
#: staff.cat.opac.marc_view.accesskey
+msgctxt "staff.cat.opac.marc_view.label staff.cat.opac.marc_view.accesskey"
msgid "MARC &View"
msgstr ""
msgid "&Delete Record"
msgstr ""
+#: staff.cat.opac.undelete_record.label
+#: staff.cat.opac.undelete_record.accesskey
+msgid "&Undelete Record"
+msgstr ""
+
#: staff.cat.opac.menu.label
#: staff.cat.opac.menu.accesskey
msgid "&Actions for this Record"
#: staff.cat.opac.opac_view.label
#: staff.cat.opac.opac_view.accesskey
+msgctxt "staff.cat.opac.opac_view.label staff.cat.opac.opac_view.accesskey"
msgid "&OPAC View"
msgstr ""
msgstr ""
#: staff.cat.opac.remove_me.label
+msgctxt "staff.cat.opac.remove_me.label"
msgid "Remove this Frame"
msgstr ""
#: staff.cat.opac.view_holds.label
#: staff.cat.opac.view_holds.accesskey
+msgctxt "staff.cat.opac.view_holds.label staff.cat.opac.view_holds.accesskey"
msgid "View Hold&s"
msgstr ""
#: staff.cat.popup.add_to_bucket
-#: staff.copy.bucket
+msgctxt "staff.cat.popup.add_to_bucket"
msgid "Add to Bucket"
msgstr ""
#: staff.cat.popup.add_to_bucket.key
msgid ""
"_: staff.cat.popup.add_to_bucket.key\n"
+""
msgstr ""
#: staff.cat.popup.browse.record.tab.key
+msgctxt "staff.cat.popup.browse.record.tab.key"
msgid ""
-"_: staff.cat.popup.browse.record.tab.key\n"
msgstr ""
#: staff.cat.popup.browse.record.window.key
+msgctxt "staff.cat.popup.browse.record.window.key"
msgid ""
-"_: staff.cat.popup.browse.record.window.key\n"
msgstr ""
#: staff.cat.popup.browse_record.tab
msgstr ""
#: staff.cat.popup.edit.record.tab.key
+msgctxt "staff.cat.popup.edit.record.tab.key"
msgid ""
-"_: staff.cat.popup.edit.record.tab.key\n"
msgstr ""
#: staff.cat.popup.edit.record.window.key
+msgctxt "staff.cat.popup.edit.record.window.key"
msgid ""
-"_: staff.cat.popup.edit.record.window.key\n"
msgstr ""
#: staff.cat.popup.edit_record.tab
msgid "Advanced"
msgstr ""
+#: staff.cat.search_advanced.key
+msgctxt "staff.cat.search_advanced.key"
+msgid "V"
+msgstr ""
+
+#: staff.cat.search_all
+msgctxt "staff.cat.search_all"
+msgid "Keyword"
+msgstr ""
+
+#: staff.cat.search_author
+msgctxt "staff.cat.search_author"
+msgid "Author"
+msgstr ""
+
#: staff.cat.search_barcode
+msgctxt "staff.cat.search_barcode"
msgid "Item Barcode"
msgstr ""
+#: staff.cat.search_callnumber
+msgctxt "staff.cat.search_callnumber"
+msgid "Call Number"
+msgstr ""
+
+#: staff.cat.search_count_copy
+msgctxt "staff.cat.search_count_copy"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.search_count_copy.key
+msgctxt "staff.cat.search_count_copy.key"
+msgid "L"
+msgstr ""
+
#: staff.cat.search_count_copy_show
msgid "Show Only These Records"
msgstr ""
msgid "Search Criteria"
msgstr ""
+#: staff.cat.search_format
+msgctxt "staff.cat.search_format"
+msgid "Format"
+msgstr ""
+
#: staff.cat.search_format.key
-#: staff.main.menu.circ.found.key
-#: staff.main.menu.edit.find.key
-#: staff.main.menu.file.key
-#: staff.marc.display.control_fields.key
+msgctxt "staff.cat.search_format.key"
msgid "F"
msgstr ""
msgstr ""
#: staff.cat.search_isbn
-msgid "ISBN/ISSN"
+msgid "ISBN or ISSN"
+msgstr ""
+
+#: staff.cat.search_location
+msgctxt "staff.cat.search_location"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.search_location.key
+msgctxt "staff.cat.search_location.key"
+msgid "L"
msgstr ""
#: staff.cat.search_order
msgid "Order"
msgstr ""
+#: staff.cat.search_order.key
+msgctxt "staff.cat.search_order.key"
+msgid "O"
+msgstr ""
+
#: staff.cat.search_pubyear
-#: staff.record_list.pubyear
+msgctxt "staff.cat.search_pubyear"
msgid "Pub Year"
msgstr ""
+#: staff.cat.search_subject
+msgctxt "staff.cat.search_subject"
+msgid "Subject"
+msgstr ""
+
#: staff.cat.search_submit
-#: staff.main.menu.search.label
+msgctxt "staff.cat.search_submit"
msgid "Search"
msgstr ""
+#: staff.cat.search_submit.key
+msgctxt "staff.cat.search_submit.key"
+msgid "S"
+msgstr ""
+
#: staff.cat.search_tcn
-#: staff.record_list.tcn
+msgctxt "staff.cat.search_tcn"
msgid "TCN"
msgstr ""
msgid "e"
msgstr ""
+#: staff.cat.search_title
+msgctxt "staff.cat.search_title"
+msgid "Title"
+msgstr ""
+
+#: staff.cat.search_type
+msgctxt "staff.cat.search_type"
+msgid "Type"
+msgstr ""
+
#: staff.cat.search_type.key
-#: staff.main.menu.file.new_tab.key
+msgctxt "staff.cat.search_type.key"
msgid "T"
msgstr ""
msgstr ""
#: staff.cat.test.key
-#: staff.main.menu.edit.key
-#: staff.marc.display.meta_data.key
-#: staff.marc.file.export.key
-#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.cat.test.key"
msgid "E"
msgstr ""
msgstr ""
#: staff.cat.type_of_material.r
-msgid "Three-dimensional Artifact or Naturally Occuring Object"
+msgid "Three-dimensional Artifact or Naturally Occurring Object"
msgstr ""
#: staff.cat.type_of_material.t
msgstr ""
#: staff.checkin.auto_print_label
-#: staff.hold_capture.auto_print_label
-#: staff.patron_display.checkout.auto_print_label
+msgctxt "staff.checkin.auto_print_label"
msgid "Auto-Print"
msgstr ""
#: staff.checkin.auto_print_label.accesskey
-#: staff.copy.notes.add.key
-#: staff.hold_capture.auto_print_label.accesskey
-#: staff.main.menu.edit.select_all.key
-#: staff.main.menu.tabs.close.accesskey
-#: staff.marc.display.cover_art.key
-#: staff.patron_display.checkout.auto_print_label.accesskey
+msgctxt "staff.checkin.auto_print_label.accesskey"
msgid "A"
msgstr ""
#: staff.checkin.done_label
-#: staff.hold_capture.done_label
-#: staff.patron_display.checkout.done_label
msgid "Done"
msgstr ""
#: staff.checkin.done_label.accesskey
-#: staff.copy.notes.delete.key
-#: staff.hold_capture.done_label.accesskey
-#: staff.main.menu.edit.delete.key
-#: staff.marc.display.key
-#: staff.patron_display.checkout.done_label.accesskey
+msgctxt "staff.checkin.done_label.accesskey"
msgid "D"
msgstr ""
-#: staff.checkin.print_receipt_label
-#: staff.hold_capture.print_receipt_label
+#: staff.checkin.print_receipt.label
+msgctxt "staff.checkin.print_receipt.label"
msgid "Print List"
msgstr ""
-#: staff.checkin.print_receipt_label.accesskey
+#: staff.checkin.print_receipt.accesskey
+msgctxt "staff.checkin.print_receipt.accesskey"
msgid ""
-"_: staff.checkin.print_receipt_label.accesskey\n"
msgstr ""
#: staff.checkin.reprint_receipt_label
-#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.checkin.reprint_receipt_label"
msgid "Re-Print Last List"
msgstr ""
+#: staff.checkin.reprint_receipt_label.accesskey
+msgctxt "staff.checkin.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
#: staff.checkin_interface_label
-msgid "CHECK IN"
+msgctxt "staff.checkin_interface_label"
+msgid "Check In"
msgstr ""
#: staff.checkin_label_route_to
msgid "Route To"
msgstr ""
+#: staff.checkin_label_status
+msgctxt "staff.checkin_label_status"
+msgid "Status"
+msgstr ""
+
#: staff.checkin_label_text
msgid "Message"
msgstr ""
#: staff.checkin_patron.name.label
-#: staff.hold_capture_patron.name.label
-#: staff.patron_display.name.label
+msgctxt "staff.checkin_patron.name.label"
msgid "Patron Name"
msgstr ""
#: staff.checkin_patron.retrieve
-#: staff.hold_capture_patron.retrieve
-#: staff.patron.context_display
-#: staff.patron_navbar.retrieve
+msgctxt "staff.checkin_patron.retrieve"
msgid "Retrieve Patron"
msgstr ""
+#: staff.checkin_patron.retrieve.accesskey
+msgctxt "staff.checkin_patron.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.checkout_interface_label
-msgid "CHECK OUT"
+msgctxt "staff.checkout_interface_label"
+msgid "Check Out"
msgstr ""
#: staff.circ.offline.main.label
#: staff.circ.offline.cmd_exit.label
#: staff.circ.offline.cmd_exit.accesskey
+msgctxt "staff.circ.offline.cmd_exit.label staff.circ.offline.cmd_exit.accesskey"
msgid "E&xit"
msgstr ""
msgid "Standalone Check In"
msgstr ""
+#: staff.circ.offline_checkin.step2a.label
+#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "staff.circ.offline_checkin.step2a.label staff.circ.offline_checkin.step2a.accesskey"
+msgid "&Enter"
+msgstr ""
+
#: staff.circ.offline_checkin.step3.description
msgid "Repeat Steps 2 until done."
msgstr ""
#: staff.circ.offline.finish.description
-#: staff.mbts_xact_finish_label
+msgctxt "staff.circ.offline.finish.description"
msgid "Finish"
msgstr ""
msgstr ""
#: staff.circ.offline_checkout.step5.description
-#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_checkout.step5.description"
msgid "Repeat Steps 3 and 4 until done."
msgstr ""
msgstr ""
#: staff.circ.offline_register.x_home_ou.label
-#: staff.patron_display.home_ou.label
+msgctxt "staff.circ.offline_register.x_home_ou.label"
msgid "Home Library:"
msgstr ""
#: staff.circ.offline_register.x_profile.label
-#: staff.patron_display.profile.label
+msgctxt "staff.circ.offline_register.x_profile.label"
msgid "Profile:"
msgstr ""
msgstr ""
#: staff.circ.offline_register.family_name.label
-#: staff.patron_display.family_name.label
+msgctxt "staff.circ.offline_register.family_name.label"
msgid "Last Name:"
msgstr ""
#: staff.circ.offline_register.first_given_name.label
-#: staff.patron_display.first_given_name.label
-#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.circ.offline_register.first_given_name.label"
msgid "First Name:"
msgstr ""
#: staff.circ.offline_register.dob.label
+msgctxt "staff.circ.offline_register.dob.label"
msgid "Date of Birth:"
msgstr ""
#: staff.circ.offline_register.x_ident_type.label
-msgid "Ident Type:"
+msgid "Identification Type:"
msgstr ""
#: staff.circ.offline_register.ident_value.label
msgid "Ident Value:"
msgstr ""
+#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.circ.offline_register.billing_address.label"
+msgid "Billing Address"
+msgstr ""
+
#: staff.circ.offline_register.street1.label
msgid "Line 1"
msgstr ""
msgstr ""
#: staff.circ.offline_register.city.label
+msgctxt "staff.circ.offline_register.city.label"
msgid "City"
msgstr ""
#: staff.circ.offline_register.state.label
+msgctxt "staff.circ.offline_register.state.label"
msgid "State"
msgstr ""
msgstr ""
#: staff.circ.offline_register.country.label
+msgctxt "staff.circ.offline_register.country.label"
msgid "Country"
msgstr ""
msgid "(Optional) Enter the patron's barcode:"
msgstr ""
+#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_renew.step5.label"
+msgid "Repeat Steps 3 and 4 until done."
+msgstr ""
+
#: staff.circ.checkin.caption
-#: staff.circ.context_checkin
+msgctxt "staff.circ.checkin.caption"
msgid "Check In"
msgstr ""
-#: staff.circ.checkin.scan_label
-#: staff.circ.hold_capture.scan_label
-#: staff.patron_display.checkout.scan_label
-msgid "Enter Barcode:"
+#: staff.circ.checkin.scan.label
+#: staff.circ.checkin.scan.accesskey
+msgctxt "staff.circ.checkin.scan.label staff.circ.checkin.scan.accesskey"
+msgid "Enter B&arcode:"
msgstr ""
-#: staff.circ.checkin.scan_label.accesskey
-#: staff.circ.hold_capture.scan_label.accesskey
-#: staff.main.menu.cat.key
-#: staff.patron_display.checkout.scan_label.accesskey
-msgid "a"
+#: staff.circ.checkin.submit.label
+#: staff.circ.checkin.submit.accesskey
+msgctxt "staff.circ.checkin.submit.label staff.circ.checkin.submit.accesskey"
+msgid "&Submit"
msgstr ""
#: staff.circ.context_cancel_hold
+msgctxt "staff.circ.context_cancel_hold"
msgid "Cancel Hold"
msgstr ""
+#: staff.circ.context_checkin
+msgctxt "staff.circ.context_checkin"
+msgid "Check In"
+msgstr ""
+
#: staff.circ.context_edit
msgid "Edit Copy"
msgstr ""
msgstr ""
#: staff.circ.context_renew
-#: staff.main.menu.circ.renew.label
+msgctxt "staff.circ.context_renew"
msgid "Renew"
msgstr ""
msgid "Capture Hold"
msgstr ""
+#: staff.circ.hold_capture.scan_label
+msgid "Enter Barcode:"
+msgstr ""
+
+#: staff.circ.hold_capture.scan_label.accesskey
+msgctxt "staff.circ.hold_capture.scan_label.accesskey"
+msgid "a"
+msgstr ""
+
+#: staff.circ.hold_capture.submit_label
+msgctxt "staff.circ.hold_capture.submit_label"
+msgid "Submit"
+msgstr ""
+
+#: staff.circ.hold_capture.submit_label.accesskey
+msgctxt "staff.circ.hold_capture.submit_label.accesskey"
+msgid "S"
+msgstr ""
+
#: staff.circ_label_due_date
+msgctxt "staff.circ_label_due_date"
msgid "Due Date"
msgstr ""
#: staff.circ_label_id
-msgid "Circ Id"
+msgid "Circulation ID"
msgstr ""
#: staff.circ_label_renewal_remaining
msgstr ""
#: staff.circ_label_xact_finish
-msgid "Checkin Date"
+msgid "Check in Date"
msgstr ""
#: staff.circ_label_xact_start
-msgid "Checkout Date"
+msgid "Check out Date"
msgstr ""
#: staff.copies_editor_interface_label
-msgid "COPIES EDIT"
+msgid "Copies Edit"
+msgstr ""
+
+#: staff.copy.attr.barcode
+msgctxt "staff.copy.attr.barcode"
+msgid "Barcode"
msgstr ""
#: staff.copy.attr.circulate
msgstr ""
#: staff.copy.attr.circulate.no
-#: staff.copy.attr.deposit.no
-#: staff.copy.attr.notes_viewable.example2
-#: staff.copy.attr.opac_visible.no
-#: staff.copy.attr.reference_material.no
+msgctxt "staff.copy.attr.circulate.no"
msgid "No"
msgstr ""
#: staff.copy.attr.circulate.yes
-#: staff.copy.attr.deposit.yes
-#: staff.copy.attr.notes_viewable.example1
-#: staff.copy.attr.opac_visible.yes
-#: staff.copy.attr.reference_material.yes
+msgctxt "staff.copy.attr.circulate.yes"
msgid "Yes"
msgstr ""
#: staff.copy.attr.circulating_lib
+msgctxt "staff.copy.attr.circulating_lib"
msgid "Circulating Library"
msgstr ""
msgid "Deposit?"
msgstr ""
+#: staff.copy.attr.deposit.no
+msgctxt "staff.copy.attr.deposit.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.deposit.yes
+msgctxt "staff.copy.attr.deposit.yes"
+msgid "Yes"
+msgstr ""
+
#: staff.copy.attr.deposit_amount
+msgctxt "staff.copy.attr.deposit_amount"
msgid "Amount"
msgstr ""
msgid "Deposit Notes"
msgstr ""
+#: staff.copy.attr.fine_level
+msgctxt "staff.copy.attr.fine_level"
+msgid "Fine Level"
+msgstr ""
+
#: staff.copy.attr.fine_level.high
msgid "High"
msgstr ""
msgstr ""
#: staff.copy.attr.fine_level.normal
-#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.fine_level.normal"
msgid "Normal"
msgstr ""
msgstr ""
#: staff.copy.attr.home_lib
+msgctxt "staff.copy.attr.home_lib"
msgid "Home Library"
msgstr ""
+#: staff.copy.attr.loan_duration
+msgctxt "staff.copy.attr.loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
#: staff.copy.attr.loan_duration.long
msgid "Long"
msgstr ""
+#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
#: staff.copy.attr.loan_duration.short
msgid "Short"
msgstr ""
msgid "Copy Notes Patron Viewable?"
msgstr ""
+#: staff.copy.attr.notes_viewable.example1
+msgctxt "staff.copy.attr.notes_viewable.example1"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.notes_viewable.example2
+msgctxt "staff.copy.attr.notes_viewable.example2"
+msgid "No"
+msgstr ""
+
#: staff.copy.attr.opac_visible
msgid "OPAC Visible?"
msgstr ""
+#: staff.copy.attr.opac_visible.no
+msgctxt "staff.copy.attr.opac_visible.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.opac_visible.yes
+msgctxt "staff.copy.attr.opac_visible.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.price
+msgctxt "staff.copy.attr.price"
+msgid "Price"
+msgstr ""
+
#: staff.copy.attr.reference_material
msgid "Reference Material?"
msgstr ""
+#: staff.copy.attr.reference_material.no
+msgctxt "staff.copy.attr.reference_material.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.reference_material.yes
+msgctxt "staff.copy.attr.reference_material.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.shelving_location
+msgctxt "staff.copy.attr.shelving_location"
+msgid "Shelving Location"
+msgstr ""
+
#: staff.copy.attr.shelving_location.example1
msgid "Stacks"
msgstr ""
msgid "Garden Room"
msgstr ""
+#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.copy.attr.shelving_location.example5"
+msgid "Reference"
+msgstr ""
+
#: staff.copy.attr.shelving_location.example6
msgid "Ready Reference"
msgstr ""
msgstr ""
#: staff.copy.attr.shelving_location.example8
-#: staff.marc.display
+msgctxt "staff.copy.attr.shelving_location.example8"
msgid "Display"
msgstr ""
msgstr ""
#: staff.copy.attr.stat.genre.example16
-#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.copy.attr.stat.genre.example16"
msgid "Biography"
msgstr ""
#: staff.copy.attr.stat.genre.example17
-#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example17"
msgid "Holiday"
msgstr ""
msgid "Historical"
msgstr ""
+#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example4"
+msgid "Holiday"
+msgstr ""
+
#: staff.copy.attr.stat.genre.example5
msgid "Horror"
msgstr ""
msgid "Sci-fi"
msgstr ""
+#: staff.copy.bucket
+msgctxt "staff.copy.bucket"
+msgid "Add to Bucket"
+msgstr ""
+
+#: staff.copy.bucket.key
+msgctxt "staff.copy.bucket.key"
+msgid "B"
+msgstr ""
+
#: staff.copy.clone
msgid "Clone Copy"
msgstr ""
#: staff.copy.clone.key
+msgctxt "staff.copy.clone.key"
msgid ""
-"_: staff.copy.clone.key\n"
msgstr ""
#: staff.copy.close
msgid "Close Window"
msgstr ""
+#: staff.copy.close.key
+msgctxt "staff.copy.close.key"
+msgid "C"
+msgstr ""
+
#: staff.copy.default.attr
msgid "Default Attributes"
msgstr ""
#: staff.copy.default.attr.value
-#: staff.copy.local.attr.value
-#: staff.copy.pines.attr.value
+msgctxt "staff.copy.default.attr.value"
msgid "Value"
msgstr ""
msgstr ""
#: staff.copy.delete.key
+msgctxt "staff.copy.delete.key"
msgid ""
-"_: staff.copy.delete.key\n"
msgstr ""
#: staff.copy.edit_categories
msgid "Local Attributes"
msgstr ""
+#: staff.copy.local.attr.value
+msgctxt "staff.copy.local.attr.value"
+msgid "Value"
+msgstr ""
+
#: staff.copy.notes
+msgctxt "staff.copy.notes"
msgid "Note"
msgstr ""
msgid "Add Note"
msgstr ""
+#: staff.copy.notes.add.key
+msgctxt "staff.copy.notes.add.key"
+msgid "A"
+msgstr ""
+
#: staff.copy.notes.date
msgid "Date"
msgstr ""
msgid "Delete Note"
msgstr ""
+#: staff.copy.notes.delete.key
+msgctxt "staff.copy.notes.delete.key"
+msgid "D"
+msgstr ""
+
#: staff.copy.notes.from
msgid "From"
msgstr ""
-#: staff.copy.pines.attr
-msgid "PINES Attributes"
+#: staff.copy.notes.opac
+msgctxt "staff.copy.notes.opac"
+msgid "OPAC"
msgstr ""
#: staff.copy.reload
msgid "Reload Copy"
msgstr ""
+#: staff.copy.reload.key
+msgctxt "staff.copy.reload.key"
+msgid "R"
+msgstr ""
+
#: staff.copy.save
msgid "Save Copy"
msgstr ""
+#: staff.copy.save.key
+msgctxt "staff.copy.save.key"
+msgid "S"
+msgstr ""
+
#: staff.copy.title
msgid "Barcode goes here"
msgstr ""
msgstr ""
#: staff.copy.transfer.key
+msgctxt "staff.copy.transfer.key"
msgid ""
-"_: staff.copy.transfer.key\n"
msgstr ""
#: staff.copy.wizard.title
msgstr ""
#: staff.copy_browser_interface_label
-msgid "COPIES"
+msgctxt "staff.copy_browser_interface_label"
+msgid "Copies"
msgstr ""
#: staff.copy_stat_cat_editor_interface_label
-msgid "COPY STAT-CATS"
+msgid "Copy statistical categories"
msgstr ""
#: staff.display_patron_interface_label
-msgid "DISPLAY PATRON"
+msgid "Display patron"
msgstr ""
#: staff.displaying.hits_per_page
msgid "Results per page"
msgstr ""
+#: staff.displaying.of
+msgctxt "staff.displaying.of"
+msgid "of"
+msgstr ""
+
#: staff.displaying.results
msgid "Displaying results"
msgstr ""
#: staff.fieldmapper_label
-msgid "FIELDMAPPER"
+msgid "Fieldmapper"
msgstr ""
#: staff.filter_console_label
-msgid "FCONSOLE"
+msgid "Filter Console"
msgstr ""
-#: staff.hold_capture.print_receipt_label.accesskey
+#: staff.hold_capture.auto_print.label
+#: staff.hold_capture.auto_print.accesskey
+msgctxt "staff.hold_capture.auto_print.label staff.hold_capture.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr ""
+
+#: staff.hold_capture.done.label
+#: staff.hold_capture.done.accesskey
+msgctxt "staff.hold_capture.done.label staff.hold_capture.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.hold_capture.print_receipt.label
+msgctxt "staff.hold_capture.print_receipt.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.hold_capture.print_receipt.accesskey
+msgctxt "staff.hold_capture.print_receipt.accesskey"
msgid ""
-"_: staff.hold_capture.print_receipt_label.accesskey\n"
+msgstr ""
+
+#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.hold_capture.reprint_receipt_label"
+msgid "Re-Print Last List"
+msgstr ""
+
+#: staff.hold_capture.reprint_receipt_label.accesskey
+msgctxt "staff.hold_capture.reprint_receipt_label.accesskey"
+msgid "L"
msgstr ""
#: staff.hold_capture_interface_label
-msgid "HOLD CAPTURE"
+msgid "Hold capture"
+msgstr ""
+
+#: staff.hold_capture_patron.name.label
+msgctxt "staff.hold_capture_patron.name.label"
+msgid "Patron Name"
+msgstr ""
+
+#: staff.hold_capture_patron.retrieve
+msgctxt "staff.hold_capture_patron.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.hold_capture_patron.retrieve.accesskey
+msgctxt "staff.hold_capture_patron.retrieve.accesskey"
+msgid "R"
msgstr ""
#: staff.holds_status_available
msgstr ""
#: staff.holds_status_in_transit
+msgctxt "staff.holds_status_in_transit"
msgid "In Transit"
msgstr ""
msgstr ""
#: staff.items_out_interface_label
-msgid "ITEMS OUT"
+msgid "Items out"
msgstr ""
#: staff.javascript_console_label
-msgid "CONSOLE"
+msgid "Console"
msgstr ""
#: staff.javascript_shell_label
-msgid "JS SHELL"
+msgid "JavaScript Shell"
msgstr ""
#: staff.main.auth.caption
-msgid "Authentication"
+msgid "Startup and Shutdown"
msgstr ""
-#: staff.main.auth.caption
-msgid "Startup / Shutdown"
+#: staff.main.authentication.caption
+msgid "Authentication"
msgstr ""
#: staff.main.auth.debug.caption
msgstr ""
#: staff.main.auth.debug.clear
-#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.auth.debug.clear"
msgid "Clear Cache"
msgstr ""
+#: staff.main.auth.debug.clear.accesskey
+msgctxt "staff.main.auth.debug.clear.accesskey"
+msgid "C"
+msgstr ""
+
#: staff.main.auth.debug.javascript
-msgid "Javascript Console"
+msgid "JavaScript Console"
msgstr ""
#: staff.main.auth.debug.javascript.accesskey
msgstr ""
#: staff.main.auth.hostname.accesskey
-#: staff.main.menu.circ.hold_capture.key
-#: staff.main.menu.circ.place_hold.key
-#: staff.main.menu.help.key
-#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.main.auth.hostname.accesskey"
msgid "H"
msgstr ""
msgid "Standalone Interface"
msgstr ""
+#: staff.main.auth.offline.interface.accesskey
+msgctxt "staff.main.auth.offline.interface.accesskey"
+msgid "S"
+msgstr ""
+
#: staff.main.auth.retest
msgid "Re-Test Server"
msgstr ""
+#: staff.main.auth.retest.accesskey
+msgctxt "staff.main.auth.retest.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.main.auth.server
msgid "Server"
msgstr ""
+#: staff.main.auth.status
+msgctxt "staff.main.auth.status"
+msgid "Status"
+msgstr ""
+
#: staff.main.auth.version
msgid "Version"
msgstr ""
msgstr ""
#: staff.main.menu.admin.accesskey
-#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.accesskey"
msgid "-"
msgstr ""
msgstr ""
#: staff.main.menu.admin.clear_cache.accesskey
-#: staff.marc.008.SER.cont.field_size
-#: staff.marc.008.ctry.field_size
-#: staff.marc.008.lang.field_size
+msgctxt "staff.main.menu.admin.clear_cache.accesskey"
msgid "3"
msgstr ""
+#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.menu.admin.clear_cache.label"
+msgid "Clear Cache"
+msgstr ""
+
#: staff.main.menu.admin.cmd_console.label
#: staff.main.menu.admin.cmd_console.accesskey
-msgid "&Javascript Console"
+msgid "&JavaScript Console"
msgstr ""
#: staff.main.menu.admin.cmd_shell.label
#: staff.main.menu.admin.cmd_shell.accesskey
-msgid "Javascript S&hell"
+msgid "JavaScript S&hell"
msgstr ""
#: staff.main.menu.admin.cmd_test.label
msgid "Copy &Location Editor"
msgstr ""
+#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.developer.accesskey"
+msgid "-"
+msgstr ""
+
#: staff.main.menu.admin.developer.label
msgid "For developers..."
msgstr ""
msgid "Catalo&ging"
msgstr ""
+#: staff.main.menu.cat.add_bib.key
+msgctxt "staff.main.menu.cat.add_bib.key"
+msgid "B"
+msgstr ""
+
#: staff.main.menu.cat.add_bib.label
msgid "Add Bib Record"
msgstr ""
#: staff.main.menu.cat.add_copy.key
-#: staff.main.menu.cat.copy_status.key
-#: staff.main.menu.circ.copy_status.key
-#: staff.patron_navbar.items.accesskey
+msgctxt "staff.main.menu.cat.add_copy.key"
msgid "I"
msgstr ""
msgid "Add Item"
msgstr ""
+#: staff.main.menu.cat.add_volume.key
+msgctxt "staff.main.menu.cat.add_volume.key"
+msgid "V"
+msgstr ""
+
#: staff.main.menu.cat.add_volume.label
msgid "Add Volume"
msgstr ""
+#: staff.main.menu.cat.bib_search.key
+msgctxt "staff.main.menu.cat.bib_search.key"
+msgid "S"
+msgstr ""
+
#: staff.main.menu.cat.bib_search.label
msgid "Search the Catalog"
msgstr ""
+#: staff.main.menu.cat.bib_status.key
+msgctxt "staff.main.menu.cat.bib_status.key"
+msgid "B"
+msgstr ""
+
#: staff.main.menu.cat.bib_status.label
msgid "Display Bib Record"
msgstr ""
+#: staff.main.menu.cat.copy_status.accesskey
+msgctxt "staff.main.menu.cat.copy_status.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.cat.copy_status.key
+msgctxt "staff.main.menu.cat.copy_status.key"
+msgid "I"
+msgstr ""
+
#: staff.main.menu.cat.copy_status.label
-#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.cat.copy_status.label"
msgid "Display Item"
msgstr ""
msgid "Create &New Marc Record"
msgstr ""
+#: staff.main.menu.cat.dedup.key
+msgctxt "staff.main.menu.cat.dedup.key"
+msgid "M"
+msgstr ""
+
#: staff.main.menu.cat.dedup.label
-msgid "Merge/Transfer Interface"
+msgid "Merge and Transfer Interface"
msgstr ""
#: staff.main.menu.cat.edit_copy_buckets.label
msgid "Manage &User Buckets"
msgstr ""
+#: staff.main.menu.cat.key
+msgctxt "staff.main.menu.cat.key"
+msgid "a"
+msgstr ""
+
#: staff.main.menu.cat.retrieve_last_record.label
#: staff.main.menu.cat.retrieve_last_record.accesskey
msgid "Retrieve &Last Record"
msgid "Retrieve record by &TCN"
msgstr ""
+#: staff.main.menu.cat.search_bib_id.label
+#: staff.main.menu.cat.search_bib_id.accesskey
+msgid "Retrieve record by Record I&D"
+msgstr ""
+
+#: staff.main.menu.cat.volume_status.key
+msgctxt "staff.main.menu.cat.volume_status.key"
+msgid "V"
+msgstr ""
+
#: staff.main.menu.cat.volume_status.label
msgid "Display Volume"
msgstr ""
msgid "Retrieve Patron by Barcode"
msgstr ""
+#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
+msgctxt "staff.main.menu.circ.barcode.retrieve_patron.accesskey"
+msgid "P"
+msgstr ""
+
#: staff.main.menu.circ.barcode.show_item
msgid "Show Item Status by Barcode"
msgstr ""
+#: staff.main.menu.circ.barcode.show_item.accesskey
+msgctxt "staff.main.menu.circ.barcode.show_item.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.circ.checkin.key
+msgctxt "staff.main.menu.circ.checkin.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.circ.checkin.label
msgid "Check In Items"
msgstr ""
+#: staff.main.menu.circ.checkout.key
+msgctxt "staff.main.menu.circ.checkout.key"
+msgid "O"
+msgstr ""
+
#: staff.main.menu.circ.checkout.label
msgid "Check Out Items"
msgstr ""
+#: staff.main.menu.circ.claimed_returned.key
+msgctxt "staff.main.menu.circ.claimed_returned.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.circ.claimed_returned.label
msgid "Mark as \"Claimed Returned\""
msgstr ""
+#: staff.main.menu.circ.copy_status.key
+msgctxt "staff.main.menu.circ.copy_status.key"
+msgid "I"
+msgstr ""
+
+#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.circ.copy_status.label"
+msgid "Display Item"
+msgstr ""
+
+#: staff.main.menu.circ.found.key
+msgctxt "staff.main.menu.circ.found.key"
+msgid "F"
+msgstr ""
+
#: staff.main.menu.circ.found.label
msgid "Mark Found"
msgstr ""
msgid "&Browse Holds Shelf"
msgstr ""
+#: staff.main.menu.circ.hold_capture.key
+msgctxt "staff.main.menu.circ.hold_capture.key"
+msgid "H"
+msgstr ""
+
#: staff.main.menu.circ.hold_capture.label
msgid "Capture Holds"
msgstr ""
msgid "Record &In-House Use"
msgstr ""
+#: staff.main.menu.circ.key
+msgctxt "staff.main.menu.circ.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.circ.label
+msgctxt "staff.main.menu.circ.label"
msgid "Circulation"
msgstr ""
+#: staff.main.menu.circ.lost.key
+msgctxt "staff.main.menu.circ.lost.key"
+msgid "L"
+msgstr ""
+
#: staff.main.menu.circ.lost.label
+msgctxt "staff.main.menu.circ.lost.label"
msgid "Mark Lost"
msgstr ""
#: staff.main.menu.circ.mark_used.key
-#: staff.main.menu.edit.buckets.users.accesskey
-#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.circ.mark_used.key"
msgid "U"
msgstr ""
msgid "Mark Used"
msgstr ""
+#: staff.main.menu.circ.missing.key
+msgctxt "staff.main.menu.circ.missing.key"
+msgid "M"
+msgstr ""
+
#: staff.main.menu.circ.missing.label
msgid "Mark Missing"
msgstr ""
msgid "Enter O&ffline Interface"
msgstr ""
+#: staff.main.menu.circ.patron_registration.key
+msgctxt "staff.main.menu.circ.patron_registration.key"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.circ.patron_registration.label
msgid "Register Patron"
msgstr ""
#: staff.main.menu.circ.patron_retrieve.label
#: staff.main.menu.circ.patron_retrieve.accesskey
+msgctxt "staff.main.menu.circ.patron_retrieve.label staff.main.menu.circ.patron_retrieve.accesskey"
msgid "Retrieve &Last Patron"
msgstr ""
+#: staff.main.menu.circ.patron_status.key
+msgctxt "staff.main.menu.circ.patron_status.key"
+msgid "P"
+msgstr ""
+
#: staff.main.menu.circ.patron_status.label
msgid "Display Patron"
msgstr ""
msgid "Place &Hold"
msgstr ""
+#: staff.main.menu.circ.place_hold.key
+msgctxt "staff.main.menu.circ.place_hold.key"
+msgid "H"
+msgstr ""
+
#: staff.main.menu.circ.quick_add.key
-#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.circ.quick_add.key"
msgid "Q"
msgstr ""
msgid "n"
msgstr ""
+#: staff.main.menu.circ.renew.label
+msgctxt "staff.main.menu.circ.renew.label"
+msgid "Renew"
+msgstr ""
+
#: staff.main.menu.circ.reprint.label
#: staff.main.menu.circ.reprint.accesskey
msgid "Re-Print &Last"
msgstr ""
+#: staff.main.menu.circ.special.key
+msgctxt "staff.main.menu.circ.special.key"
+msgid "S"
+msgstr ""
+
#: staff.main.menu.circ.special.label
msgid "Special Circulation"
msgstr ""
#: staff.main.menu.edit.buckets.copies
+msgctxt "staff.main.menu.edit.buckets.copies"
msgid "Copy Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.copies.accesskey
+msgctxt "staff.main.menu.edit.buckets.copies.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.key
+msgctxt "staff.main.menu.edit.buckets.key"
+msgid "B"
+msgstr ""
+
#: staff.main.menu.edit.buckets.label
msgid "Manage Buckets"
msgstr ""
#: staff.main.menu.edit.buckets.records
+msgctxt "staff.main.menu.edit.buckets.records"
msgid "Record Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.records.accesskey
+msgctxt "staff.main.menu.edit.buckets.records.accesskey"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.edit.buckets.volumes
msgid "Volume Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.volumes.accesskey
+msgctxt "staff.main.menu.edit.buckets.volumes.accesskey"
+msgid "V"
+msgstr ""
+
#: staff.main.menu.edit.buckets.users
msgid "User Buckets"
msgstr ""
+#: staff.main.menu.edit.buckets.users.accesskey
+msgctxt "staff.main.menu.edit.buckets.users.accesskey"
+msgid "U"
+msgstr ""
+
+#: staff.main.menu.edit.copy.key
+msgctxt "staff.main.menu.edit.copy.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.edit.copy.label
+msgctxt "staff.main.menu.edit.copy.label"
msgid "Copy"
msgstr ""
#: staff.main.menu.edit.cut.key
+msgctxt "staff.main.menu.edit.cut.key"
msgid "t"
msgstr ""
msgid "Cut"
msgstr ""
+#: staff.main.menu.edit.delete.key
+msgctxt "staff.main.menu.edit.delete.key"
+msgid "D"
+msgstr ""
+
#: staff.main.menu.edit.delete.label
+msgctxt "staff.main.menu.edit.delete.label"
msgid "Delete"
msgstr ""
+#: staff.main.menu.edit.find.key
+msgctxt "staff.main.menu.edit.find.key"
+msgid "F"
+msgstr ""
+
#: staff.main.menu.edit.find.label
msgid "Find"
msgstr ""
msgid "Find Again"
msgstr ""
+#: staff.main.menu.edit.key
+msgctxt "staff.main.menu.edit.key"
+msgid "E"
+msgstr ""
+
#: staff.main.menu.edit.label
-#: staff.patron_navbar.edit
+msgctxt "staff.main.menu.edit.label"
msgid "Edit"
msgstr ""
+#: staff.main.menu.edit.paste.key
+msgctxt "staff.main.menu.edit.paste.key"
+msgid "P"
+msgstr ""
+
#: staff.main.menu.edit.paste.label
msgid "Paste"
msgstr ""
+#: staff.main.menu.edit.redo.key
+msgctxt "staff.main.menu.edit.redo.key"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.edit.redo.label
msgid "Redo"
msgstr ""
+#: staff.main.menu.edit.select_all.key
+msgctxt "staff.main.menu.edit.select_all.key"
+msgid "A"
+msgstr ""
+
#: staff.main.menu.edit.select_all.label
msgid "Select All"
msgstr ""
+#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.edit.undo.key"
+msgid "U"
+msgstr ""
+
#: staff.main.menu.edit.undo.label
msgid "Undo"
msgstr ""
#: staff.main.menu.entity.bib.key
+msgctxt "staff.main.menu.entity.bib.key"
msgid ""
-"_: staff.main.menu.entity.bib.key\n"
msgstr ""
#: staff.main.menu.entity.bib.label
msgstr ""
#: staff.main.menu.entity.copy.key
+msgctxt "staff.main.menu.entity.copy.key"
msgid ""
-"_: staff.main.menu.entity.copy.key\n"
msgstr ""
#: staff.main.menu.entity.copy.label
msgstr ""
#: staff.main.menu.entity.patron.key
+msgctxt "staff.main.menu.entity.patron.key"
msgid ""
-"_: staff.main.menu.entity.patron.key\n"
msgstr ""
#: staff.main.menu.entity.patron.label
msgid "Patrons"
msgstr ""
+#: staff.main.menu.entity.patron.register.key
+msgctxt "staff.main.menu.entity.patron.register.key"
+msgid "R"
+msgstr ""
+
#: staff.main.menu.entity.volume.key
+msgctxt "staff.main.menu.entity.volume.key"
msgid ""
-"_: staff.main.menu.entity.volume.key\n"
msgstr ""
#: staff.main.menu.entity.volume.label
msgid "Close &Window"
msgstr ""
+#: staff.main.menu.file.close.key
+msgctxt "staff.main.menu.file.close.key"
+msgid "C"
+msgstr ""
+
#: staff.main.menu.file.close_tab.label
#: staff.main.menu.file.close_tab.accesskey
msgid "&Close Tab"
msgstr ""
#: staff.main.menu.file.close_tab.key
+msgctxt "staff.main.menu.file.close_tab.key"
msgid ""
-"_: staff.main.menu.file.close_tab.key\n"
+msgstr ""
+
+#: staff.main.menu.file.key
+msgctxt "staff.main.menu.file.key"
+msgid "F"
msgstr ""
#: staff.main.menu.file.label
msgid "File"
msgstr ""
+#: staff.main.menu.file.new.key
+msgctxt "staff.main.menu.file.new.key"
+msgid "N"
+msgstr ""
+
#: staff.main.menu.file.new.label
msgid "New Window"
msgstr ""
-#: staff.main.menu.file.new_tab.label
-msgid "New Tab"
-msgstr ""
+#: staff.main.menu.file.new_tab.key
+msgctxt "staff.main.menu.file.new_tab.key"
+msgid "T"
+msgstr ""
+
+#: staff.main.menu.file.new_tab.label
+msgid "New Tab"
+msgstr ""
+
+#: staff.main.menu.file.open.key
+msgctxt "staff.main.menu.file.open.key"
+msgid "O"
+msgstr ""
#: staff.main.menu.file.open.label
msgid "Open Session"
msgstr ""
+#: staff.main.menu.file.save.key
+msgctxt "staff.main.menu.file.save.key"
+msgid "S"
+msgstr ""
+
#: staff.main.menu.file.save.label
msgid "Save Session"
msgstr ""
+#: staff.main.menu.help.key
+msgctxt "staff.main.menu.help.key"
+msgid "H"
+msgstr ""
+
#: staff.main.menu.help.label
+msgctxt "staff.main.menu.help.label"
msgid "Help"
msgstr ""
msgid "Quit Program"
msgstr ""
+#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.quit.accesskey"
+msgid "Q"
+msgstr ""
+
#: staff.main.menu.replace_barcode.label
+msgctxt "staff.main.menu.replace_barcode.label"
msgid "Replace Barcode"
msgstr ""
#: staff.main.menu.reports.key
+msgctxt "staff.main.menu.reports.key"
msgid ""
-"_: staff.main.menu.reports.key\n"
msgstr ""
#: staff.main.menu.reports.label
+msgctxt "staff.main.menu.reports.label"
msgid "Reports"
msgstr ""
#: staff.main.menu.search.catalog.label
#: staff.main.menu.search.catalog.accesskey
-msgid "the &Catalog"
+msgid "Search the &Catalog"
msgstr ""
#: staff.main.menu.search.copies.label
#: staff.main.menu.search.copies.accesskey
-msgid "for copies by &Barcode"
+msgid "Search for copies by &Barcode"
msgstr ""
#: staff.main.menu.search.key
msgid "r"
msgstr ""
+#: staff.main.menu.search.label
+msgctxt "staff.main.menu.search.label"
+msgid "Search"
+msgstr ""
+
#: staff.main.menu.search.patrons.label
#: staff.main.menu.search.patrons.accesskey
-msgid "for &Patrons"
+msgid "Search for &Patrons"
msgstr ""
#: staff.main.menu.search.patrons_barcode.label
#: staff.main.menu.search.patrons_barcode.accesskey
-msgid "for patro&n by Barcode"
+msgid "Search for patro&n by Barcode"
msgstr ""
#: staff.main.menu.search.record.label
#: staff.main.menu.search.record.accesskey
-msgid "for record by &TCN"
+msgid "Search for record by &TCN"
+msgstr ""
+
+#: staff.main.menu.search.record_via_id.label
+#: staff.main.menu.search.record_via_id.accesskey
+msgid "Search for record by Record I&D"
msgstr ""
#: staff.main.menu.serials.key
msgstr ""
#: staff.main.menu.serials.label
-#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.main.menu.serials.label"
msgid "Serials"
msgstr ""
msgid "Close All Tabs"
msgstr ""
+#: staff.main.menu.tabs.close.accesskey
+msgctxt "staff.main.menu.tabs.close.accesskey"
+msgid "A"
+msgstr ""
+
#: staff.main.menu.title
msgid "Evergreen Staff Client"
msgstr ""
msgstr ""
#: staff.marc.008.BKS.MAP.indx.field
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
-#: staff.marc.008.BKS.SER.conf.field
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
-#: staff.marc.008.BKS.biog.field
-#: staff.marc.008.BKS.cont.field
-#: staff.marc.008.BKS.fest.field
-#: staff.marc.008.BKS.ills.field
-#: staff.marc.008.BKS.litf.field
-#: staff.marc.008.MAP.VIS.form.field
-#: staff.marc.008.SER.alph.field
-#: staff.marc.008.SER.cont.field
-#: staff.marc.008.SER.entw.field
-#: staff.marc.008.SER.freq.field
-#: staff.marc.008.SER.issn.field
-#: staff.marc.008.SER.orig.field
-#: staff.marc.008.SER.regl.field
-#: staff.marc.008.SER.srtp.field
-#: staff.marc.008.SER.succ.field
-#: staff.marc.008.ctry.field
-#: staff.marc.008.date1.field
-#: staff.marc.008.date2.field
-#: staff.marc.008.dtst.field
-#: staff.marc.008.entered.field
-#: staff.marc.008.lang.field
-#: staff.marc.008.mrec.field
-#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.BKS.MAP.indx.field"
msgid "008"
msgstr ""
#: staff.marc.008.BKS.MAP.indx.field_end_pos
-#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_end_pos"
msgid "31"
msgstr ""
#: staff.marc.008.BKS.MAP.indx.field_size
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
-#: staff.marc.008.BKS.SER.conf.field_size
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
-#: staff.marc.008.BKS.biog.field_size
-#: staff.marc.008.BKS.fest.field_size
-#: staff.marc.008.BKS.litf.field_size
-#: staff.marc.008.MAP.VIS.form.field_size
-#: staff.marc.008.SER.alph.field_size
-#: staff.marc.008.SER.entw.field_size
-#: staff.marc.008.SER.freq.field_size
-#: staff.marc.008.SER.issn.field_size
-#: staff.marc.008.SER.orig.field_size
-#: staff.marc.008.SER.regl.field_size
-#: staff.marc.008.SER.srtp.field_size
-#: staff.marc.008.SER.succ.field_size
-#: staff.marc.008.dtst.field_size
-#: staff.marc.008.mrec.field_size
-#: staff.marc.008.srce.field_size
-#: staff.marc.LDR.blvl.field_size
-#: staff.marc.LDR.ctrl.field_size
-#: staff.marc.LDR.desc.field_size
-#: staff.marc.LDR.elvl.field_size
-#: staff.marc.LDR.rec_stat.field_size
-#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.008.BKS.MAP.indx.field_size"
msgid "1"
msgstr ""
+#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_start_pos"
+msgid "31"
+msgstr ""
+
#: staff.marc.008.BKS.MAP.indx.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
msgstr ""
msgstr ""
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc
-#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc"
msgid "Form of Item"
msgstr ""
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos"
+msgid "23"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos"
msgid "23"
msgstr ""
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.help
-#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.help"
msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
msgstr ""
#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.short
-#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.short"
msgid "Form"
msgstr ""
msgid "Government Publication"
msgstr ""
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos"
+msgid "28"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos"
msgid "28"
msgstr ""
msgid "Conference Publication"
msgstr ""
+#: staff.marc.008.BKS.SER.conf.field
+msgctxt "staff.marc.008.BKS.SER.conf.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.SER.conf.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_end_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field_size
+msgctxt "staff.marc.008.BKS.SER.conf.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.SER.conf.field_start_pos
-#: staff.marc.008.MAP.VIS.form.field_end_pos
-#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_start_pos"
msgid "29"
msgstr ""
msgid "Target Audience"
msgstr ""
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos
-#: staff.marc.008.SER.orig.field_end_pos
-#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos"
msgid "22"
msgstr ""
msgid "Audn"
msgstr ""
+#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.marc.008.BKS.biog.desc"
+msgid "Biography"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field
+msgctxt "staff.marc.008.BKS.biog.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.biog.field_end_pos
+msgctxt "staff.marc.008.BKS.biog.field_end_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field_size
+msgctxt "staff.marc.008.BKS.biog.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.biog.field_start_pos
-#: staff.marc.008.SER.succ.field_end_pos
-#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.BKS.biog.field_start_pos"
msgid "34"
msgstr ""
msgstr ""
#: staff.marc.008.BKS.cont.desc
-#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.BKS.cont.desc"
msgid "Nature of Contents"
msgstr ""
+#: staff.marc.008.BKS.cont.field
+msgctxt "staff.marc.008.BKS.cont.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.cont.field_end_pos
-#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.BKS.cont.field_end_pos"
msgid "27"
msgstr ""
#: staff.marc.008.BKS.cont.field_size
-#: staff.marc.008.BKS.ills.field_size
-#: staff.marc.008.date1.field_size
-#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.BKS.cont.field_size"
msgid "4"
msgstr ""
#: staff.marc.008.BKS.cont.field_start_pos
-#: staff.marc.008.SER.entw.field_end_pos
-#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.BKS.cont.field_start_pos"
msgid "24"
msgstr ""
#: staff.marc.008.BKS.cont.help
-#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.BKS.cont.help"
msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
msgstr ""
#: staff.marc.008.BKS.cont.short
-#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.BKS.cont.short"
msgid "Cont"
msgstr ""
msgid "Festschrift"
msgstr ""
+#: staff.marc.008.BKS.fest.field
+msgctxt "staff.marc.008.BKS.fest.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.fest.field_end_pos
+msgctxt "staff.marc.008.BKS.fest.field_end_pos"
+msgid "30"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field_size
+msgctxt "staff.marc.008.BKS.fest.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.fest.field_start_pos
+msgctxt "staff.marc.008.BKS.fest.field_start_pos"
msgid "30"
msgstr ""
msgid "Illustrations"
msgstr ""
+#: staff.marc.008.BKS.ills.field
+msgctxt "staff.marc.008.BKS.ills.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.ills.field_end_pos
-#: staff.marc.008.SER.srtp.field_end_pos
-#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_end_pos"
msgid "21"
msgstr ""
+#: staff.marc.008.BKS.ills.field_size
+msgctxt "staff.marc.008.BKS.ills.field_size"
+msgid "4"
+msgstr ""
+
#: staff.marc.008.BKS.ills.field_start_pos
-#: staff.marc.008.SER.freq.field_end_pos
-#: staff.marc.008.SER.freq.field_start_pos
-#: staff.marc.LDR.desc.field_end_pos
-#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_start_pos"
msgid "18"
msgstr ""
msgid "Literary Form"
msgstr ""
+#: staff.marc.008.BKS.litf.field
+msgctxt "staff.marc.008.BKS.litf.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.BKS.litf.field_end_pos
+msgctxt "staff.marc.008.BKS.litf.field_end_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field_size
+msgctxt "staff.marc.008.BKS.litf.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.BKS.litf.field_start_pos
-#: staff.marc.008.SER.alph.field_end_pos
-#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.BKS.litf.field_start_pos"
msgid "33"
msgstr ""
msgid "LitF"
msgstr ""
-#: staff.marc.008.SER.alph.desc
-msgid "Original Alphabet or Script of Title"
+#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.MAP.VIS.form.desc"
+msgid "Form of Item"
msgstr ""
-#: staff.marc.008.SER.alph.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
+#: staff.marc.008.MAP.VIS.form.field
+msgctxt "staff.marc.008.MAP.VIS.form.field"
+msgid "008"
msgstr ""
-#: staff.marc.008.SER.alph.short
-msgid "Alph"
+#: staff.marc.008.MAP.VIS.form.field_end_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_end_pos"
+msgid "29"
msgstr ""
-#: staff.marc.008.SER.cont.field_start_pos
-msgid "25"
+#: staff.marc.008.MAP.VIS.form.field_size
+msgctxt "staff.marc.008.MAP.VIS.form.field_size"
+msgid "1"
msgstr ""
-#: staff.marc.008.SER.entw.desc
-msgid "Nature of Entire Work"
+#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_start_pos"
+msgid "29"
msgstr ""
-#: staff.marc.008.SER.entw.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
+#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.MAP.VIS.form.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
msgstr ""
-#: staff.marc.008.SER.entw.short
-msgid "EntW"
+#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.MAP.VIS.form.short"
+msgid "Form"
msgstr ""
-#: staff.marc.008.SER.freq.desc
-msgid "Frequency"
+#: staff.marc.008.SER.alph.desc
+msgid "Original Alphabet or Script of Title"
msgstr ""
-#: staff.marc.008.SER.freq.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
+#: staff.marc.008.SER.alph.field
+msgctxt "staff.marc.008.SER.alph.field"
+msgid "008"
msgstr ""
-#: staff.marc.008.SER.freq.short
-msgid "Freq"
+#: staff.marc.008.SER.alph.field_end_pos
+msgctxt "staff.marc.008.SER.alph.field_end_pos"
+msgid "33"
msgstr ""
-#: staff.marc.008.SER.issn.desc
-msgid "ISSN Center"
+#: staff.marc.008.SER.alph.field_size
+msgctxt "staff.marc.008.SER.alph.field_size"
+msgid "1"
msgstr ""
-#: staff.marc.008.SER.issn.field_end_pos
-#: staff.marc.008.SER.issn.field_start_pos
+#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.SER.alph.field_start_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.SER.alph.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.alph.short
+msgid "Alph"
+msgstr ""
+
+#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.SER.cont.desc"
+msgid "Nature of Contents"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field
+msgctxt "staff.marc.008.SER.cont.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.SER.cont.field_end_pos"
+msgid "27"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_size
+msgctxt "staff.marc.008.SER.cont.field_size"
+msgid "3"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_start_pos
+msgid "25"
+msgstr ""
+
+#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.SER.cont.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.SER.cont.short"
+msgid "Cont"
+msgstr ""
+
+#: staff.marc.008.SER.entw.desc
+msgid "Nature of Entire Work"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field
+msgctxt "staff.marc.008.SER.entw.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_end_pos
+msgctxt "staff.marc.008.SER.entw.field_end_pos"
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_size
+msgctxt "staff.marc.008.SER.entw.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.SER.entw.field_start_pos"
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.SER.entw.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.entw.short
+msgid "EntW"
+msgstr ""
+
+#: staff.marc.008.SER.freq.desc
+msgid "Frequency"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field
+msgctxt "staff.marc.008.SER.freq.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_end_pos
+msgctxt "staff.marc.008.SER.freq.field_end_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_size
+msgctxt "staff.marc.008.SER.freq.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_start_pos
+msgctxt "staff.marc.008.SER.freq.field_start_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.SER.freq.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.freq.short
+msgid "Freq"
+msgstr ""
+
+#: staff.marc.008.SER.issn.desc
+msgid "ISSN Center"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field
+msgctxt "staff.marc.008.SER.issn.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_end_pos
+msgctxt "staff.marc.008.SER.issn.field_end_pos"
+msgid "20"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_size
+msgctxt "staff.marc.008.SER.issn.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_start_pos
+msgctxt "staff.marc.008.SER.issn.field_start_pos"
msgid "20"
msgstr ""
msgstr ""
#: staff.marc.008.SER.issn.short
-#: staff.record_list.issn
-#: staff.z39_50.search_class.issn
+msgctxt "staff.marc.008.SER.issn.short"
msgid "ISSN"
msgstr ""
msgid "Form of Original Item"
msgstr ""
+#: staff.marc.008.SER.orig.field
+msgctxt "staff.marc.008.SER.orig.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_end_pos
+msgctxt "staff.marc.008.SER.orig.field_end_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_size
+msgctxt "staff.marc.008.SER.orig.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.SER.orig.field_start_pos"
+msgid "22"
+msgstr ""
+
#: staff.marc.008.SER.orig.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
msgstr ""
msgid "Regularity"
msgstr ""
+#: staff.marc.008.SER.regl.field
+msgctxt "staff.marc.008.SER.regl.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.SER.regl.field_end_pos
+msgctxt "staff.marc.008.SER.regl.field_end_pos"
+msgid "19"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field_size
+msgctxt "staff.marc.008.SER.regl.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.SER.regl.field_start_pos
+msgctxt "staff.marc.008.SER.regl.field_start_pos"
msgid "19"
msgstr ""
msgid "Type of Continuing Resource"
msgstr ""
+#: staff.marc.008.SER.srtp.field
+msgctxt "staff.marc.008.SER.srtp.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_end_pos
+msgctxt "staff.marc.008.SER.srtp.field_end_pos"
+msgid "21"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_size
+msgctxt "staff.marc.008.SER.srtp.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.SER.srtp.field_start_pos"
+msgid "21"
+msgstr ""
+
#: staff.marc.008.SER.srtp.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
msgstr ""
msgid "Entry Convention"
msgstr ""
+#: staff.marc.008.SER.succ.field
+msgctxt "staff.marc.008.SER.succ.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_end_pos
+msgctxt "staff.marc.008.SER.succ.field_end_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_size
+msgctxt "staff.marc.008.SER.succ.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.SER.succ.field_start_pos"
+msgid "34"
+msgstr ""
+
#: staff.marc.008.SER.succ.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
msgstr ""
msgid "Country of Publication, etc."
msgstr ""
+#: staff.marc.008.ctry.field
+msgctxt "staff.marc.008.ctry.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.ctry.field_end_pos
-#: staff.marc.LDR.elvl.field_end_pos
-#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.008.ctry.field_end_pos"
msgid "17"
msgstr ""
+#: staff.marc.008.ctry.field_size
+msgctxt "staff.marc.008.ctry.field_size"
+msgid "3"
+msgstr ""
+
#: staff.marc.008.ctry.field_start_pos
msgid "15"
msgstr ""
msgstr ""
#: staff.marc.008.date1.desc
-#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.desc"
msgid "Date 1"
msgstr ""
+#: staff.marc.008.date1.field
+msgctxt "staff.marc.008.date1.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.date1.field_end_pos
msgid "10"
msgstr ""
+#: staff.marc.008.date1.field_size
+msgctxt "staff.marc.008.date1.field_size"
+msgid "4"
+msgstr ""
+
#: staff.marc.008.date1.field_start_pos
-#: staff.marc.LDR.blvl.field_end_pos
-#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.008.date1.field_start_pos"
msgid "7"
msgstr ""
+#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.short"
+msgid "Date 1"
+msgstr ""
+
#: staff.marc.008.date2.desc
-#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.desc"
msgid "Date 2"
msgstr ""
+#: staff.marc.008.date2.field
+msgctxt "staff.marc.008.date2.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.date2.field_end_pos
msgid "14"
msgstr ""
+#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.date2.field_size"
+msgid "4"
+msgstr ""
+
#: staff.marc.008.date2.field_start_pos
msgid "11"
msgstr ""
+#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.short"
+msgid "Date 2"
+msgstr ""
+
#: staff.marc.008.dates
msgid "Dates"
msgstr ""
msgid "Type of Date/Publication Status"
msgstr ""
+#: staff.marc.008.dtst.field
+msgctxt "staff.marc.008.dtst.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.dtst.field_end_pos
+msgctxt "staff.marc.008.dtst.field_end_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.008.dtst.field_size
+msgctxt "staff.marc.008.dtst.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.dtst.field_start_pos
-#: staff.marc.008.entered.field_size
-#: staff.marc.LDR.type.field_end_pos
-#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.008.dtst.field_start_pos"
msgid "6"
msgstr ""
msgid "Date Entered"
msgstr ""
+#: staff.marc.008.entered.field
+msgctxt "staff.marc.008.entered.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.entered.field_end_pos
-#: staff.marc.LDR.rec_stat.field_end_pos
-#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.008.entered.field_end_pos"
msgid "5"
msgstr ""
+#: staff.marc.008.entered.field_size
+msgctxt "staff.marc.008.entered.field_size"
+msgid "6"
+msgstr ""
+
#: staff.marc.008.entered.field_start_pos
msgid "0"
msgstr ""
msgid "Language Code"
msgstr ""
+#: staff.marc.008.lang.field
+msgctxt "staff.marc.008.lang.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.lang.field_end_pos
msgid "37"
msgstr ""
+#: staff.marc.008.lang.field_size
+msgctxt "staff.marc.008.lang.field_size"
+msgid "3"
+msgstr ""
+
#: staff.marc.008.lang.field_start_pos
msgid "35"
msgstr ""
msgid "Modified Record"
msgstr ""
+#: staff.marc.008.mrec.field
+msgctxt "staff.marc.008.mrec.field"
+msgid "008"
+msgstr ""
+
#: staff.marc.008.mrec.field_end_pos
+msgctxt "staff.marc.008.mrec.field_end_pos"
+msgid "38"
+msgstr ""
+
+#: staff.marc.008.mrec.field_size
+msgctxt "staff.marc.008.mrec.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.mrec.field_start_pos
+msgctxt "staff.marc.008.mrec.field_start_pos"
msgid "38"
msgstr ""
msgid "Cataloging Source"
msgstr ""
-#: staff.marc.008.srce.field_end_pos
+#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.srce.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.srce.field_end_pos
+msgctxt "staff.marc.008.srce.field_end_pos"
+msgid "39"
+msgstr ""
+
+#: staff.marc.008.srce.field_size
+msgctxt "staff.marc.008.srce.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.008.srce.field_start_pos
+msgctxt "staff.marc.008.srce.field_start_pos"
msgid "39"
msgstr ""
msgstr ""
#: staff.marc.LDR.blvl.field
-#: staff.marc.LDR.ctrl.field
-#: staff.marc.LDR.desc.field
-#: staff.marc.LDR.elvl.field
-#: staff.marc.LDR.rec_stat.field
-#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.blvl.field"
msgid "LDR"
msgstr ""
+#: staff.marc.LDR.blvl.field_end_pos
+msgctxt "staff.marc.LDR.blvl.field_end_pos"
+msgid "7"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_size
+msgctxt "staff.marc.LDR.blvl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.LDR.blvl.field_start_pos"
+msgid "7"
+msgstr ""
+
#: staff.marc.LDR.blvl.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
msgstr ""
msgid "Type of Control"
msgstr ""
+#: staff.marc.LDR.ctrl.field
+msgctxt "staff.marc.LDR.ctrl.field"
+msgid "LDR"
+msgstr ""
+
#: staff.marc.LDR.ctrl.field_end_pos
+msgctxt "staff.marc.LDR.ctrl.field_end_pos"
+msgid "8"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field_size
+msgctxt "staff.marc.LDR.ctrl.field_size"
+msgid "1"
+msgstr ""
+
#: staff.marc.LDR.ctrl.field_start_pos
+msgctxt "staff.marc.LDR.ctrl.field_start_pos"
msgid "8"
msgstr ""
msgid "Descriptive Cataloging Form"
msgstr ""
+#: staff.marc.LDR.desc.field
+msgctxt "staff.marc.LDR.desc.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_end_pos
+msgctxt "staff.marc.LDR.desc.field_end_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_size
+msgctxt "staff.marc.LDR.desc.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.LDR.desc.field_start_pos"
+msgid "18"
+msgstr ""
+
#: staff.marc.LDR.desc.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
msgstr ""
msgid "Encoding Level"
msgstr ""
+#: staff.marc.LDR.elvl.field
+msgctxt "staff.marc.LDR.elvl.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_end_pos
+msgctxt "staff.marc.LDR.elvl.field_end_pos"
+msgid "17"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_size
+msgctxt "staff.marc.LDR.elvl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.LDR.elvl.field_start_pos"
+msgid "17"
+msgstr ""
+
#: staff.marc.LDR.elvl.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
msgstr ""
msgid "Record Status"
msgstr ""
+#: staff.marc.LDR.rec_stat.field
+msgctxt "staff.marc.LDR.rec_stat.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_end_pos
+msgctxt "staff.marc.LDR.rec_stat.field_end_pos"
+msgid "5"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_size
+msgctxt "staff.marc.LDR.rec_stat.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.LDR.rec_stat.field_start_pos"
+msgid "5"
+msgstr ""
+
#: staff.marc.LDR.rec_stat.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
msgstr ""
msgid "Type of Record"
msgstr ""
+#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.type.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.type.field_end_pos
+msgctxt "staff.marc.LDR.type.field_end_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.LDR.type.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.LDR.type.field_start_pos"
+msgid "6"
+msgstr ""
+
#: staff.marc.LDR.type.help
msgid "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
msgstr ""
+#: staff.marc.LDR.type.short
+msgctxt "staff.marc.LDR.type.short"
+msgid "Type"
+msgstr ""
+
#: staff.marc.close.editor.key
msgid "W"
msgstr ""
+#: staff.marc.display
+msgctxt "staff.marc.display"
+msgid "Display"
+msgstr ""
+
#: staff.marc.display.control_fields
-msgid "Toggle Control/Data Fields"
+msgid "Toggle Control and Data Fields"
+msgstr ""
+
+#: staff.marc.display.control_fields.key
+msgctxt "staff.marc.display.control_fields.key"
+msgid "F"
msgstr ""
#: staff.marc.display.cover_art
msgid "Toggle Cover Art"
msgstr ""
+#: staff.marc.display.cover_art.key
+msgctxt "staff.marc.display.cover_art.key"
+msgid "A"
+msgstr ""
+
#: staff.marc.display.explain
msgid "Explain Errors"
msgstr ""
msgid "Fixed Fields as BKS"
msgstr ""
+#: staff.marc.display.fixed.BKS.key
+msgctxt "staff.marc.display.fixed.BKS.key"
+msgid "B"
+msgstr ""
+
#: staff.marc.display.fixed.COM
msgid "Fixed Fields as COM"
msgstr ""
+#: staff.marc.display.fixed.COM.key
+msgctxt "staff.marc.display.fixed.COM.key"
+msgid "O"
+msgstr ""
+
#: staff.marc.display.fixed.MAP
msgid "Fixed Fields as MAP"
msgstr ""
+#: staff.marc.display.fixed.MAP.key
+msgctxt "staff.marc.display.fixed.MAP.key"
+msgid "P"
+msgstr ""
+
#: staff.marc.display.fixed.MIX
msgid "Fixed Fields as MIX"
msgstr ""
+#: staff.marc.display.fixed.MIX.key
+msgctxt "staff.marc.display.fixed.MIX.key"
+msgid "M"
+msgstr ""
+
#: staff.marc.display.fixed.REC
msgid "Fixed Fields as REC"
msgstr ""
+#: staff.marc.display.fixed.REC.key
+msgctxt "staff.marc.display.fixed.REC.key"
+msgid "R"
+msgstr ""
+
#: staff.marc.display.fixed.SCO
msgid "Fixed Fields as SCO"
msgstr ""
+#: staff.marc.display.fixed.SCO.key
+msgctxt "staff.marc.display.fixed.SCO.key"
+msgid "C"
+msgstr ""
+
#: staff.marc.display.fixed.SER
msgid "Fixed Fields as SER"
msgstr ""
+#: staff.marc.display.fixed.SER.key
+msgctxt "staff.marc.display.fixed.SER.key"
+msgid "S"
+msgstr ""
+
#: staff.marc.display.fixed.VIS
msgid "Fixed Fields as VIS"
msgstr ""
+#: staff.marc.display.fixed.VIS.key
+msgctxt "staff.marc.display.fixed.VIS.key"
+msgid "V"
+msgstr ""
+
+#: staff.marc.display.key
+msgctxt "staff.marc.display.key"
+msgid "D"
+msgstr ""
+
#: staff.marc.display.legend
msgid "Legend"
msgstr ""
+#: staff.marc.display.legend.key
+msgctxt "staff.marc.display.legend.key"
+msgid "L"
+msgstr ""
+
#: staff.marc.display.meta_data
-msgid "Toggle Meta Data"
+msgid "Toggle Metadata"
+msgstr ""
+
+#: staff.marc.display.meta_data.key
+msgctxt "staff.marc.display.meta_data.key"
+msgid "E"
msgstr ""
#: staff.marc.editor.keys.help
-msgid "Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = Delete Row;"
+msgid ""
+"Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = "
+"Delete Row;"
+msgstr ""
+
+#: staff.marc.file
+msgctxt "staff.marc.file"
+msgid "MARC"
+msgstr ""
+
+#: staff.marc.file.close
+msgid "Close Editor"
+msgstr ""
+
+#: staff.marc.file.close.key
+msgctxt "staff.marc.file.close.key"
+msgid "C"
+msgstr ""
+
+#: staff.marc.file.export
+msgctxt "staff.marc.file.export"
+msgid "Export"
+msgstr ""
+
+#: staff.marc.file.export.key
+msgctxt "staff.marc.file.export.key"
+msgid "E"
+msgstr ""
+
+#: staff.marc.file.key
+msgctxt "staff.marc.file.key"
+msgid "M"
+msgstr ""
+
+#: staff.marc.file.publish
+msgid "Save (to DB)"
+msgstr ""
+
+#: staff.marc.file.publish.key
+msgctxt "staff.marc.file.publish.key"
+msgid "S"
+msgstr ""
+
+#: staff.marc.file.reload
+msgid "Reload"
+msgstr ""
+
+#: staff.marc.file.reload.key
+msgctxt "staff.marc.file.reload.key"
+msgid "R"
+msgstr ""
+
+#: staff.marc.file.validate
+msgid "Validate"
+msgstr ""
+
+#: staff.marc.file.validate.key
+msgctxt "staff.marc.file.validate.key"
+msgid "V"
+msgstr ""
+
+#: staff.marc.groupbox.control
+msgid "Control Fields"
+msgstr ""
+
+#: staff.marc.groupbox.cover
+msgid "Cover Art"
+msgstr ""
+
+#: staff.marc.groupbox.data
+msgid "Data Fields"
+msgstr ""
+
+#: staff.marc.groupbox.fixed
+msgid "Fixed Fields"
+msgstr ""
+
+#: staff.marc.groupbox.meta
+msgid "Metadata (NOT YET IMPLEMENTED)"
+msgstr ""
+
+#: staff.marc_editor_interface_label
+msgctxt "staff.marc_editor_interface_label"
+msgid "MARC"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgctxt "staff.mbts_balance_owed_label"
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill # "
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgctxt "staff.mbts_total_owed_label"
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgctxt "staff.mbts_total_paid_label"
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_xact_finish_label
+msgctxt "staff.mbts_xact_finish_label"
+msgid "Finish"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgctxt "staff.mbts_xact_start_label"
+msgid "Start"
+msgstr ""
+
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr ""
+
+#: staff.next.range
+msgid "Next"
+msgstr ""
+
+#: staff.next.range.key
+msgctxt "staff.next.range.key"
+msgid "N"
+msgstr ""
+
+#: staff.opac_navigator_interface_label
+msgid "CAtalog Navigator"
+msgstr ""
+
+#: staff.patron.context_display
+msgctxt "staff.patron.context_display"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.patron_barcode_entry_interface_label
+msgctxt "staff.patron_barcode_entry_interface_label"
+msgid "Patron"
+msgstr ""
+
+#: staff.patron_display.bills.label
+msgid "Bills:"
+msgstr ""
+
+#: staff.patron_display.checkout.auto_print.label
+#: staff.patron_display.checkout.auto_print.accesskey
+msgctxt "staff.patron_display.checkout.auto_print.label staff.patron_display.checkout.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr ""
+
+#: staff.patron_display.checkout.done.label
+#: staff.patron_display.checkout.done.accesskey
+msgctxt "staff.patron_display.checkout.done.label staff.patron_display.checkout.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt.label
+msgid "Print Receipt"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt.accesskey
+msgctxt "staff.patron_display.checkout.print_receipt.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_display.checkout.reprint_receipt_label
+msgid "Re-Print Last Receipt"
+msgstr ""
+
+#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "staff.patron_display.checkout.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.patron_display.checkout.scan.label
+#: staff.patron_display.checkout.scan.accesskey
+msgctxt "staff.patron_display.checkout.scan.label staff.patron_display.checkout.scan.accesskey"
+msgid "Enter B&arcode:"
+msgstr ""
+
+#: staff.patron_display.checkout.submit.label
+#: staff.patron_display.checkout.submit.accesskey
+msgctxt "staff.patron_display.checkout.submit.label staff.patron_display.checkout.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.patron_display.checkouts.label
+msgid "Check Outs:"
+msgstr ""
+
+#: staff.patron_display.checkouts_overdue.label
+msgid "Overdue:"
+msgstr ""
+
+#: staff.patron_display.contact.caption
+msgid "Identity & Contact Info"
+msgstr ""
+
+#: staff.patron_display.credit.label
+msgid "Credit:"
+msgstr ""
+
+#: staff.patron_display.date_of_birth.label
+msgctxt "staff.patron_display.date_of_birth.label"
+msgid "Date of Birth:"
+msgstr ""
+
+#: staff.patron_display.day_phone.label
+msgid "Day Phone:"
+msgstr ""
+
+#: staff.patron_display.email.label
+msgctxt "staff.patron_display.email.label"
+msgid "Email:"
+msgstr ""
+
+#: staff.patron_display.evening_phone.label
+msgid "Evening Phone:"
+msgstr ""
+
+#: staff.patron_display.family_name.label
+msgctxt "staff.patron_display.family_name.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.patron_display.first_given_name.label
+msgctxt "staff.patron_display.first_given_name.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron_display.holds.label
+msgid "Holds:"
+msgstr ""
+
+#: staff.patron_display.holds_available.label
+msgctxt "staff.patron_display.holds_available.label"
+msgid "Available:"
+msgstr ""
+
+#: staff.patron_display.home_ou.label
+msgctxt "staff.patron_display.home_ou.label"
+msgid "Home Library:"
+msgstr ""
+
+#: staff.patron_display.ident1.label
+msgid "ID 1:"
+msgstr ""
+
+#: staff.patron_display.ident2.label
+msgid "ID 2:"
+msgstr ""
+
+#: staff.patron_display.items.print_receipt.label
+#: staff.patron_display.items.print_receipt.accesskey
+msgid "&Print Receipt"
+msgstr ""
+
+#: staff.patron_display.items_claimed_returned.label
+msgid "Items Claimed Returned:"
+msgstr ""
+
+#: staff.patron_display.library_card.label
+msgid "Library Card:"
+msgstr ""
+
+#: staff.patron_display.mailing.city.label
+msgid "Mailing City:"
+msgstr ""
+
+#: staff.patron_display.mailing.post_code.label
+msgid "Mailing ZIP:"
+msgstr ""
+
+#: staff.patron_display.mailing.state.label
+msgid "Mailing State:"
+msgstr ""
+
+#: staff.patron_display.mailing.street1.label
+msgid "Mailing Address 1:"
+msgstr ""
+
+#: staff.patron_display.mailing.street2.label
+msgid "Mailing Address 2:"
+msgstr ""
+
+#: staff.patron_display.mailing_address
+msgctxt "staff.patron_display.mailing_address"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.patron_display.name.label
+msgctxt "staff.patron_display.name.label"
+msgid "Patron Name"
+msgstr ""
+
+#: staff.patron_display.other_phone.label
+msgid "Other Phone:"
+msgstr ""
+
+#: staff.patron_display.physical.city.label
+msgid "Physical City:"
+msgstr ""
+
+#: staff.patron_display.physical.post_code.label
+msgid "Physical ZIP:"
+msgstr ""
+
+#: staff.patron_display.physical.state.label
+msgid "Physical State:"
+msgstr ""
+
+#: staff.patron_display.physical.street1.label
+msgid "Physical Address 1:"
+msgstr ""
+
+#: staff.patron_display.physical.street2.label
+msgid "Physical Address 2:"
+msgstr ""
+
+#: staff.patron_display.physical_address
+msgctxt "staff.patron_display.physical_address"
+msgid "Physical Address"
+msgstr ""
+
+#: staff.patron_display.profile.label
+msgctxt "staff.patron_display.profile.label"
+msgid "Profile:"
+msgstr ""
+
+#: staff.patron_display.second_given_name.label
+msgctxt "staff.patron_display.second_given_name.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron_display.standing.label
+msgid "Standing:"
+msgstr ""
+
+#: staff.patron_display.status.caption
+msgctxt "staff.patron_display.status.caption"
+msgid "Status"
+msgstr ""
+
+#: staff.patron_display_interface_label
+msgctxt "staff.patron_display_interface_label"
+msgid "Patron"
+msgstr ""
+
+#: staff.patron_editor_interface_label
+msgid "Patron Edit"
+msgstr ""
+
+#: staff.patron_interface_label
+msgid "Patron "
+msgstr ""
+
+#: staff.patron_navbar.bills
+msgctxt "staff.patron_navbar.bills"
+msgid "Bills"
+msgstr ""
+
+#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.patron_navbar.bills.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.patron_navbar.checkout
+msgctxt "staff.patron_navbar.checkout"
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron_navbar.checkout.accesskey
+msgctxt "staff.patron_navbar.checkout.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron_navbar.edit
+msgctxt "staff.patron_navbar.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.patron_navbar.edit.accesskey"
+msgid "E"
+msgstr ""
+
+#: staff.patron_navbar.holds
+msgid "Holds"
+msgstr ""
+
+#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.patron_navbar.holds.accesskey"
+msgid "H"
+msgstr ""
+
+#: staff.patron_navbar.info
+msgid "Info"
+msgstr ""
+
+#: staff.patron_navbar.info.accesskey
+msgid "o"
+msgstr ""
+
+#: staff.patron_navbar.items
+msgid "Items Out"
+msgstr ""
+
+#: staff.patron_navbar.items.accesskey
+msgctxt "staff.patron_navbar.items.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.patron_navbar.items.problem_items.caption
+msgid "Lost, Claimed Returned, Long Overdue, Has Unpaid Billings"
+msgstr ""
+
+#: staff.patron_navbar.refresh
+msgctxt "staff.patron_navbar.refresh"
+msgid "Refresh"
+msgstr ""
+
+#: staff.patron_navbar.refresh.accesskey
+msgctxt "staff.patron_navbar.refresh.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.patron_navbar.retrieve
+msgctxt "staff.patron_navbar.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.patron_navbar.retrieve.accesskey
+msgctxt "staff.patron_navbar.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.patron_register_interface_label
+msgid "New Patron"
+msgstr ""
+
+#: staff.patron_search_form.caption
+msgid "Search for Patron"
+msgstr ""
+
+#: staff.patron_search_form.city.accesskey
+msgctxt "staff.patron_search_form.city.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.city.label
+msgid "City:"
+msgstr ""
+
+#: staff.patron_search_form.clear.label
+#: staff.patron_search_form.clear.accesskey
+msgctxt "staff.patron_search_form.clear.label staff.patron_search_form.clear.accesskey"
+msgid "&Clear Form"
+msgstr ""
+
+#: staff.patron_search_form.email.accesskey
+msgctxt "staff.patron_search_form.email.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.email.label
+msgctxt "staff.patron_search_form.email.label"
+msgid "Email:"
+msgstr ""
+
+#: staff.patron_search_form.family_name.label
+#: staff.patron_search_form.family_name.accesskey
+msgid "&Last Name:"
+msgstr ""
+
+#: staff.patron_search_form.first_given_name.accesskey
+msgctxt "staff.patron_search_form.first_given_name.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.patron_search_form.first_given_name.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron_search_form.ident.accesskey
+msgctxt "staff.patron_search_form.ident.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.ident.label
+msgid "ID:"
+msgstr ""
+
+#: staff.patron_search_form.phone.label
+#: staff.patron_search_form.phone.accesskey
+msgid "&Phone:"
+msgstr ""
+
+#: staff.patron_search_form.post_code.accesskey
+msgctxt "staff.patron_search_form.post_code.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.post_code.label
+msgid "ZIP:"
+msgstr ""
+
+#: staff.patron_search_form.search.label
+#: staff.patron_search_form.search.accesskey
+msgctxt "staff.patron_search_form.search.label staff.patron_search_form.search.accesskey"
+msgid "&Search"
+msgstr ""
+
+#: staff.patron_search_form.second_given_name.accesskey
+msgctxt "staff.patron_search_form.second_given_name.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.second_given_name.label
+msgctxt "staff.patron_search_form.second_given_name.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron_search_form.state.accesskey
+msgctxt "staff.patron_search_form.state.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.state.label
+msgid "State:"
+msgstr ""
+
+#: staff.patron_search_form.street1.label
+#: staff.patron_search_form.street1.accesskey
+msgid "A&ddress 1:"
+msgstr ""
+
+#: staff.patron_search_form.street2.accesskey
+msgctxt "staff.patron_search_form.street2.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.street2.label
+msgid "Address 2:"
+msgstr ""
+
+#: staff.patron_search_interface_label
+msgid "Patron Search"
+msgstr ""
+
+#: staff.patron_stat_cat_editor_interface_label
+msgctxt "staff.patron_stat_cat_editor_interface_label"
+msgid "Patron Statistical Categories"
+msgstr ""
+
+#: staff.previous.range
+msgid "Previous"
+msgstr ""
+
+#: staff.previous.range.key
+msgctxt "staff.previous.range.key"
+msgid "P"
+msgstr ""
+
+#: staff.receipt_template_editor_interface_label
+msgid "Receipts"
+msgstr ""
+
+#: staff.record_list.author
+msgctxt "staff.record_list.author"
+msgid "Author"
+msgstr ""
+
+#: staff.record_list.copy_count
+msgid "Copiesˤ"
+msgstr ""
+
+#: staff.record_list.isbn
+msgctxt "staff.record_list.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: staff.record_list.issn
+msgctxt "staff.record_list.issn"
+msgid "ISSN"
+msgstr ""
+
+#: staff.record_list.publisher
+msgctxt "staff.record_list.publisher"
+msgid "Publisher"
+msgstr ""
+
+#: staff.record_list.pubyear
+msgctxt "staff.record_list.pubyear"
+msgid "Pub Year"
+msgstr ""
+
+#: staff.record_list.tcn
+msgctxt "staff.record_list.tcn"
+msgid "TCN"
+msgstr ""
+
+#: staff.record_list.title
+msgctxt "staff.record_list.title"
+msgid "Title"
+msgstr ""
+
+#: staff.record_list.win_title
+msgctxt "staff.record_list.win_title"
+msgid "Cataloging"
+msgstr ""
+
+#: staff.retrieving.record
+msgctxt "staff.retrieving.record"
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.survey.wizard.page1
+msgid "Initial Settings"
+msgstr ""
+
+#: staff.survey.wizard.page2
+msgid "Add Questions for Survey:"
+msgstr ""
+
+#: staff.survey.wizard.title
+msgid "Add a Survey Wizard"
+msgstr ""
+
+#: staff.survey_admin_interface_label
+msgid "Survey Administration"
+msgstr ""
+
+#: staff.volume.attr.callnumber
+msgctxt "staff.volume.attr.callnumber"
+msgid "Call Number"
+msgstr ""
+
+#: staff.volume.attr.owning_lib
+msgctxt "staff.volume.attr.owning_lib"
+msgid "Owning Library"
+msgstr ""
+
+#: staff.volume.wizard.page1
+msgid "Entering Volumes"
+msgstr ""
+
+#: staff.volume.wizard.page2
+msgid "Entering Copies"
+msgstr ""
+
+#: staff.volume.wizard.page3
+msgid "Entering Barcodes"
+msgstr ""
+
+#: staff.volume.wizard.page4
+msgid "Entering Copy-Level Attribute Defaults"
+msgstr ""
+
+#: staff.volume.wizard.title
+msgid "Batch Add Volumes or Copies Wizard"
+msgstr ""
+
+#: staff.xuleditor_label
+msgid "XUL TEST"
+msgstr ""
+
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgctxt "staff.z39_50.search_class.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgctxt "staff.z39_50.search_class.issn"
+msgid "ISSN"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers or Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.z39_50.search_class.item_type.ser"
+msgid "Serials"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "PubDate"
+msgstr ""
+
+#: staff.z39_50.search_class.publisher
+msgctxt "staff.z39_50.search_class.publisher"
+msgid "Publisher"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.caption
+msgid "Offline Sessions"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.refresh.accesskey
+msgctxt "staff.server.admin.offline.xacts.refresh.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.create.label
+msgctxt "staff.server.admin.offline.xacts.create.label"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.execute.label
+msgid "Process"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.update.label
+msgid "Update"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.status.label
+msgid "Uploaded Transaction Files"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.status.desc
+msgid ""
+"The transactions from the following workstations have been uploaded, but not "
+"processed. When all expected workstations are present here, use the "
+"Process button above."
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.label
+msgid "Exceptions"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.desc
+msgid ""
+"All transactions from this session have been processed. The errors, if any, "
+"are listed below."
+msgstr ""
+
+#: staff.server.admin.offline.xacts.export.label
+msgid "Export List"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.print.label
+msgctxt "staff.server.admin.offline.xacts.print.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_item.label
+msgid "Retrieve Item"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_patron.label
+msgctxt "staff.server.admin.offline.xacts.get_patron.label"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_details.label
+msgid "Details"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.caption
+msgid "The session is now processing. Hit Refresh to check its status."
+msgstr ""
+
+#: staff.server.admin.font.sound.caption
+msgid "Adjust Sound"
+msgstr ""
+
+#: staff.server.admin.font.sound.checkbox
+msgid "Disable sound?"
+msgstr ""
+
+#: staff.server.admin.save_disk
+msgid "Save to Disk"
+msgstr ""
+
+#: staff.server.admin.font.global.caption
+msgid "Adjust Global Font"
+msgstr ""
+
+#: staff.server.admin.font.smaller
+msgid "Smaller than Default"
+msgstr ""
+
+#: staff.server.admin.font.default
+msgid "Default"
+msgstr ""
+
+#: staff.server.admin.font.larger
+msgid "Larger than Default"
+msgstr ""
+
+#: staff.server.admin.font.xxsmall
+msgid "XX-Small"
+msgstr ""
+
+#: staff.server.admin.font.xsmall
+msgid "X-Small"
+msgstr ""
+
+#: staff.server.admin.font.small
+msgid "Small"
+msgstr ""
+
+#: staff.server.admin.font.medium
+msgid "Medium"
+msgstr ""
+
+#: staff.server.admin.font.large
+msgid "Large"
+msgstr ""
+
+#: staff.server.admin.font.xlarge
+msgid "X-Large"
+msgstr ""
+
+#: staff.server.admin.font.xxlarge
+msgid "XX-Large"
+msgstr ""
+
+#. "5pt" is an abbreviation for "5 point font size"
+#: staff.server.admin.font.5pt
+msgid "5pt"
+msgstr ""
+
+#. "6pt" is an abbreviation for "6 point font size"
+#: staff.server.admin.font.6pt
+msgid "6pt"
+msgstr ""
+
+#. "7pt" is an abbreviation for "7 point font size"
+#: staff.server.admin.font.7pt
+msgid "7pt"
+msgstr ""
+
+#. "8pt" is an abbreviation for "8 point font size"
+#: staff.server.admin.font.8pt
+msgid "8pt"
+msgstr ""
+
+#. "9pt" is an abbreviation for "9 point font size"
+#: staff.server.admin.font.9pt
+msgid "9pt"
+msgstr ""
+
+#. "10pt" is an abbreviation for "10 point font size"
+#: staff.server.admin.font.10pt
+msgid "10pt"
+msgstr ""
+
+#. "11pt" is an abbreviation for "11 point font size"
+#: staff.server.admin.font.11pt
+msgid "11pt"
+msgstr ""
+
+#. "12pt" is an abbreviation for "12 point font size"
+#: staff.server.admin.font.12pt
+msgid "12pt"
+msgstr ""
+
+#. "13pt" is an abbreviation for "13 point font size"
+#: staff.server.admin.font.13pt
+msgid "13pt"
+msgstr ""
+
+#. "14pt" is an abbreviation for "14 point font size"
+#: staff.server.admin.font.14pt
+msgid "14pt"
+msgstr ""
+
+#. "15pt" is an abbreviation for "15 point font size"
+#: staff.server.admin.font.15pt
+msgid "15pt"
+msgstr ""
+
+#. "16pt" is an abbreviation for "16 point font size"
+#: staff.server.admin.font.16pt
+msgid "16pt"
+msgstr ""
+
+#. "17pt" is an abbreviation for "17 point font size"
+#: staff.server.admin.font.17pt
+msgid "17pt"
+msgstr ""
+
+#. "18pt" is an abbreviation for "18 point font size"
+#: staff.server.admin.font.18pt
+msgid "18pt"
+msgstr ""
+
+#: staff.server.admin.font.restore
+msgid "Restore Default"
+msgstr ""
+
+#: staff.server.admin.transit.filter.caption
+msgid "Transit Filter"
+msgstr ""
+
+#: staff.server.admin.transit.library.label
+msgid "Transit Library"
+msgstr ""
+
+#: staff.server.admin.transit.to.label
+msgid "Transit to"
+msgstr ""
+
+#: staff.server.admin.transit.from.label
+msgid "Transit from"
+msgstr ""
+
+#: staff.server.admin.transit.date.label
+msgid "Transit Date falls between"
+msgstr ""
+
+#: staff.server.admin.transit.date.today
+msgid "Today"
+msgstr ""
+
+#: staff.server.admin.transit.date.week
+msgid "Today - 7 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.2weeks
+msgid "Today - 14 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.3weeks
+msgid "Today - 21 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.30days
+msgid "Today - 30 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.start
+msgid "The Beginning"
+msgstr ""
+
+#: staff.server.admin.transit.retrieve.label
+#: staff.server.admin.transit.retrieve.accesskey
+msgid "Retrieve &Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.label
+msgctxt "staff.server.admin.transit.list.label"
+msgid "Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.print
+msgid "Print Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.actions
+msgid "Actions for Selected Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.actions.accesskey
+msgctxt "staff.server.admin.transit.list.actions.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.server.admin.transit.list.copy.label
+#: staff.server.admin.transit.list.copy.accesskey
+msgctxt "staff.server.admin.transit.list.copy.label staff.server.admin.transit.list.copy.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.server.admin.transit.list.add.label
+#: staff.server.admin.transit.list.add.accesskey
+msgctxt "staff.server.admin.transit.list.add.label staff.server.admin.transit.list.add.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.server.admin.transit.list.show.label
+#: staff.server.admin.transit.list.show.accesskey
+msgctxt "staff.server.admin.transit.list.show.label staff.server.admin.transit.list.show.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.server.admin.transit.list.details.label
+#: staff.server.admin.transit.list.details.accesskey
+msgctxt "staff.server.admin.transit.list.details.label staff.server.admin.transit.list.details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.server.admin.transit.list.circs.label
+#: staff.server.admin.transit.list.circs.accesskey
+msgctxt "staff.server.admin.transit.list.circs.label staff.server.admin.transit.list.circs.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.server.admin.transit.list.edit.label
+#: staff.server.admin.transit.list.edit.accesskey
+msgctxt "staff.server.admin.transit.list.edit.label staff.server.admin.transit.list.edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.server.admin.transit.list.abort.label
+msgctxt "staff.server.admin.transit.list.abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.save.label
+msgctxt "staff.server.admin.transit.list.save.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.server.admin.cash.title
+msgid "Evergreen: Cash Reports"
+msgstr ""
+
+#: staff.server.admin.cash.welcome
+msgctxt "staff.server.admin.cash.welcome"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.cash.start_date
+msgid "Start Date:"
+msgstr ""
+
+#: staff.server.admin.cash.date.select
+msgctxt "staff.server.admin.cash.date.select"
+msgid "Date selector"
+msgstr ""
+
+#: staff.server.admin.cash.end_date
+msgid "End Date:"
+msgstr ""
+
+#: staff.server.admin.cash.date_format
+msgid "(YYYY-MM-DD)"
+msgstr ""
+
+#: staff.server.admin.cash.view
+msgid "View reports for : "
+msgstr ""
+
+#: staff.server.admin.cash.submit
+msgctxt "staff.server.admin.cash.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.cash.desk
+msgid "Desk Payments"
+msgstr ""
+
+#: staff.server.admin.cash.user
+msgid "User Payments"
+msgstr ""
+
+#: staff.server.admin.closed_dates.title
+msgid "Evergreen: Library Closed Dates Editor"
+msgstr ""
+
+#: staff.server.admin.closed_dates.welcome
+msgctxt "staff.server.admin.closed_dates.welcome"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.title
+msgid " Closed Dates Editor "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.for
+msgid "Edit Closed Dates for: "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.duration
+msgid "Closed Duration"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.reason
+msgid "Reason for Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.delete
+msgctxt "staff.server.admin.closed_dates.editor.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.allmultiday.delete
+msgid "delete"
+msgstr ""
+
+#. Translators: do not translate "<b>YYYY-MM-DD</b>" or "<b>HH:MM</b>"
+#: staff.server.admin.closed_dates.editor.allmultiday.format
+msgid ""
+"Note: All dates must have the form <b>YYYY-MM-DD</b>. Times must have the "
+"form <b>HH:MM</b>"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.allday
+msgid "Add Single Day Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.multiday
+msgid "Add Multiple Date Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.detailed
+msgid "Add Detailed Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.start
+msgid "Start Date"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.start
+msgid "Start Time"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.end
+msgid "End Date"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.end
+msgid "End Time"
+msgstr ""
+
+#: staff.server.admin.closed_dates.allday.label
+msgid "All Day"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.reason.label
+msgid "Reason for closing: "
+msgstr ""
+
+#: staff.server.admin.closed_dates.apply_all
+msgid "Apply to all of my libraries"
+msgstr ""
+
+#: staff.server.admin.closed_dates.save
+msgctxt "staff.server.admin.closed_dates.save"
+msgid "Save"
+msgstr ""
+
+#: staff.server.admin.closed_dates.cancel
+msgctxt "staff.server.admin.closed_dates.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.closed_dates.confirm_delete
+msgid "Are you sure you wish to delete the selected close date?"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.invalid
+msgid "Invalid date format"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.invalid
+msgid "Invalid time format"
+msgstr ""
+
+#: staff.server.admin.closed_dates.success
+msgid "Closed date successfully updated"
+msgstr ""
+
+#: staff.server.admin.copy_locations.title
+msgid "Evergreen: Copy Locations Editor"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor
+msgid " Copy Locations Editor "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.create
+msgid "Create a new copy location"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.name
+msgid "Name: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.holdable.label
+msgid "Holdable: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.yes
+msgctxt "staff.server.admin.copy_locations.editor.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.no
+msgctxt "staff.server.admin.copy_locations.editor.no"
+msgid "No"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.opac_visible.label
+msgid "OPAC Visible: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.circulate.label
+msgid "Circulate: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.library.label
+msgid "Owning Library:"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.library
+msgctxt "staff.server.admin.copy_locations.editor.library"
+msgid "Owning Library"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.holdable
+msgid "Holdable"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.help
+msgctxt "staff.server.admin.copy_locations.editor.help"
+msgid "Help"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.opac_visible
+msgid "OPAC Visible"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.circulate
+msgctxt "staff.server.admin.copy_locations.editor.circulate"
+msgid "Circulate"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.edit
+msgctxt "staff.server.admin.copy_locations.editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.delete
+msgctxt "staff.server.admin.copy_locations.editor.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.help.holdable
+msgid ""
+"If a copy location is 'Holdable', copies in that location may have holds "
+"placed on them."
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.delete.confirm
+msgid ""
+"Are you sure you wish to delete the selected copy location? Note: If copies "
+"are currently attached to this location, the delete operation will fail."
+msgstr ""
+
+#: staff.server.admin.copy_locations.submit
+msgctxt "staff.server.admin.copy_locations.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.copy_locations.cancel
+msgctxt "staff.server.admin.copy_locations.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.copy_locations.update_success
+msgid "Update Succeeded"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title
+msgid "Evergreen Holds Pull List"
+msgstr ""
+
+#. This will be followed by the org_unit name
+#: staff.server.admin.hold_pull.header
+msgid "Evergreen Holds Pull List : "
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.hold_pull.greeting
+msgctxt "staff.server.admin.hold_pull.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.hold_pull.sort.note
+msgid "Note: Click on a column header to sort the column"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title.label
+msgctxt "staff.server.admin.hold_pull.title.label"
+msgid "Title"
+msgstr ""
+
+#: staff.server.admin.hold_pull.author
+msgctxt "staff.server.admin.hold_pull.author"
+msgid "Author"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy_location
+msgid "Copy Location"
+msgstr ""
+
+#: staff.server.admin.hold_pull.call_number
+msgctxt "staff.server.admin.hold_pull.call_number"
+msgid "Call Number"
+msgstr ""
+
+#: staff.server.admin.hold_pull.barcode
+msgctxt "staff.server.admin.hold_pull.barcode"
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy
+msgctxt "staff.server.admin.hold_pull.copy"
+msgid "Copy Number"
+msgstr ""
+
+#: staff.server.admin.hold_pull.format
+msgctxt "staff.server.admin.hold_pull.format"
+msgid "Format"
+msgstr ""
+
+#: staff.server.admin.hold_pull.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.server.admin.hold_pull.hold_date
+msgid "Hold Placement Date"
+msgstr ""
+
+#: staff.server.admin.hold_pull.hold_type
+msgid "Hold Type"
+msgstr ""
+
+#: staff.server.admin.hold_pull.book
+msgid "Book"
+msgstr ""
+
+#: staff.server.admin.hold_pull.large_book
+msgid "Large Print Book"
+msgstr ""
+
+#: staff.server.admin.hold_pull.audiobook
+msgid "Audiobook"
+msgstr ""
+
+#: staff.server.admin.hold_pull.video
+msgid "Video Recording"
+msgstr ""
+
+#: staff.server.admin.hold_pull.music
+msgid "Music"
+msgstr ""
+
+#: staff.server.admin.hold_pull.eresource
+msgid "Electronic Resource"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy_hold
+msgid "Copy Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.volume_hold
+msgid "Volume Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title_hold
+msgid "Title Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.metarecord_hold
+msgid "Metarecord Hold"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.title
+msgid "Evergreen: Non Cataloged Types Editor"
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.non_cat_types.greeting
+msgctxt "staff.server.admin.non_cat_types.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.title
+msgid " Non Cataloged Types Editor "
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.header
+msgid "Create a new non-cataloged type"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.minutes
+msgid "Minutes"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.hours
+msgid "Hours"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.days
+msgid "Days"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.weeks
+msgid "Weeks"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.months
+msgid "Months"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house_circ
+msgid "Circulate In-House?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.create
+msgctxt "staff.server.admin.non_cat_types.editor.create"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name
+msgctxt "staff.server.admin.non_cat_types.name"
+msgid "Name"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.owning_location
+msgid "Owning Location"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.duration
+msgid "Duration"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.circulate
+msgid "Circulate In House"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.edit
+msgctxt "staff.server.admin.non_cat_types.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.delete
+msgctxt "staff.server.admin.non_cat_types.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.submit
+msgctxt "staff.server.admin.non_cat_types.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.cancel
+msgctxt "staff.server.admin.non_cat_types.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.delete.confirm
+msgid "Are you sure you wish to delete the selected non-cataloged type?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.help
+msgid ""
+"If the \"In-House\" flag is set on a non-cataloged type, items that circulate "
+"as that type will create \"In-House\" circulations. This is ideal for "
+"computer use, room \"rentals\", etc."
+msgstr ""
+
+#: staff.server.admin.non_cat_types.update.success
+msgid "Non-cataloged type successfully updated"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name_exists
+msgid "A non-cataloged type with the selected name already exists."
+msgstr ""
+
+#: staff.server.admin.index.title
+msgid "Local System Administration"
+msgstr ""
+
+#: staff.server.admin.index.workstation_configuration
+msgid "Workstation Configuration"
+msgstr ""
+
+#: staff.server.admin.index.library_configuration
+msgid "Library Configuration"
+msgstr ""
+
+#: staff.server.admin.index.maintenance_reports
+msgid "Maintenance Reports"
+msgstr ""
+
+#: staff.server.admin.index.fonts_and_sounds
+msgid "Global Font and Sound Settings"
+msgstr ""
+
+#: staff.server.admin.index.printer
+msgid "Printer Settings Editor"
+msgstr ""
+
+#: staff.server.admin.index.closed_dates
+msgid "Closed Dates Editor"
+msgstr ""
+
+#: staff.server.admin.index.copy_locations
+msgid "Copy Locations Editor"
+msgstr ""
+
+#: staff.server.admin.index.library_settings
+msgid "Library Settings Editor"
+msgstr ""
+
+#: staff.server.admin.index.non_cataloged_types
+msgid "Non-cataloged Types Editor"
+msgstr ""
+
+#: staff.server.admin.index.statistical_categories
+msgid "Statistical Categories Editor"
+msgstr ""
+
+#: staff.server.admin.index.hold_pull_list
+msgid "Pull List for Hold Requests"
+msgstr ""
+
+#: staff.server.admin.index.testing
+msgid "(Testing)"
+msgstr ""
+
+#: staff.server.admin.index.hold_pull_list_classic
+msgid "Pull List for Hold Requests (Classic)"
+msgstr ""
+
+#: staff.server.admin.index.reports
+msgctxt "staff.server.admin.index.reports"
+msgid "Reports"
+msgstr ""
+
+#: staff.server.admin.index.cash_reports
+msgid "Cash Reports"
+msgstr ""
+
+#: staff.server.admin.index.transits
+msgctxt "staff.server.admin.index.transits"
+msgid "Transits"
+msgstr ""
+
+#: staff.server.admin.index.transit_list
+msgid "Transit List"
+msgstr ""
+
+#: staff.server.admin.org_settings.title
+msgid "Evergreen: Library Settings Editor"
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.org_settings.greeting
+msgctxt "staff.server.admin.org_settings.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.org_settings.header
+msgid " Library Settings Editor "
+msgstr ""
+
+#. This will be followed by the library's name
+#: staff.server.admin.org_settings.select_library
+msgid "Edit Settings for : "
+msgstr ""
+
+#. This will be followed by the library's name
+#: staff.server.admin.org_settings.selected_library
+msgid "Library Settings for "
+msgstr ""
+
+#: staff.server.admin.org_settings.opac_timeout
+msgid "OPAC Inactivity Timeout (in seconds)"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply
+msgid "Apply"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all
+msgid "Apply to all Locations"
+msgstr ""
+
+#: staff.server.admin.org_settings.staff_timeout
+msgid "Staff Login Inactivity Timeout (in seconds)"
+msgstr ""
+
+#: staff.server.admin.org_settings.lost_fee
+msgid "Lost Materials Processing Fee"
+msgstr ""
+
+#: staff.server.admin.org_settings.default_price
+msgid "Default Item Price"
+msgstr ""
+
+#: staff.server.admin.org_settings.from_address
+msgid "\"FROM\" email address for patron notices"
+msgstr ""
+
+#: staff.server.admin.org_settings.bounce_note
+msgid "(note: delivery failures will be returned this address)"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all.note
+msgid ""
+"I. \"Apply to all Locations\" will force the new setting to be applied to all "
+"locations in the location dropdown."
+msgstr ""
+
+#: staff.server.admin.org_settings.update_success
+msgid "Update succeeded."
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all.confirm
+msgid ""
+"This will update the setting for all of the locations listed in the dropdown "
+"menu. Are you sure you wish to continue?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.title
+msgid "Evergreen: Statistical Category Editor"
+msgstr ""
+
+#: staff.server.admin.stat_cat.greeting
+msgctxt "staff.server.admin.stat_cat.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.stat_cat.heading
+msgid " Statistical Category Editor"
+msgstr ""
+
+#: staff.server.admin.stat_cat.create
+msgid "Create a new statistical category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.name
+msgid "Enter the name: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.owning_library
+msgid "Owning Library: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.opac_visibility
+msgid "OPAC Visibility: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.on
+msgid "On"
+msgstr ""
+
+#: staff.server.admin.stat_cat.off
+msgid "Off"
+msgstr ""
+
+#: staff.server.admin.stat_cat.type
+msgid "Type: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.patron
+msgctxt "staff.server.admin.stat_cat.patron"
+msgid "Patron"
+msgstr ""
+
+#: staff.server.admin.stat_cat.copy
+msgctxt "staff.server.admin.stat_cat.copy"
+msgid "Copy"
+msgstr ""
+
+#: staff.server.admin.stat_cat.create.submit
+msgid "Create new statistical category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.loading_status
+msgid "Loading permissions and statistical categories..."
+msgstr ""
+
+#: staff.server.admin.stat_cat.copy_stat_cats
+msgid "Copy Statistical Categories"
+msgstr ""
+
+#: staff.server.admin.stat_cat.patron_stat_cats
+msgctxt "staff.server.admin.stat_cat.patron_stat_cats"
+msgid "Patron Statistical Categories"
+msgstr ""
+
+#: staff.server.admin.stat_cat.info_prompt
+msgid ""
+"* To edit or view information about an entry, click on the entry in the "
+"drop-down menu"
+msgstr ""
+
+#: staff.server.admin.stat_cat.none_defined
+msgid "No statistical categories are defined"
+msgstr ""
+
+#: staff.server.admin.stat_cat.name.label
+msgctxt "staff.server.admin.stat_cat.name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: staff.server.admin.stat_cat.owning_library.label
+msgctxt "staff.server.admin.stat_cat.owning_library.label"
+msgid "Owning Library"
+msgstr ""
+
+#: staff.server.admin.stat_cat.opac_visibility.label
+msgid "OPAC Visibility"
+msgstr ""
+
+#: staff.server.admin.stat_cat.entries.label
+msgid "Entries"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add_entry
+msgid "Add Entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit
+msgctxt "staff.server.admin.stat_cat.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.stat_cat.none
+msgid "(none)"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add.label
+msgid "Add"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add.prompt
+msgid "Enter the value for the new statistical category entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.delete.confirm
+msgid ""
+"This will delete the selected statistical category and all attached entries. "
+"Are you sure you wish to continue?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.entry_delete.confirm
+msgid "Are you sure you wish to remove this statistical category entry?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_submit
+msgid "Update Statistical Category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_delete
+msgid "Delete Statistical Category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.cancel
+msgctxt "staff.server.admin.stat_cat.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_owner
+msgid "Owned By "
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_name_submit
+msgid "Update Entry Value"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_delete
+msgid "Delete Entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.new_entry_name
+msgid "Enter the value of the new entry: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.new_entry_create
+msgid "Create new entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.update_success
+msgid "Update succeeded"
+msgstr ""
+
+#: staff.server.admin.upload_xacts.title
+msgid "Upload Offline Transactions"
+msgstr ""
+
+#: staff.server.admin.upload_xacts.header
+msgid "Uploading transactions..."
+msgstr ""
+
+#: staff.server.admin.upload_xacts.upload
+msgid "Upload"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_clip.label
+#: staff.circ.checkin_overlay.sel_clip.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_clip.label staff.circ.checkin_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_bucket.label
+#: staff.circ.checkin_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_bucket.label staff.circ.checkin_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_opac.label
+#: staff.circ.checkin_overlay.sel_opac.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_opac.label staff.circ.checkin_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_copy_details.label
+#: staff.circ.checkin_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_copy_details.label staff.circ.checkin_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_patron.label
+#: staff.circ.checkin_overlay.sel_patron.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_patron.label staff.circ.checkin_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_last_patron.label
+#: staff.circ.checkin_overlay.sel_last_patron.accesskey
+msgid "&Retrieve Last Patron who circulated item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_edit.label
+#: staff.circ.checkin_overlay.sel_edit.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_edit.label staff.circ.checkin_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.label
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_mark_items_damaged.label staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_transit_abort.label
+msgid "Abort Transit"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_spine.label
+#: staff.circ.checkin_overlay.sel_spine.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_spine.label staff.circ.checkin_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.checkin_overlay.save_columns.label
+msgctxt "staff.circ.checkin_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text
+msgid "Check In or Process Item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text.hold_capture
+msgid "Auto-Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkin_overlay.effective_date.label
+msgid "Effective Date:"
+msgstr ""
+
+#: staff.circ.checkin_overlay.actions.label
+#: staff.circ.checkin_overlay.actions.accesskey
+msgctxt "staff.circ.checkin_overlay.actions.label staff.circ.checkin_overlay.actions.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_export.label
+msgctxt "staff.circ.checkin_overlay.checkin_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.checkin_overlay.trim_list.label
+msgctxt "staff.circ.checkin_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.checkin_overlay.strict_barcode.label
+msgctxt "staff.circ.checkin_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.checkin_overlay.do_not_alert_on_precat.label
+msgid "Ignore Pre-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_auto.label
+#: staff.circ.checkin_overlay.checkin_auto.accesskey
+msgid "Auto-&Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.label
+msgctxt "staff.circ.checkout_overlay.duedate_menu.label"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.accesskey
+msgid "u"
+msgstr ""
+
+#: staff.circ.checkout_overlay.barcode.accesskey
+msgctxt "staff.circ.checkout_overlay.barcode.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.accesskey
+msgctxt "staff.circ.checkout_overlay.export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.label
+msgctxt "staff.circ.checkout_overlay.export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.checkout_overlay.sel_clip.label
+msgctxt "staff.circ.checkout_overlay.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkout_overlay.save_columns.label
+msgctxt "staff.circ.checkout_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkout_overlay.strict_barcode.label
+msgctxt "staff.circ.checkout_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.circ_brief.patron_id.label
+msgid "Circulation ID: "
+msgstr ""
+
+#: staff.circ.circ_brief.add_billing.label
+msgctxt "staff.circ.circ_brief.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.circ.circ_brief.xact_start.label
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.circ_brief.due_date.label
+msgctxt "staff.circ.circ_brief.due_date.label"
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines_time.label
+msgid "Stop Fines Time"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_time.label
+msgid "Check In Time"
+msgstr ""
+
+#: staff.circ.circ_brief.circ_lib.label
+msgid "Check Out Library"
+msgstr ""
+
+#: staff.circ.circ_brief.renewal.label
+msgid "Renewal"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines.label
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_lib.label
+msgid "Check In Library"
+msgstr ""
+
+#: staff.circ.circ_summary.caption
+msgid "Last Few Circulations"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_last.label
+#: staff.circ.circ_summary.retrieve_last.accesskey
+msgctxt "staff.circ.circ_summary.retrieve_last.label staff.circ.circ_summary.retrieve_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_all.label
+#: staff.circ.circ_summary.retrieve_all.accesskey
+msgid "Retrieve &All These Patrons"
+msgstr ""
+
+#: staff.circ.circ_summary.done.label
+#: staff.circ.circ_summary.done.accesskey
+msgctxt "staff.circ.circ_summary.done.label staff.circ.circ_summary.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.circ.copy_details.hold_caption
+msgid "Captured for Hold"
+msgstr ""
+
+#: staff.circ.copy_details.transit_caption
+msgctxt "staff.circ.copy_details.transit_caption"
+msgid "In Transit"
+msgstr ""
+
+#: staff.circ.copy_details.circ_caption
+msgid "Last or Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.r_last.label
+#: staff.circ.copy_details.r_last.accesskey
+msgctxt "staff.circ.copy_details.r_last.label staff.circ.copy_details.r_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.circ.copy_details.r_hold.label
+#: staff.circ.copy_details.r_hold.accesskey
+msgid "Retrieve &Hold Patron"
+msgstr ""
+
+#: staff.circ.copy_details.done.label
+#: staff.circ.copy_details.done.accesskey
+msgctxt "staff.circ.copy_details.done.label staff.circ.copy_details.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_clip.label
+#: staff.circ.copy_status_overlay.sel_clip.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_clip.label staff.circ.copy_status_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_bucket.label
+#: staff.circ.copy_status_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_bucket.label staff.circ.copy_status_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_opac.label
+#: staff.circ.copy_status_overlay.sel_opac.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_opac.label staff.circ.copy_status_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_copy_details.label
+#: staff.circ.copy_status_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_copy_details.label staff.circ.copy_status_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_patron.label
+#: staff.circ.copy_status_overlay.sel_patron.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_patron.label staff.circ.copy_status_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_edit.label
+#: staff.circ.copy_status_overlay.sel_edit.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_edit.label staff.circ.copy_status_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_mark_items_damaged.label staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.accesskey
+msgid "&Mark Item Missing"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_transit_abort.label
+msgctxt "staff.circ.copy_status_overlay.sel_transit_abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_checkin.label
+#: staff.circ.copy_status_overlay.sel_checkin.accesskey
+msgid "Check I&n Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_renew.label
+#: staff.circ.copy_status_overlay.sel_renew.accesskey
+msgid "&Renew Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_spine.label
+#: staff.circ.copy_status_overlay.sel_spine.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_spine.label staff.circ.copy_status_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.label
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.save_columns.label
+msgctxt "staff.circ.copy_status_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_items.label
+#: staff.circ.copy_status_overlay.cmd_transfer_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_items.label staff.circ.copy_status_overlay.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_volumes.label
+#: staff.circ.copy_status_overlay.cmd_add_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_add_volumes.label staff.circ.copy_status_overlay.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_library.label
+#: staff.circ.copy_status_overlay.cmd_mark_library.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_library.label staff.circ.copy_status_overlay.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_items.label
+#: staff.circ.copy_status_overlay.cmd_add_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_add_items.label staff.circ.copy_status_overlay.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.label
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_edit_volumes.label staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_volume.label
+#: staff.circ.copy_status_overlay.cmd_mark_volume.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_volume.label staff.circ.copy_status_overlay.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.label
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_volumes.label staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.item_status.label
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.last_scanned.caption
+msgid "Scan Item"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_scan_barcode.label staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey"
+msgid "&Barcode:"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.accesskey
+msgid "Submi&t"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_upload_file.label
+#: staff.circ.copy_status_overlay.copy_status_upload_file.accesskey
+msgid "&Upload From File"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cataloger_actions.label
+#: staff.circ.copy_status_overlay.cataloger_actions.accesskey
+msgid "Actions &for Catalogers"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print.label
+#: staff.circ.copy_status_overlay.copy_status_print.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print.label staff.circ.copy_status_overlay.copy_status_print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.trim_list.label
+msgctxt "staff.circ.copy_status_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.strict_barcode.label
+msgctxt "staff.circ.copy_status_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab1.label
+#: staff.chrome.menu_frame_overlay.tab1.accesskey
+msgid "Tab &1"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab2.label
+#: staff.chrome.menu_frame_overlay.tab2.accesskey
+msgid "Tab &2"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab3.label
+#: staff.chrome.menu_frame_overlay.tab3.accesskey
+msgid "Tab &3"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab4.label
+#: staff.chrome.menu_frame_overlay.tab4.accesskey
+msgid "Tab &4"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab5.label
+#: staff.chrome.menu_frame_overlay.tab5.accesskey
+msgid "Tab &5"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab6.label
+#: staff.chrome.menu_frame_overlay.tab6.accesskey
+msgid "Tab &6"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab7.label
+#: staff.chrome.menu_frame_overlay.tab7.accesskey
+msgid "Tab &7"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab8.label
+#: staff.chrome.menu_frame_overlay.tab8.accesskey
+msgid "Tab &8"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab9.label
+#: staff.chrome.menu_frame_overlay.tab9.accesskey
+msgid "Tab &9"
+msgstr ""
+
+#: staff.circ.in_house_use.main.label
+msgid "Record In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.cmgb1.caption
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.multiplier.label
+#: staff.circ.in_house_use.multiplier.accesskey
+msgid "# of &uses:"
+msgstr ""
+
+#: staff.circ.in_house_use.submit.label
+#: staff.circ.in_house_use.submit.accesskey
+msgctxt "staff.circ.in_house_use.submit.label staff.circ.in_house_use.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.circ.in_house_use.print.label
+msgctxt "staff.circ.in_house_use.print.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.circ.in_house_use.export.label
+msgctxt "staff.circ.in_house_use.export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.in_house_use.trim_list.label
+msgctxt "staff.circ.in_house_use.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.in_house_use.strict_barcode.label
+msgctxt "staff.circ.in_house_use.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.in_house_use.sel_clip.label
+msgctxt "staff.circ.in_house_use.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.in_house_use.save_cols_btn.label
+msgctxt "staff.circ.in_house_use.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.pre_cat.window.title
+msgid "Pre-Catalog Fields"
+msgstr ""
+
+#: staff.circ.pre_cat.caption.label
+msgid "Pre-Catalog Field Entry"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_title.value
+msgctxt "staff.circ.pre_cat.dummy_title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_author.value
+msgctxt "staff.circ.pre_cat.dummy_author.value"
+msgid "Author"
+msgstr ""
+
+#: staff.circ.pre_cat.cancel.label
+#: staff.circ.pre_cat.cancel.accesskey
+msgctxt "staff.circ.pre_cat.cancel.label staff.circ.pre_cat.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.circ.pre_cat.checkout.label
+#: staff.circ.pre_cat.checkout.accesskey
+msgid "Check &Out"
+msgstr ""
+
+#: staff.circ.print_list.main.label
+msgid "Templates"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.label
+msgid "ID"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.name.label
+#: staff.circ.print_list.top_ui.name.accesskey
+msgid "&Name"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.type.label
+msgctxt "staff.circ.print_list.top_ui.type.label"
+msgid "Type"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.actions.label
+msgid "Actions"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.preview.label
+#: staff.circ.print_list.top_ui.preview.accesskey
+msgid "&Preview"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.macros.label
+#: staff.circ.print_list.top_ui.macros.accesskey
+msgid "&Macros"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.default.label
+#: staff.circ.print_list.top_ui.default.accesskey
+msgid "&Default"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.save.label
+#: staff.circ.print_list.top_ui.save.accesskey
+msgid "&Save Locally"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description
+msgid "Be sure to 'Save Locally' before export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.export.label
+#: staff.circ.print_list.top_ui.description.export.accesskey
+msgid "&Export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.import.label
+#: staff.circ.print_list.top_ui.description.import.accesskey
+msgid "&Import"
+msgstr ""
+
+#: staff.circ.print_list.header.label
+msgid "Header"
+msgstr ""
+
+#: staff.circ.print_list.line_item.label
+msgid "Line Item"
+msgstr ""
+
+#: staff.circ.print_list.footer.label
+msgid "Footer"
+msgstr ""
+
+#: staff.main.data.loading
+msgctxt "staff.main.data.loading"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.main.ws_info.entry
+msgid "Enter a workstation name and library to register this client under:"
+msgstr ""
+
+#: staff.main.ws_info.name
+msgctxt "staff.main.ws_info.name"
+msgid "Name"
+msgstr ""
+
+#: staff.main.ws_info.register_btn.label
+#: staff.main.ws_info.register_btn.accesskey
+msgid "&Register"
+msgstr ""
+
+#: staff.cat.bib_brief.record_summary
+msgid "Record Summary"
+msgstr ""
+
+#: staff.cat.bib_brief.title
+msgid "Title:"
+msgstr ""
+
+#: staff.cat.bib_brief.view_marc
+msgid "View MARC"
+msgstr ""
+
+#: staff.cat.bib_brief.author
+msgid "Author:"
+msgstr ""
+
+#: staff.cat.bib_brief.edition
+msgid "Edition:"
+msgstr ""
+
+#: staff.cat.bib_brief.pub_date
+msgid "Publication Date:"
+msgstr ""
+
+#. "TCN" is an abbreviation for "title control number"
+#: staff.cat.bib_brief.title_control_number
+msgid "TCN:"
+msgstr ""
+
+#: staff.cat.bib_brief.created_by
+msgid "Created By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_by
+msgid "Last Edited By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_on
+msgid "Last Edited On:"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard
+msgctxt "staff.circ.holds.copy_to_clipboard"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard.accesskey
+msgctxt "staff.circ.holds.copy_to_clipboard.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog
+msgctxt "staff.circ.holds.show_in_catalog"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog.accesskey
+msgctxt "staff.circ.holds.show_in_catalog.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ.holds.show_item_details
+msgid "Show Item Details"
+msgstr ""
+
+#: staff.circ.holds.show_item_details.accesskey
+msgctxt "staff.circ.holds.show_item_details.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations
+msgid "Show Last Few Circulations"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations.accesskey
+msgctxt "staff.circ.holds.show_last_few_circulations.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.circ.holds.retrieve_patron
+msgctxt "staff.circ.holds.retrieve_patron"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.circ.holds.retrieve_patron.accesskey
+msgctxt "staff.circ.holds.retrieve_patron.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.circ.holds.show_notices
+msgid "Show Notices"
+msgstr ""
+
+#: staff.circ.holds.show_notices.accesskey
+msgctxt "staff.circ.holds.show_notices.accesskey"
+msgid "N"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library
+msgid "Edit Pickup Library"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library.accesskey
+msgctxt "staff.circ.holds.edit_pickup_library.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification
+msgid "Edit Phone Notification"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification.accesskey
+msgctxt "staff.circ.holds.edit_phone_notification.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification
+msgid "Set Email Notification"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification.accesskey
+msgctxt "staff.circ.holds.set_email_notification.accesskey"
+msgid "E"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date
+msgid "Edit Activation Date"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date.accesskey
+msgctxt "staff.circ.holds.edit_activation_date.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.circ.holds.activate_hold
+msgid "Activate Hold"
+msgstr ""
+
+#: staff.circ.holds.activate_hold.accesskey
+msgctxt "staff.circ.holds.activate_hold.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold
+msgid "Suspend Hold"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold.accesskey
+msgctxt "staff.circ.holds.suspend_hold.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range
+msgid "Edit Hold Range"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range.accesskey
+msgctxt "staff.circ.holds.edit_hold_range.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus
+msgid "Edit Hold Focus"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus.accesskey
+msgctxt "staff.circ.holds.edit_hold_focus.accesskey"
+msgid "F"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged
+msgid "Mark Item Damaged"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged.accesskey
+msgctxt "staff.circ.holds.mark_item_damaged.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.circ.holds.mark_item_missing
+msgid "Mark Item Missing"
+msgstr ""
+
+#: staff.circ.holds.mark_item_missing.accesskey
+msgctxt "staff.circ.holds.mark_item_missing.accesskey"
+msgid "M"
+msgstr ""
+
+#: staff.circ.holds.retarget
+msgid "Find Another Target"
+msgstr ""
+
+#: staff.circ.holds.retarget.accesskey
+msgctxt "staff.circ.holds.retarget.accesskey"
+msgid "T"
+msgstr ""
+
+#: staff.circ.holds.cancel
+msgctxt "staff.circ.holds.cancel"
+msgid "Cancel Hold"
+msgstr ""
+
+#: staff.circ.holds.cancel.accesskey
+msgctxt "staff.circ.holds.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.holds.save_columns
+msgctxt "staff.circ.holds.save_columns"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.holds.save_columns.accesskey
+msgctxt "staff.circ.holds.save_columns.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_clip.label
+#: staff.cat.copy_browser.actions.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_clip.label staff.cat.copy_browser.actions.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_copy_details.label
+#: staff.cat.copy_browser.actions.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_copy_details.label staff.cat.copy_browser.actions.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_patron.label
+#: staff.cat.copy_browser.actions.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_patron.label staff.cat.copy_browser.actions.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_items.label
+#: staff.cat.copy_browser.actions.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_items.label staff.cat.copy_browser.actions.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_items.label
+#: staff.cat.copy_browser.actions.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_items.label staff.cat.copy_browser.actions.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_volumes.label
+#: staff.cat.copy_browser.actions.cmd_add_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_volumes.label staff.cat.copy_browser.actions.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_library.label
+#: staff.cat.copy_browser.actions.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_library.label staff.cat.copy_browser.actions.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items.label
+#: staff.cat.copy_browser.actions.cmd_add_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items.label staff.cat.copy_browser.actions.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.label
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_volumes.label staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_volume.label
+#: staff.cat.copy_browser.actions.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_volume.label staff.cat.copy_browser.actions.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.label
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_volume.label staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_damaged.label staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.label
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_missing.label staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_print_spine_labels.label staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.actions.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.save_columns.label
+msgctxt "staff.cat.copy_browser.actions.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_refresh_list.label
+#: staff.cat.copy_browser.actions.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_refresh_list.label staff.cat.copy_browser.actions.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.caption
+msgid "Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.legend
+msgid "Green in the list below means the library has volumes for this record."
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_total
+msgid "Consortial Total:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_available
+msgctxt "staff.cat.copy_browser.holdings_maintenance.consortial_available"
+msgid "Available:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acns
+msgid "Show Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acps
+msgid "Show Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.refresh_button.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.refresh_button.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.label
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.accesskey
+msgid "Show &Libraries With Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.actions.label
+#: staff.cat.copy_browser.holdings_maintenance.actions.accesskey
+msgid "Actions &for Selected Rows"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_clip.label staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_patron.label staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.save_columns.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_buckets.window_title
+msgctxt "staff.cat.copy_buckets.window_title"
+msgid "Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_copies
+msgid "Pending Copies"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.bucket_view
+msgid "Bucket View"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.save_columns1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.save_columns1"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.label
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.accesskey
+msgid "&Add All"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.refresh.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.refresh.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.delete_item.label
+msgid "Remove Selected From Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.export.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.bucket.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.owner.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.label
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print.label staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.batch.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.batch.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_export_to_copy_status.label
+msgid "Show Status"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_transfer_to_volume.label
+msgid "Transfer to Specific Volume"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_edit.label
+msgid "Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_delete.label
+msgid "Delete All from Catalog"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.label
+msgid "Item Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.new_bucket.label staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.label
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.cancel.label staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.window.label
+msgctxt "staff.cat.copy_editor.window.label"
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.groupbox1.label
+msgid "Copy Viewer"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.label
+msgid "Templates:"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.apply_template.label
+#: staff.cat.copy_editor.templates.apply_template.accesskey
+msgid "Appl&y"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.delete_template.label
+msgctxt "staff.cat.copy_editor.templates.delete_template.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.import_template.label
+msgid "Import"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.export_template.label
+msgctxt "staff.cat.copy_editor.templates.export_template.label"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.save_template.label
+msgctxt "staff.cat.copy_editor.templates.save_template.label"
+msgid "Save"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.reset.label
+#: staff.cat.copy_editor.templates.reset.accesskey
+msgid "&Reset"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.label
+msgid "Identification"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.label
+msgctxt "staff.cat.copy_editor.identification.location.label"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.accesskey
+msgctxt "staff.cat.copy_editor.identification.location.accesskey"
+msgid "1"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.circulation.label
+msgctxt "staff.cat.copy_editor.identification.circulation.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.circulation.accesskey
+msgid "2"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.label
+msgid "Miscellaneous"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.accesskey
+msgctxt "staff.cat.copy_editor.identification.miscellaneous.accesskey"
+msgid "3"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.label
+msgid "Statistics"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.accesskey
+msgctxt "staff.cat.copy_editor.identification.statistics.accesskey"
+msgid "4"
+msgstr ""
+
+#: staff.cat.copy_editor.stat_cat_lib_filter_menu.label
+msgid "Library Filter"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_notes.label
+#: staff.cat.copy_editor.copy_notes.accesskey
+msgid "Copy &Notes"
+msgstr ""
+
+#: staff.cat.copy_editor.save.label
+#: staff.cat.copy_editor.save.accesskey
+msgid "&Modify Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+#: staff.cat.copy_editor.cancel.accesskey
+msgctxt "staff.cat.copy_editor.cancel.label staff.cat.copy_editor.cancel.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.cat.copy_summary.label
+msgid "Item Summary"
+msgstr ""
+
+#: staff.cat.copy_summary.barcode.label
+msgctxt "staff.cat.copy_summary.barcode.label"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.cat.copy_summary.location.label
+msgid "Location:"
+msgstr ""
+
+#: staff.cat.copy_summary.call_number.label
+msgid "Call Number:"
+msgstr ""
+
+#: staff.cat.copy_summary.status.label
+msgid "Status:"
+msgstr ""
+
+#: staff.cat.copy_summary.circulate.label
+msgid "Circulate:"
+msgstr ""
+
+#: staff.cat.copy_summary.reference.label
+msgid "Reference:"
+msgstr ""
+
+#: staff.cat.copy_summary.holdable.label
+msgid "Holdable:"
+msgstr ""
+
+#: staff.cat.copy_summary.opac_visible.label
+msgctxt "staff.cat.copy_summary.opac_visible.label"
+msgid "OPAC Visible:"
+msgstr ""
+
+#: staff.cat.copy_summary.created.label
+msgid "Created:"
+msgstr ""
+
+#: staff.cat.copy_summary.edited.label
+msgid "Edited:"
+msgstr ""
+
+#: staff.cat.copy_summary.age_protect.label
+msgid "Age Protect:"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circulations:"
+msgstr ""
+
+#: staff.cat.copy_summary.alternate_view.label
+msgid "Alternate View"
+msgstr ""
+
+#: staff.cat.copy_summary.save_columns.label
+msgctxt "staff.cat.copy_summary.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_summary.sel_clip.label
+msgctxt "staff.cat.copy_summary.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_summary.print_export.label
+msgctxt "staff.cat.copy_summary.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.marcedit.options.label
+msgid "Options"
+msgstr ""
+
+#: staff.cat.marcedit.stackSubfields.label
+#: staff.cat.marcedit.stackSubfields.accesskey
+msgid "&Stack subfields"
+msgstr ""
+
+#: staff.cat.marcedit.validate.label
+#: staff.cat.marcedit.validate.accesskey
+msgid "&Validate"
+msgstr ""
+
+#: staff.cat.marcedit.save-button.accesskey
+msgid "d"
+msgstr ""
+
+#: staff.cat.marcedit.help.label
+#: staff.cat.marcedit.help.accesskey
+msgctxt "staff.cat.marcedit.help.label staff.cat.marcedit.help.accesskey"
+msgid "&Help"
+msgstr ""
+
+#: staff.cat.marcedit.caption.label
+msgid "MARC Record"
+msgstr ""
+
+#: staff.cat.marcedit.toggleFFE.label
+msgid "Fixed Fields -- Record type: "
+msgstr ""
+
+#: staff.cat.marc_new.load.label
+#: staff.cat.marc_new.load.accesskey
+msgid "&Load"
+msgstr ""
+
+#: staff.cat.marc_view.title
+msgid "MARC View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.opacview.label
+#: staff.cat.opac.menuitem.opacview.accesskey
+msgctxt "staff.cat.opac.menuitem.opacview.label staff.cat.opac.menuitem.opacview.accesskey"
+msgid "&OPAC View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.marcview.label
+#: staff.cat.opac.menuitem.marcview.accesskey
+msgctxt "staff.cat.opac.menuitem.marcview.label staff.cat.opac.menuitem.marcview.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.marcedit.label
+#: staff.cat.opac.menuitem.marcedit.accesskey
+msgctxt "staff.cat.opac.menuitem.marcedit.label staff.cat.opac.menuitem.marcedit.accesskey"
+msgid "MARC &Edit"
+msgstr ""
+
+#: staff.cat.opac.menuitem.holding.label
+#: staff.cat.opac.menuitem.holding.accesskey
+msgctxt "staff.cat.opac.menuitem.holding.label staff.cat.opac.menuitem.holding.accesskey"
+msgid "&Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.opac.menuitem.viewholds.label
+#: staff.cat.opac.menuitem.viewholds.accesskey
+msgctxt "staff.cat.opac.menuitem.viewholds.label staff.cat.opac.menuitem.viewholds.accesskey"
+msgid "View Hold&s"
+msgstr ""
+
+#: staff.cat.opac.menuitem.addtobucket.label
+#: staff.cat.opac.menuitem.addtobucket.accesskey
+msgctxt "staff.cat.opac.menuitem.addtobucket.label staff.cat.opac.menuitem.addtobucket.accesskey"
+msgid "Add to &Bucket"
+msgstr ""
+
+#: staff.cat.opac.menuitem.refreshinterfaces.label
+msgid "Refresh All Interfaces"
+msgstr ""
+
+#: staff.cat.opac.menuitem.dupnewtab.label
+msgctxt "staff.cat.opac.menuitem.dupnewtab.label"
+msgid "Duplicate in New Tab"
+msgstr ""
+
+#: staff.cat.opac.menuitem.removeframe.label
+msgctxt "staff.cat.opac.menuitem.removeframe.label"
+msgid "Remove this Frame"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_query_tab.label
+#: staff.cat.record_buckets_overlay.record_query_tab.accesskey
+msgid "Record &Query"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_records_tab.label
+#: staff.cat.record_buckets_overlay.pending_records_tab.accesskey
+msgid "&Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_tab.label
+#: staff.cat.record_buckets_overlay.bucket_view_tab.accesskey
+msgid "Bucket &View"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_panel.label
+msgid "Bucket Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.new_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.delete_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.refresh_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.refresh_bucket.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_query.label
+#: staff.cat.record_buckets_overlay.record_query.accesskey
+msgid "Quer&y"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.label
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey
+msgctxt "staff.cat.record_buckets_overlay.cmd_submit_query.button.label staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.query_help.button.label
+#: staff.cat.record_buckets_overlay.query_help.button.accesskey
+msgctxt "staff.cat.record_buckets_overlay.query_help.button.label staff.cat.record_buckets_overlay.query_help.button.accesskey"
+msgid "&Help"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.query_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.query_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip0.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns0.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_query_to_pending.label
+msgid "Add All to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_query_to_pending.label
+msgctxt "staff.cat.record_buckets_overlay.add_sel_query_to_pending.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.pending_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip1.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns1.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.label
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.accesskey
+msgid "&Add All to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_pending_to_record_bucket.label
+msgid "Add Selected to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_del_item.label
+msgid "Remove Selected from Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.info_box.label
+msgctxt "staff.cat.record_buckets_overlay.info_box.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_owner.label
+msgctxt "staff.cat.record_buckets_overlay.bucket_owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip2.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns2.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.box.label
+msgctxt "staff.cat.record_buckets_overlay.box.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.sel_opac.label
+msgid "Show All in Catalog"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.del_records.label
+msgid "Delete All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.merge_records.label
+msgid "Merge All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.export_records.label
+msgid "Export All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_usmarc.label
+msgid "MARC21"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_unimarc.label
+msgid "UNIMARC"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_xml.label
+msgid "XML"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_eg_bre.label
+msgid "Evergreen BRE"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.groupbox.caption
+msgctxt "staff.cat.record_buckets_quick.groupbox.caption"
+msgid "Record Buckets"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.title
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgid "&Add to Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.label
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.add_to_bucket.label staff.cat.record_buckets_quick.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.new_bucket.label
+#: staff.cat.record_buckets_quick.new_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.new_bucket.label staff.cat.record_buckets_quick.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.cancel.label
+#: staff.cat.record_buckets_quick.cancel.accesskey
+msgctxt "staff.cat.record_buckets_quick.cancel.label staff.cat.record_buckets_quick.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.cat.spine_labels.re-generate.label
+#: staff.cat.spine_labels.re-generate.accesskey
+msgid "Re-&Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview_and_print.label
+#: staff.cat.spine_labels.preview_and_print.accesskey
+msgid "&Preview and Print"
+msgstr ""
+
+#: staff.cat.spine_labels.close_window.label
+#: staff.cat.spine_labels.close_window.accesskey
+msgctxt "staff.cat.spine_labels.close_window.label staff.cat.spine_labels.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.cat.spine_labels.font_size.label
+msgid "Font size (in points):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label
+msgid "Spine Label"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.left_margin.label
+msgid "Left Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_width.label
+msgctxt "staff.cat.spine_labels.spine_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_length.label
+msgctxt "staff.cat.spine_labels.spine_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label
+msgid "Pocket Label"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.middle_margin.label
+msgid "Middle Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_width.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_length.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.title.label
+msgid "Include Title (wraps on word at label width)"
+msgstr ""
+
+#: staff.cat.spine_labels.on_line.label
+msgid "On line:"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.include_title.label
+msgid "Include Title (segment after wrapping)"
+msgstr ""
+
+#: staff.cat.spine_labels.indent_title.label
+msgid "Indent a space?"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_call_number.label
+msgid "Include Call Number"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library_policy_code.label
+msgid "Include Owning Library (policy code)"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library.label
+msgid "Include Owning Library"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_shelving_location.label
+msgid "Include Shelving Location"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_item_barcode.label
+msgid "Include Item Barcode"
+msgstr ""
+
+#: staff.cat.spine_labels.custom.label
+msgid "Custom:"
+msgstr ""
+
+#: staff.cat.spine_labels.available_macros.label
+msgid "Available Macros"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.title
+msgid "Volume and Copy Editor"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.label
+msgid "Volume and Copy Creator"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.check_barcodes.label
+#: staff.cat.volume_copy_creator.check_barcodes.accesskey
+msgid "Check &Barcodes?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.print_labels.label
+#: staff.cat.volume_copy_creator.print_labels.accesskey
+msgid "&Print Labels?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.create.label
+#: staff.cat.volume_copy_creator.create.accesskey
+msgid "Edit then &Create"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.library_label.value
+msgctxt "staff.cat.volume_copy_creator.library_label.value"
+msgid "Library"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.num_of_volumes_label.value
+msgid "# of volumes"
+msgstr ""
+
+#: staff.cat.volume_editor.caption.label
+msgid "Volume Editor"
+msgstr ""
+
+#: staff.cat.volume_editor.modify.label
+msgid "Modify"
+msgstr ""
+
+#: staff.cat.z3950.marc_import.label
+#: staff.cat.z3950.marc_import.accesskey
+msgid "MARC &Import via Z39.50"
+msgstr ""
+
+#: staff.cat.z3950.service_credentials.label
+msgid "Service and Credentials"
+msgstr ""
+
+#: staff.cat.z3950.service.label
+msgid "Service"
+msgstr ""
+
+#: staff.cat.z3950.username.label
+msgctxt "staff.cat.z3950.username.label"
+msgid "Username"
+msgstr ""
+
+#: staff.cat.z3950.password.label
+msgctxt "staff.cat.z3950.password.label"
+msgid "Password"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.label
+msgid "Local Catalog"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.tooltiptext
+msgid "Evergreen Native Catalog"
+msgstr ""
+
+#: staff.cat.z3950.save_creds.label
+#: staff.cat.z3950.save_creds.accesskey
+msgid "Save as &Default"
+msgstr ""
+
+#: staff.cat.z3950.query.label
+msgid "Query"
+msgstr ""
+
+#: staff.cat.z3950.query.description
+msgid ""
+"Tip: Click a search field label and then the 'Save as Default' button to "
+"have that field focused by default."
+msgstr ""
+
+#: staff.cat.z3950.clear.label
+#: staff.cat.z3950.clear.accesskey
+msgctxt "staff.cat.z3950.clear.label staff.cat.z3950.clear.accesskey"
+msgid "&Clear Form"
+msgstr ""
+
+#: staff.cat.z3950.search.label
+#: staff.cat.z3950.search.accesskey
+msgctxt "staff.cat.z3950.search.label staff.cat.z3950.search.accesskey"
+msgid "&Search"
+msgstr ""
+
+#: staff.cat.z3950.results_page.label
+#: staff.cat.z3950.results_page.accesskey
+msgid "Results &Page"
+msgstr ""
+
+#: staff.cat.z3950.results_caption.label
+msgid "Results"
+msgstr ""
+
+#: staff.cat.z3950.search_form.label
+#: staff.cat.z3950.search_form.accesskey
+msgctxt "staff.cat.z3950.search_form.label staff.cat.z3950.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.cat.z3950.page_next.label
+#: staff.cat.z3950.page_next.accesskey
+msgid "Fetch &More Results"
+msgstr ""
+
+#: staff.cat.z3950.export.label
+msgid "CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.clip_button.label
+msgctxt "staff.cat.z3950.clip_button.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.save_cols_btn.label
+msgctxt "staff.cat.z3950.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.z3950.marc_view.label
+#: staff.cat.z3950.marc_view.accesskey
+msgctxt "staff.cat.z3950.marc_view.label staff.cat.z3950.marc_view.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.z3950.marc_import_overlay.label
+#: staff.cat.z3950.marc_import_overlay.accesskey
+msgid "MARC Editor for &Overlay"
+msgstr ""
+
+#: staff.cat.z3950.result_message.marc_import.label
+#: staff.cat.z3950.result_message.marc_import.accesskey
+msgid "MARC Editor for &Import"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieve_patron.label
+msgctxt "staff.pat.barcode_entry.retrieve_patron.label"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.pat.barcode_entry.barcode.label
+#: staff.pat.barcode_entry.barcode.accesskey
+msgctxt "staff.pat.barcode_entry.barcode.label staff.pat.barcode_entry.barcode.accesskey"
+msgid "&Barcode:"
+msgstr ""
+
+#: staff.pat.barcode_entry.submit_btn.label
+#: staff.pat.barcode_entry.submit_btn.accesskey
+msgctxt "staff.pat.barcode_entry.submit_btn.label staff.pat.barcode_entry.submit_btn.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieving.label
+msgctxt "staff.pat.barcode_entry.retrieving.label"
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.bill_cc_info.visa.label
+msgid "Visa"
+msgstr ""
+
+#: staff.patron.bill_cc_info.mastercard.label
+msgid "Mastercard"
+msgstr ""
+
+#: staff.patron.bill_cc_info.american_express.label
+msgid "American Express"
+msgstr ""
+
+#: staff.patron.bill_cc_info.discover.label
+msgid "Discover"
+msgstr ""
+
+#: staff.patron.bill_cc_info.other.label
+msgid "Other"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cc_number.value
+msgid "Credit Card Number"
+msgstr ""
+
+#: staff.patron.bill_cc_info.month_expire.value
+msgid "Expire Month"
+msgstr ""
+
+#: staff.patron.bill_cc_info.year_expire.value
+msgid "Expire Year"
+msgstr ""
+
+#: staff.patron.bill_cc_info.approval_code.value
+msgid "Approval Code"
+msgstr ""
+
+#: staff.patron.bill_cc_info.note.value
+msgctxt "staff.patron.bill_cc_info.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cancel.label
+#: staff.patron.bill_cc_info.cancel.accesskey
+msgctxt "staff.patron.bill_cc_info.cancel.label staff.patron.bill_cc_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_cc_info.submit.label
+#: staff.patron.bill_cc_info.submit.accesskey
+msgid "&Submit this Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.info.label
+msgid "Credit Card Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.type.label
+msgid "Credit Card Type"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_info.label
+msgid "Check Information"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_number.value
+msgid "Check Number"
+msgstr ""
+
+#: staff.patron.bill_check_info.note.value
+msgctxt "staff.patron.bill_check_info.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_check_info.cancel.label
+#: staff.patron.bill_check_info.cancel.accesskey
+msgctxt "staff.patron.bill_check_info.cancel.label staff.patron.bill_check_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_check_info.submit.label
+#: staff.patron.bill_check_info.submit.accesskey
+msgid "&Submit this Information"
+msgstr ""
+
+#: staff.patron.bill_details.bills.label
+msgctxt "staff.patron.bill_details.bills.label"
+msgid "Bills"
+msgstr ""
+
+#: staff.patron.bill_details.save_columns.label
+msgctxt "staff.patron.bill_details.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.bill_details.copy_to_clipboard.label
+msgctxt "staff.patron.bill_details.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.bill_details.print_export.label
+msgctxt "staff.patron.bill_details.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.patron.bill_details.void_selection.label
+msgid "Void selected billings"
+msgstr ""
+
+#: staff.patron.bill_details.payments.label
+msgid "Payments"
+msgstr ""
+
+#: staff.patron.bill_details.show_in_catalog.label
+#: staff.patron.bill_details.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_details.show_in_catalog.label staff.patron.bill_details.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_details.close_window.label
+#: staff.patron.bill_details.close_window.accesskey
+msgctxt "staff.patron.bill_details.close_window.label staff.patron.bill_details.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.patron.bill_history.caption.label
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.add_billing.label
+msgctxt "staff.patron.bill_history.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bill_history.full_details.label
+#: staff.patron.bill_history.full_details.accesskey
+msgid "Full &Details"
+msgstr ""
+
+#: staff.patron.bill_history.show_in_catalog.label
+#: staff.patron.bill_history.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_history.show_in_catalog.label staff.patron.bill_history.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_history.print.label
+#: staff.patron.bill_history.print.accesskey
+msgctxt "staff.patron.bill_history.print.label staff.patron.bill_history.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.patron.bill_history.close_window.label
+#: staff.patron.bill_history.close_window.accesskey
+msgctxt "staff.patron.bill_history.close_window.label staff.patron.bill_history.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.patron.bills_overlay.still_checked_out.label
+msgid "Red Items are still Checked Out"
+msgstr ""
+
+#: staff.patron.bills_overlay.uncheck_all.label
+msgid "Uncheck All"
+msgstr ""
+
+#: staff.patron.bills_overlay.check_all.label
+msgid "Check All"
+msgstr ""
+
+#: staff.patron.bills_overlay.print_bills.label
+msgid "Print Bills"
+msgstr ""
+
+#: staff.patron.bills_overlay.alternate_view.label
+#: staff.patron.bills_overlay.alternate_view.accesskey
+msgid "Alternate &View"
+msgstr ""
+
+#: staff.patron.bills_overlay.summary.label
+msgid "Summary"
+msgstr ""
+
+#: staff.patron.bills_overlay.net_balance.value
+msgid "Net Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.new_balance.value
+msgid "= New Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.pay_bill.label
+msgid "Pay Bill"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.value
+msgid "Payment Type"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.accesskey
+msgctxt "staff.patron.bills_overlay.payment_type.accesskey"
+msgid "t"
+msgstr ""
+
+#: staff.patron.bills_overlay.cash.label
+msgid "Cash"
+msgstr ""
+
+#: staff.patron.bills_overlay.check.label
+msgid "Check"
+msgstr ""
+
+#: staff.patron.bills_overlay.credit_card.label
+msgid "Credit Card"
+msgstr ""
+
+#: staff.patron.bills_overlay.word.label
+msgid "Work"
+msgstr ""
+
+#: staff.patron.bills_overlay.forgive.label
+msgid "Forgive"
+msgstr ""
+
+#: staff.patron.bills_overlay.goods.label
+msgid "Goods"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.value
+msgid "Payment received"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.accesskey
+msgctxt "staff.patron.bills_overlay.payment_received.accesskey"
+msgid "a"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_applied.value
+msgid "- Payment applied"
+msgstr ""
+
+#: staff.patron.bills_overlay.change.value
+msgid "= Change"
+msgstr ""
+
+#: staff.patron.bills_overlay.patron_credit.value
+msgid "or Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.bill_patron.label
+#: staff.patron.bills_overlay.bill_patron.accesskey
+msgid "&Bill Patron"
+msgstr ""
+
+#: staff.patron.bills_overlay.history.label
+#: staff.patron.bills_overlay.history.accesskey
+msgid "&History"
+msgstr ""
+
+#: staff.patron.bills_overlay.annotate_payment.label
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills_overlay.convert_change_to_credit.label
+msgid "Convert Change to Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.apply_payment.label
+#: staff.patron.bills_overlay.apply_payment.accesskey
+msgid "Apply &Payment!"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.bill_number.value
+msgid "Bill #"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.total_billed.value
+msgctxt "staff.patron.bill_summary_overlay.total_billed.value"
+msgid "Total Billed"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.title.value
+msgctxt "staff.patron.bill_summary_overlay.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.type.value
+msgctxt "staff.patron.bill_summary_overlay.type.value"
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.total_paid.value
+msgctxt "staff.patron.bill_summary_overlay.total_paid.value"
+msgid "Total Paid"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_out.value
+msgid "Checked Out"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.start.value
+msgctxt "staff.patron.bill_summary_overlay.start.value"
+msgid "Start"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.balance_owed.value
+msgctxt "staff.patron.bill_summary_overlay.balance_owed.value"
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.due_date.value
+msgctxt "staff.patron.bill_summary_overlay.due_date.value"
+msgid "Due Date"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.finish.value
+msgctxt "staff.patron.bill_summary_overlay.finish.value"
+msgid "Finish"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.renewal.value
+msgid "Renewal?"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_in.value
+msgid "Checked In"
+msgstr ""
+
+#: staff.patron.bill_wizard.title
+msgid "Bill Patron Wizard"
+msgstr ""
+
+#: staff.patron.bill_wizard.create_bill.label
+msgid "Create Bill"
+msgstr ""
+
+#: staff.patron.bill_wizard.location.value
+msgctxt "staff.patron.bill_wizard.location.value"
+msgid "Location"
+msgstr ""
+
+#: staff.patron.bill_wizard.transaction_type.value
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.grocery.label
+msgid "Grocery"
+msgstr ""
+
+#: staff.patron.bill_wizard.circulation.label
+msgctxt "staff.patron.bill_wizard.circulation.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.patron.bill_wizard.billing_type.label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.amount.value
+msgctxt "staff.patron.bill_wizard.amount.value"
+msgid "Amount"
+msgstr ""
+
+#: staff.patron.bill_wizard.note.value
+msgctxt "staff.patron.bill_wizard.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_wizard.cancel.label
+#: staff.patron.bill_wizard.cancel.accesskey
+msgctxt "staff.patron.bill_wizard.cancel.label staff.patron.bill_wizard.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_wizard.submit.label
+#: staff.patron.bill_wizard.submit.accesskey
+msgid "&Submit this Bill"
+msgstr ""
+
+#: staff.patron.display_overlay.none_selected.value
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display_overlay.barred.value
+msgid "(Barred)"
+msgstr ""
+
+#: staff.patron.display_overlay.expired.value
+msgid "(Expired)"
+msgstr ""
+
+#: staff.patron.display_overlay.inactive.value
+msgid "(In-Active)"
+msgstr ""
+
+#: staff.patron.display_overlay.juvenile.value
+msgid "(Juvenile)"
+msgstr ""
+
+#: staff.patron.display_overlay.alert.value
+msgid "(Alert)"
+msgstr ""
+
+#: staff.patron.display_overlay.see_notes.value
+msgid "(See Notes)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_bills.value
+msgid "(Maximum Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_overdues.value
+msgid "(Maximum Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_bills.value
+msgid "(Has Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_overdues.value
+msgid "(Has Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_dob.value
+msgid "(Invalid Date of Birth)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_address.value
+msgid "(Invalid Address)"
+msgstr ""
+
+#: staff.patron.display_overlay.exit.label
+#: staff.patron.display_overlay.exit.accesskey
+msgctxt "staff.patron.display_overlay.exit.label staff.patron.display_overlay.exit.accesskey"
+msgid "E&xit"
+msgstr ""
+
+#: staff.patron.display_overlay.search_form.label
+#: staff.patron.display_overlay.search_form.accesskey
+msgctxt "staff.patron.display_overlay.search_form.label staff.patron.display_overlay.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.patron.display_overlay.retrieve_patron.label
+#: staff.patron.display_overlay.retrieve_patron.accesskey
+msgid "&Retrieve Patron"
+msgstr ""
+
+#: staff.patron.bills_overlay.selected_balance.value
+msgid "Selected Balance:"
+msgstr ""
+
+#: staff.patron.bills_overlay.unselected.value
+msgid "Un-Selected:"
+msgstr ""
+
+#: staff.patron.bills_overlay.voided.value
+msgid "Voided:"
+msgstr ""
+
+#: staff.patron.bills_overlay.auto_print.label
+msgctxt "staff.patron.bills_overlay.auto_print.label"
+msgid "Auto-Print"
+msgstr ""
+
+#: staff.patron.hold_notices.add_record_notification.label
+#: staff.patron.hold_notices.add_record_notification.accesskey
+msgid "&Add Record of Notification"
+msgstr ""
+
+#: staff.patron.hold_notices.close_window.label
+#: staff.patron.hold_notices.close_window.accesskey
+msgctxt "staff.patron.hold_notices.close_window.label staff.patron.hold_notices.close_window.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.patron.hold_notices.method.label
+msgid "Method:"
+msgstr ""
+
+#: staff.patron.holds_overlay.pickup_lib.label
+msgctxt "staff.patron.holds_overlay.pickup_lib.label"
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.request_lib.label
+msgid "Requesting Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.fulfillment_lib.label
+msgid "Fulfilling Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.circ_lib.label
+msgid "Item Circulating Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.owning_lib.label
+msgid "Volume Owning Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.home_lib.label
+msgid "Patron Home Library foo"
+msgstr ""
+
+#: staff.patron.holds_overlay.fetch_more.label
+#: staff.patron.holds_overlay.fetch_more.accesskey
+msgid "Fetch &More Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.lib_filter_checkbox.label
+msgid "Filter:"
+msgstr ""
+
+#: staff.patron.holds_overlay.actions_for_holds.label
+#: staff.patron.holds_overlay.actions_for_holds.accesskey
+msgid "Actions for &Selected Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.holds_export.label
+msgctxt "staff.patron.holds_overlay.holds_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.patron.info_group.clone.label
+#: staff.patron.info_group.clone.accesskey
+msgid "Register a &New Group Member by Cloning Selected Patrons"
+msgstr ""
+
+#: staff.patron.info_group.remove.label
+#: staff.patron.info_group.remove.accesskey
+msgid "&Remove Selected Patrons from the Group"
+msgstr ""
+
+#: staff.patron.info_group.move.label
+#: staff.patron.info_group.move.accesskey
+msgid "&Move Selected Patrons to another patron's group."
+msgstr ""
+
+#: staff.patron.info_group.add.label
+#: staff.patron.info_group.add.accesskey
+msgid "Move &another patron to this patron group."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_p.label
+#: staff.patron.info_group.retrieve_p.accesskey
+msgid "Retrieve Selected &Patrons"
+msgstr ""
+
+#: staff.patron.info_group.group_member.label
+msgid "Group Members"
+msgstr ""
+
+#: staff.patron.info_group.choose_an_action.label
+#: staff.patron.info_group.choose_an_action.accesskey
+msgid "Choose an &Action..."
+msgstr ""
+
+#: staff.patron.info_surveys.survey_number.value
+msgid "Survey #"
+msgstr ""
+
+#: staff.patron.info_surveys.last_answered.value
+msgid "Last Answered on:"
+msgstr ""
+
+#: staff.patron.info_surveys.answer.value
+msgid "Answer:"
+msgstr ""
+
+#: staff.patron.info.notes.label
+#: staff.patron.info.notes.accesskey
+msgid "&Notes"
+msgstr ""
+
+#: staff.patron.info.stat_cats.label
+#: staff.patron.info.stat_cats.accesskey
+msgid "&Statistical Categories"
+msgstr ""
+
+#: staff.patron.info.surveys.label
+#: staff.patron.info.surveys.accesskey
+msgid "Surve&ys"
+msgstr ""
+
+#: staff.patron.info.group.label
+#: staff.patron.info.group.accesskey
+msgid "&Group"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.value
+msgid "Include inactive patrons?"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.accesskey
+msgctxt "staff.patron.search_form_overlay.inactive.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.patron.search_form_overlay.search_range_menu.value
+msgid "Limit results to patrons in"
+msgstr ""
+
+#: staff.patron.search_result_overlay.save_cols.label
+msgctxt "staff.patron.search_result_overlay.save_cols.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.search_result_overlay.copy_to_clipboard.label
+msgctxt "staff.patron.search_result_overlay.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.search_result_overlay.print.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.summary_overlay.psagbc.alert.label
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.summary_overlay.pssgbc.standing.label
+msgctxt "staff.patron.summary_overlay.pssgbc.standing.label"
+msgid "Standing"
+msgstr ""
+
+#: staff.patron.summary_overlay.overdue.value
+msgid "Long Overdue:"
+msgstr ""
+
+#: staff.patron.summary_overlay.claimed_returned.value
+msgid "Claimed Returned:"
+msgstr ""
+
+#: staff.patron.summary_overlay.lost_label.value
+msgid "Lost:"
+msgstr ""
+
+#: staff.patron.summary_overlay.noncat_label.value
+msgid "Non Cataloged:"
+msgstr ""
+
+#: staff.patron.summary_overlay.summary_contact.label
+msgid "ID and Contact Information"
+msgstr ""
+
+#: staff.patron.summary_overlay.opac_login.value
+msgid "OPAC Login:"
+msgstr ""
+
+#: staff.patron.user_buckets.stub_not_implemented
+msgid "Just a stub, Not Yet Implemented"
+msgstr ""
+
+#: staff.patron.user_edit.title
+msgctxt "staff.patron.user_edit.title"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.user_edit.user_name.label
+msgid "User Name:"
+msgstr ""
+
+#: staff.patron.user_edit.barcode.label
+msgctxt "staff.patron.user_edit.barcode.label"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.patron.user_edit.firstname.label
+msgctxt "staff.patron.user_edit.firstname.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron.user_edit.middlename.label
+msgctxt "staff.patron.user_edit.middlename.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron.user_edit.lastname.label
+msgctxt "staff.patron.user_edit.lastname.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.patron.user_edit.working_location.label
+msgid "Working Location"
+msgstr ""
+
+#: staff.patron.user_edit.permission.label
+msgid "Permission"
+msgstr ""
+
+#: staff.patron.user_edit.applied.label
+msgid "Applied"
+msgstr ""
+
+#: staff.patron.user_edit.depth.label
+msgid "Depth"
+msgstr ""
+
+#: staff.patron.user_edit.grantable.label
+msgid "Grantable"
+msgstr ""
+
+#: staff.patron.user_edit.save.label
+msgctxt "staff.patron.user_edit.save.label"
+msgid "Save"
+msgstr ""
+
+#: staff.patron.ue.ev_user_editor.label
+msgctxt "staff.patron.ue.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.ue.user_greeting.label
+msgctxt "staff.patron.ue.user_greeting.label"
+msgid "Welcome "
+msgstr ""
+
+#: staff.patron.ue.interface_note.label
+msgid ""
+"Note: required or invalid fields are <span style='border-bottom: 2px solid "
+"red;'>marked with color</span>"
+msgstr ""
+
+#: staff.patron.ue.view_errors.label
+msgctxt "staff.patron.ue.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: staff.patron.ue.nav.user_id.label
+msgctxt "staff.patron.ue.nav.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: staff.patron.ue.nav.contact_info.label
+msgctxt "staff.patron.ue.nav.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: staff.patron.ue.nav.addresses.label
+msgctxt "staff.patron.ue.nav.addresses.label"
+msgid "3. Addresses"
+msgstr ""
+
+#: staff.patron.ue.nav.groups_permissions.label
+msgctxt "staff.patron.ue.nav.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: staff.patron.ue.nav.stat_categories.label
+msgctxt "staff.patron.ue.nav.stat_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.nav.surveys.label
+msgctxt "staff.patron.ue.nav.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: staff.patron.ue.nav.finish.label
+msgctxt "staff.patron.ue.nav.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: staff.patron.ue.loading_data.label
+msgctxt "staff.patron.ue.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.patron.ue.found_duplicate_patron.label
+msgctxt "staff.patron.ue.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: staff.patron.ue.mark_lost.label
+msgctxt "staff.patron.ue.mark_lost.label"
+msgid "Mark Lost"
+msgstr ""
+
+#: staff.patron.ue.username.label
+msgctxt "staff.patron.ue.username.label"
+msgid "Username"
+msgstr ""
+
+#: staff.patron.ue.password.label
+msgctxt "staff.patron.ue.password.label"
+msgid "Password"
+msgstr ""
+
+#: staff.patron.ue.reset.label
+msgctxt "staff.patron.ue.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: staff.patron.ue.re_password.label
+msgctxt "staff.patron.ue.re_password.label"
+msgid "Password: "
+msgstr ""
+
+#: staff.patron.ue.verify_password.label
+msgctxt "staff.patron.ue.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: staff.patron.ue.first_name.label
+msgctxt "staff.patron.ue.first_name.label"
+msgid "First Name"
+msgstr ""
+
+#: staff.patron.ue.middle_name.label
+msgctxt "staff.patron.ue.middle_name.label"
+msgid "Middle Name"
+msgstr ""
+
+#: staff.patron.ue.last_name.label
+msgctxt "staff.patron.ue.last_name.label"
+msgid "Last Name"
+msgstr ""
+
+#: staff.patron.ue.suffix.label
+msgctxt "staff.patron.ue.suffix.label"
+msgid "Suffix"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.choose.label
+msgctxt "staff.patron.ue.choose.label"
+msgid "- Pick -"
+msgstr ""
+
+#: staff.patron.ue.dob.label
+msgctxt "staff.patron.ue.dob.label"
+msgid "Date of Birth"
+msgstr ""
+
+#: staff.patron.ue.primary_id_type.label
+msgctxt "staff.patron.ue.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.required.label
+msgctxt "staff.patron.ue.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: staff.patron.ue.primary_id.label
+msgctxt "staff.patron.ue.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: staff.patron.ue.secondary_id_type.label
+msgctxt "staff.patron.ue.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.none_selected.label
+msgctxt "staff.patron.ue.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: staff.patron.ue.secondary_id.label
+msgctxt "staff.patron.ue.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: staff.patron.ue.parent_guardian.label
+msgctxt "staff.patron.ue.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: staff.patron.ue.email_address.label
+msgctxt "staff.patron.ue.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: staff.patron.ue.day_phone.label
+msgctxt "staff.patron.ue.day_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: staff.patron.ue.evening_phone.label
+msgctxt "staff.patron.ue.evening_phone.label"
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.patron.ue.other_phone.label
+msgctxt "staff.patron.ue.other_phone.label"
+msgid "Other Phone"
+msgstr ""
+
+#: staff.patron.ue.home_library.label
+msgctxt "staff.patron.ue.home_library.label"
+msgid "Home Library"
+msgstr ""
+
+#: staff.patron.ue.address.label
+msgctxt "staff.patron.ue.address.label"
+msgid "Address"
+msgstr ""
+
+#: staff.patron.ue.in_city_limits.label
+msgctxt "staff.patron.ue.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: staff.patron.ue.valid.label
+msgctxt "staff.patron.ue.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: staff.patron.ue.mailing_address.label
+msgctxt "staff.patron.ue.mailing_address.label"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.patron.ue.physical_address.label
+msgctxt "staff.patron.ue.physical_address.label"
+msgid "Physical Address"
+msgstr ""
+
+#: staff.patron.ue.owned_address.label
+msgctxt "staff.patron.ue.owned_address.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: staff.patron.ue.edit.label
+msgctxt "staff.patron.ue.edit.label"
+msgid "Edit"
+msgstr ""
+
+#: staff.patron.ue.label.label
+msgctxt "staff.patron.ue.label.label"
+msgid "Label"
+msgstr ""
+
+#: staff.patron.ue.zip_code.label
+msgid "Zip Code"
+msgstr ""
+
+#: staff.patron.ue.street_1.label
+msgctxt "staff.patron.ue.street_1.label"
+msgid "Street 1"
+msgstr ""
+
+#: staff.patron.ue.street_2.label
+msgctxt "staff.patron.ue.street_2.label"
+msgid "Street 2"
+msgstr ""
+
+#: staff.patron.ue.city.label
+msgctxt "staff.patron.ue.city.label"
+msgid "City"
+msgstr ""
+
+#: staff.patron.ue.county.label
+msgctxt "staff.patron.ue.county.label"
+msgid "County"
+msgstr ""
+
+#: staff.patron.ue.state.label
+msgctxt "staff.patron.ue.state.label"
+msgid "State"
+msgstr ""
+
+#: staff.patron.ue.country.label
+msgctxt "staff.patron.ue.country.label"
+msgid "Country"
+msgstr ""
+
+#: staff.patron.ue.delete_this_address.label
+msgid "Delete this Address"
+msgstr ""
+
+#: staff.patron.ue.detach_this_address.label
+msgid "Detach this Address"
+msgstr ""
+
+#: staff.patron.ue.create_address.label
+msgid "Create a New Address"
+msgstr ""
+
+#: staff.patron.ue.profile_group.label
+msgctxt "staff.patron.ue.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#: staff.patron.ue.accoutn_expire_date.label
+msgctxt "staff.patron.ue.accoutn_expire_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: staff.patron.ue.internet_access_level.label
+msgctxt "staff.patron.ue.internet_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: staff.patron.ue.active.label
+msgctxt "staff.patron.ue.active.label"
+msgid "Active"
+msgstr ""
+
+#: staff.patron.ue.barred.label
+msgctxt "staff.patron.ue.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: staff.patron.ue.set_lead_account.label
+msgctxt "staff.patron.ue.set_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: staff.patron.ue.claims_returned_count.label
+msgctxt "staff.patron.ue.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr ""
+
+#: staff.patron.ue.alert_message.label
+msgctxt "staff.patron.ue.alert_message.label"
+msgid "Alert Message"
+msgstr ""
+
+#: staff.patron.ue.stat_cat_name.label
+msgctxt "staff.patron.ue.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: staff.patron.ue.owner.label
+msgctxt "staff.patron.ue.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: staff.patron.ue.value.label
+msgctxt "staff.patron.ue.value.label"
+msgid "Value"
+msgstr ""
+
+#: staff.patron.ue.no_surveys_for_location.label
+msgctxt "staff.patron.ue.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: staff.patron.ue.message1.label
+msgid "You are now ready to save the user to the database."
+msgstr ""
+
+#: staff.patron.ue.message2.label
+msgid ""
+"To view or print a summary of the changes, click on the 'View Summary' link."
+msgstr ""
+
+#: staff.patron.ue.message3.label
+msgid "To save the user, click on the 'Save User' button."
+msgstr ""
+
+#: staff.patron.ue.view_summary.label
+msgid "View Summary"
+msgstr ""
+
+#: staff.patron.ue.back.label
+msgctxt "staff.patron.ue.back.label"
+msgid "Back"
+msgstr ""
+
+#: staff.patron.ue.forward.label
+msgctxt "staff.patron.ue.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: staff.patron.ue.user_summary.label
+msgid ""
+"User Summary Information (Deleted items are marked in <span "
+"class='deleted'>color</span><span>)</span>"
+msgstr ""
+
+#: staff.patron.ue.barcode.label
+msgctxt "staff.patron.ue.barcode.label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.patron.ue.addresses.label
+msgctxt "staff.patron.ue.addresses.label"
+msgid "Addresses"
+msgstr ""
+
+#: staff.patron.ue.address_label.label
+msgctxt "staff.patron.ue.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: staff.patron.ue.billing_address.label
+msgctxt "staff.patron.ue.billing_address.label"
+msgid "Billing Address"
+msgstr ""
+
+#: staff.patron.ue.profile.label
+msgctxt "staff.patron.ue.profile.label"
+msgid "Profile"
+msgstr ""
+
+#: staff.patron.ue.expire_date.label
+msgctxt "staff.patron.ue.expire_date.label"
+msgid "Expire Date"
+msgstr ""
+
+#: staff.patron.ue.family_lead_account.label
+msgctxt "staff.patron.ue.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: staff.patron.ue.stat_categories.label
+msgctxt "staff.patron.ue.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.survey.label
+msgctxt "staff.patron.ue.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: staff.patron.ue.question.label
+msgctxt "staff.patron.ue.question.label"
+msgid "Question"
+msgstr ""
+
+#: staff.patron.ue.answer.label
+msgctxt "staff.patron.ue.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: staff.patron.ue.bad_dob.label
+msgid ""
+"The date of birth field is not formatted correctly. We are expecting YYYY-"
+"MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_username.label
+msgid "Username is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_passwords.label
+msgid "Passwords do not match or are invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_firstname.label
+msgid "First name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_middlename.label
+msgid "Middle name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_lastname.label
+msgid "Last name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_barcode.label
+msgid "Barcode is invalid"
+msgstr ""
+
+#: staff.patron.ue.duplicate_barcode.label
+msgid "The selected barcode already exists in the database"
+msgstr ""
+
+#: staff.patron.ue.new_barcode_warn.label
+msgid ""
+"This will de-activate the existing barcode for this user! If you wish to "
+"continue, enter the new barcode below. Otherwise, click the Cancel button."
+msgstr ""
+
+#: staff.patron.ue.no_ident.label
+msgid "You must select at least one type of identification"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_dl.label
+msgid "Invalid drivers license. Should be STATE-NUMBER"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_ssn.label
+msgid "Invalid social security number. Format should be 111-22-3333"
+msgstr ""
+
+#: staff.patron.ue.bad_email.label
+msgid "The email addresses is not valid"
+msgstr ""
+
+#: staff.patron.ue.bad_phone.label
+msgid "An invalid phone number was entered"
+msgstr ""
+
+#: staff.patron.ue.no_profile.label
+msgctxt "staff.patron.ue.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: staff.patron.ue.bad_expire.label
+msgid "The user expiration date is invalid. We are expecting YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_claims_returned.label
+msgid "The claims returned count is invalid"
+msgstr ""
+
+#: staff.patron.ue.unknown_error.label
+msgid "An unknown formatting error occurred"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_label.label
+msgid "Address label is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_street.label
+msgid "Address street is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_city.label
+msgid "Address city is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_county.label
+msgid "Address county is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_state.label
+msgid "Address state is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_country.label
+msgid "Address country is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_zip.label
+msgid "Address zip is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_survey.label
+msgid "Required survey is unanswered"
+msgstr ""
+
+#: staff.patron.ue.delete_addr_warn.label
+msgid ""
+"This will remove this address from the user. Are you sure you wish to "
+"continue?"
+msgstr ""
+
+#: staff.patron.ue.yes.label
+msgctxt "staff.patron.ue.yes.label"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.ue.no.label
+msgctxt "staff.patron.ue.no.label"
+msgid "No"
msgstr ""
-#: staff.marc.file
-#: staff.marc_editor_interface_label
-msgid "MARC"
+#: staff.patron.ue.summary_window.label
+msgid "Patron Summary"
msgstr ""
-#: staff.marc.file.close
-msgid "Close Editor"
+#: staff.patron.ue.success.label
+msgid "User update succeeded"
msgstr ""
-#: staff.marc.file.export
-msgid "Export"
+#: staff.patron.ue.dup_ident1.label
+msgid ""
+"A user already exists with the primary identification provided. Do you wish "
+"to view the duplicate record now?"
msgstr ""
-#: staff.marc.file.publish
-msgid "Save (to DB)"
+#: staff.patron.ue.dup_username.label
+msgid ""
+"The selected username is in use by another user. Please choose a different "
+"username."
msgstr ""
-#: staff.marc.file.reload
-msgid "Reload"
+#: staff.patron.ue.dup_barcode.label
+msgid ""
+"The selected barcode is in use by another user. Please choose a different "
+"barcode."
msgstr ""
-#: staff.marc.file.validate
-msgid "Validate"
+#: staff.patron.ue.cancel_confirm.label
+msgid ""
+"Are you sure you wish to cancel this editing session? Canceling will destroy "
+"any unsaved changes you have made thus far to the user."
msgstr ""
-#: staff.marc.groupbox.control
-msgid "Control Fields"
+#: staff.patron.ue.juv_guardian.label
+msgid ""
+"This patron is under 18 years of age. Please enter the name of the parent "
+"or guardian for this patron."
msgstr ""
-#: staff.marc.groupbox.cover
-msgid "Cover Art"
+#: staff.patron.ue.bad_date.label
+msgid ""
+"The date provided is either in the future or invalid. We are expecting "
+"YYYY-MM-DD"
msgstr ""
-#: staff.marc.groupbox.data
-msgid "Data Fields"
+#: staff.patron.ue.made_barred.label
+msgid ""
+"Please add a note to the patron's alert message explaining why the patron is "
+"barred."
msgstr ""
-#: staff.marc.groupbox.fixed
-msgid "Fixed Fields"
+#: staff.patron.items_overlay.sel_clip.label
+#: staff.patron.items_overlay.sel_clip.accesskey
+msgctxt "staff.patron.items_overlay.sel_clip.label staff.patron.items_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
msgstr ""
-#: staff.marc.groupbox.meta
-msgid "Meta Data (NOT YET IMPLEMENTED)"
+#: staff.patron.items_overlay.sel_bucket.label
+#: staff.patron.items_overlay.sel_bucket.accesskey
+msgctxt "staff.patron.items_overlay.sel_bucket.label staff.patron.items_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
msgstr ""
-#: staff.mbts_balance_owed_label
-msgid "Balance Owed"
+#: staff.patron.items_overlay.show_catalog.label
+msgctxt "staff.patron.items_overlay.show_catalog.label"
+msgid "Show in Catalog"
msgstr ""
-#: staff.mbts_id_label
-msgid "Bill # "
+#: staff.patron.items_overlay.sel_copy_details.label
+#: staff.patron.items_overlay.sel_copy_details.accesskey
+msgctxt "staff.patron.items_overlay.sel_copy_details.label staff.patron.items_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
msgstr ""
-#: staff.mbts_total_owed_label
-msgid "Total Billed"
+#: staff.patron.items_overlay.sel_patron.label
+#: staff.patron.items_overlay.sel_patron.accesskey
+msgctxt "staff.patron.items_overlay.sel_patron.label staff.patron.items_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
msgstr ""
-#: staff.mbts_total_paid_label
-msgid "Total Paid"
+#: staff.patron.items_overlay.items_edit.label
+msgid "Edit Due Date"
msgstr ""
-#: staff.mbts_xact_start_label
-msgid "Start"
+#: staff.patron.items_overlay.items_mark_lost.label
+msgid "Mark Lost (by Patron)"
msgstr ""
-#: staff.mvr_label_doc_id
-msgid "Doc Id"
+#: staff.patron.items_overlay.items_claimed_returned.label
+msgid "Mark Claimed Returned"
msgstr ""
-#: staff.next.range
-msgid "Next"
+#: staff.patron.items_overlay.items_renew.label
+msgctxt "staff.patron.items_overlay.items_renew.label"
+msgid "Renew"
msgstr ""
-#: staff.opac_navigator_interface_label
-msgid "CATALOG NAVIGATOR"
+#: staff.patron.items_overlay.items_renew_all.label
+msgid "Renew All"
msgstr ""
-#: staff.patron_barcode_entry_interface_label
-#: staff.patron_display_interface_label
-msgid "PATRON"
+#: staff.patron.items_overlay.items_checkin.label
+msgctxt "staff.patron.items_overlay.items_checkin.label"
+msgid "Check In"
msgstr ""
-#: staff.patron_display.bills.label
-msgid "Bills:"
+#: staff.patron.items_overlay.add_billing.label
+msgctxt "staff.patron.items_overlay.add_billing.label"
+msgid "Add Billing"
msgstr ""
-#: staff.patron_display.checkout.print_receipt_label
-#: staff.patron_display.items.print_receipt_label
-msgid "Print Receipt"
+#: staff.patron.items_overlay.save_columns.label
+msgctxt "staff.patron.items_overlay.save_columns.label"
+msgid "Save Columns"
msgstr ""
-#: staff.patron_display.checkout.print_receipt_label.accesskey
-msgid ""
-"_: staff.patron_display.checkout.print_receipt_label.accesskey\n"
+#: staff.patron.items_overlay.actions_for_selected_items.label
+#: staff.patron.items_overlay.actions_for_selected_items.accesskey
+msgctxt "staff.patron.items_overlay.actions_for_selected_items.label staff.patron.items_overlay.actions_for_selected_items.accesskey"
+msgid "Actions for &Selected Items"
msgstr ""
-#: staff.patron_display.checkout.reprint_receipt_label
-msgid "Re-Print Last Receipt"
+#: staff.patron.items_overlay.show_noncats.label
+#: staff.patron.items_overlay.show_noncats.accesskey
+msgid "Show &Non-Cataloged Circulations in List Above"
msgstr ""
-#: staff.patron_display.checkouts.label
-msgid "Check Outs:"
+#: staff.patron.items_overlay.items_export.label
+msgctxt "staff.patron.items_overlay.items_export.label"
+msgid "Export"
msgstr ""
-#: staff.patron_display.checkouts_overdue.label
-msgid "Overdue:"
+#: ev.staff.patron.ue_xhtml.ev_user_editor.label
+msgctxt "ev.staff.patron.ue_xhtml.ev_user_editor.label"
+msgid "Evergreen User Editor"
msgstr ""
-#: staff.patron_display.contact.caption
-msgid "Identity & Contact Info"
+#: ev.staff.patron.ue_xhtml.welcome.label
+msgctxt "ev.staff.patron.ue_xhtml.welcome.label"
+msgid "Welcome "
msgstr ""
-#: staff.patron_display.credit.label
-msgid "Credit:"
+#: ev.staff.patron.ue_xhtml.view_errors.label
+msgctxt "ev.staff.patron.ue_xhtml.view_errors.label"
+msgid "View Errors"
msgstr ""
-#: staff.patron_display.date_of_birth.label
-msgid "DOB:"
+#: ev.staff.patron.ue_xhtml.user_id.label
+msgctxt "ev.staff.patron.ue_xhtml.user_id.label"
+msgid "1. User Identification"
msgstr ""
-#: staff.patron_display.day_phone.label
-msgid "Day Phone:"
+#: ev.staff.patron.ue_xhtml.contact_info.label
+msgctxt "ev.staff.patron.ue_xhtml.contact_info.label"
+msgid "2. Contact Info"
msgstr ""
-#: staff.patron_display.email.label
-#: staff.patron_search_form.email.label
-msgid "Email:"
+#: ev.staff.patron.ue_xhtml.addresses.label
+msgctxt "ev.staff.patron.ue_xhtml.addresses.label"
+msgid "3. Addresses"
msgstr ""
-#: staff.patron_display.evening_phone.label
-msgid "Evening Phone:"
+#: ev.staff.patron.ue_xhtml.groups_permissions.label
+msgctxt "ev.staff.patron.ue_xhtml.groups_permissions.label"
+msgid "4. Groups and Permissions"
msgstr ""
-#: staff.patron_display.holds.label
-msgid "Holds:"
+#: ev.staff.patron.ue_xhtml.statistical_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.statistical_categories.label"
+msgid "5. Statistical Categories"
msgstr ""
-#: staff.patron_display.holds_available.label
-msgid "Available:"
+#: ev.staff.patron.ue_xhtml.surveys.label
+msgctxt "ev.staff.patron.ue_xhtml.surveys.label"
+msgid "6. Surveys"
msgstr ""
-#: staff.patron_display.ident1.label
-msgid "ID 1:"
+#: ev.staff.patron.ue_xhtml.finish.label
+msgctxt "ev.staff.patron.ue_xhtml.finish.label"
+msgid "7. Finish"
msgstr ""
-#: staff.patron_display.ident2.label
-msgid "ID 2:"
+#: ev.staff.patron.ue_xhtml.loading_data.label
+msgctxt "ev.staff.patron.ue_xhtml.loading_data.label"
+msgid "Loading data..."
msgstr ""
-#: staff.patron_display.items_claimed_returned.label
-msgid "Items Claimed Returned:"
+#: ev.staff.patron.ue_xhtml.found_duplicate_patron.label
+msgctxt "ev.staff.patron.ue_xhtml.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
msgstr ""
-#: staff.patron_display.library_card.label
-msgid "Library Card:"
+#: ev.staff.patron.ue_xhtml.barcode.label
+msgctxt "ev.staff.patron.ue_xhtml.barcode.label"
+msgid "Barcode"
msgstr ""
-#: staff.patron_display.mailing.city.label
-msgid "Mailing City:"
+#: ev.staff.patron.ue_xhtml.mark_lost.label
+msgctxt "ev.staff.patron.ue_xhtml.mark_lost.label"
+msgid "Mark Lost"
msgstr ""
-#: staff.patron_display.mailing.post_code.label
-msgid "Mailing ZIP:"
+#: ev.staff.patron.ue_xhtml.username.label
+msgctxt "ev.staff.patron.ue_xhtml.username.label"
+msgid "Username"
msgstr ""
-#: staff.patron_display.mailing.state.label
-msgid "Mailing State:"
+#: ev.staff.patron.ue_xhtml.password.label
+msgctxt "ev.staff.patron.ue_xhtml.password.label"
+msgid "Password"
msgstr ""
-#: staff.patron_display.mailing.street1.label
-msgid "Mailing Address 1:"
+#: ev.staff.patron.ue_xhtml.reset.label
+msgctxt "ev.staff.patron.ue_xhtml.reset.label"
+msgid "Reset"
msgstr ""
-#: staff.patron_display.mailing.street2.label
-msgid "Mailing Address 2:"
+#: ev.staff.patron.ue_xhtml.re_password.label
+msgctxt "ev.staff.patron.ue_xhtml.re_password.label"
+msgid "Password: "
msgstr ""
-#: staff.patron_display.other_phone.label
-msgid "Other Phone:"
+#: ev.staff.patron.ue_xhtml.verify_password.label
+msgctxt "ev.staff.patron.ue_xhtml.verify_password.label"
+msgid "Verify Password"
msgstr ""
-#: staff.patron_display.physical.city.label
-msgid "Physical City:"
+#: ev.staff.patron.ue_xhtml.first_name.label
+msgctxt "ev.staff.patron.ue_xhtml.first_name.label"
+msgid "First Name"
msgstr ""
-#: staff.patron_display.physical.post_code.label
-msgid "Physical ZIP:"
+#: ev.staff.patron.ue_xhtml.middle_name.label
+msgctxt "ev.staff.patron.ue_xhtml.middle_name.label"
+msgid "Middle Name"
msgstr ""
-#: staff.patron_display.physical.state.label
-msgid "Physical State:"
+#: ev.staff.patron.ue_xhtml.last_name.label
+msgctxt "ev.staff.patron.ue_xhtml.last_name.label"
+msgid "Last Name"
msgstr ""
-#: staff.patron_display.physical.street1.label
-msgid "Physical Address 1:"
+#: ev.staff.patron.ue_xhtml.suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.suffix.label"
+msgid "Suffix"
msgstr ""
-#: staff.patron_display.physical.street2.label
-msgid "Physical Address 2:"
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.pick_suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.pick_suffix.label"
+msgid "- Pick -"
msgstr ""
-#: staff.patron_display.physical_address
-msgid "Physical Address"
+#: ev.staff.patron.ue_xhtml.dob.label
+msgctxt "ev.staff.patron.ue_xhtml.dob.label"
+msgid "Date of Birth"
msgstr ""
-#: staff.patron_display.second_given_name.label
-#: staff.patron_search_form.second_given_name.label
-msgid "Middle Name:"
+#: ev.staff.patron.ue_xhtml.primary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id_type.label"
+msgid "Primary Identification Type"
msgstr ""
-#: staff.patron_display.standing.label
-msgid "Standing:"
+#: ev.staff.patron.ue_xhtml.primary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id.label"
+msgid "Primary Identification"
msgstr ""
-#: staff.patron_editor_interface_label
-msgid "PATRON EDIT"
+#: ev.staff.patron.ue_xhtml.parent_guardian.label
+msgctxt "ev.staff.patron.ue_xhtml.parent_guardian.label"
+msgid "Parent or Guardian"
msgstr ""
-#: staff.patron_interface_label
-msgid "PATRON "
+#: ev.staff.patron.ue_xhtml.email_address.label
+msgctxt "ev.staff.patron.ue_xhtml.email_address.label"
+msgid "Email Address"
msgstr ""
-#: staff.patron_navbar.bills
-msgid "Bills"
+#: ev.staff.patron.ue_xhtml.daytime_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.daytime_phone.label"
+msgid "Daytime Phone"
msgstr ""
-#: staff.patron_navbar.checkout
-msgid "Check Out"
+#: ev.staff.patron.ue_xhtml.evening_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.evening_phone.label"
+msgid "Evening Phone"
msgstr ""
-#: staff.patron_navbar.holds
-msgid "Holds"
+#: ev.staff.patron.ue_xhtml.other_phone.label
+msgid "Other (Cell Phone)"
msgstr ""
-#: staff.patron_navbar.info
-msgid "Info"
+#: ev.staff.patron.ue_xhtml.home_library.label
+msgctxt "ev.staff.patron.ue_xhtml.home_library.label"
+msgid "Home Library"
msgstr ""
-#: staff.patron_navbar.info.accesskey
-msgid "o"
+#: ev.staff.patron.ue_xhtml.address.label
+msgctxt "ev.staff.patron.ue_xhtml.address.label"
+msgid "Address"
msgstr ""
-#: staff.patron_navbar.items
-msgid "Items Out"
+#: ev.staff.patron.ue_xhtml.in_city_limits.label
+msgctxt "ev.staff.patron.ue_xhtml.in_city_limits.label"
+msgid "Within City Limits"
msgstr ""
-#: staff.patron_navbar.refresh
-msgid "Refresh"
+#: ev.staff.patron.ue_xhtml.valid.label
+msgctxt "ev.staff.patron.ue_xhtml.valid.label"
+msgid "Valid"
msgstr ""
-#: staff.patron_register_interface_label
-msgid "NEW PATRON"
+#: ev.staff.patron.ue_xhtml.mailing_address.label
+msgctxt "ev.staff.patron.ue_xhtml.mailing_address.label"
+msgid "Mailing Address"
msgstr ""
-#: staff.patron_search_form.caption
-msgid "Search for Patron"
+#: ev.staff.patron.ue_xhtml.physical_address.label
+msgctxt "ev.staff.patron.ue_xhtml.physical_address.label"
+msgid "Physical Address"
msgstr ""
-#: staff.patron_search_form.city.accesskey
-msgid ""
-"_: staff.patron_search_form.city.accesskey\n"
+#: ev.staff.patron.ue_xhtml.address_owned_by.label
+msgctxt "ev.staff.patron.ue_xhtml.address_owned_by.label"
+msgid "Address is owned by"
msgstr ""
-#: staff.patron_search_form.city.label
-msgid "City:"
+#: ev.staff.patron.ue_xhtml.label.label
+msgctxt "ev.staff.patron.ue_xhtml.label.label"
+msgid "Label"
msgstr ""
-#: staff.patron_search_form.clear.label
-#: staff.patron_search_form.clear.accesskey
-msgid "&Clear Form"
+#: ev.staff.patron.ue_xhtml.zip.label
+msgid "Zip"
msgstr ""
-#: staff.patron_search_form.email.accesskey
-msgid ""
-"_: staff.patron_search_form.email.accesskey\n"
+#: ev.staff.patron.ue_xhtml.street1.label
+msgctxt "ev.staff.patron.ue_xhtml.street1.label"
+msgid "Street 1"
msgstr ""
-#: staff.patron_search_form.family_name.label
-#: staff.patron_search_form.family_name.accesskey
-msgid "&Last Name:"
+#: ev.staff.patron.ue_xhtml.street2.label
+msgctxt "ev.staff.patron.ue_xhtml.street2.label"
+msgid "Street 2"
msgstr ""
-#: staff.patron_search_form.first_given_name.accesskey
-msgid ""
-"_: staff.patron_search_form.first_given_name.accesskey\n"
+#: ev.staff.patron.ue_xhtml.city.label
+msgctxt "ev.staff.patron.ue_xhtml.city.label"
+msgid "City"
msgstr ""
-#: staff.patron_search_form.ident.accesskey
-msgid ""
-"_: staff.patron_search_form.ident.accesskey\n"
+#: ev.staff.patron.ue_xhtml.conuty.label
+msgctxt "ev.staff.patron.ue_xhtml.conuty.label"
+msgid "County"
msgstr ""
-#: staff.patron_search_form.ident.label
-msgid "ID:"
+#: ev.staff.patron.ue_xhtml.state.label
+msgctxt "ev.staff.patron.ue_xhtml.state.label"
+msgid "State"
msgstr ""
-#: staff.patron_search_form.phone.label
-#: staff.patron_search_form.phone.accesskey
-msgid "&Phone:"
+#: ev.staff.patron.ue_xhtml.country.label
+msgctxt "ev.staff.patron.ue_xhtml.country.label"
+msgid "Country"
msgstr ""
-#: staff.patron_search_form.post_code.accesskey
-msgid ""
-"_: staff.patron_search_form.post_code.accesskey\n"
+#: ev.staff.patron.ue_xhtml.profile_group.label
+msgctxt "ev.staff.patron.ue_xhtml.profile_group.label"
+msgid "Profile Group"
msgstr ""
-#: staff.patron_search_form.post_code.label
-msgid "ZIP:"
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.required.label
+msgctxt "ev.staff.patron.ue_xhtml.required.label"
+msgid " -- Required -- "
msgstr ""
-#: staff.patron_search_form.search.label
-#: staff.patron_search_form.search.accesskey
-msgid "&Search"
+#: ev.staff.patron.ue_xhtml.account_expiration_date.label
+msgctxt "ev.staff.patron.ue_xhtml.account_expiration_date.label"
+msgid "Account Expiration Date"
msgstr ""
-#: staff.patron_search_form.second_given_name.accesskey
-msgid ""
-"_: staff.patron_search_form.second_given_name.accesskey\n"
+#: ev.staff.patron.ue_xhtml.net_access_level.label
+msgctxt "ev.staff.patron.ue_xhtml.net_access_level.label"
+msgid "Internet Access Level"
msgstr ""
-#: staff.patron_search_form.state.accesskey
-msgid ""
-"_: staff.patron_search_form.state.accesskey\n"
+#: ev.staff.patron.ue_xhtml.active.label
+msgctxt "ev.staff.patron.ue_xhtml.active.label"
+msgid "Active"
msgstr ""
-#: staff.patron_search_form.state.label
-msgid "State:"
+#: ev.staff.patron.ue_xhtml.barred.label
+msgctxt "ev.staff.patron.ue_xhtml.barred.label"
+msgid "Barred"
msgstr ""
-#: staff.patron_search_form.street1.label
-#: staff.patron_search_form.street1.accesskey
-msgid "A&ddress 1:"
+#: ev.staff.patron.ue_xhtml.set_family_group_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.set_family_group_lead_account.label"
+msgid "Set as Family or Group Lead Account"
msgstr ""
-#: staff.patron_search_form.street2.accesskey
-msgid ""
-"_: staff.patron_search_form.street2.accesskey\n"
+#: ev.staff.patron.ue_xhtml.claims_returned_count.label
+msgctxt "ev.staff.patron.ue_xhtml.claims_returned_count.label"
+msgid "Claims Returned Count"
msgstr ""
-#: staff.patron_search_form.street2.label
-msgid "Address 2:"
+#: ev.staff.patron.ue_xhtml.alert_message.label
+msgctxt "ev.staff.patron.ue_xhtml.alert_message.label"
+msgid "Alert Message"
msgstr ""
-#: staff.patron_search_interface_label
-msgid "PATRON SEARCH"
+#: ev.staff.patron.ue_xhtml.stat_cat_name.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_cat_name.label"
+msgid "Statistical Category Name"
msgstr ""
-#: staff.patron_stat_cat_editor_interface_label
-msgid "PATRON STAT-CATS"
+#: ev.staff.patron.ue_xhtml.owner.label
+msgctxt "ev.staff.patron.ue_xhtml.owner.label"
+msgid "Owner"
msgstr ""
-#: staff.previous.range
-msgid "Previous"
+#: ev.staff.patron.ue_xhtml.value.label
+msgctxt "ev.staff.patron.ue_xhtml.value.label"
+msgid "Value"
msgstr ""
-#: staff.receipt_template_editor_interface_label
-msgid "RECEIPTS"
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.none_selected.label
+msgctxt "ev.staff.patron.ue_xhtml.none_selected.label"
+msgid " -- None Selected -- "
msgstr ""
-#: staff.record_list.copy_count
-msgid "Copiesˤ"
+#: ev.staff.patron.ue_xhtml.no_surveys_for_location.label
+msgctxt "ev.staff.patron.ue_xhtml.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
msgstr ""
-#: staff.record_list.publisher
-#: staff.z39_50.search_class.publisher
-msgid "Publisher"
+#: ev.staff.patron.ue_xhtml.finishing_message.label
+msgid ""
+"You are now ready to save the user to the database.<br/>To view or print a "
+"summary of the changes, click on the 'View Summary' link.<br/>To save the "
+"user, click on the 'Save User' button."
msgstr ""
-#: staff.retrieving.record
-msgid "Retrieving..."
+#: ev.staff.patron.ue_xhtml.back.label
+msgctxt "ev.staff.patron.ue_xhtml.back.label"
+msgid "Back"
msgstr ""
-#: staff.survey.wizard.page1
-msgid "Initial Settings"
+#: ev.staff.patron.ue_xhtml.forward.label
+msgctxt "ev.staff.patron.ue_xhtml.forward.label"
+msgid "Forward"
msgstr ""
-#: staff.survey.wizard.page2
-msgid "Add Questions for Survey:"
+#: ev.staff.patron.ue_xhtml.secondary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id_type.label"
+msgid "Secondary Identification Type"
msgstr ""
-#: staff.survey.wizard.title
-msgid "Add a Survey Wizard"
+#: ev.staff.patron.ue_xhtml.secondary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id.label"
+msgid "Secondary Identification"
msgstr ""
-#: staff.survey_admin_interface_label
-msgid "SURVEY ADMIN"
+#: ev.staff.patron.ue_xhtml.address_label.label
+msgctxt "ev.staff.patron.ue_xhtml.address_label.label"
+msgid "Address Label"
msgstr ""
-#: staff.volume.attr.owning_lib
-msgid "Owning Library"
+#: ev.staff.patron.ue_xhtml.mailing.label
+msgid "Mailing"
msgstr ""
-#: staff.volume.wizard.page1
-msgid "Entering Volumes"
+#: ev.staff.patron.ue_xhtml.billing.label
+msgid "Billing"
msgstr ""
-#: staff.volume.wizard.page2
-msgid "Entering Copies"
+#: ev.staff.patron.ue_xhtml.profile.label
+msgctxt "ev.staff.patron.ue_xhtml.profile.label"
+msgid "Profile"
msgstr ""
-#: staff.volume.wizard.page3
-msgid "Entering Barcodes"
+#: ev.staff.patron.ue_xhtml.expire_date.label
+msgctxt "ev.staff.patron.ue_xhtml.expire_date.label"
+msgid "Expire Date"
msgstr ""
-#: staff.volume.wizard.page4
-msgid "Entering Copy-Level Attribute Defaults"
+#: ev.staff.patron.ue_xhtml.family_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.family_lead_account.label"
+msgid "Family Lead Account"
msgstr ""
-#: staff.volume.wizard.title
-msgid "Batch Add Volumes/Copies Wizard"
+#: ev.staff.patron.ue_xhtml.stat_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_categories.label"
+msgid "Statistical Categories"
msgstr ""
-#: staff.xuleditor_label
-msgid "XUL TEST"
+#: ev.staff.patron.ue_xhtml.survey.label
+msgctxt "ev.staff.patron.ue_xhtml.survey.label"
+msgid "Survey"
msgstr ""
-#: staff.z39_50.search_class.item_type
-msgid "Item Type"
+#: ev.staff.patron.ue_xhtml.question.label
+msgctxt "ev.staff.patron.ue_xhtml.question.label"
+msgid "Question"
msgstr ""
-#: staff.z39_50.search_class.item_type.all
-msgid "All Formats"
+#: ev.staff.patron.ue_xhtml.answer.label
+msgctxt "ev.staff.patron.ue_xhtml.answer.label"
+msgid "Answer"
msgstr ""
-#: staff.z39_50.search_class.item_type.art
-msgid "Papers/Articles"
+#: ev.staff.patron.ue_xhtml.claims_return_confirm.label
+msgid ""
+"This will reset the claims returned count for this user. Are you sure you "
+"wish to perform this action?"
msgstr ""
-#: staff.z39_50.search_class.item_type.bks
-msgid "Books"
+#: ev.staff.patron.ue_xhtml.unsaved_changes.label
+msgid "You have unsaved changes."
msgstr ""
-#: staff.z39_50.search_class.item_type.com
-msgid "Computer files"
+#: ev.staff.patron.ue_xhtml.xact_collision.label
+msgid ""
+"It appears that someone else was also editing this user. Saving the user now "
+"will destroy their changes. Click 'OK' to refresh the user and continue "
+"editing. Click 'Cancel' to do nothing. Note that you will not be able to "
+"save the user until this page has been refreshed."
msgstr ""
-#: staff.z39_50.search_class.item_type.map
-msgid "Maps"
+#: ev.staff.patron.ue_xhtml.no_profile.label
+msgctxt "ev.staff.patron.ue_xhtml.no_profile.label"
+msgid "A profile group must be selected"
msgstr ""
-#: staff.z39_50.search_class.item_type.mix
-msgid "Mixed material"
+#: ev.staff.patron.ue_xhtml.print_page.label
+msgid "Print Page"
msgstr ""
-#: staff.z39_50.search_class.item_type.rec
-msgid "Sound recordings"
+#: ev.staff.patron.ue_xhtml.return_to_editor.label
+msgid "Return to Editor"
msgstr ""
-#: staff.z39_50.search_class.item_type.sco
-msgid "Musical scores"
+#: ev.staff.patron.ue_xhtml.save_user.value
+msgid "Save User"
msgstr ""
-#: staff.z39_50.search_class.item_type.url
-msgid "Internet Resources"
+#: ev.staff.patron.ue_xhtml.save_clone_user.value
+msgid "Save and Clone User"
msgstr ""
-#: staff.z39_50.search_class.item_type.vis
-msgid "Visual materials"
+#: ev.staff.patron.ue_xhtml.cancel.value
+msgctxt "ev.staff.patron.ue_xhtml.cancel.value"
+msgid "Cancel"
msgstr ""
-#: staff.z39_50.search_class.lccn
-msgid "LCCN"
+#: ev.staff.patron.ue_xhtml.alert_message_reset.value
+msgid "Clear"
msgstr ""
-#: staff.z39_50.search_class.pubdate
-msgid "PubDate"
+#: ev.staff.patron.ue_xhtml.date_selector.label
+msgctxt "ev.staff.patron.ue_xhtml.date_selector.label"
+msgid "Date selector"
msgstr ""
-#: staff.z39_50.search_class.tcn
-msgid "Accession #"
+#: staff.portal.title
+msgid "Evergreen Staff Client Portal Page"
msgstr ""
-#: staff.z39_50_import_interface_label
-msgid "Z39.50 IMPORT"
+#: staff.portal.default.welcome
+msgid ""
+"This is the Evergreen staff client portal page. You can customize this with "
+"the information or functionality your organization needs to support its "
+"operations. For example, you could add links to process and procedure "
+"documents."
msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:3
+msgid "Recognized search keys include:"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:4
+msgid "Search key"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:5
+msgid "Definition"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:6
+msgid ""
+"keyword</strong>, <strong>title</strong>, "
+"<strong>author</strong>, <strong>subject</strong>, and "
+"<strong>series</strong> support additional search subclasses, "
+"specified with a <kbd>|</kbd>. For example: "
+"<kbd>title|proper:gone with the wind"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:7
+msgid "keyword/kw"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:8
+msgid "search keyword(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:9
+msgid "author/au/name"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:10
+msgid "search author(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:11
+msgid "title/ti"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:12
+msgid "search title"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:13
+msgid "subject/su"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:14
+msgid "search subject"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:15
+msgid "series/se"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:16
+msgid "search series"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:17
+msgid "lang"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:18
+msgid "limit by language (specifiy multiple langs with lang:l1 lang:l2 ...)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:19
+msgid "site"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:20
+msgid "search at specified org unit, corresponds to actor.org_unit.shortname"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:21
+msgid "sort"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:22
+msgid "sort type (title, author, pubdate)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:23
+msgid "dir"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:24
+msgid "sort direction (asc, desc)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:25
+msgid "available"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:26
+msgid "if set to anything other than \"false\" or \"0\", limits to available items"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
+#. extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: common.exception
+msgid ""
+"!! This software has encountered an error. Please tell your friendly system "
+"administrator or software developer the following:\n"
+"%1$s\n"
+"%2$s\n"
+msgstr ""
+
+#: common.jsan.missing
+msgid "The JSAN library object is missing."
+msgstr ""
+
+#: common.ok
+msgid "Ok"
+msgstr ""
+
+#: common.clear
+msgid "Clear"
+msgstr ""
+
+#: common.confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: common.error.default
+msgid "Please report that this happened."
+msgstr ""
+
+#: common.barcode.status.warning
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgstr ""
+
+#: common.barcode.status.warning.lost
+msgid "Lost"
+msgstr ""
+
+#: common.barcode.status.warning.expired
+msgid "Expired"
+msgstr ""
+
+#: common.barcode.status.warning.barred
+msgid "Barred"
+msgstr ""
+
+#: common.barcode.status.warning.blocked
+msgid "Blocked"
+msgstr ""
+
+#: common.barcode.status.warning.unknown
+msgid "with an unknown code: %1$s"
+msgstr ""
+
+#: common.date.invalid
+msgid "Invalid Date"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.unimplemented
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: cat.bib_record
+msgid "Bib Record: %1$s"
+msgstr ""
+
+#: cat.opac.delete_record.confirm
+msgid "Are you sure you want to delete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.delete_record
+msgid "Delete Record"
+msgstr ""
+
+#: cat.opac.delete
+msgid "Delete"
+msgstr ""
+
+#: cat.opac.undelete_record.confirm
+msgid "Are you sure you want to undelete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.undelete_record
+msgid "Undelete Record"
+msgstr ""
+
+#: cat.opac.undelete
+msgid "Undelete"
+msgstr ""
+
+#: cat.opac.cancel
+msgid "Cancel"
+msgstr ""
+
+#: cat.opac.record_deleted
+msgid "Record deleted."
+msgstr ""
+
+#: cat.opac.record_deleted.confirm
+msgctxt "cat.opac.record_deleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#: cat.opac.record_undeleted
+msgid "Record undeleted."
+msgstr ""
+
+#: cat.opac.record_undeleted.confirm
+msgctxt "cat.opac.record_undeleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#. # variables: document ID, error code, error description
+#: cat.opac.record_delete.error
+msgid "Error deleting record #%1$s : %2$s : %3$s"
+msgstr ""
+
+#: cat.save_record
+msgid "Save Record"
+msgstr ""
+
+#: cat.save.success
+msgid "Record successfully saved."
+msgstr ""
+
+#: cat.save.failure
+msgid "Record not likely updated."
+msgstr ""
+
+#: cat.record.counter
+msgid "Record %1$s of %2$s"
+msgstr ""
+
+#: cat.preference.error
+msgid "Preference not likely updated."
+msgstr ""
+
+#: staff.admin.survey.save_response.label
+msgid "Save this response"
+msgstr ""
+
+#: staff.admin.survey.save_response.accesskey
+msgid "R"
+msgstr ""
+
+#: circ.bad_checkdigit
+msgid "This barcode has a bad check digit."
+msgstr ""
+
+#: circ.barcode.enter
+msgid "Please enter a patron barcode first."
+msgstr ""
+
+#: circ.barcode.warning
+msgid "Barcode Warning"
+msgstr ""
+
+#: circ.standalone
+msgid "Standalone"
+msgstr ""
+
+#: circ.duplicate_scan.msg
+msgid "This barcode has already been scanned."
+msgstr ""
+
+#: circ.duplicate_scan.field
+msgid "Duplicate Scan"
+msgstr ""
+
+#: circ.offline_checkout.nonbarcoded
+msgid "or choose a non-barcoded option..."
+msgstr ""
+
+#: circ.offline_checkout.items
+msgid "Enter the number of items:"
+msgstr ""
+
+#: circ.offline_checkout.download.warning
+msgid ""
+"WARNING: The non-barcode types have not been downloaded from the server. "
+"You should log in to retrieve these."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.lost
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.expired
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.barred
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.blocked
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.unknown
+msgid ""
+"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
+"%3$s."
+msgstr ""
+
+#: circ.offline_checkout.date.early
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: circ.offline_checkout.required_field
+msgid "Required Field"
+msgstr ""
+
+#: circ.offline_checkout.valid_count
+msgid "Please try again and enter a valid count."
+msgstr ""
+
+#: circ.offline_checkout.required_value
+msgid "Required Value"
+msgstr ""
+
+#: circ.offline_register.future.birth.date
+msgid "Patron needs to be born yesterday."
+msgstr ""
+
+#: circ.offline_register.invalid.birth.date
+msgid "Happy birthday! You need to be more than 0 days old."
+msgstr ""
+
+#: circ.offline_register.survey.prompt
+msgid "Choose a response..."
+msgstr ""
+
+#: circ.offline_register.missing.post_code
+msgid "Missing Address : Postal Code"
+msgstr ""
+
+#: circ.offline_register.missing.state
+msgid "Missing Address : State"
+msgstr ""
+
+#: circ.offline_register.missing.city
+msgid "Missing Address : City"
+msgstr ""
+
+#: circ.offline_register.missing.street1
+msgid "Missing Address : Line 1"
+msgstr ""
+
+#: circ.offline_register.missing.ident_value
+msgid "Missing Identification Value"
+msgstr ""
+
+#: circ.offline_register.missing.ident_type
+msgid "Missing Identification Type"
+msgstr ""
+
+#: circ.offline_register.missing.dob
+msgid "Missing Date of Birth"
+msgstr ""
+
+#: circ.offline_register.missing.first_given_name
+msgid "Missing First Name"
+msgstr ""
+
+#: circ.offline_register.missing.family_name
+msgid "Missing Last Name"
+msgstr ""
+
+#: circ.offline_register.missing.passwd
+msgid "Missing Password"
+msgstr ""
+
+#: circ.offline_register.missing.barcode
+msgid "Missing Barcode"
+msgstr ""
+
+#: circ.offline_register.missing.profile
+msgid "Missing Profile"
+msgstr ""
+
+#: circ.offline_register.missing.home_ou
+msgid "Missing Home Library"
+msgstr ""
+
+#: circ.offline_register.missing.alert
+msgid "Please fix the following:"
+msgstr ""
+
+#: circ.offline_register.patron.saved
+msgid "Patron Registration Saved"
+msgstr ""
+
+#: circ.offline_register.missing.library.list
+msgid "Missing library list."
+msgstr ""
+
+#: circ.offline_register.missing.profile.list
+msgid "Missing profile list."
+msgstr ""
+
+#: circ.offline_register.missing.id.type.list
+msgid "Missing identification type list."
+msgstr ""
+
+#: circ.offline_register.missing.required.surveys
+msgid "Missing required surveys."
+msgstr ""
+
+#: circ.offline_register.missing.files.error
+msgid ""
+"ERROR: Offline patron registration requires some server-generated files. "
+"Please login periodically to retrieve these files."
+msgstr ""
+
+#: jsan.file_not_found.error
+msgid "File not found: %1$s"
+msgstr ""
+
+#: jsan.namespace.creation.error
+msgid "Could not create namespace[%1$s]: %2$s"
+msgstr ""
+
+#: menu.cmd_edit_copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: menu.cmd_edit_volume_buckets.tab
+msgid "Volume Buckets"
+msgstr ""
+
+#: menu.cmd_edit_record_buckets.tab
+msgid "Record Buckets"
+msgstr ""
+
+#: menu.cmd_edit_user_buckets.tab
+msgid "User Buckets"
+msgstr ""
+
+#: menu.cmd_replace_barcode.prompt
+msgid "Enter original barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.label
+msgctxt "menu.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.retrieval.error
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.prompt
+msgid "Enter the replacement barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.label
+msgctxt "menu.cmd_replace_barcode.replacement.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.blank.error
+msgid "Rename aborted. Blank for barcode not allowed."
+msgstr ""
+
+#: menu.cmd_replace_barcode.duplicate.error
+msgid "Rename aborted. Another copy has barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.testing.error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.permission.error
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.error
+msgid "Error renaming item."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.failure
+msgid "The rename operation probably failed."
+msgstr ""
+
+#: menu.cmd_search_opac.tab
+msgid "Catalog"
+msgstr ""
+
+#: menu.cmd_search_bib_id.tab
+msgid "What is the internal ID for the bibliographic record?"
+msgstr ""
+
+#: menu.cmd_search_bib_id.prompt
+msgid "Bib ID Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.tab
+msgid "What is the TCN or accession ID for the record?"
+msgstr ""
+
+#: menu.cmd_search_tcn.prompt
+msgid "TCN Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.not_found.error
+msgid "\"%1$s\" not found"
+msgstr ""
+
+#: menu.cmd_search_tcn.deleted.error
+msgid "\"%1$s\" is deleted. Show the deleted record anyway?"
+msgstr ""
+
+#: menu.cmd_patron_register.related.tab
+msgid "Editing Related Patron"
+msgstr ""
+
+#: menu.cmd_patron_register.tab
+msgid "Register Patron"
+msgstr ""
+
+#: menu.cmd_browse_holds.tab
+msgid "Hold Browser"
+msgstr ""
+
+#: menu.cmd_browse_holds_shelf.tab
+msgid "Holds Shelf"
+msgstr ""
+
+#: menu.cmd_browse_hold_pull_list.tab
+msgid "On Shelf Pull List"
+msgstr ""
+
+#: menu.cmd_local_admin.tab
+msgid "Local Administration"
+msgstr ""
+
+#: menu.cmd_retrieve_last_patron.session.error
+msgid "No patron visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.session.error
+msgid "No record visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.status
+msgid "Retrieving title..."
+msgstr ""
+
+#: menu.cmd_chg_session.label
+msgid "Change Login"
+msgstr ""
+
+#: menu.cmd_chg_session.operator.label
+msgid "Change Operator: %1$s"
+msgstr ""
+
+#: menu.cmd_manage_offline_xacts.tab
+msgid "Offline Transactions"
+msgstr ""
+
+#: menu.cmd_download_patrons.complete.status
+msgid "Download completed"
+msgstr ""
+
+#: menu.cmd_download_patrons.error
+msgid ""
+"There was a problem with the download. The server returned a status %1$s : "
+"%2$s"
+msgstr ""
+
+#: menu.cmd_stat_cat_edit.tab
+msgid "Statistical Category Editor"
+msgstr ""
+
+#: menu.cmd_non_cat_type_edit.tab
+msgid "Non-Cataloged Type Editor"
+msgstr ""
+
+#: menu.cmd_copy_location_edit.tab
+msgid "Copy Location Editor"
+msgstr ""
+
+#: menu.cmd_console.tab
+msgid "JavaScript Console"
+msgstr ""
+
+#: menu.cmd_shell.tab
+msgid "JavaScript Shell"
+msgstr ""
+
+#: menu.cmd_xuleditor.tab
+msgid "XUL Editor"
+msgstr ""
+
+#: menu.cmd_fieldmapper.tab
+msgid "Fieldmapper"
+msgstr ""
+
+#: menu.cmd_public_opac.tab
+msgid "OPAC"
+msgstr ""
+
+#: menu.cmd_extension_manager.tab
+msgid "Extension Manager"
+msgstr ""
+
+#: menu.cmd_theme_manager.tab
+msgid "Theme Manager"
+msgstr ""
+
+#: menu.cmd_shutdown.prompt
+msgid "Exit Evergreen completely?"
+msgstr ""
+
+#: menu.spawn_search.msg
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: menu.close_all_tabs.error
+msgid "Error closing all tabs"
+msgstr ""
+
+#: menu.new_tab.tab
+msgid "Tab"
+msgstr ""
+
+#: menu.set_tab.error
+msgid "pause for error"
+msgstr ""
+
+#: main.testing
+msgid "Testing"
+msgstr ""
+
+#: main.transaction_export.title
+msgid "Save Transaction File As"
+msgstr ""
+
+#: main.transaction_export.prompt
+msgid "Would you like to overwrite the existing file %1$s?"
+msgstr ""
+
+#: main.transaction_export.prompt.title
+msgid "Transaction Export Warning"
+msgstr ""
+
+#: main.transaction_export.success.prompt
+msgid ""
+"Your transactions have been successfully exported to file %1$s. We strongly "
+"recommend that you now purge the transactions from this staff client. Would "
+"you like for us to do this?"
+msgstr ""
+
+#: main.transaction_export.success.title
+msgid "Transaction Export Successful"
+msgstr ""
+
+#: main.transaction_export.filename.error
+msgid ""
+"Error purging transactions: Taking too long to find a unique filename for "
+"archival."
+msgstr ""
+
+#: main.transaction_export.duplicate.warning
+msgid ""
+"Please note that you now have two sets of identical transactions. Unless "
+"the set you just exported is solely for archival purposes, we run the risk "
+"of duplicate transactions being processed on the server."
+msgstr ""
+
+#: main.transaction_export.no_filename.error
+msgid ""
+"Either you did not choose a filename, or you tried to overwrite an existing "
+"file."
+msgstr ""
+
+#: main.transaction_export.no_transactions.error
+msgid "There are no outstanding transactions to export."
+msgstr ""
+
+#: main.transaction_import.outstanding.error
+msgid ""
+"There are already outstanding transactions on this staff client. Upload "
+"these first."
+msgstr ""
+
+#: main.transaction_import.title
+msgid "Import Transaction File"
+msgstr ""
+
+#: main.transaction_import.delete.prompt
+msgid ""
+"Your transactions have been successfully migrated to this staff client.\n"
+"\n"
+"We recommend that you delete the external copy. Would you like for us to "
+"delete %1$s?"
+msgstr ""
+
+#: main.transaction_import.success
+msgid "Transaction Import Successful"
+msgstr ""
+
+#: main.on_debug.clear_cache
+msgid "cache cleared"
+msgstr ""
+
+#: main.on_debug.debug
+msgid "debug the debug :D"
+msgstr ""
+
+#: main.about_btn.label
+msgid "About this client..."
+msgstr ""
+
+#: main.new_window_btn.label
+msgid "Open New Window"
+msgstr ""
+
+#: main.new_window_btn.login_first_warning
+msgid "Please login first!"
+msgstr ""
+
+#: main.settings.migrate
+msgid ""
+"This version of the staff client stores local settings in a different "
+"location than your previous installation. Should we attempt to migrate "
+"these settings?"
+msgstr ""
+
+#: main.settings.migrate.failed
+msgid ""
+"WARNING: Unable to migrate legacy settings. The settings and configuration "
+"files appear to exist in multiple locations. \n"
+"To resolve this problem manually, please consider:\n"
+"\t%1$s\n"
+"which is in the directory where we want to store settings for the current "
+"operating system account, and:\n"
+"\t%2$s\n"
+"which is where we used to store such information.\n"
+msgstr ""
+
+#: main.settings.migrate.confirm
+msgid ""
+"Move the settings and configuration files from\n"
+"%1$s\n"
+"to\n"
+"%2$s?"
+msgstr ""
+
+#: main.settings.migrate.error
+msgid "Error trying to move %1$s to directory %2$s"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
# translation of opac.dtd.po to French - Canadian
# Dan Scott <dscott@laurentian.ca>, 2007.
# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd, ../../Open-ILS/web/opac/locale/fr-CA/opac.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
msgid ""
msgstr ""
"Project-Id-Version: Evergreen\n"
-"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-11-18 12:33-0400\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
"PO-Revision-Date: 2007-11-19 14:19-0500\n"
"Last-Translator: Dan Scott <dscott@laurentian.ca>\n"
"Language-Team: French - Canadian <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: &\n"
# =================================================================
# Some generic stuff
-# =================================================================
+#. =================================================================
+#. Some generic stuff
+#. =================================================================
#: lang.version
msgid "remote v1"
msgstr "supprimer v1"
msgstr "Auteurs"
#: common.callnumber
-#: opac.advanced.quick.cn
+msgctxt "common.callnumber"
msgid "Call Number"
msgstr "Cote"
msgstr "Type de recherche"
#: common.isbn
-#: opac.advanced.quick.isbn
+msgctxt "common.isbn"
msgid "ISBN"
msgstr "ISBN"
msgstr "Format"
# Message displayed while search results are loading
+#. Message displayed while search results are loading
#: common.loading
-#: myopac.fines.status
+msgctxt "common.loading"
msgid "Loading..."
msgstr "Chargement en cours..."
#: common.login
-#: opac.login.login
+msgctxt "common.login"
msgid "Login"
msgstr "Ouverture de session"
msgstr "Oui"
#: common.cancel
-#: common.org.cancel
-#: myopac.holds.cancel
-#: myopac.holds.cancel_selected
+msgctxt "common.cancel"
msgid "Cancel"
msgstr "Annuler"
#: common.library
-#: rdetail.copyInfo.library
+msgctxt "common.library"
msgid "Library"
msgstr "Bibliothèque"
msgstr "Utilisateur introuvable"
#: opac.advanced.wizard.title
-#: opac.navigate.advanced
+msgctxt "opac.advanced.wizard.title"
msgid "Advanced Search"
msgstr "Recherche avancée"
msgstr "Recherche en cours"
#: common.ofAtLeast
-msgid " of at least "
-msgstr " d'au moins "
+msgid " of about "
+msgstr ""
#: common.relevancy
msgid "Match Score: "
#: common.tips.tip1
msgid "Click on a folder icon in the sidebar to access related quick searches"
-msgstr "Cliquez sur une icône de dossier dans la colonne du côté pour accéder à des recherches rapides connexes"
+msgstr ""
+"Cliquez sur une icône de dossier dans la colonne du côté pour accéder à des "
+"recherches rapides connexes"
#: common.tips.tip2
-msgid "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
-msgstr "Si vous ne trouvez pas ce que vous cherchez, essayez d'élargir votre recherche en utilisant le sélecteur de plage à droite de la barre de recherche"
+msgid ""
+"If you don't find what you want try expanding your search using the range "
+"selector at the right of the search bar"
+msgstr ""
+"Si vous ne trouvez pas ce que vous cherchez, essayez d'élargir votre "
+"recherche en utilisant le sélecteur de plage à droite de la barre de "
+"recherche"
#: common.org.openAll
msgid "Expand All"
msgid "Close All"
msgstr "Fermer tout"
+#: common.org.cancel
+msgctxt "common.org.cancel"
+msgid "Cancel"
+msgstr "Annuler"
+
#: common.org.loading
msgid "Loading library selector..."
msgstr "Chargement du sélecteur de bibliothèque..."
# ==========================================================
# Tips
#: common.org.note
-#: tips.label
#, fuzzy
+msgctxt "common.org.note"
msgid "Tip:"
msgstr "Conseil :"
#: common.org.notetext
-msgid "Click on a location's name to select it. Click on the folder icons to expand a section."
-msgstr "Cliquez sur le nom d'un emplacement pour le sélectionner. Cliquez sur les icônes de dossier pour agrandir une section."
+msgid ""
+"Click on a location's name to select it. Click on the folder icons to "
+"expand a section."
+msgstr ""
+"Cliquez sur le nom d'un emplacement pour le sélectionner. Cliquez sur les "
+"icônes de dossier pour agrandir une section."
+
+#: opac.login.login
+msgctxt "opac.login.login"
+msgid "Login"
+msgstr "Ouverture de session"
# =================================================================
# Footer
#: opac.basic
-#: footer.basic
+msgctxt "opac.basic"
msgid "Basic Catalog (HTML only)"
msgstr "Catalogue de base (HTML seulement)"
#: common.password_criteria
+#, fuzzy
msgid ""
-"The password must be at least 7 characters in length, "
-"\tcontain at least one letter (a-z/A-Z), "
-"\tand contain at least one number."
-msgstr "Le mot de passe doit être constitué d'au moins 7 caractères et contenir au moins une lettre (a-z/A-Z) et au moins un chiffre."
+"The password must be at least 7 characters in length, \n"
+"contain at least one letter (a-z/A-Z), \n"
+"and contain at least one number."
+msgstr ""
+"Le mot de passe doit être constitué d'au moins 7 caractères et contenir au "
+"moins une lettre (a-z/A-Z) et au moins un chiffre."
#: common.a2z.title
msgid "Title: A to Z"
msgstr ""
#: holds.where_am_i
+#, fuzzy
msgid ""
-"PINES is a statewide system with both patrons and items "
-"\tassociated with over 250 libraries, holds lists are not as simple as "
-"\t'first come, first served' in PINES. A complex matrix combining "
-"\tconsideration of item ownership, patron home library, and item purchase "
-"\tdate determines priorities for holds; the list is dynamic, changing "
-"\twith every hold placed. Therefore, any indication of a place in the "
-"\tholds list would be inaccurate. The PINES holds system is designed to "
-"\tobtain a requested item in the fastest and most efficient way possible. "
-"\tYour PINES library will contact you when you hold items become "
-"\tavailable."
-msgstr "PINES est un système à l'échelle de l'État dont les clients et les éléments sont associés à plus de 250 bibliothèques. Dans PINES, les listes des mises en réserve ne reposent pas sur le simple principe du « premier arrivé, premier servi ». Une matrice complexe prenant en compte le propriétaire de l'élément, la bibliothèque d'origine du client et la date d'achat de l'élément détermine les priorités des mises en réserve; la liste est dynamique et change avec chaque mise en réserve. Par conséquent, toute indication d'une place dans la liste des mises en réserve serait inexacte. Le système de mise en réserve PINES est conçu pour obtenir un élément de la manière la plus rapide et la plus efficace. Votre bibliothèque inscrite à PINES vous avertira lorsque les éléments que vous avez réservés seront disponibles. "
+"Holds lists are not as simple as \n"
+"'first come, first served.' A complex matrix combining \n"
+"consideration of item ownership, patron home library, and item purchase \n"
+"date determines priorities for holds; the list is dynamic, changing \n"
+"with every hold placed. Therefore, any indication of a place in the \n"
+"holds list would be inaccurate. The holds system is designed to \n"
+"obtain a requested item in the fastest and most efficient way possible. \n"
+"Your library will contact you when you hold items become \n"
+"available."
+msgstr ""
+"PINES est un système à l'échelle de l'État dont les clients et les éléments "
+"sont associés à plus de 250 bibliothèques. Dans PINES, les listes des mises "
+"en réserve ne reposent pas sur le simple principe du « premier arrivé, "
+"premier servi ». Une matrice complexe prenant en compte le propriétaire de "
+"l'élément, la bibliothèque d'origine du client et la date d'achat de "
+"l'élément détermine les priorités des mises en réserve; la liste est "
+"dynamique et change avec chaque mise en réserve. Par conséquent, toute "
+"indication d'une place dans la liste des mises en réserve serait inexacte. "
+"Le système de mise en réserve PINES est conçu pour obtenir un élément de la "
+"manière la plus rapide et la plus efficace. Votre bibliothèque inscrite à "
+"PINES vous avertira lorsque les éléments que vous avez réservés seront "
+"disponibles. "
#: holds.advanced_options
+#, fuzzy
msgid ""
-"If you wish to broaden the scope of your hold to include other "
-"\tversions of this title, select the formats that would be acceptable. "
-"\tThe first available copy will be sent to you."
-msgstr "Si vous désirez élargir la portée de votre mise en réserve pour inclure d'autres versions de cet ouvrage, sélectionnez les formats qui seraient acceptables. Le premier exemplaire qui devient disponible vous sera envoyé."
+"If you wish to broaden the scope of your hold to include other \n"
+"versions of this title, select the formats that would be acceptable. \n"
+"The first available copy will be sent to you."
+msgstr ""
+"Si vous désirez élargir la portée de votre mise en réserve pour inclure "
+"d'autres versions de cet ouvrage, sélectionnez les formats qui seraient "
+"acceptables. Le premier exemplaire qui devient disponible vous sera envoyé."
# =================================================================
# Events and Permissions
-# =================================================================
+#. =================================================================
+#. Events and Permissions
+#. =================================================================
#: ilsevent.0
msgid "Operation Succeeded"
msgstr "Opération réussie"
#: ilsevent.1000
msgid "Login failed. The username or password entered was incorrect."
-msgstr "Échec de l'ouverture de session. Le nom d'utilisateur ou le mot de passe entré est incorrect."
+msgstr ""
+"Échec de l'ouverture de session. Le nom d'utilisateur ou le mot de passe "
+"entré est incorrect."
#: ilsevent.1001
msgid "Login session has timed out or does not exist"
#: ilsperm.CREATE_HOLD
msgid "User is not allowed to create holds for other users at this location"
-msgstr "L'utilisateur n'est pas autorisé à créer des réserves pour d'autres utilisateurs à cet endroit"
+msgstr ""
+"L'utilisateur n'est pas autorisé à créer des réserves pour d'autres "
+"utilisateurs à cet endroit"
# =================================================================
# common/pages
-# =================================================================
+#. =================================================================
+#. common/pages
+#. =================================================================
#: common.cn.loading
msgid "Loading Callnumber Page..."
msgstr "chargement de la page de cote..."
msgstr "<< Page précédente"
#: common.cn.shelf
-#: rdetail.extras.browser
+msgctxt "common.cn.shelf"
msgid "Shelf Browser"
msgstr "Auto-navigation"
msgstr "Régulier"
# Regular / Large
+#. Regular / Large
#: common.textsize.separator
msgid "/"
msgstr "/"
msgstr "Gros"
#: home.js.disabled
+#, fuzzy
msgid ""
-"JavaScript must be enabled in order for you to use the regular Evergreen Catalog. "
-"However, it seems JavaScript is either disabled or not supported by your browser. "
-"To use the regular Evergreen Catalog, enable JavaScript by changing your browser options, then "
-"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. "
-"<br/><br/>Alternatively, you can use the basic HTML-only catalog "
-"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
-msgstr ""
-"JavaScript doit être activé afin de pouvoir utiliser le catalogue Evergreen ordinaire. "
-"Cependant, il semble que JavaScript soit désactivé ou qu'il soit incompatible avec votre navigateur. "
-"Pour utiliser le catalogue Evergreen ordinaire, activez JavaScript en changeant les options de votre navigateur, puis "
-"<a style='color: blue; text-decoration: underline;' href='/'>essayez de nouveau</a>. "
-"<br/><br/>Sinon, vous pouvez utiliser le catalogue de base en version HTML-seulement "
-"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>ici</a>."
+"JavaScript must be enabled in order for you to use the regular Evergreen "
+"Catalog. \n"
+"However, it seems JavaScript is either disabled or not supported by your "
+"browser. \n"
+"To use the regular Evergreen Catalog, enable JavaScript by changing your "
+"browser options, then \n"
+"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. \n"
+"<br/><br/>Alternatively, you can use the basic HTML-only catalog \n"
+"<a style='color: blue; text-decoration: underline;' "
+"href='/opac/extras/slimpac/start.html'>here</a>."
+msgstr ""
+"JavaScript doit être activé afin de pouvoir utiliser le catalogue Evergreen "
+"ordinaire. Cependant, il semble que JavaScript soit désactivé ou qu'il soit "
+"incompatible avec votre navigateur. Pour utiliser le catalogue Evergreen "
+"ordinaire, activez JavaScript en changeant les options de votre navigateur, "
+"puis <a style='color: blue; text-decoration: underline;' href='/'>essayez de "
+"nouveau</a>. <br/><br/>Sinon, vous pouvez utiliser le catalogue de base en "
+"version HTML-seulement <a style='color: blue; text-decoration: underline;' "
+"href='/opac/extras/slimpac/start.html'>ici</a>."
# =================================================================
# MyOPAC bookbag page
-# =================================================================
+#. =================================================================
+#. MyOPAC bookbag page
+#. =================================================================
#: myopac.delete.bookbag
+#, fuzzy
msgid ""
-"This will remove the selected bookbag and all items contained within the bookbag. "
+"This will remove the selected bookbag and all items contained within the "
+"bookbag. \n"
"Are you sure you wish to continue?"
msgstr ""
-"Cette commande supprimera le sac de livres sélectionné et tous les éléments qu'il contient. "
-"Voulez-vous vraiment continuer?"
+"Cette commande supprimera le sac de livres sélectionné et tous les éléments "
+"qu'il contient. Voulez-vous vraiment continuer?"
#: myopac.no.bookbags
msgid "You have not created any bookbags"
msgstr "Vous n'avez créé aucun sac de livres"
#: myopac.bookbags.title
-#: myopac.bookbags
+msgctxt "myopac.bookbags.title"
msgid "My Bookbags"
msgstr "Mes sacs de livres"
msgid "Hide"
msgstr "Masquer"
-#: myopac.bookbag.share
-msgid "Share"
-msgstr "Partager ce sac de livres"
-
#: myopac.delete
msgid "Delete"
msgstr "Supprimer"
msgstr "supprimer"
#: myopac.publish.text
+#, fuzzy
msgid ""
-"Sharing a Bookbag means that the contents of the Bookbag will be visible to others. "
-"To see the public view of a shared Bookbag, click the \"View\" link in the "
+"Sharing a Bookbag means that the contents of the Bookbag will be visible to "
+"others. \n"
+"To see the public view of a shared Bookbag, click the \"View\" link in the \n"
"\"Shared\" column of the Bookbag list at the top of this page."
msgstr ""
-"Les autres voient le contenu de tout sac de livres partagé. "
-"Pour voir le contenu public d'un sac de livres partagé, cliquez sur le lien 'Visualiser' dans la colonne 'Partagé' de la liste du sac de livres en haut de cette page."
+"Les autres voient le contenu de tout sac de livres partagé. Pour voir le "
+"contenu public d'un sac de livres partagé, cliquez sur le lien 'Visualiser' "
+"dans la colonne 'Partagé' de la liste du sac de livres en haut de cette "
+"page."
#: myopac.item.confirm
msgid "Are you sure you wish to remove this bookbag item?"
msgstr "Voulez-vous vraiment supprimer cet élément du sac de livres?"
#: myopac.publish.confirm
+#, fuzzy
msgid ""
-"Sharing this bookbag will allow the contents "
-"of the bookback to be seen by others. Are you sure you wish to share this bookbag?"
-msgstr "Le partage de ce sac de livres permettra à d'autres de voir son contenu. Voulez-vous vraiment partager ce sac de livres?"
+"Sharing this bookbag will allow the contents \n"
+"of the bookbag to be seen by others. Are you sure you wish to share this "
+"bookbag?"
+msgstr ""
+"Le partage de ce sac de livres permettra à d'autres de voir son contenu. "
+"Voulez-vous vraiment partager ce sac de livres?"
#: myopac.unpublish.confirm
msgid "Are you sure you wish to hide this bookbag?"
msgstr "Le sac de livres a été mis à jour"
#: myopac.create.warning
+#, fuzzy
msgid ""
-"Warning: Adding items to a bookbag creates a link between you and the "
-"items in the database. The contents of the bookbag are NOT publicly "
-"viewable unless the bookbag is shared. However, if you prefer not to "
-"have any link between your patron record and a particular item or items, "
-"we suggest that you do not place said items in a bookbag or that you "
+"Warning: Adding items to a bookbag creates a link between you and the \n"
+"items in the database. The contents of the bookbag are NOT publicly \n"
+"viewable unless the bookbag is shared. However, if you prefer not to \n"
+"have any link between your patron record and a particular item or items, \n"
+"we suggest that you do not place said items in a bookbag or that you \n"
"avoid using bookbags all together. Thank you."
-msgstr "Attention : L'ajout d'éléments dans un sac de livres crée un lien entre vous et les éléments de la base de données. Le contenu d'un sac de livres partagé s'affiche publiquement. Si vous préférez ne pas avoir de lien entre votre dossier client et un ou des éléments en particulier, nous vous suggérons de ne pas placer ces éléments dans un sac de livres ou d'éviter tout simplement d'utiliser les sacs de livres. Merci."
+msgstr ""
+"Attention : L'ajout d'éléments dans un sac de livres crée un lien entre vous "
+"et les éléments de la base de données. Le contenu d'un sac de livres "
+"partagé s'affiche publiquement. Si vous préférez ne pas avoir de lien entre "
+"votre dossier client et un ou des éléments en particulier, nous vous "
+"suggérons de ne pas placer ces éléments dans un sac de livres ou d'éviter "
+"tout simplement d'utiliser les sacs de livres. Merci."
#: myopac.describe.bookbags
msgid "Bookbags are..."
msgstr "Les sacs de livres sont..."
-# =================================================================
-# MyOPAC Checked Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Checked Page
+#. =================================================================
#: myopac.checked.out
msgid "Total items out:"
msgstr ""
msgstr ""
#: myopac.checked.noitems
+#, fuzzy
msgid "You have no items checked out at this time"
-msgstr ""
+msgstr "Vous n'avez aucun élément en réserve en ce moment"
#: myopac.checked.other.circ
msgid "Other Circulations"
msgstr ""
#: myopac.checked.renew.fail
-msgid "The system is unable to renew the selected item at this time. This usually means the item is needed to fulfill a hold. Please see a librarian for further help."
+msgid ""
+"The system is unable to renew the selected item at this time. This usually "
+"means the item is needed to fulfill a hold. Please see a librarian for "
+"further help."
msgstr ""
#: myopac.checked.renew.fail2
-msgid "PINES policy prevents the renewal of this item at this time. Please see a librarian for further details."
+msgid ""
+"Library policy prevents the renewal of this item at this time. Please see a "
+"librarian for further details."
msgstr ""
# =================================================================
# MyOPAC Fines Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Fines Page
+#. =================================================================
#: myopac.fines.title
msgid "Summary"
msgstr "Sommaire"
msgid "Balance Owed"
msgstr "Solde dû"
+# Message displayed while search results are loading
+#: myopac.fines.status
+msgctxt "myopac.fines.status"
+msgid "Loading..."
+msgstr "Chargement en cours..."
+
#: myopac.fines.overdue
msgid "Overdue Materials"
msgstr "Documents en retard"
msgstr "Date d'emprunt"
#: myopac.fines.due
-#: rdetail.cn.due
#, fuzzy
+msgctxt "myopac.fines.due"
msgid "Due Date"
msgstr "Échéance"
# =================================================================
# MyOPAC Holds Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Holds Page
+#. =================================================================
#: myopac.holds.formats
msgid "Formats"
msgstr "Formats"
msgid "Pickup Location"
msgstr "Lieu du ramassage"
-#: myopac.holds.edit.cancel
-msgid "Edit/Cancel"
-msgstr "Éditer/Annuler"
+#: myopac.holds.edit
+msgid "Edit"
+msgstr "Éditer"
#: myopac.holds.status.none
msgid "You have no items on hold at this time"
msgid "Ready for Pickup"
msgstr "Prêt pour le ramassage"
-#: myopac.holds.edit
-msgid "Edit"
-msgstr "Éditer"
+#: myopac.holds.cancel
+msgctxt "myopac.holds.cancel"
+msgid "Cancel"
+msgstr "Annuler"
#: myopac.holds.verify
-msgid "If you wish to cancel the selected hold, click OK, otherwise click Cancel."
-msgstr "cliquez sur OK pour annuler l'élément en réserve sélectionné, sinon cliquez sur Annuler."
+msgid ""
+"If you wish to cancel the selected hold, click OK, otherwise click Cancel."
+msgstr ""
+"cliquez sur OK pour annuler l'élément en réserve sélectionné, sinon cliquez "
+"sur Annuler."
#: myopac.holds.freeze_selected
-msgid "Freeze"
+msgid "Suspend"
msgstr ""
#: myopac.holds.thaw_selected
-msgid "Un-freeze"
+msgid "Activate"
msgstr ""
#: myopac.holds.thaw_date_selected
-msgid "Set Un-freeze date"
+msgid "Set Active Date"
msgstr ""
+#: myopac.holds.cancel_selected
+msgctxt "myopac.holds.cancel_selected"
+msgid "Cancel"
+msgstr "Annuler"
+
#: myopac.holds.processing
msgid "Processing holds... This may take a moment."
msgstr ""
#: myopac.holds.freeze.confirm
msgid ""
-"Are you sure you wish to freeze the selected holds? "
-"Note that if an item has already been selected to fulfill the hold, it will not be frozen"
+"Are you sure you wish to suspend the selected holds? \n"
+"If an item has already been selected to fulfill the hold, it will not be "
+"suspended"
msgstr ""
#: myopac.holds.thaw.confirm
-msgid "Are you sure you wish to un-freeze the selected holds?"
+msgid "Are you sure you wish to activate the selected holds?"
msgstr ""
#: myopac.holds.thaw_date.confirm
-msgid "Are you sure you wish to change the un-freeze date for the selected holds?"
+msgid ""
+"Are you sure you wish to change the activate date for the selected holds?"
msgstr ""
#: myopac.holds.freeze.select_thaw
msgid ""
-"Select an 'Un-Freeze' date. This is the date at which the holds will become active again. "
-"If no date is chosen, the holds will remain frozen until they are manually un-frozen."
+"Select an automatic activation date. If no date is chosen, the holds will "
+"remain suspended until they are manually activated."
msgstr ""
#: opac.holds.freeze
-msgid "Freeze this hold"
+msgid "Suspend this hold"
msgstr ""
#: opac.holds.freeze.help
-msgid "A 'frozen' will retain its place in the queue, but will not be fulfilled until it has been unfrozen."
+msgid ""
+"A suspended hold will retain its place in the queue, but will not be "
+"fulfilled until it has been activated."
msgstr ""
#: opac.holds.freeze.thaw_date
-msgid "Automatically un-freeze hold on:"
+msgid "Automatically activate hold on:"
msgstr ""
#: opac.holds.freeze.thaw_date.format
# =================================================================
# MyOPAC Preferences Page
-# =================================================================
+#. =================================================================
+#. MyOPAC Preferences Page
+#. =================================================================
#: myopac.prefs.title
msgid "Preferences"
msgstr "Préférences"
#: myopac.prefs.search.home
msgid "Always search my home library by default."
-msgstr "par défaut, toujours effectuer la recherche dans ma bibliothèque d'origine."
+msgstr ""
+"par défaut, toujours effectuer la recherche dans ma bibliothèque d'origine."
#: myopac.prefs.search.range
msgid "Default Search Range"
msgstr "Échec de la mise à jour des préférences!"
#: myopac.prefs.help
+#, fuzzy
msgid ""
-"This setting defines how you will be notified of holds that are ready to be picked up from the library. "
-"By default, holds will use the notification style you choose here. "
-"However, you will still have the option to change individual holds regardless of this setting."
+"This setting defines how you will be notified of holds that are ready to be "
+"picked up from the library. \n"
+"By default, holds will use the notification style you choose here. \n"
+"However, you will still have the option to change individual holds "
+"regardless of this setting."
msgstr ""
-"Ce paramètre définit le moyen par lequel vous serez averti que les éléments mis en réserve sont prêts à être ramassés à la bibliothèque. "
-"Par défaut, la réserve utilisera le mode d'avis que vous avez choisi ici. "
-"Cependant, peu importe ce paramètre, vous pouvez toujours changer les mises en réserve individuelles."
+"Ce paramètre définit le moyen par lequel vous serez averti que les éléments "
+"mis en réserve sont prêts à être ramassés à la bibliothèque. Par défaut, la "
+"réserve utilisera le mode d'avis que vous avez choisi ici. Cependant, peu "
+"importe ce paramètre, vous pouvez toujours changer les mises en réserve "
+"individuelles."
#: myopac.holds.unfrozen
-msgid "Un-Frozen"
+msgid "Active"
msgstr ""
#: myopac.holds.frozen.until
-msgid "Frozen Until"
+msgid "Activate on..."
msgstr ""
# =================================================================
# MyOPAC Summary page
-# =================================================================
+#. =================================================================
+#. MyOPAC Summary page
+#. =================================================================
#: myopac.summary.expired
+#, fuzzy
msgid ""
-"Your account expired on <span id='myopac.expired.date'/>! "
+"Your account expired on <span id='myopac.expired.date'/>! \n"
"Please see a librarian to renew your account."
msgstr ""
"Votre compte est arrivé à échéance le <span id='myopac.expired.date'/>! "
msgstr "Veuillez entrer un nom d'utilisateur"
#: myopac.summary.username.dup
-msgid "The requested username is not available. Please choose a different username."
-msgstr "Le nom d'utilisateur demandé n'est pas disponible. Veuillez en choisir un autre."
+msgid ""
+"The requested username is not available. Please choose a different "
+"username."
+msgstr ""
+"Le nom d'utilisateur demandé n'est pas disponible. Veuillez en choisir un "
+"autre."
#: myopac.summary.username.success
msgid "Username successfully updated"
msgstr "Échec de la mise à jour du nom d'utilisateur"
#: myopac.summary.username.invalid
-msgid "Username cannot contain spaces"
-msgstr "Le nom d'utilisateur ne peut pas contenir d'espace"
+msgid "Username cannot contain spaces or have the same format as a barcode"
+msgstr ""
#: myopac.summary.email.error
msgid "Please enter a valid email address"
msgstr "Les mots de passe sont vides ou ne concordent pas"
#: myopac.summary.password.success
-#: login.password.success
+msgctxt "myopac.summary.password.success"
msgid "Password successfully updated"
msgstr "Mot de passe mis à jour"
# =================================================================
# Advanced Search Page
-# =================================================================
+#. =================================================================
+#. Advanced Search Page
+#. =================================================================
#: opac.advanced.wizard.contains
msgid "Selected field contains the following words"
msgstr "Le champ sélectionné contient les mots suivants"
# ==========================================================
# MARC expert search
#: opac.advanced.marc.title
-#: search.marc
+msgctxt "opac.advanced.marc.title"
msgid "MARC Expert Search"
msgstr "Recherche experte MARC"
msgstr "Ajouter une nouvelle ligne"
#: opac.advanced.quick.title
-#: sidebar.quick.search
+msgctxt "opac.advanced.quick.title"
msgid "Quick Search"
msgstr "Recherche rapide"
+#: opac.advanced.quick.isbn
+msgctxt "opac.advanced.quick.isbn"
+msgid "ISBN"
+msgstr "ISBN"
+
#: opac.advanced.quick.issn
msgid "ISSN"
msgstr "ISSN"
msgstr "LCCN"
# title control number
+#. title control number
#: opac.advanced.quick.tcn
msgid "TCN"
msgstr "TCN"
msgid "Item Barcode"
msgstr "Code à barres de l'élément"
+#: opac.advanced.quick.cn
+msgctxt "opac.advanced.quick.cn"
+msgid "Call Number"
+msgstr "Cote"
+
+#: opac.advanced.copy_loc_filter
+msgid "Shelving Location"
+msgstr ""
+
+# ==========================================================
+# MARC expert search
+#. ==========================================================
+#. MARC expert search
+#. ==========================================================
+#: search.marc
+msgctxt "search.marc"
+msgid "MARC Expert Search"
+msgstr "Recherche experte MARC"
+
#: search.marc.tag
msgid "Tag:"
msgstr "Balise :"
# ==========================================================
# Status bar
-# ==========================================================
+#. ==========================================================
+#. Status bar
+#. ==========================================================
#: status.results
msgid "Including results for"
msgstr "Y compris les résultats pour"
+# ==========================================================
+# Tips
+#. ==========================================================
+#. Tips
+#. ==========================================================
+#: tips.label
+#, fuzzy
+msgctxt "tips.label"
+msgid "Tip:"
+msgstr "Conseil :"
+
# =================================================================
# More generic stuff
-# =================================================================
+#. =================================================================
+#. More generic stuff
+#. =================================================================
#: opac.session_expiring
msgid "Your login session will timeout in 1 minute unless there is activity."
msgstr "S'il n'y a pas d'activité, votre session se terminera dans une minute."
msgid "Go to the Home page"
msgstr "Aller à la page d'accueil"
+#: opac.navigate.advanced
+msgctxt "opac.navigate.advanced"
+msgid "Advanced Search"
+msgstr "Recherche avancée"
+
#: opac.navigate.advanced.title
msgid "Go to the Advanced Search Page"
msgstr "Aller à la page de recherche avancée"
#: navigate.myopac
+msgctxt "navigate.myopac"
+msgid "My Account"
+msgstr "Mon compte"
+
#: opac.navigate.myopac
+msgctxt "opac.navigate.myopac"
msgid "My Account"
msgstr "Mon compte"
msgstr "Ouverture de session pour personnaliser des paramètres "
#: navigate.logout
+#, fuzzy
+msgctxt "navigate.logout"
+msgid "Log out"
+msgstr "Fermeture de session"
+
#: navigate.logout.title
#, fuzzy
+msgctxt "navigate.logout.title"
msgid "Log out"
msgstr "Fermeture de session"
msgstr "Choisir une autre bibliothèque"
#: opac.navigate.selectOrg
-#: library.select.help
+msgctxt "opac.navigate.selectOrg"
msgid "Choose a library to search"
msgstr "Choisir une bibliothèque où effectuer la recherche"
msgid "Record Details"
msgstr "Détails de l'enregistrement"
+# =================================================================
+# Footer
+#. =================================================================
+#. Footer
+#. =================================================================
+#: footer.basic
+msgctxt "footer.basic"
+msgid "Basic Catalog (HTML only)"
+msgstr "Catalogue de base (HTML seulement)"
+
#: footer.find.library
msgid "Find a Library Near Me"
msgstr "Trouver une bibliothèque près de chez moi"
msgstr "GALILEO"
#: footer.copyright
-msgid "Copyright © 2006 Georgia Public Library Service"
+msgid "Copyright © 2006-2008 Georgia Public Library Service"
msgstr ""
# Introduces the logo for the project
+#. Introduces the logo for the project
#: footer.logo
msgid "Powered by"
msgstr "Produit par"
# =================================================================
# My OPAC
-# =================================================================
+#. =================================================================
+#. My OPAC
+#. =================================================================
#: myopac.account
msgid "Account Summary"
msgstr "Sommaire du compte"
msgid "Account Preferences"
msgstr "Préférences du compte"
+#: myopac.bookbags
+msgctxt "myopac.bookbags"
+msgid "My Bookbags"
+msgstr "Mes sacs de livres"
+
# =================================================================
# Sidebar
-# =================================================================
+#. =================================================================
+#. Sidebar
+#. =================================================================
#: sidebar.relevantSubjects.headerLabel
msgid "Relevant Subjects"
msgstr "Sujets pertinents"
msgstr "Collections pertinentes"
#: sidebar.relevantReviews.headerLabel
-#: rdetail.extras.reviews
+msgctxt "sidebar.relevantReviews.headerLabel"
msgid "Reviews"
msgstr "Critiques"
+#: sidebar.quick.search
+msgctxt "sidebar.quick.search"
+msgid "Quick Search"
+msgstr "Recherche rapide"
+
#: sidebar.copy.not.found
msgid "No copy with the requested barcode was found"
msgstr "Aucun exemplaire portant le code à barres demandé n'a été trouvé"
# =================================================================
# Search formats
-# =================================================================
+#. =================================================================
+#. Search formats
+#. =================================================================
#: opac.search.books
msgid "Books"
msgstr "Livres"
# =================================================================
# Page Titles
-# =================================================================
+#. =================================================================
+#. Page Titles
+#. =================================================================
#: opac.title.home
msgid "Evergreen Home"
msgstr " Evergreen Accueil "
# =================================================================
# Advanced
-# =================================================================
+#. =================================================================
+#. Advanced
+#. =================================================================
#: advanced.search.title
msgid "Search Input"
msgstr "Données de recherche"
msgid "Submit Search"
msgstr "Envoyer la recherche"
+#: advanced.search.reset
+msgid "Reset Form"
+msgstr ""
+
#: advanced.search.filters
msgid "Search Filters"
msgstr "Filtres de recherche"
# =================================================================
# Rdetail
-# =================================================================
+#. =================================================================
+#. Rdetail
+#. =================================================================
#: rdetail.print
msgid "print these details"
msgstr "Imprimer ces détails"
msgid "Holdable"
msgstr "Mise en réserve possible"
+#: rdetail.cn.due
+#, fuzzy
+msgctxt "rdetail.cn.due"
+msgid "Due Date"
+msgstr "Échéance"
+
#: rdetail.cn.more
msgid "more info..."
msgstr "davantage d'informations..."
msgstr "moins d'information"
#: rdetail.cn.hold
-#: rdetail.copyInfo.hold
+msgctxt "rdetail.cn.hold"
msgid "place hold"
msgstr "mettre en réserve"
msgstr "Première page de résultats"
# Result # &common.of; #
+#. Result # &common.of; #
#: rdetail.result
msgid "Result"
msgstr "Résultat"
msgstr "Créer un nouveau sac de livres"
#: rdetail.record.deleted
+#, fuzzy
msgid ""
-"This record has been deleted from the database. "
-"We recommend that you remove this title from any bookbags it may have been added to."
+"This record has been deleted from the database. \n"
+"We recommend that you remove this title from any bookbags it may have been "
+"added to."
msgstr ""
-"Cet enregistrement a été supprimé de la base de données. "
-"Nous vous recommandons de supprimer ce titre des sacs de livres auxquels il a pu être ajouté."
+"Cet enregistrement a été supprimé de la base de données. Nous vous "
+"recommandons de supprimer ce titre des sacs de livres auxquels il a pu être "
+"ajouté."
#: rdetail.none
msgid "(none)"
msgid "Copy Information"
msgstr "Renseignements sur l'exemplaire"
+#: rdetail.copyInfo.library
+msgctxt "rdetail.copyInfo.library"
+msgid "Library"
+msgstr "Bibliothèque"
+
#: rdetail.copyInfo.callnumber
msgid "Callnumber"
msgstr "Cote"
msgid "browse"
msgstr "naviguer"
+#: rdetail.copyInfo.hold
+msgctxt "rdetail.copyInfo.hold"
+msgid "place hold"
+msgstr "mettre en réserve"
+
#: rdetail.extras.summary
msgid "Copy Summary"
msgstr "Sommaire de l'exemplaire"
+#: rdetail.extras.browser
+msgctxt "rdetail.extras.browser"
+msgid "Shelf Browser"
+msgstr "Auto-navigation"
+
+#: rdetail.extras.reviews
+msgctxt "rdetail.extras.reviews"
+msgid "Reviews"
+msgstr "Critiques"
+
#: rdetail.extras.toc
msgid "Table of Contents"
msgstr "Table des matières "
msgstr ""
#: result.sort_by.pubdate
-msgid "Sort Results by Publicate Date"
+msgid "Sort Results by Publication Date"
msgstr ""
#: result.limit2avail
#: result.info.no.items
msgid "No items with the selected format were found in this location."
-msgstr "Aucun élément dans le format sélectionné ne se trouve à cet emplacement."
+msgstr ""
+"Aucun élément dans le format sélectionné ne se trouve à cet emplacement."
#: result.info.format.items
msgid "Listed below are all items in the catalog with the chosen format."
-msgstr "Les éléments du catalogue ayant le format choisi sont indiqués ci-dessous."
+msgstr ""
+"Les éléments du catalogue ayant le format choisi sont indiqués ci-dessous."
#: result.info.show
msgid "Show records for"
#: result.lowhits.formats
msgid "You will find more hits when searching all item formats:"
-msgstr "Vous obtiendrez davantage d'occurrences en faisant une recherche dans tous les formats de l'élément :"
+msgstr ""
+"Vous obtiendrez davantage d'occurrences en faisant une recherche dans tous "
+"les formats de l'élément :"
#: result.lowhits.formats.search
msgid "Search again with all formats?"
msgid "Perform an Author Search"
msgstr "Effectuer une recherche par auteur"
+#: result.googleBooks.browse
+msgid "Browse in Google Books Search"
+msgstr ""
+
#: common.call.number.label
msgid "Call Number:"
msgstr "Cote :"
msgstr "Code à barres de l'exemplaire :"
#: common.hold.place
-msgid "Place hold for me"
-msgstr "Mettre en réserve pour moi"
+msgid "Place hold for my account"
+msgstr ""
#: common.hold.check
msgid "Checking for possibility of hold fulfillment..."
#: common.hold.delivery
msgid "Please select a physical location where your hold can be delivered."
-msgstr "Veuillez un emplacement physique pour la livraison de l'élément mis en réserve."
+msgstr ""
+"Veuillez un emplacement physique pour la livraison de l'élément mis en "
+"réserve."
#: common.hold.exists
msgid "A hold already exists on the requested item."
msgstr "L'élément demandé a déjà été mis en réserve."
#: common.hold.exists.override
+#, fuzzy
msgid ""
-"A hold already exists on the requested "
+"A hold already exists on the requested \n"
"item. Would you like to create the hold anyway?"
-msgstr " L'élément demandé a déjà été mis en réserve. Voulez-vous quand même créer une nouvelle mise en réserve?"
+msgstr ""
+" L'élément demandé a déjà été mis en réserve. Voulez-vous quand même créer "
+"une nouvelle mise en réserve?"
#: common.hold.barred
+#, fuzzy
msgid ""
-"PATRON BARRED. Please see any notes in the "
-"\"Staff Notes\" section of your \"My Account\" page or contact your local library."
-msgstr "CLIENT INTERDIT. Veuillez consulter la section « Notes du personnel » dans la page « Mon compte » ou communiquer avec votre bibliothèque locale."
+"PATRON BARRED. Please see any notes in the \n"
+"\"Staff Notes\" section of your \"My Account\" page or contact your local "
+"library."
+msgstr ""
+"CLIENT INTERDIT. Veuillez consulter la section « Notes du personnel » dans "
+"la page « Mon compte » ou communiquer avec votre bibliothèque locale."
#: common.hold.item.invalid
+#, fuzzy
msgid ""
-"This hold is no longer valid. It's likely that the "
-"target for the hold was deleted from the system. Please cancel this hold and "
+"This hold is no longer valid. It's likely that the \n"
+"target for the hold was deleted from the system. Please cancel this hold "
+"and \n"
"place a new one."
-msgstr "Cette mise en réserve n'est plus valide. Elle a probablement été effacée dans le système. Veuillez l'annuler et en créer une nouvelle."
+msgstr ""
+"Cette mise en réserve n'est plus valide. Elle a probablement été effacée "
+"dans le système. Veuillez l'annuler et en créer une nouvelle."
#: common.hold.patron.invalid
msgid "The patron barcode entered as the hold recipient is invalid."
msgstr "Le code à barres du client entré comme destinataire est invalide."
# Was (??), perhaps change to a button or icon?
+#. Was (??), perhaps change to a button or icon?
#: common.help
msgid "(Help)"
msgstr "(Aide)"
#: common.phone.format.help
-msgid "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ"
-msgstr "Le format du numéro de téléphone est incorrect. Le format correct est XXX-YYY-ZZZZ"
+msgid ""
+"The phone number does not have the correct format. The expected format is "
+"XXX-YYY-ZZZZ"
+msgstr ""
+"Le format du numéro de téléphone est incorrect. Le format correct est XXX-"
+"YYY-ZZZZ"
#: common.hold.failed
+#, fuzzy
msgid ""
-"No items were found that could fulfill the requested holds. "
-"It's possible that choosing a different format will result in a successful hold. "
-"It is also possible that you have exceeded the number of allowable holds. "
+"No items were found that could fulfill the requested holds. \n"
+"It's possible that choosing a different format will result in a successful "
+"hold. \n"
+"It is also possible that you have exceeded the number of allowable holds. \n"
"For further information, please consult your local librarian."
-msgstr "Aucun élément susceptible de répondre à la demande de mise en réserve n'a été trouvé. Le choix d'un format différent pourrait permettre une mise en réserve. Vous avez peut-être aussi dépassé le nombre permis de mises en réserve. Adressez-vous à un bibliothécaire local pour en savoir davantage."
+msgstr ""
+"Aucun élément susceptible de répondre à la demande de mise en réserve n'a "
+"été trouvé. Le choix d'un format différent pourrait permettre une mise en "
+"réserve. Vous avez peut-être aussi dépassé le nombre permis de mises en "
+"réserve. Adressez-vous à un bibliothécaire local pour en savoir davantage."
#: common.control.click
msgid "(control-click to select multiple formats)"
msgstr "(Le client n'a pas d'adresse électronique configurée)"
#: common.email.set
-msgid "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)"
-msgstr "(Voir <a class='classic_link' id='holds.no_email.my_account'>Mon compte </a> pour établir votre adresse électronique)"
+msgid ""
+"(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> "
+"for setting your email address)"
+msgstr ""
+"(Voir <a class='classic_link' id='holds.no_email.my_account'>Mon compte </a> "
+"pour établir votre adresse électronique)"
#: common.keywords.label
msgid "Keywords:"
msgid "Choose a different library..."
msgstr "Choisir une autre bibliothèque..."
+#: library.select.help
+msgctxt "library.select.help"
+msgid "Choose a library to search"
+msgstr "Choisir une bibliothèque où effectuer la recherche"
+
#: login.username
msgid "Enter your username or library barcode"
msgstr "Entrez votre nom d'utilisateur ou votre code à barres"
msgstr "Changer le mot de passe"
#: login.first.time
+#, fuzzy
msgid ""
-"This appears to be the first time you have logged in. "
+"This appears to be the first time you have logged in. \n"
"You will need to change your password."
-msgstr "Il semble que ce soit votre première ouverture de session. Vous devrez changer votre mot de passe."
+msgstr ""
+"Il semble que ce soit votre première ouverture de session. Vous devrez "
+"changer votre mot de passe."
#: login.password.current.enter
msgid "Enter your current password"
msgid "Passwords do not match"
msgstr "Les mots de passe ne concordent pas"
+#: login.password.success
+msgctxt "login.password.success"
+msgid "Password successfully updated"
+msgstr "Mot de passe mis à jour"
+
#: login.password.strength
msgid "The password provided is not strong enough."
msgstr "Le mot de passe fourni n'est pas assez solide."
#: login.barcode.inactive
-msgid "The barcode used to login is marked as inactive. Please contact your local library."
-msgstr "Le code à barres utilisé est inactif. Veuillez communiquer avec votre bibliothèque locale."
+msgid ""
+"The barcode used to login is marked as inactive. Please contact your local "
+"library."
+msgstr ""
+"Le code à barres utilisé est inactif. Veuillez communiquer avec votre "
+"bibliothèque locale."
#: login.account.inactive
msgid "This account has been deactivated. Please contact your local library."
-msgstr "Ce compte a été désactivé. Veuillez communiquer avec votre bibliothèque locale."
+msgstr ""
+"Ce compte a été désactivé. Veuillez communiquer avec votre bibliothèque "
+"locale."
#: login.failed
+#, fuzzy
msgid ""
-"Login failed. The username or password provided was not valid. "
+"Login failed. The username or password provided was not valid. \n"
"Ensure Caps-Lock is off and try again or contact your local library."
msgstr ""
-"Échec de l'ouverture de session. Le nom d'utilisateur ou le mot de passe fourni est invalide. "
-"Vérifier que la touche des majuscules n'est pas verrouillée et essayez de nouveau ou communiquez avec votre bibliothèque locale."
+"Échec de l'ouverture de session. Le nom d'utilisateur ou le mot de passe "
+"fourni est invalide. Vérifier que la touche des majuscules n'est pas "
+"verrouillée et essayez de nouveau ou communiquez avec votre bibliothèque "
+"locale."
#: button.go
msgid "Go!"
msgstr "Aller!"
-# =================================================================
-# Slimpac Simple Search
-# =================================================================
+#. =================================================================
+#. Slimpac Simple Search
+#. =================================================================
#: slimpac.start.title
msgid "Simple Search"
msgstr ""
# =================================================================
# Slimpac Advanced Search
-# =================================================================
+#. =================================================================
+#. Slimpac Advanced Search
+#. =================================================================
#: slimpac.advanced.language
msgid "Item Language"
msgstr "Langue d'élément"
#: slimpac.advanced.create_date
+#, fuzzy
msgid "Record Creation Date"
-msgstr ""
+msgstr "Date de création du compte"
#: slimpac.advanced.edit_date
msgid "Record Edit Date"
msgid "http://amazon.com/dp/"
msgstr ""
+#~ msgid " of at least "
+#~ msgstr " d'au moins "
+
+#~ msgid "Share"
+#~ msgstr "Partager ce sac de livres"
+
+#~ msgid "Edit/Cancel"
+#~ msgstr "Éditer/Annuler"
+
+#~ msgid "Username cannot contain spaces"
+#~ msgstr "Le nom d'utilisateur ne peut pas contenir d'espace"
+
+#~ msgid "Place hold for me"
+#~ msgstr "Mettre en réserve pour moi"
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.patron.barcode_entry.user_permission_editor
+msgid "User Permission Editor"
+msgstr ""
+
+#: staff.patron.barcode_entry.check_out
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron.barcode_entry.no_barcode
+msgid "No barcode entered."
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_retrieval_problem
+msgid ""
+"Problem retrieving %1$s. Please report this message: \n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_not_found
+msgid "Barcode %1$s not found."
+msgstr ""
+
+#: staff.patron.barcode_entry.consent_from_patron
+msgid ""
+"Does patron %1$s, %2$s from %3$s (%4$s) consent to having their personal "
+"information shared with your library?"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_title
+msgid "Patron/Library Opt-In Confirmation"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_accept
+msgid "Accept"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_deny
+msgid "Deny"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_confirm
+msgctxt "staff.patron.barcode_entry.patron_consent_confirm"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_display_error
+msgid "spawning patron display"
+msgstr ""
+
+#: staff.patron.barcode_entry.user_perm_display_error
+msgid "spawning user perm editor"
+msgstr ""
+
+#: staff.patron.bill_details.my_init.error
+msgid "bill_details.xul, my_init:"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voided_billings.alert
+msgid "All selected billings have already voided."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_title
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_yes
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_no
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voiding_error
+msgctxt "staff.patron.bill_details.handle_void.voiding_error"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.billings_voided
+msgctxt "staff.patron.bill_details.handle_void.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_history.retrieve_mbts_for_list.close_win_try_again
+msgid "Please close this window and try again."
+msgstr ""
+
+#: staff.patron.bill_history.my_init.current_bills
+msgid "Current Bills"
+msgstr ""
+
+#: staff.patron.bill_history.my_init.bill_history
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_plural
+msgid "Are you sure you would like to add a billing to bills %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_singular
+msgid "Are you sure you would like to add a billing to bill %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.title
+msgid "Bill Patron"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_yes
+msgctxt "staff.patron.bill_history.handle_add.btn_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_no
+msgctxt "staff.patron.bill_history.handle_add.btn_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.confirm_message
+msgctxt "staff.patron.bill_history.handle_add.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_history.print_bills.print_error
+msgid "printing bills"
+msgstr ""
+
+#: staff.patron.bills.init_controller.money_summary_label
+msgid "Money Summary"
+msgstr ""
+
+#: staff.patron.bills.bill_payment_amount.credit_amount
+msgid "Patron only has %1$s in credit."
+msgstr ""
+
+#: staff.patron.bills.bill_change_amount.greedy
+msgid "Someone wanted more money than they deserved"
+msgstr ""
+
+#: staff.patron.bills.apply_payment.nothing_applied
+msgid "No payments or patron credit applied."
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment
+msgid "Please annotate this payment:"
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment.title
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills.pay.refund_exceeds_desk_payment
+msgid ""
+"%1$s\n"
+"\n"
+"Another way to \"zero\" this transaction is to use Add Billing and add a "
+"miscellaneous bill to counter the negative balance."
+msgstr ""
+
+#: staff.patron.bills.pay.payment_failed
+msgid "Bill payment likely failed"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.title
+msgctxt "staff.patron.bills.info_box.label_value.title"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.type
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.last_billing
+msgid "Last Billing:"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.add_billing
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.refund
+msgid "Refund"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.void_all_billings
+msgid "Void All Billings"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.full_details
+msgid "Full Details"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.all_voided
+msgid "All billings already voided on this bill."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.message
+msgctxt "staff.patron.bills.void_all_billings.void.message"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.title
+msgctxt "staff.patron.bills.void_all_billings.void.title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.yes
+msgctxt "staff.patron.bills.void_all_billings.void.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.no
+msgctxt "staff.patron.bills.void_all_billings.void.no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.confirm_message
+msgctxt "staff.patron.bills.void_all_billings.void.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.error_voiding_bills
+msgctxt "staff.patron.bills.void_all_billings.error_voiding_bills"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.billings_voided
+msgctxt "staff.patron.bills.void_all_billings.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_wizard.patron_bill_finish.billing_added
+msgid "Billing added."
+msgstr ""
+
+#: staff.patron.display.cmd_search_form.no_patron
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display.cmd_patron_edit.edit_search
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: staff.patron.display.spawn_editor.editing_related_patron
+msgctxt "staff.patron.display.spawn_editor.editing_related_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.display.init.retrieving_patron
+msgid "Retrieving Patron..."
+msgstr ""
+
+#: staff.patron.display.init.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.display.init.network_request.alert_message
+msgid "Alert message: \"%1$s\"<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.inactive_card
+msgid "Patron account retrieved with an INACTIVE card.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_barred
+msgid "Patron account is BARRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_inactive
+msgid "Patron account is INACTIVE.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_expired
+msgid "Patron account is EXPIRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.holds_ready
+msgid "Holds available: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_title
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_message
+msgid ""
+"Press a navigation button above (for example, Check Out) to clear this "
+"alert."
+msgstr ""
+
+#: staff.patron.display.init.network_request.dump_error_message
+msgid "Not re-displaying this alert message: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.error_showing_alert
+msgid "Error showing patron alert and holds availability."
+msgstr ""
+
+#: staff.patron.display.render_search_form.patron_search
+msgid "Patron Search"
+msgstr ""
+
+#: staff.patron.display.tab_name
+msgid "Patron:"
+msgstr ""
+
+#: staff.patron.hold_notices.tooltiptext
+msgid "ID: %1$s Hold ID: %2$s Notifying Staff ID: %3$s"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification_record
+msgid "New Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.method
+msgid "Method"
+msgstr ""
+
+#: staff.patron.hold_notices.note
+msgctxt "staff.patron.hold_notices.note"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel
+msgctxt "staff.patron.hold_notices.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel_accesskey
+msgctxt "staff.patron.hold_notices.cancel_accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record
+msgid "Add Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record_accesskey
+msgctxt "staff.patron.hold_notices.add_notif_record_accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification.not_created
+msgid "The notification was not likely created."
+msgstr ""
+
+#: staff.patron.holds.init.hold_num_error
+msgid "Error retrieving details for hold #%1$s"
+msgstr ""
+
+#: staff.patron.holds.show_notifications.error_rendering_notifs
+msgid "Error rendering or retrieving hold notifications."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_hold_range
+msgid "Please choose a Hold Range:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_library
+msgctxt "staff.patron.holds.holds_edit_selection_depth.choose_library"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.singular
+msgid ""
+"Are you sure you would like to change the Hold Range for hold %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.plural
+msgid ""
+"Are you sure you would like to change the Hold Range for holds %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_title
+msgctxt "staff.patron.holds.holds_edit_selection_depth.modify_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_not_modified
+msgid "Holds not likely modified."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.new_pickup_lib.description
+msgid "Please choose a new Pickup Library:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.choose_lib
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.choose_lib"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.singular
+msgid ""
+"Are you sure you would like to change the Pick Up Library for hold %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.plural
+msgid ""
+"Are you sure you would like to change the Pick Up Library for holds %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.new_phone_number
+msgid ""
+"Please enter a new phone number for hold notification (leave the field empty "
+"to disable phone notification):"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.choose_phone_number
+msgid "Choose a Hold Notification Phone Number"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.singular
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for hold "
+"%1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.plural
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for "
+"holds %1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.modifying_holds_title
+msgctxt "staff.patron.holds.holds_edit_phone_notify.modifying_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.description
+msgid ""
+"Send email notifications (when appropriate)? The email address used is "
+"found in the hold recipient account."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.label
+msgid "Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.accesskey
+msgid "E"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.label
+msgid "No Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.accesskey
+msgid "N"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.set_notifs
+msgid "Set Email Notification for Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.singular
+msgid "Are you sure you would like to enable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.plural
+msgid ""
+"Are you sure you would like to enable email notification for holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.singular
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.singular"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.plural
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.plural"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.mod_holds_title
+msgctxt "staff.patron.holds.holds_edit_email_notify.mod_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.singular
+msgid "Are you sure you would like to reset hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.plural
+msgid "Are you sure you would like to reset holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_title
+msgid "Resetting Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.holds_not_reset
+msgid "Holds not likely reset."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.singular
+msgid "Are you sure you would like to cancel hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.plural
+msgid "Are you sure you would like to cancel holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_title
+msgid "Cancelling Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes
+msgid "For barcodes %1$s, should the associated transits also be cancelled?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes.title
+msgid "Cancelling Transits"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_transits_not_cancelled
+msgid "Hold transits not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_not_cancelled
+msgid "Holds not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.unknown_htype
+msgid ""
+"I do not understand the hold type of %1$s so I can not display the "
+"appropriate record in the catalog."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.retrieving_title
+msgctxt "staff.patron.holds.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.holds.lib_menus.missing_library_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_group_members.failure
+msgid "Failed to retrieve all the group members."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.tab_name
+msgid "Retrieving Patron.."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patron
+msgid "Failed to retrieve patron."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patrons
+msgid "Failed to retrieve patrons."
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.register_clone.tab_name
+msgid "Register Patron Clone for Group"
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.error_spawning_editors
+msgid "error spawning user editors"
+msgstr ""
+
+#: staff.patron.info_group.spwan_editor.editing_patron
+msgctxt "staff.patron.info_group.spwan_editor.editing_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.info_group.spwan_search
+msgid "spawn search"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message
+msgid ""
+"WARNING: If you remove the currently displayed patron, a NEW group will be "
+"displayed in this interface."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message_confirm
+msgid "Remove selected patrons from this group? %1$s"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.error_removing_patron
+msgid "error removing patron (ID=%1$s) from usergroup"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_removed_from_group
+msgid "Patrons removed from group."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_not_removed_from_group
+msgid "Patron not removed from group."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.null_not_allowed
+msgid "null parameter not allowed"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.invalid_parameter
+msgid "Invalid parameter. Expected boolean."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.scan_patron_barcode
+msgid "Please scan a patron barcode:"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_new_usergroup
+msgid "Move patron %1$s into patron %2$s's usergroup..."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.label
+msgid "Move"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.accesskey
+msgid "M"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.label
+msgctxt "staff.patron.info_group.link_patron.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.accesskey
+msgctxt "staff.patron.info_group.link_patron.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_usergroup
+msgid "Move Patron into a Usergroup"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patron
+msgid "error linking patron (ID=%1$s)"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.usergroups_updated
+msgid "User groups updated."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patrons
+msgid "error linking patrons"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.accesskey
+msgctxt "staff.patron.info_notes.render_notes.add_new_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.tooltiptext
+msgid "Note ID: %1$s Creator ID: %2$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.patron_visible
+msgid "Patron Visible"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.staff_only
+msgid "Staff Only"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_message
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn1.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.note_deleted
+msgid "Note deleted."
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pertaining_to
+msgid "Pertaining to"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.created_on
+msgid "created on"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.printing_note_num
+msgid "printing note #%1$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn2.print_note.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.patron_visible.value
+msgid "Patron Visible?"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.title.value
+msgctxt "staff.patron.info_notes.new_note.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note.value
+msgctxt "staff.patron.info_notes.new_note.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.label
+msgctxt "staff.patron.info_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.accesskey
+msgctxt "staff.patron.info_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.label
+msgctxt "staff.patron.info_notes.new_note.add.label"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.accesskey
+msgctxt "staff.patron.info_notes.new_note.add.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgctxt "staff.patron.info_notes.new_note.add_note_title"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgid "Note added."
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note_not_created
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.patron.info_stat_cats.retrieve_fleshed_patron.failed
+msgid "Failed to retrieve patron stat cats."
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.opac_visible
+msgid "OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.not_opac_visible
+msgid "Not OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.rendering_exception
+msgid "rendering or retrieving stat cat"
+msgstr ""
+
+#: staff.patron.info_surveys.retrieve_surveys.failed
+msgid "Failed to retrieve all the survey responses."
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.required
+msgid "Required"
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.not_required
+msgid "Not Required"
+msgstr ""
+
+#: staff.patron.items.show_noncats.14_days
+msgid "14 days"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_noncat
+msgid "Error showing NonCat #%1$s"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_circulations
+msgid "Error showing NonCat circulations"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.list_is_busy
+msgid ""
+"This is list is busy retrieving or rendering rows for a prior action. Abort "
+"the prior action and proceed?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.renew_items_in_list
+msgid "Renew all the items in this list?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.items_not_renewed
+msgid "All items were not likely renewed (%1$s)"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewing
+msgid "Renewing %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewed
+msgid "%1$s renewed."
+msgstr ""
+
+#: staff.patron.items.items_renew.not_renewed
+msgid ""
+"%1%s not renewed.\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.err_in_renew_via_barcode
+msgid ""
+"Error in renew_via_barcode callback\n"
+"Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew_for_barcode
+msgid "Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew
+msgid "Renew probably did not happen."
+msgstr ""
+
+#: staff.patron.items.items_edit.invalid_date
+msgid "Invalid Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.need_later_date
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.singular
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.plural
+msgid "Edit Due Dates"
+msgstr ""
+
+#: staff.patron.items.items_edit.new_due_date
+msgid "Enter a new due date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.dates_not_modified
+msgid "The due dates were not likely modified."
+msgstr ""
+
+#: staff.patron.items.items_edit.mark_barcode_lost
+msgid "Mark barcode lost = %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.item_barcode
+msgid ""
+"Item Barcode %1$s\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.items_not_marked_lost
+msgid "The items were not likely marked lost."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.date_cannot_be_in_future
+msgid "Claims Returned Date cannot be in the future."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.claimed_returned
+msgid "Claimed Returned"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.enter_returned_date
+msgid "Enter a claimed returned date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.not_marked_claimed_returned
+msgid "The items were not likely marked Claimed Returned."
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.singular
+msgid "Are you sure you would like to check in item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.plural
+msgid "Are you sure you would like to check in items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.no_checkin
+msgid "Checkin probably did not happen."
+msgstr ""
+
+#: staff.patron.items.show_catalog.barcode_not_cataloged
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.patron.items.show_catalog.retrieving_title
+msgctxt "staff.patron.items.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.items.retrieve_row.callback_error
+msgid "Error in callback for FM_CIRC_DETAILS.authoritative in patron/items.js"
+msgstr ""
+
+#: staff.patron.items.retrieve_row.error_in_retrieve_row
+msgid "error in patron/items.js retrieve_row():"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row2
+msgid ""
+"2 Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row
+msgid ""
+"Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.retrieve.err_retrieving_circulations
+msgid "Error retrieving circulations."
+msgstr ""
+
+#: staff.patron.items.gen_list_append.error
+msgid "patron/items.js: error in gen_list_append"
+msgstr ""
+
+#: staff.patron.search_result.search.no_patrons_found
+msgid "No patrons found matching search criteria."
+msgstr ""
+
+#: staff.patron.search_result.search.capped_results
+msgid "Results capped at %1$s patrons."
+msgstr ""
+
+#: staff.patron.search_result.search.enter_search_terms
+msgid "Please enter some search terms."
+msgstr ""
+
+#: staff.patron.search_result.init.typeof_params
+msgid "typeof params.on_retrieve == %1$s"
+msgstr ""
+
+#: staff.patron.search_result.init.search_print
+msgid "patron search print"
+msgstr ""
+
+#: staff.patron.search_result.init.search_clipboard
+msgid "patron search clipboard"
+msgstr ""
+
+#: staff.patron.search_result.init.search_saving_columns
+msgid "patron search saving columns"
+msgstr ""
+
+#: staff.patron.summary.patron_bill.money
+msgid "$ %1$s"
+msgstr ""
+
+#: staff.patron.summary.retrieve.no_barcode
+msgid "summary: No barcode or ID"
+msgstr ""
+
+#: staff.patron.summary.patron_net_access
+msgid "Internet"
+msgstr ""
+
+#: staff.patron.summary.expires_on
+msgid "Expires on"
+msgstr ""
+
+#: staff.patron.ue.uEditInit.session_no_defined
+msgctxt "staff.patron.ue.uEditInit.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: staff.patron.ue.uEditSaveuser.error_creating_note
+msgid "Error creating patron guardian or parent note"
+msgstr ""
+
+#: staff.patron.ue.uEditShowSearch.search
+msgctxt "staff.patron.ue.uEditShowSearch.search"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
+
+#: staff.patron.user_edit.save_user.depth_required
+msgid "Depth is required on the %1$s permission."
+msgstr ""
+
+#: staff.patron.user_edit.save_user.user_modified_successfully
+msgid ""
+"User %1$s [%2$s] successfully modified.\n"
+"%3$s permissions and %4$s work locations updated."
+msgstr ""
+
+#: staff.patron.user_edit.display_perm.select_one
+msgid "-- Select One --"
+msgstr ""
+
+#: web.staff.patron.ue.session_no_defined
+msgctxt "web.staff.patron.ue.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: web.staff.patron.ue.uedit_show_search.search_would_be
+msgctxt "web.staff.patron.ue.uedit_show_search.search_would_be"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/admin.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.admin.font_settings.sound
+msgid "Sound preference saved to file system."
+msgstr ""
+
+#: staff.admin.font_settings.save
+msgid "Global Font saved to file system."
+msgstr ""
+
+#: staff.admin.font_settings.sound.disabled
+msgid "Sound is now disabled."
+msgstr ""
+
+#: staff.admin.font_settings.sound.enabled
+msgid "Sound is now enabled."
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_SMALLER
+msgid "Global Font Adjust set to Smaller than Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_LARGER
+msgid "Global Font Adjust set to Larger than Default"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_XX_SMALL
+msgid "Global Font set to XX-Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_X_SMALL
+msgid "Global Font set to X-Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_SMALL
+msgid "Global Font set to Small"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_MEDIUM
+msgid "Global Font set to Medium"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_LARGE
+msgid "Global Font set to Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_X_LARGE
+msgid "Global Font set to X-Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_XX_LARGE
+msgid "Global Font set to XX-Large"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_5PT
+msgid "Global Font set to 5pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_6PT
+msgid "Global Font set to 6pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_7PT
+msgid "Global Font set to 7pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_8PT
+msgid "Global Font set to 8pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_9PT
+msgid "Global Font set to 9pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_10PT
+msgid "Global Font set to 10pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_11PT
+msgid "Global Font set to 11pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_12PT
+msgid "Global Font set to 12pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_13PT
+msgid "Global Font set to 13pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_14PT
+msgid "Global Font set to 14pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_15PT
+msgid "Global Font set to 15pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_16PT
+msgid "Global Font set to 16pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_17PT
+msgid "Global Font set to 17pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_18PT
+msgid "Global Font set to 18pt"
+msgstr ""
+
+#: staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT
+msgctxt "staff.admin.font_settings.status_msg.ALL_FONTS_DEFAULT"
+msgid "Global Font Adjust set to Default"
+msgstr ""
+
+#: staff.admin.transit_list.missing_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.admin.transit_list.no_match
+msgid "No matching transits."
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date
+msgid "Invalid Date (%1$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.invalid_date_format
+msgid "Invalid Date (%1$s,%2$s), setting to Today"
+msgstr ""
+
+#: staff.admin.transit_list.date_processing.error
+msgid "error processing date"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_transit.error
+msgid "error retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.preretrieving_transit.error
+msgid "error pre-retrieving transits"
+msgstr ""
+
+#: staff.admin.transit_list.retrieving_row.error
+msgid "error retrieving row"
+msgstr ""
+
+#: staff.admin.transit_list.empty_array.error
+msgid "Empty array returned by hold retrieve."
+msgstr ""
+
+#: staff.admin.transit_list.retrieve_hold.error
+msgid "retrieving hold id = %1$s for transit id = %2$s"
+msgstr ""
+
+#: staff.admin.transit_list.transit_id.error
+msgid "retrieving transit id = %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.organization
+msgid "Organization"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.description
+msgid "Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_created
+msgid "Date Created"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.created_by
+msgid "Created By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.upload_count
+msgid "Upload Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.transactions_processed
+msgid "Transactions Processed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.processing
+msgid "Processing?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_started
+msgid "Date Started"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.date_completed
+msgid "Date Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_list.session
+msgid "Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.date_uploaded
+msgid "Date Uploaded"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.uploaded_by
+msgid "Uploaded By"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.time_delta
+msgid "Server/Local Time Delta"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_script_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_script_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.workstation
+msgctxt "staff.admin.offline_manage_xacts.init_error_list.workstation"
+msgid "Workstation"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.type
+msgid "Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_code
+msgid "Event Code"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_name
+msgid "Event Name"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.event_description
+msgid "Event Description"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.count
+msgid "In House Use Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_type
+msgid "Non-Cataloged Type"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.noncat_count
+msgid "Non-Cataloged Count"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.init_error_list.backdate
+msgid "Check In Backdate"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.check_perm
+msgid "Error checking permissions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.bad_cgi_response
+msgid "Bad response from CGI component"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.execute_error
+msgid "Execute error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_execute_error
+msgid "Error executing session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.session_retrieval
+msgid "Error retrieving session errors:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.non_existent_file
+msgid "Cannot rename a non-existent file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.renaming_file
+msgid "Error renaming transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.unique_file
+msgid "Taking too long to find a unique filename."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts
+msgid ""
+"Something bad happened. New offline transactions were accumulated during "
+"our attempted upload. Tell your system admin that the file involved is %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.title
+msgid "Transaction conflicts"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.ok
+msgid "Ok"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.transaction_conflicts.confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.reverting_file
+msgid "Error reverting transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.archiving_file
+msgid "Error archiving transaction file"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.session_upload
+msgid "Please select a session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.single_session_upload
+msgid "Please select a single session to upload to."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no_transactions
+msgid "No pending transactions to upload."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_file
+msgid "There was an error:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.uploading_transactions
+msgid "Error uploading transactions"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_session
+msgid "Error retrieving session status"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session.prompt
+msgid "Please enter a description:"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.create_session
+msgid "Create an Offline Transaction Session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session
+msgid "Error creating session"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.create_session.alert
+msgid "Error: %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.retrieving_sessions
+msgid "Error retrieving offline sessions."
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_session
+msgid "Error rendering session list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.upload_status
+msgid "Uploaded Transactions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_script
+msgid "Error rendering script list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_errors
+msgid "Exceptions for %1$s"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.error.rendering_error_list
+msgid "Error rendering error list"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.completed
+msgid "Completed"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.no
+msgid "No"
+msgstr ""
+
+#: staff.admin.offline_manage_xacts.yes
+msgid "Yes"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/auth.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.auth.controller.not_configured
+msgid "Not yet configured for the specified server."
+msgstr ""
+
+#: staff.auth.controller.testing_hostname
+msgid "Testing hostname..."
+msgstr ""
+
+#: staff.auth.controller.prompt_hostname
+msgid "Please enter a server hostname."
+msgstr ""
+
+#: staff.auth.controller.error_hostname
+msgid "There was an error testing this hostname."
+msgstr ""
+
+#: staff.auth.controller.status
+msgid "%1$s : %2$s"
+msgstr ""
+
+#: staff.auth.controller.testing_version
+msgid "Testing version..."
+msgstr ""
+
+#: staff.auth.controller.error_version
+msgid "There was an error checking version support."
+msgstr ""
+
+#: staff.auth.controller.version_mismatch
+msgid ""
+"This server does not support your version of the staff client. Please check "
+"with your system administrator."
+msgstr ""
+
+#. # login with <username> and <password> at <server>
+#: staff.auth.controller.error_login
+msgid "login with %1$s and %2$s at %3$s"
+msgstr ""
+
+#: staff.auth.controller.confirm_close
+msgid "Are you sure you would like to exit the program completely?"
+msgstr ""
+
+#: staff.auth.session.unregistered
+msgid "%1$s is not registered with this server."
+msgstr ""
+
+#: staff.auth.session.login_failed
+msgid ""
+"Login failed. Please check your Server Hostname, Username, Password, and "
+"your CAPS LOCK key."
+msgstr ""
+
+#: staff.auth.session.init_false
+msgid "open-ils.auth.authenticate.init returned false"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: cat.barcode_for_item
+msgid "The barcode for the item is %1$s"
+msgstr ""
+
+#: cat.batch_operation_failed
+msgid "The whole batch operation failed. %1$s"
+msgstr ""
+
+#: cat.copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: cat.total_bucket_items_in_bucket
+msgid "Contains %1$s bucket items"
+msgstr ""
+
+#: cat.results_returned
+msgid "Returning %1$s hits"
+msgstr ""
+
+#: staff.cat.bib_brief.record_id
+msgid "Record ID = %1$s"
+msgstr ""
+
+#: staff.cat.bib_brief.deleted
+msgid "(Deleted)"
+msgstr ""
+
+#: staff.cat.bib_brief.inactive
+msgid "(Inactive)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat
+msgid "(Not Cataloged)"
+msgstr ""
+
+#: staff.cat.bib_brief.noncat.alert
+msgid "Item not cataloged."
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.title
+msgid "Add Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_item.error
+msgid "copy browser -> add copies"
+msgstr ""
+
+#: staff.cat.copy_browser.add_items_bucket.error
+msgid "copy browser -> add copies to bucket"
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.failed
+msgid "Barcode %1$s not likely replaced."
+msgstr ""
+
+#: staff.cat.copy_browser.replace_barcode.error
+msgid "copy browser -> replace barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_items.error
+msgid "Copy Browser -> Edit Items"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm.plural
+msgid "Are you sure you would like to delete these %1$s items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.confirm
+msgid "Are you sure you would like to delete this item?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.title
+msgid "Delete Items?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.delete
+msgctxt "staff.cat.copy_browser.delete_items.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.cancel
+msgctxt "staff.cat.copy_browser.delete_items.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.override
+msgctxt "staff.cat.copy_browser.delete_items.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_items.error
+msgid "copy browser -> delete items"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.tab
+msgctxt "staff.cat.copy_browser.print_spine.tab"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.print_spine.error
+msgid "copy browser -> Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.permission_error
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.title
+msgid "Add Volume/Item"
+msgstr ""
+
+#: staff.cat.copy_browser.add_volume.error
+msgid "copy browser -> add volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.permission_error
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title
+msgid "Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.title.plural
+msgctxt "staff.cat.copy_browser.edit_volume.title.plural"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.failed
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.error
+msgid "volume update error:"
+msgstr ""
+
+#: staff.cat.copy_browser.edit_volume.exception
+msgid "Copy Browser -> Volume Edit"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.prompt.plural
+msgid "Are you sure you would like to delete these %1$s volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.delete
+msgctxt "staff.cat.copy_browser.delete_volume.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.cancel
+msgctxt "staff.cat.copy_browser.delete_volume.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.override
+msgctxt "staff.cat.copy_browser.delete_volume.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.copies_remain
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.cat.copy_browser.delete_volume.exception
+msgid "copy browser -> delete volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.alert
+msgid "Library + Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.prompt
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_library.title
+msgctxt "staff.cat.copy_browser.mark_library.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.alert
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.mark_volume.title
+msgctxt "staff.cat.copy_browser.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_volume.alert
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.prompt
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.submit.label
+msgctxt "staff.cat.copy_browser.transfer.submit.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.label
+msgctxt "staff.cat.copy_browser.transfer.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.cancel.accesskey
+msgctxt "staff.cat.copy_browser.transfer.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.incomplete
+msgctxt "staff.cat.copy_browser.transfer.incomplete"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.override.failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.ineligible_destination
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer.unexpected_error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.missing_volume
+msgctxt "staff.cat.copy_browser.transfer_items.missing_volume"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_browser.transfer_items.unexpected_error
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_browser.missing_library
+msgid "Missing library list."
+msgstr ""
+
+#: staff.cat.copy_browser.consortial_copy_count.error
+msgid "Error retrieving consortial copy count."
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.tree_location
+msgid "Location/Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.volume_count
+msgctxt "staff.cat.copy_browser.list_init.volume_count"
+msgid "Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.list_init.copy_count
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.error
+msgid "Copy Browser Actions"
+msgstr ""
+
+#: staff.cat.copy_browser.refresh_list.error
+msgid "Problem refreshing the volume/copy tree."
+msgstr ""
+
+#: staff.cat.copy_buckets.render_pending_copies.complete
+msgctxt "staff.cat.copy_buckets.render_pending_copies.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.retrieve_row.error
+msgid "Error retrieving details for item with copy id = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.choose_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.choose_bucket"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.render.retrieve_bucket
+msgctxt "staff.cat.copy_buckets.menulist.render.retrieve_bucket"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.prompt
+msgctxt "staff.cat.copy_buckets.menulist.change_bucket.prompt"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.undefined
+msgid "Could not find a bucket with ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_buckets.menulist.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket id?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_sel_add.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_sel_add.error"
+msgid "Addition likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.error
+msgid "Deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_item.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_item.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.confirm"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.complete
+msgctxt "staff.cat.copy_buckets.copy_buckets_delete_bucket.complete"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_delete_bucket.error
+msgid "Bucket deletion likely failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.container_exists"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.success
+msgid "Bucket \"%1$s\" created."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets.batch.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.no_volume
+msgid ""
+"Please mark a volume as the destination from within the copy browser and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.confirm
+msgid ""
+"Transfer the items in bucket \"%1$s\" from their original volumes to the "
+"volume labelled \"%2$s\" for the library \"%3$s\" on the following record?"
+msgstr ""
+
+#: staff.cat.copy_buckets.copy_buckets_transfer_to_volume.error
+msgid "Items not likely transferred."
+msgstr ""
+
+#: staff.cat.copy_buckets.cmd_export_to_copy_status.error
+msgid "Copy Status from Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets.prep_item_for_list.error
+msgid "List building failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt
+msgid "Copy this item into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.bucket_prompt.plural
+msgctxt "staff.cat.copy_buckets_quick.bucket_prompt.plural"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error
+msgctxt "staff.cat.copy_buckets_quick.copy_buckets_new_bucket.error"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.addition.error
+msgid "Addition likely failed for bucket = %1$s and copy ID = %2$s."
+msgstr ""
+
+#: staff.cat.copy_editor.caption
+msgid "Copy Editor"
+msgstr ""
+
+#: staff.cat.copy_editor.create_copies
+msgid "Create Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.status
+msgid "Status"
+msgstr ""
+
+#: staff.cat.copy_editor.retrieve_templates.error
+msgid "Error retrieving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_templates.error
+msgid "Error applying template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.prompt
+msgid "Enter template name:"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.title
+msgid "Save As Template"
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.success
+msgid "Template \"%1$s\" saved."
+msgstr ""
+
+#: staff.cat.copy_editor.save_as_template.error
+msgid "Error saving template"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.confirm
+msgid "Delete template \"%1$s\"?"
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.success
+msgid "Template \"%1$s\" deleted."
+msgstr ""
+
+#: staff.cat.copy_editor.delete_template.error
+msgid "Error deleting template"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.title
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.cat.copy_editor.export_templates.error
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.title
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.prompt
+msgid "Replace the existing template with the imported template?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.title
+msgid "Template %1$s already exists."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.yes
+msgctxt "staff.cat.copy_editor.import_templates.replace.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.no
+msgctxt "staff.cat.copy_editor.import_templates.replace.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.replace.click_here
+msgctxt "staff.cat.copy_editor.import_templates.replace.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.prompt
+msgid "Save all of these imported templates permanently to this account?"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.title
+msgid "Final warning"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.yes
+msgctxt "staff.cat.copy_editor.import_templates.save.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.no
+msgctxt "staff.cat.copy_editor.import_templates.save.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.click_here
+msgctxt "staff.cat.copy_editor.import_templates.save.click_here"
+msgid "Click here"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.success
+msgid "All templates saved."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.save.error
+msgid "Error saving templates"
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.note
+msgid ""
+"Note: These imported templates will get saved along with any new template "
+"you try to create, but if that does not happen, then these templates will "
+"disappear with the next invocation of the item attribute editor."
+msgstr ""
+
+#: staff.cat.copy_editor.import_templates.error
+msgid "Error importing templates"
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.undefined_volume.error
+msgid ""
+"Error retrieving Volume information for copy %1$s. The owning library for "
+"this copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.apply_owning_lib.call_number.error
+msgid ""
+"Error changing owning library for copy %1$s. The owning library for this "
+"copy will not be changed."
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count
+msgid "1 copy"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_count.plural
+msgid "%1$s copies"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.label
+msgctxt "staff.cat.copy_editor.apply.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.copy_editor.apply.accesskey
+msgctxt "staff.cat.copy_editor.apply.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+msgctxt "staff.cat.copy_editor.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.success
+msgid "Items were added or modified."
+msgstr ""
+
+#: staff.cat.copy_editor.handle_update.error
+msgid "copy update error:"
+msgstr ""
+
+#: staff.cat.copy_editor.add_stat_cat.error
+msgid "Error adding statistical category to display definition"
+msgstr ""
+
+#: staff.cat.copy_editor.populate_stat_cat.error
+msgid "Error populating statistical categories for display"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.render_notes.accesskey
+msgctxt "staff.cat.copy_notes.render_notes.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.note_id
+msgid "Note ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets_apply.creator_id
+msgid "Creator ID:"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.public
+msgid "Public"
+msgstr ""
+
+#: staff.cat.copy_notes.widgets.private
+msgid "Private"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.msg
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.yes
+msgctxt "staff.cat.copy_notes.delete_note.prompt.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.prompt.no
+msgctxt "staff.cat.copy_notes.delete_note.prompt.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.success
+msgid "Note deleted."
+msgstr ""
+
+#: staff.cat.copy_notes.delete_note.close_window
+msgid "Close Window"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.public
+msgid "Public?"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.title
+msgid "Title"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.note
+msgid "Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.label
+msgctxt "staff.cat.copy_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.cancel.accesskey
+msgctxt "staff.cat.copy_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.label
+msgid "Add Note"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.add_note.accesskey
+msgctxt "staff.cat.copy_notes.new_note.add_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.success
+msgid "Note added."
+msgstr ""
+
+#: staff.cat.copy_notes.new_note.error
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.cat.copy_summary.copy_id
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circs"
+msgstr ""
+
+#: staff.cat.copy_summary.yes
+msgctxt "staff.cat.copy_summary.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.cat.copy_summary.no
+msgctxt "staff.cat.copy_summary.no"
+msgid "No"
+msgstr ""
+
+#: staff.cat.copy_summary.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.cat.copy_summary.not_cataloged
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_row
+msgid "Add Row: CTRL+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.insert_row
+msgid "Insert Row: CTRL+Shift+Enter"
+msgstr ""
+
+#: staff.cat.marcedit.help.add_subfield
+msgid "Add Subfield: CTRL+D"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_row
+msgid "Remove Row: CTRL+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.remove_subfield
+msgid "Remove Subfield: SHIFT+Del"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_006
+msgid "Create/Replace 006: CTRL+F6"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_007
+msgid "Create/Replace 007: CTRL+F7"
+msgstr ""
+
+#: staff.cat.marcedit.help.replace_008
+msgid "Create/Replace 008: CTRL+F8"
+msgstr ""
+
+#: staff.cat.marcedit.save.label
+msgid "Save Record"
+msgstr ""
+
+#: staff.cat.marcedit.marcTag.LDR.label
+msgid "MARC Leader"
+msgstr ""
+
+#: staff.cat.marcedit.add_row.label
+msgid "Add Row"
+msgstr ""
+
+#: staff.cat.marcedit.remove_row.label
+msgid "Remove Row"
+msgstr ""
+
+#: staff.cat.marcedit.replace_006.label
+msgid "Add/Replace 006"
+msgstr ""
+
+#: staff.cat.marcedit.replace_007.label
+msgid "Add/Replace 007"
+msgstr ""
+
+#: staff.cat.marcedit.replace_008.label
+msgid "Add/Replace 008"
+msgstr ""
+
+#: staff.cat.marcedit.not_authority_field.label
+msgid "Not a controlled subfield"
+msgstr ""
+
+#: staff.cat.marcedit.apply_selected.label
+msgid "Apply Selected"
+msgstr ""
+
+#: staff.cat.marcedit.no_authority_match.label
+msgid "No matching authority records found"
+msgstr ""
+
+#: staff.cat.marc_new.create_record.label
+msgid "Create Record"
+msgstr ""
+
+#: staff.cat.marc_new.system_local.label
+msgid "System Local"
+msgstr ""
+
+#: staff.cat.marc_new.record_created.label
+msgid "Record created."
+msgstr ""
+
+#: staff.cat.marc_new.retrieving.label
+msgctxt "staff.cat.marc_new.retrieving.label"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.marc_new.creating_record.error
+msgid "Error creating MARC record."
+msgstr ""
+
+#: staff.cat.marc_new.loading_template.error
+msgid "Error loading MARC template: %1$s"
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.alert
+msgid "Record successfully saved."
+msgstr ""
+
+#: staff.cat.opac.set_marc_edit.std_unexpected_error
+msgid "Record not likely updated."
+msgstr ""
+
+#: staff.cat.opac.refresh.function_not_implemented.alert
+msgid "Not yet implemented. Work around: Choose Duplicate in New Tab option"
+msgstr ""
+
+#: staff.cat.opac.set_tab_name
+msgid "Record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.save_file_as
+msgid "Save File As"
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.alert
+msgid "File not downloaded."
+msgstr ""
+
+#: staff.cat.record_buckets.export_records.std_unexpected_error
+msgid "Records could not be exported."
+msgstr ""
+
+#: staff.cat.record_buckets.rednder_pending_records.alert
+msgctxt "staff.cat.record_buckets.rednder_pending_records.alert"
+msgid "Action completed."
+msgstr ""
+
+#: staff.cat.record_buckets.retrieve_row.std_unexpected_error
+msgid "Error retrieving mvr for record with ID = %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.buckets.std_unexpected_error
+msgid "Could not retrieve your buckets."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item1
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item1"
+msgid "Choose a bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.menulist_placeholder.item2
+msgctxt "staff.cat.record_buckets.menulist_placeholder.item2"
+msgid "Retrieve shared bucket..."
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.bucket_id
+msgctxt "staff.cat.record_buckets.change_bucket.bucket_id"
+msgid "Enter bucket number:"
+msgstr ""
+
+#: staff.cat.record_buckets.change_bucket.error
+msgid "Error retrieving bucket. Did you use a valid bucket ID?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_bucket_named
+msgctxt "staff.cat.record_buckets.delete_bucket_named"
+msgid "Delete the bucket named %1$s?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_prompt_title
+msgctxt "staff.cat.record_buckets.new_bucket.bucket_prompt_title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.same_name_alert
+msgctxt "staff.cat.record_buckets.new_bucket.same_name_alert"
+msgid "You already have a bucket with that name."
+msgstr ""
+
+#: staff.cat.record_buckets.new_bucket.bucket_created
+msgid "Bucket %1$s created."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.merge_lead
+msgid "Merge these records? (Select the \"lead\" record first)"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.button.label
+msgid "Merge"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.merge_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead_record_number
+msgid "Lead Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.lead
+msgid "Lead"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt_title
+msgid "Record Merging"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.fancy_prompt.alert
+msgid "Merge Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.success
+msgid "Records were successfully merged."
+msgstr ""
+
+#: staff.cat.record_buckets.merge_records.catch.std_unex_error
+msgid "Records were not likely merged."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml1
+msgid "Delete these records?"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.button.label
+msgctxt "staff.cat.record_buckets.delete_records.button.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.label
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.cancel_button.accesskey
+msgctxt "staff.cat.record_buckets.delete_records.cancel_button.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.xml2
+msgid "Record? # %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt_title
+msgid "Record Purging"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.fancy_prompt.alert
+msgid "Delete Aborted"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s1
+msgid "Error deleting these records:\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.s2
+msgid "Record #%1$s : %2$s : %3$s\n"
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.delete_success.alert
+msgid "Records deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.delete_records.catch.std_unex_err
+msgid "Records were not likely deleted."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_broken.alert
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.tab_name
+msgctxt "staff.cat.record_buckets.cmd_sel_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.record_buckets.cmd_sel_opac.catch.std_unex_err
+msgid "Showing in OPAC"
+msgstr ""
+
+#: staff.cat.record_buckets.submit.query_status
+msgctxt "staff.cat.record_buckets.submit.query_status"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.record_buckets.prep_record_for_list.std_unex_err
+msgid "Could not retrieve this record: %1$s"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_one_record
+msgid "Copy this record into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.copy_multiple_records
+msgctxt "staff.cat.record_buckets_quick.copy_multiple_records"
+msgid "Copy these %1$s items into which bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.initing_record_buckets_quick_xul
+msgid "Trying to init record_buckets_quick.xul"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket"
+msgid "What would you like to name the bucket?"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.name_of_bucket.title
+msgctxt "staff.cat.record_buckets_quick.name_of_bucket.title"
+msgid "Bucket Creation"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.bucket_creation_failure
+msgctxt "staff.cat.record_buckets_quick.bucket_creation_failure"
+msgid "Bucket creation failed."
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.addition_failed
+msgid "Addition likely failed for bucket = %1$s and record ID = %2$s"
+msgstr ""
+
+#: staff.cat.spine_labels.copy
+msgid "copy"
+msgstr ""
+
+#: staff.cat.spine_labels.copies
+msgid "copies"
+msgstr ""
+
+#: staff.cat.spine_labels.generate.std_unexpeceted_err
+msgid "Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.title
+msgctxt "staff.cat.spine_labels.preview.title"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.spine_labels.preview.std_unexpected_err
+msgid "Preview and Print"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.prompt
+msgid "Enter original barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.old_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.old_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.error_alert
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.prompt
+msgid "Enter the replacement barcode for the copy:"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc_window_prompt.title
+msgctxt "staff.cat.util.replace_barcode.new_bc_window_prompt.title"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.util.replace_barcode.new_bc.failed
+msgid "Rename aborted. Blank barcodes are not allowed."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.testing_error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.insufficient_permission_for_rename
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.item_rename_error
+msgid "Error renaming item."
+msgstr ""
+
+#: staff.cat.util.replace_barcode.rename_error
+msgid "Rename did not likely occur."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.unmarked_volume_alert
+msgctxt "staff.cat.util.transfer_copies.unmarked_volume_alert"
+msgid ""
+"Please mark a volume as the destination from within holdings maintenance and "
+"then try this again."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.params_message
+msgid ""
+"Transfer items from their original volumes to %1$s's volume labelled %2$s on "
+"the following record (and change their circulation libs to match)?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer.label
+msgctxt "staff.cat.util.transfer_copies.transfer.label"
+msgid "Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.label
+msgctxt "staff.cat.util.transfer_copies.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.cancel.accesskey
+msgctxt "staff.cat.util.transfer_copies.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.window_title
+msgid "Item Transfer"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.aborted_transfer
+msgctxt "staff.cat.util.transfer_copies.aborted_transfer"
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.override_transfer_failure
+msgid "Override Transfer Failure?"
+msgstr ""
+
+#: staff.cat.util.transfer_copies.successful_transfer
+msgid "Items transferred."
+msgstr ""
+
+#: staff.cat.util.transfer_copies.transfer_error
+msgid "All items not likely transferred."
+msgstr ""
+
+#: staff.cat.util.spine_editor.tab_name
+msgctxt "staff.cat.util.spine_editor.tab_name"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.spine_editor.spine_editor_error
+msgctxt "staff.cat.util.spine_editor.spine_editor_error"
+msgid "Spine Labels"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.unknown_barcode
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.cat.util.show_in_opac.catalog_error_for_doc_id
+msgid "Error opening catalog for document ID = %1$s"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_in_title
+msgid "Batch"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit_in_title
+msgctxt "staff.cat.util.copy_editor.edit_in_title"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view_in_title
+msgctxt "staff.cat.util.copy_editor.view_in_title"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.copy_attributes_in_title
+msgid "Copy Attributes"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_edit
+msgid "Batch Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.batch_view
+msgid "Batch View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.edit
+msgctxt "staff.cat.util.copy_editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.cat.util.copy_editor.view
+msgctxt "staff.cat.util.copy_editor.view"
+msgid "View"
+msgstr ""
+
+#: staff.cat.util.copy_editor.not_modified
+msgid "Copies not modified."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Damaged status."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_title
+msgctxt "staff.cat.util.mark_item_damaged.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.af_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_message
+msgid ""
+"Change the status for these items to Damaged? You will have to manually "
+"retrieve the last circulation if you need to bill a patron. Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_title
+msgid "Mark Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_ok_label
+msgctxt "staff.cat.util.mark_item_damaged.md_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_cancel_label
+msgctxt "staff.cat.util.mark_item_damaged.md_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.md_confirm_action
+msgctxt "staff.cat.util.mark_item_damaged.md_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.marking_error
+msgid "Error marking item %1$s damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.one_item_damaged
+msgid "Item marked Damaged"
+msgstr ""
+
+#: staff.cat.util.mark_item_damaged.multiple_item_damaged
+msgid "%1$s items marked Damaged."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_message
+msgid ""
+"Action failed. One or more of these items is in a special status such as "
+"\"Checked Out\" or \"In Transit\" and cannot be changed to the Missing status."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_title
+msgctxt "staff.cat.util.mark_item_missing.af_title"
+msgid "Action failed."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_ok_label
+msgctxt "staff.cat.util.mark_item_missing.af_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.af_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.af_confirm_action"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_message
+msgid "'Change the status for these items to Missing? Barcodes: %1$s"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_title
+msgid "Mark Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_ok_label
+msgctxt "staff.cat.util.mark_item_missing.ms_ok_label"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_cancel_label
+msgctxt "staff.cat.util.mark_item_missing.ms_cancel_label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.ms_confirm_action
+msgctxt "staff.cat.util.mark_item_missing.ms_confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.marking_error
+msgid "Error marking item %1$s missing."
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.one_item_missing
+msgid "Item marked Missing"
+msgstr ""
+
+#: staff.cat.util.mark_item_missing.multiple_item_missing
+msgid "%1$s items marked Missing."
+msgstr ""
+
+#: staff.cat.volume_buckets.window_tab_name
+msgid "Volume Buckets"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.my_init.btn.label
+msgctxt "staff.cat.volume_copy_creator.my_init.btn.label"
+msgid "Apply"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.message
+msgid ""
+"You may not add more than %1$s items at a time for a given volume in this "
+"interface."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.title
+msgid "Maximum items exceeded."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_volume_count_entry.ok_label
+msgid "Ok"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.call_nums
+msgid "Call Numbers"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_callnumber_copy_count_entry.num_of_copies
+msgid "# of Copies"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_message
+msgid "\"%1$s\" is an invalid barcode."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_title
+msgid "Invalid Barcode"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button
+msgctxt "staff.cat.volume_copy_creator.render_barcode_entry.alert_ok_button"
+msgid "OK"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.render_barcode_entry.alert_confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.problem_with_volume
+msgid ""
+"Problem finding or creating %1$s. We will skip item creation for this "
+"volume."
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err2
+msgid "volume tree update 2"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.stash_and_close.tree_err3
+msgid "volume tree update 3"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.load_prefs.err_retrieving_prefs
+msgid "Error retrieving stored preferences"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.save_prefs.err_storing_prefs
+msgid "Error storing preferences"
+msgstr ""
+
+#: staff.cat.z3950.obj_list_init.list_construction_error
+msgid "Failure during list construction."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.deck_label
+msgid "Results View"
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_view_error
+msgid "Failure during MARC view."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_error
+msgid "Failure during MARC import."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.marc_import_overlay_error
+msgid "Failure during MARC import overlay."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.search_fields_error
+msgid "Error setting up search fields."
+msgstr ""
+
+#: staff.cat.z3950.obj_controller_init.z39_service_error
+msgid "Z39.50 services not likely retrieved."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.no_search_selection
+msgid "No services selected to search."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.searching
+msgctxt "staff.cat.z3950.initial_search.searching"
+msgid "Searching..."
+msgstr ""
+
+#: staff.cat.z3950.initial_search.failed_search
+msgid "Failure during initial search."
+msgstr ""
+
+#: staff.cat.z3950.page_next.more_results
+msgid "Retrieving more results..."
+msgstr ""
+
+#: staff.cat.z3950.page_next.subsequent_search_error
+msgid "Failure during subsequent search."
+msgstr ""
+
+#: staff.cat.z3950.search.search_error
+msgid "Failure during actual search."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.null_server_error
+msgid "Server Error: request returned null"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.server_error
+msgid "Server Error: %1$s : %2$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.raw_query
+msgid "Raw query: %1$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.showing_results
+msgid "Showing %1$s of %2$s for %3$s"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.num_of_results
+msgid "%1$s records found"
+msgstr ""
+
+#: staff.cat.z3950.handle_results.result_error
+msgid "Error retrieving results."
+msgstr ""
+
+#: staff.cat.z3950.handle_results.search_result_error
+msgid "Failure during search result handling."
+msgstr ""
+
+#: staff.cat.z3950.replace_tab_with_opac.tab_name
+msgctxt "staff.cat.z3950.replace_tab_with_opac.tab_name"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.title
+msgctxt "staff.cat.z3950.spawn_marc_editor.title"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn1_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn1_overlay"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn2_import
+msgid "Import with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.btn3_cancel_import
+msgctxt "staff.cat.z3950.spawn_marc_editor.btn3_cancel_import"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor.successful_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import_with_new_tcn
+msgid "Record successfully imported with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_cancelled
+msgid "Record import cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.successful_import
+msgid "Record successfully imported."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor.import_error
+msgid "Record not likely imported."
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.description
+msgid "Overlay this record?"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.label
+msgctxt "staff.cat.z3950.confirm_overlay.lead.label"
+msgid "Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.lead.accesskey
+msgid "O"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.label
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.cancel.accesskey
+msgctxt "staff.cat.z3950.confirm_overlay.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.title
+msgid "Record Overlay"
+msgstr ""
+
+#: staff.cat.z3950.confirm_overlay.aborted
+msgid "Overlay Aborted"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.try_again
+msgid ""
+"Please mark a record for overlay from within the catalog and try this again."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.tab_name
+msgid "MARC Editor"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_record_label
+msgid "Overlay Record"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.same_tcn"
+msgid ""
+"A record with TCN %1$s already exists.\n"
+"FIXME: add record summary here"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.import_collision"
+msgid "Import Collision"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn1_overlay
+msgid "Overlay with alternate TCN %1$s"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.permission_error"
+msgid "check permission"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.btn2_cancel"
+msgid "Cancel Import"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.confirm_action"
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.successful_overlay_with_new_TCN
+msgid "Record successfully overlaid with alternate TCN."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.cancelled_overlay
+msgid "Record overlay cancelled"
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay
+msgctxt "staff.cat.z3950.spawn_marc_editor_for_overlay.success_overlay"
+msgid "Record successfully overlaid."
+msgstr ""
+
+#: staff.cat.z3950.spawn_marc_editor_for_overlay.overlay_error
+msgid "Record not likely overlaid."
+msgstr ""
+
+#: staff.cat.z3950.load_creds.z3950_cred_error
+msgid "Error retrieving stored z39.50 credentials"
+msgstr ""
+
+#: staff.cat.z3950.save_creds.z3950_cred_error
+msgid "Problem storing z39.50 credentials."
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.circ.alert
+msgid "Alert"
+msgstr ""
+
+#: staff.circ.item_no_circs
+msgid "Item %1$s has never circulated."
+msgstr ""
+
+#: staff.circ.invalid_date
+msgctxt "staff.circ.invalid_date"
+msgid "Invalid Date"
+msgstr ""
+
+#: staff.circ.future_date
+msgid "Future Date"
+msgstr ""
+
+#: staff.circ.process_item
+msgid "Check In / Process Item"
+msgstr ""
+
+#: staff.circ.backdated_checkin
+msgid "Backdated %1$s Check In"
+msgstr ""
+
+#: staff.circ.backdate.exception
+msgid "Problem setting backdate: %1$s"
+msgstr ""
+
+#: staff.circ.unimplemented
+msgctxt "staff.circ.unimplemented"
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.circ.check_digit.bad
+msgctxt "staff.circ.check_digit.bad"
+msgid ""
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
+msgstr ""
+
+#: staff.circ.barcode.bad
+msgid "Bad Barcode"
+msgstr ""
+
+#: staff.circ.cancel
+msgctxt "staff.circ.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.barcode.accept
+msgid "Accept Barcode"
+msgstr ""
+
+#: staff.circ.confirm
+msgid "Check here to confirm this action"
+msgstr ""
+
+#: staff.circ.confirm.msg
+msgid "Check here to confirm this message."
+msgstr ""
+
+#. # If we know the name of the object, we could parameterize that as well
+#: staff.circ.checkin.exception
+msgid "Something went wrong in circ.util.checkin: %1$s"
+msgstr ""
+
+#: staff.circ.checkin2.exception
+msgid "Something went wrong in circ.util.checkin2: %1$s"
+msgstr ""
+
+#: staff.circ.checkin.exception.external
+msgctxt "staff.circ.checkin.exception.external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.external
+msgid "circ.checkin2: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin.exception.no_external
+msgctxt "staff.circ.checkin.exception.no_external"
+msgid "circ.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkin2.exception.no_external
+msgid "circ.util.checkin2: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.external
+msgctxt "staff.circ.util.checkin.exception.external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.util.checkin.exception.no_external
+msgctxt "staff.circ.util.checkin.exception.no_external"
+msgid "circ.util.checkin: Calling external .on_checkin()"
+msgstr ""
+
+#: staff.circ.checkout.sorting.exception
+msgid "error in sorting non-cataloged items: %1$s"
+msgstr ""
+
+#: staff.circ.checkout.date.exception
+msgid "Use this format: YYYY-MM-DD"
+msgstr ""
+
+#: staff.circ.checkout.unimplemented
+msgctxt "staff.circ.checkout.unimplemented"
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.msg
+msgid "Enter the number of %1$s circulating:"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.title
+msgid "Non-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.msg
+msgid "You tried to circulate %1$d %2$s. The maximum is 99 per action."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.too_many.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.too_many.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.ok.btn
+msgctxt "staff.circ.checkout.ok.btn"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.msg
+msgid "Are you sure you want to circulate %1$d %2$s?"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.confirm.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.confirm.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.yes.btn
+msgctxt "staff.circ.checkout.yes.btn"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.checkout.no.btn
+msgctxt "staff.circ.checkout.no.btn"
+msgid "No"
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.msg
+msgid "Error with non-cataloged checkout. %1$s is not a valid number."
+msgstr ""
+
+#: staff.circ.checkout.cmd_checkout_submit.non_numeric.title
+msgctxt "staff.circ.checkout.cmd_checkout_submit.non_numeric.title"
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: staff.circ.checkout.disable.error
+msgid "Error determining whether to disable checkout."
+msgstr ""
+
+#: staff.circ.checkout.date.too_early.error
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed
+msgid "%1$s failed."
+msgstr ""
+
+#: staff.circ.checkout.non_cataloged.pending
+msgid "Non-cataloged checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.pending
+msgid "%1$s checkout pending..."
+msgstr ""
+
+#: staff.circ.checkout.barcode.failed.alert
+msgid "Check Out Failed %1$s"
+msgstr ""
+
+#: staff.circ.checkout.override.confirm
+msgid "Override Checkout Failure?"
+msgstr ""
+
+#: staff.circ.checkout.not_cataloged.confirm
+msgid "Mis-scan or non-cataloged item. Checkout as a pre-cataloged item?"
+msgstr ""
+
+#: staff.circ.pre_cataloged
+msgid "Pre-cataloged"
+msgstr ""
+
+#: staff.circ.non_cataloged
+msgid "Non-cataloged"
+msgstr ""
+
+#: staff.circ.checkout.cancelled
+msgid "Checkout cancelled"
+msgstr ""
+
+#: staff.circ.checkout.card.inactive
+msgid ""
+"The card used to retrieve this account is inactive and may not be used to "
+"circulate items."
+msgstr ""
+
+#: staff.circ.checkout.barcode.check_out_failed
+msgid "Check Out Failed"
+msgstr ""
+
+#: staff.circ.checkout.account.inactive
+msgid "This account is inactive and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.account.expired
+msgid "This account has expired and may not circulate items."
+msgstr ""
+
+#: staff.circ.checkout.item_due
+msgid "This item was due on %1$s."
+msgstr ""
+
+#: staff.circ.checkout.normal_checkin_then_checkout
+msgid "Normal Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.forgiving_checkin_then_checkout
+msgid "Forgiving Checkin then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.abort_transit_then_checkout
+msgid "Abort Transit then Checkout"
+msgstr ""
+
+#: staff.circ.checkout.network_failure
+msgid "There was a network failure."
+msgstr ""
+
+#: staff.circ.checkout.copy_status
+msgid "Copy status = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.alert_message
+msgid "Alert Message = %1$s"
+msgstr ""
+
+#: staff.circ.checkout.permission_denied
+msgid "Permission Denied = %1$s"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkout.suggest_offline
+msgid ""
+"Check Out Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkout.barcode
+msgctxt "staff.circ.checkout.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_out_id
+msgid "Check Out Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.staff_in_id
+msgid "Check In Staff ID = %1$s"
+msgstr ""
+
+#: staff.circ.circ_brief.failure
+msgid "Failure rendering circulation."
+msgstr ""
+
+#: staff.circ.copy_details.hold
+msgid "Hold ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.transit
+msgid "Transit ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.circ
+msgid "Circulation ID = %1$s"
+msgstr ""
+
+#: staff.circ.copy_details.last_circ
+msgid "Last Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.current_circ
+msgid "Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.no_circ
+msgid "This item has yet to circulate."
+msgstr ""
+
+#: staff.circ.copy_details.not_transit
+msgid "This item is not in transit."
+msgstr ""
+
+#. # Displays user info: "Family name, First name : Barcode"
+#: staff.circ.copy_details.user_details
+msgid "%1$s, %2$s : %3$s"
+msgstr ""
+
+#: staff.circ.copy_details.bad_hold_status
+msgid ""
+"This item is not captured for a hold, however its status is incorrectly set "
+"to \"On Holds Shelf\". Please check this item in to correct the status."
+msgstr ""
+
+#: staff.circ.copy_details.no_hold
+msgid "This item is not captured for a hold."
+msgstr ""
+
+#: staff.circ.copy_status.tab_name
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status.action.complete
+msgid "Action complete."
+msgstr ""
+
+#: staff.circ.copy_status.sel_checkin.error
+msgid "Checkin did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcode.error
+msgid "Barcode %1$s was not likely replaced."
+msgstr ""
+
+#: staff.circ.copy_status.cmd_replace_barcodes.error
+msgid "Barcode replacements did not likely happen."
+msgstr ""
+
+#: staff.circ.copy_status.sel_edit.error
+msgid "with copy editor"
+msgstr ""
+
+#: staff.circ.copy_status.sel_renew.not_circulating
+msgid "Item with barcode %1$s is not circulating."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.title
+msgid "Import Barcode File"
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.complete
+msgid "File uploaded."
+msgstr ""
+
+#: staff.circ.copy_status.upload_file.no_barcodes
+msgid "No barcodes found in file."
+msgstr ""
+
+#: staff.circ.copy_status.add_items.title
+msgid "Add Item for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.confirm
+msgid "Are you sure sure you want to delete these items? %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.title
+msgctxt "staff.circ.copy_status.del_items.title"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success
+msgid "Items Deleted"
+msgstr ""
+
+#: staff.circ.copy_status.del_items.success.error
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.mark_destination
+msgid "Please mark a volume as the destination and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_items.problem
+msgid "All copies not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.perm_failure
+msgid "You do not have permission to add volumes to that library."
+msgstr ""
+
+#: staff.circ.copy_status.add_volumes.title
+msgid "Add Volume/Item for Record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.perm_failure
+msgid "You do not have permission to edit this volume."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volume.title
+msgid "Volume for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.title
+msgid "Volumes for record # %1$s"
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.duplicate
+msgid ""
+"Edit failed: You tried to change a volume's callnumber to one that is "
+"already in use for the given library. You should transfer the items to the "
+"desired callnumber instead."
+msgstr ""
+
+#: staff.circ.copy_status.edit_volumes.success
+msgid "Volumes modified."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.singular
+msgid "Are you sure you would like to delete this volume?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.plural
+msgid "Are you sure you would like to delete these volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.title
+msgid "Delete Volumes?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete
+msgid "Delete"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.cancel
+msgctxt "staff.circ.copy_status.delete_volumes.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.override
+msgctxt "staff.circ.copy_status.delete_volumes.override"
+msgid "Override Delete Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.delete_copies
+msgid ""
+"You must delete all the copies on the volume before you may delete the "
+"volume itself."
+msgstr ""
+
+#: staff.circ.copy_status.delete_volumes.success
+msgid "Volumes deleted."
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.status
+msgid "Volume marked as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.prompt
+msgid "Choose just one Volume to mark as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_volume.title
+msgctxt "staff.circ.copy_status.mark_volume.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.ok
+msgctxt "staff.circ.copy_status.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library
+msgid "Library and Record marked as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one
+msgid "Choose just one Library to mark as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status.mark_library.limit_one.title
+msgctxt "staff.circ.copy_status.mark_library.limit_one.title"
+msgid "Limit Selection"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.none
+msgid ""
+"Please mark a library as the destination from within holdings maintenance "
+"and then try this again."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.confirm
+msgid "Transfer volumes %1$s to library %2$s on the following record?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.transfer.label
+msgid "Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.label
+msgctxt "staff.circ.copy_status.transfer_volume.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cancel.accesskey
+msgid "C"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.title
+msgid "Volume Transfer"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.aborted
+msgid "Transfer Aborted"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.override_failure
+msgid "Override Volume Transfer Failure?"
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.cannot_have_vols
+msgid "That destination cannot have volumes."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.success
+msgid "Volumes transferred."
+msgstr ""
+
+#: staff.circ.copy_status.transfer_volume.error
+msgid "All volumes not likely transferred."
+msgstr ""
+
+#: staff.circ.copy_status.test_barcode.prompt
+msgctxt "staff.circ.copy_status.test_barcode.prompt"
+msgid ""
+"Bad check digit, possibly due to a bad scan. Use this barcode (\"%1$s\") "
+"anyway?"
+msgstr ""
+
+#: staff.circ.copy_status.status.null_result
+msgid "Something weird happened. Result was null."
+msgstr ""
+
+#: staff.circ.copy_status.status.copy_not_found
+msgid "%1$s was either mis-scanned or is not cataloged."
+msgstr ""
+
+#: staff.circ.copy_status.status.not_cataloged
+msgctxt "staff.circ.copy_status.status.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.copy_status.status.pre_cat
+msgid "Item is a pre-cataloged item."
+msgstr ""
+
+#: staff.circ.copy_status.status.hold
+msgid "Item is captured for a Hold."
+msgstr ""
+
+#: staff.circ.copy_status.status.transit
+msgid "Item is in Transit."
+msgstr ""
+
+#: staff.circ.copy_status.status.circ
+msgid "Item is circulating."
+msgstr ""
+
+#: staff.circ.hold_capture.print.to_printer
+msgid "To Printer"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.barcode
+msgctxt "staff.circ.hold_capture.print.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.title
+msgid "Title:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.author
+msgid "Author:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.route_to
+msgid "Route to:"
+msgstr ""
+
+#. # pad this with whitespace to align with the rest of the staff.circ.hold_capture.print.* entries
+#: staff.circ.hold_capture.print.patron
+msgid "Patron:"
+msgstr ""
+
+#: staff.circ.hold_capture.calling_external
+msgid "circ.hold_capture: Calling external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.no_external
+msgid "circ.hold_capture: No external .on_hold_capture()"
+msgstr ""
+
+#: staff.circ.hold_capture.capture_failed
+msgid "Could not capture hold."
+msgstr ""
+
+#: staff.circ.hold_capture.error
+msgid "FIXME: need special alert and error handling"
+msgstr ""
+
+#: staff.circ.in_house_use.tab_name
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.barcode
+msgctxt "staff.circ.in_house_use.barcode"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncat_sort_error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.circ.in_house_use.noncataloged
+msgid "Non-Cataloged"
+msgstr ""
+
+#: staff.circ.in_house_use.items_dump
+msgid "items ="
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple
+msgid "Are you sure you want to mark %1$s as having been used %2$s times?"
+msgstr ""
+
+#: staff.circ.in_house_use.confirm_multiple.title
+msgid "In-House Use Verification"
+msgstr ""
+
+#: staff.circ.in_house_use.yes
+msgctxt "staff.circ.in_house_use.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.in_house_use.no
+msgctxt "staff.circ.in_house_use.no"
+msgid "No"
+msgstr ""
+
+#. # adjust Circulation -> Offline Interface to match your translation in lang.dtd
+#: staff.circ.in_house_use.failed.verbose
+msgid ""
+"In House Use Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.in_house_use.failed
+msgid "In House Use Failed"
+msgstr ""
+
+#: staff.circ.in_house_use.ok
+msgctxt "staff.circ.in_house_use.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.in_house_use.external
+msgid "circ.in_house_use: Calling external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.no_external
+msgid "circ.in_house_use: No external .on_in_house_use()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.external
+msgid "circ.in_house_use: Calling external .on_failure()"
+msgstr ""
+
+#: staff.circ.in_house_use.on_failure.no_external
+msgid "circ.in_house_use: No external .on_failure()"
+msgstr ""
+
+#: staff.circ.print_list_template.window.title
+msgid "Template Macros"
+msgstr ""
+
+#: staff.circ.print_list_template.window.heading
+msgid "General:"
+msgstr ""
+
+#: staff.circ.print_list_template.window.template_type
+msgid "For type: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.window.close
+msgid "Close Window"
+msgstr ""
+
+#: staff.circ.print_list_template.preview
+msgid "preview:"
+msgstr ""
+
+#: staff.circ.print_list_template.save
+msgid "Template Saved"
+msgstr ""
+
+#: staff.circ.print_list_template.save_as
+msgid "Save Templates File As"
+msgstr ""
+
+#: staff.circ.print_list_template.export.error
+msgctxt "staff.circ.print_list_template.export.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.import
+msgid "Import Templates File"
+msgstr ""
+
+#: staff.circ.print_list_template.import_results
+msgid "Imported these templates: %1$s"
+msgstr ""
+
+#: staff.circ.print_list_template.reload
+msgid "Please reload this interface."
+msgstr ""
+
+#: staff.circ.print_list_template.import.error
+msgctxt "staff.circ.print_list_template.import.error"
+msgid "Error exporting templates"
+msgstr ""
+
+#: staff.circ.print_list_template.tab_name
+msgid "Receipt Template Editor"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.confirm
+msgid "Are you sure you would like to abort transits for copies: %1$s?"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.title
+msgid "Aborting Transits"
+msgstr ""
+
+#: staff.circ.utils.yes
+msgctxt "staff.circ.utils.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.utils.no
+msgctxt "staff.circ.utils.no"
+msgid "No"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_allowed
+msgid "Copy ID = %1$s"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.not_found
+msgid ""
+"This item was no longer in transit at the time of the abort. Perhaps this "
+"happened from a stale display?"
+msgstr ""
+
+#: staff.circ.utils.abort_transits.unexpected_error
+msgid "Transit not likely aborted."
+msgstr ""
+
+#: staff.circ.utils.retrieve_patron.failure
+msgid "Problem retrieving patron."
+msgstr ""
+
+#: staff.circ.utils.retrieve_copy.failure
+msgid "Problem retrieving copy details."
+msgstr ""
+
+#: staff.circ.utils.retrieve_circs.failure
+msgid "Problem retrieving circulations."
+msgstr ""
+
+#: staff.circ.utils.offline.timestamp
+msgid "Timestamp"
+msgstr ""
+
+#: staff.circ.utils.offline.checkout_time
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.utils.offline.type
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat
+msgid "Non-Cataloged?"
+msgstr ""
+
+#: staff.circ.utils.offline.noncat_type
+msgid "Non-Cataloged Type ID"
+msgstr ""
+
+#: staff.circ.utils.offline.count
+msgid "Count"
+msgstr ""
+
+#: staff.circ.utils.offline.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.item_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.circ.utils.offline.due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.utils.offline.backdate
+msgid "Back Date"
+msgstr ""
+
+#: staff.circ.utils.offline.use_time
+msgid "Use Time"
+msgstr ""
+
+#: staff.circ.utils.not_cataloged
+msgctxt "staff.circ.utils.not_cataloged"
+msgid "Not Cataloged"
+msgstr ""
+
+#: staff.circ.utils.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.circ.utils.owning_lib
+msgid "Owning Library"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.short
+msgid "Short"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.normal
+msgctxt "staff.circ.utils.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.loan_duration.long
+msgid "Long"
+msgstr ""
+
+#: staff.circ.utils.fine_level.low
+msgid "Low"
+msgstr ""
+
+#: staff.circ.utils.fine_level.normal
+msgctxt "staff.circ.utils.fine_level.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.utils.fine_level.high
+msgid "High"
+msgstr ""
+
+#: staff.circ.utils.circulate
+msgid "Circulate?"
+msgstr ""
+
+#: staff.circ.utils.deleted
+msgid "Deleted?"
+msgstr ""
+
+#: staff.circ.utils.holdable
+msgid "Holdable?"
+msgstr ""
+
+#: staff.circ.utils.opac_visible
+msgid "OPAC Visible?"
+msgstr ""
+
+#: staff.circ.utils.reference
+msgid "Reference?"
+msgstr ""
+
+#: staff.circ.utils.deposit
+msgid "Deposit?"
+msgstr ""
+
+#. # The < and > highlight that the value is not set; translate Unset and change the delimiters as needed
+#: staff.circ.utils.unset
+msgid "<Unset>"
+msgstr ""
+
+#: staff.circ.utils.checkout_lib
+msgid "Checkout Library"
+msgstr ""
+
+#: staff.circ.utils.checkout_timestamp
+msgid "Checkout Timestamp"
+msgstr ""
+
+#: staff.circ.utils.checkin_timestamp
+msgid "Checkin Timestamp"
+msgstr ""
+
+#: staff.circ.utils.xact_start
+msgid "Checkout Date"
+msgstr ""
+
+#: staff.circ.utils.checkin_time
+msgid "Checkin Date"
+msgstr ""
+
+#: staff.circ.utils.xact_finish
+msgid "Transaction Finished"
+msgstr ""
+
+#: staff.circ.utils.create_date
+msgid "Date Created"
+msgstr ""
+
+#: staff.circ.utils.edit_date
+msgid "Date Last Edited"
+msgstr ""
+
+#: staff.circ.utils.edition
+msgid "Edition"
+msgstr ""
+
+#: staff.circ.utils.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.circ.utils.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.circ.utils.publisher
+msgid "Publisher"
+msgstr ""
+
+#. # TCN is an acronym for Title Control Number
+#: staff.circ.utils.tcn
+msgid "TCN"
+msgstr ""
+
+#: staff.circ.utils.stop_fines
+msgid "Fines Stopped"
+msgstr ""
+
+#: staff.circ.utils.stop_fines_time
+msgid "Fines Stopped Time"
+msgstr ""
+
+#: staff.circ.utils.route_to
+msgid "Route To"
+msgstr ""
+
+#: staff.circ.utils.message
+msgid "Message"
+msgstr ""
+
+#: staff.circ.utils.uses
+msgid "# of Uses"
+msgstr ""
+
+#: staff.circ.utils.alert_message
+msgid "Alert Message"
+msgstr ""
+
+#: staff.circ.utils.barcode
+msgid "Barcode"
+msgstr ""
+
+#: staff.circ.utils.title
+msgid "Title"
+msgstr ""
+
+#: staff.circ.utils.author
+msgid "Author"
+msgstr ""
+
+#: staff.circ.utils.callnumber
+msgid "Call Number"
+msgstr ""
+
+#: staff.circ.utils.transit_id
+msgid "Transit ID"
+msgstr ""
+
+#: staff.circ.utils.transit_source
+msgid "Transit Source"
+msgstr ""
+
+#: staff.circ.utils.transit_source_send_time
+msgid "Transit Send Time"
+msgstr ""
+
+#: staff.circ.utils.transit_dest
+msgid "Transit Destination"
+msgstr ""
+
+#: staff.circ.utils.transit_dest_recv_time
+msgid "Transit Completion Time"
+msgstr ""
+
+#: staff.circ.utils.transit_target_copy
+msgid "Transit Copy ID"
+msgstr ""
+
+#: staff.circ.utils.request_lib
+msgid "Request Library (Full Name)"
+msgstr ""
+
+#: staff.circ.utils.request_lib_shortname
+msgid "Request Library"
+msgstr ""
+
+#: staff.circ.utils.request_timestamp
+msgid "Request Timestamp"
+msgstr ""
+
+#: staff.circ.utils.request_time
+msgid "Request Date"
+msgstr ""
+
+#. # Time the hold became available
+#: staff.circ.utils.available_timestamp
+msgid "Available On (Timestamp)"
+msgstr ""
+
+#. # Date the hold became available
+#: staff.circ.utils.available_time
+msgid "Available On"
+msgstr ""
+
+#. # Time the hold was captured
+#: staff.circ.utils.capture_timestamp
+msgid "Capture Timestamp"
+msgstr ""
+
+#. # Date the hold was captured
+#: staff.circ.utils.capture_time
+msgid "Capture Date"
+msgstr ""
+
+#: staff.circ.utils.hold_status.1
+msgid "Waiting for copy"
+msgstr ""
+
+#: staff.circ.utils.hold_status.2
+msgid "Waiting for capture"
+msgstr ""
+
+#: staff.circ.utils.hold_status.3
+msgid "In-Transit"
+msgstr ""
+
+#: staff.circ.utils.hold_status.4
+msgid "Ready for pickup"
+msgstr ""
+
+#: staff.circ.utils.frozen
+msgid "Frozen?"
+msgstr ""
+
+#: staff.circ.utils.active
+msgid "Active?"
+msgstr ""
+
+#: staff.circ.utils.thaw_date
+msgid "Activation Date"
+msgstr ""
+
+#: staff.circ.utils.thaw_date.none
+msgid "No Date"
+msgstr ""
+
+#: staff.circ.utils.pickup_lib
+msgid "Pickup Library (Full Name)"
+msgstr ""
+
+#: staff.circ.utils.current_copy.none
+msgid "No Copy"
+msgstr ""
+
+#: staff.circ.utils.title.none
+msgid "No Title?"
+msgstr ""
+
+#: staff.circ.utils.author.none
+msgid "No Author?"
+msgstr ""
+
+#: staff.circ.utils.notify_time
+msgid "Last Notify Time"
+msgstr ""
+
+#: staff.circ.utils.notify_count
+msgid "Notices"
+msgstr ""
+
+#: staff.circ.utils.patron_family_name
+msgid "Patron Last Name"
+msgstr ""
+
+#: staff.circ.utils.patron_first_given_name
+msgid "Patron First Name"
+msgstr ""
+
+#: staff.circ.utils.checkin.override
+msgid "Override Checkin Failure?"
+msgstr ""
+
+#: staff.circ.utils.billable.amount
+msgid "Transaction for %1$s billable $%2$s"
+msgstr ""
+
+#: staff.circ.utils.transit_hold_cancelled
+msgid "Original hold for transit cancelled."
+msgstr ""
+
+#: staff.circ.utils.item_checked_in
+msgid "%1$s was already checked in."
+msgstr ""
+
+#: staff.circ.utils.item_not_cataloged
+msgid "ITEM_NOT_CATALOGED event but copy status is %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_to.msg
+msgid "This item needs to be routed to %1$s"
+msgstr ""
+
+#: staff.circ.utils.route_item_error
+msgid "We should have received a ROUTE_ITEM"
+msgstr ""
+
+#: staff.circ.utils.route_item_status_error
+msgid "status of Holds Shelf, but no actual hold found."
+msgstr ""
+
+#: staff.circ.utils.payload.hold.barcode
+msgctxt "staff.circ.utils.payload.hold.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.title
+msgid "Title: %1$s"
+msgstr ""
+
+#. # Hold for patron familyName, firstName secondName
+#: staff.circ.utils.payload.hold.patron
+msgid "Hold for patron %1$s, %2$s %3$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.phone_notify
+msgid "Notify by phone: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.email_notify
+msgid "Notify by email: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.request_date
+msgid "Request Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.hold.slip_date
+msgid "Slip Date: %1$s"
+msgstr ""
+
+#: staff.circ.utils.hold_slip
+msgid "Hold Slip"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.yes
+msgid "Print"
+msgstr ""
+
+#: staff.circ.utils.hold_slip.print.no
+msgid "Do Not Print"
+msgstr ""
+
+#: staff.circ.utils.capture
+msgid "%1$s has been captured for a hold."
+msgstr ""
+
+#: staff.circ.utils.needs_cataloging
+msgid "%1$s needs to be cataloged."
+msgstr ""
+
+#: staff.circ.utils.copy_status.error
+msgid "FIXME -- this case \"%1$s\" is unhandled."
+msgstr ""
+
+#: staff.circ.utils.msg.ok
+msgctxt "staff.circ.utils.msg.ok"
+msgid "OK"
+msgstr ""
+
+#: staff.circ.utils.route_to.destination
+msgid "Destination: %1$s."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address
+msgid "We do not have a holds address for this library."
+msgstr ""
+
+#: staff.circ.utils.route_to.no_address.error
+msgid "Unable to retrieve mailing address."
+msgstr ""
+
+#: staff.circ.utils.payload.author
+msgid "Author: %1$s"
+msgstr ""
+
+#: staff.circ.utils.payload.in_transit
+msgid "%1$s is in transit."
+msgstr ""
+
+#: staff.circ.checkin.hold_capture
+msgid "Hold Capture"
+msgstr ""
+
+#: staff.circ.checkin.check_in.tab
+msgid "Item Check In"
+msgstr ""
+
+#: staff.circ.checkin.error
+msgid "Check In Failed (in circ.util.checkin) (%1$s):"
+msgstr ""
+
+#. # "Circulation" - check &staff.main.menu.circ.label; in lang.dtd
+#. # "Offline Interface" - check &staff.main.menu.circ.offline.label; in lang.dtd
+#: staff.circ.checkin.suggest_offline
+msgid ""
+"Check In Failed. If you wish to use the offline interface, in the top "
+"menubar select Circulation -> Offline Interface"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.error
+msgid "Renew Failed for %1$s"
+msgstr ""
+
+#: staff.circ.checkin.renew_failed.override
+msgid "Override Renew Failure?"
+msgstr ""
+
+#: staff.circ.renew.barcode
+msgctxt "staff.circ.renew.barcode"
+msgid "Barcode: %1$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.status
+msgid "Barcode: %1$s Status: %2$s"
+msgstr ""
+
+#: staff.circ.renew.barcode.msg
+msgid "Barcode: %1$s Message: %2$s"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt
+msgid "Are you sure you would like to activate hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activate.prompt.plural
+msgid "Are you sure you would like to activate holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt
+msgid "Are you sure you would like to suspend hold %1$s?"
+msgstr ""
+
+#: staff.circ.holds.suspend.prompt.plural
+msgid "Are you sure you would like to suspend holds %1$s?"
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for hold %1$s. "
+"This will also Suspend the hold."
+msgstr ""
+
+#: staff.circ.holds.activation_date.prompt.plural
+msgid ""
+"Please enter an Activation Date (or leave blank to unset) for holds %1$s. "
+"This will also Suspend the holds."
+msgstr ""
+
+#: staff.circ.holds.activation_date.too_early.error
+msgid ""
+"Activation Date needs to be either unset or set to fall on a future date."
+msgstr ""
+
+#: staff.circ.holds.activation_date.invalid_date
+msgctxt "staff.circ.holds.activation_date.invalid_date"
+msgid "Invalid Date"
+msgstr ""
+
+#: staff.circ.holds.modifying_holds
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.circ.holds.modifying_holds.yes
+msgctxt "staff.circ.holds.modifying_holds.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.circ.holds.modifying_holds.no
+msgctxt "staff.circ.holds.modifying_holds.no"
+msgid "No"
+msgstr ""
+
+#: staff.circ.holds.already_activated
+msgid "Hold %1$s was already activated."
+msgstr ""
+
+#: staff.circ.holds.already_activated.plural
+msgid "Holds %1$s were already activated."
+msgstr ""
+
+#: staff.circ.holds.already_suspended
+msgid "Hold %1$s was already suspended."
+msgstr ""
+
+#: staff.circ.holds.already_suspended.plural
+msgid "Holds %1$s were already suspended."
+msgstr ""
+
+#: staff.circ.holds.unexpected_error.not_likely_modified
+msgid "Holds not likely modified."
+msgstr ""
+
+#: staff.circ.holds.unexpected_error.not_likely_activated
+msgid "Holds not likely activated."
+msgstr ""
+
+#: staff.circ.holds.unexpected_error.not_likely_suspended
+msgid "Holds not likely suspended."
+msgstr ""
+
+#: staff.circ.holds.error.may_not_edit_pickup_lib_for_hold_intransit
+msgid ""
+"You may not edit the pickup library for holds that are in-transit or ready "
+"for pickup."
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/common.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: common.exception
+msgid ""
+"!! This software has encountered an error. Please tell your friendly system "
+"administrator or software developer the following:\n"
+"%1$s\n"
+"%2$s\n"
+msgstr ""
+
+#: common.jsan.missing
+msgid "The JSAN library object is missing."
+msgstr ""
+
+#: common.error
+msgid "Please inform your help desk or developers of this error:"
+msgstr ""
+
+#: common.ok
+msgid "Ok"
+msgstr ""
+
+#: common.clear
+msgid "Clear"
+msgstr ""
+
+#: common.confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: common.error.default
+msgid "Please report that this happened."
+msgstr ""
+
+#: common.barcode.status.warning
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3$s."
+msgstr ""
+
+#: common.barcode.status.warning.lost
+msgid "Lost"
+msgstr ""
+
+#: common.barcode.status.warning.expired
+msgid "Expired"
+msgstr ""
+
+#: common.barcode.status.warning.barred
+msgctxt "common.barcode.status.warning.barred"
+msgid "Barred"
+msgstr ""
+
+#: common.barcode.status.warning.blocked
+msgid "Blocked"
+msgstr ""
+
+#: common.barcode.status.warning.unknown
+msgid "with an unknown code: %1$s"
+msgstr ""
+
+#: common.date.invalid
+msgid "Invalid Date"
+msgstr ""
+
+#: common.action_complete
+msgid "Action completed."
+msgstr ""
+
+#. # common.grouping_string = the string that should be inserted between elements of a grouped list
+#: common.grouping_string
+msgid ","
+msgstr ""
+
+#: common.unimplemented
+msgid "Not yet implemented"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.check_to_confirm
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
+
+#: staff.acp_label_barcode
+msgctxt "staff.acp_label_barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.acp_label_call_number
+msgid "Call Number"
+msgstr ""
+
+#: staff.acp_label_circ_as_type
+msgid "Circulate As Type"
+msgstr ""
+
+#: staff.acp_label_circ_lib
+msgid "Circulation Library"
+msgstr ""
+
+#: staff.acp_label_circ_modifier
+msgid "Circulation Modifier"
+msgstr ""
+
+#: staff.acp_label_copy_number
+msgid "Copy Number"
+msgstr ""
+
+#: staff.acp_label_deposit_amount
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.acp_label_fine_level
+msgid "Fine Level"
+msgstr ""
+
+#: staff.acp_label_id
+msgid "Copy ID"
+msgstr ""
+
+#: staff.acp_label_loan_duration
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.acp_label_location
+msgid "Location"
+msgstr ""
+
+#: staff.acp_label_price
+msgid "Price"
+msgstr ""
+
+#: staff.acp_label_status
+msgctxt "staff.acp_label_status"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_current_copy_label
+msgid "Current Copy"
+msgstr ""
+
+#: staff.ahr_email_notify_label
+msgid "Email Notify"
+msgstr ""
+
+#: staff.ahr_expire_time_label
+msgid "Expire Time"
+msgstr ""
+
+#: staff.ahr_fulfillment_time_label
+msgid "Fulfillment Time"
+msgstr ""
+
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.ahr_holdable_formats_label
+msgid "Holdable Formats"
+msgstr ""
+
+#: staff.ahr_id_label
+msgid "Hold ID"
+msgstr ""
+
+#: staff.ahr_phone_notify_label
+msgid "Phone Notify"
+msgstr ""
+
+#: staff.ahr_pickup_lib_label
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.ahr_prev_check_time_label
+msgid "Previous Check Time"
+msgstr ""
+
+#: staff.ahr_requestor_label
+msgid "Requestor"
+msgstr ""
+
+#: staff.ahr_selection_depth_label
+msgid "Selection Depth"
+msgstr ""
+
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_target_label
+msgid "Target"
+msgstr ""
+
+#: staff.ahr_usr_label
+msgctxt "staff.ahr_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.circ_label_due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ_label_id
+msgid "Circulation ID"
+msgstr ""
+
+#: staff.circ_label_renewal_remaining
+msgid "Remaining Renewals"
+msgstr ""
+
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr ""
+
+#: staff.bills_xact_dates_label
+msgid "Record / Dates"
+msgstr ""
+
+#: staff.bills_information
+msgid "Information"
+msgstr ""
+
+#: staff.bills_current_payment_label
+msgid "Current Payment"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill #"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgid "Start"
+msgstr ""
+
+#: staff.mbts_xact_finish_label
+msgid "Finish"
+msgstr ""
+
+#: staff.mbts_xact_type_label
+msgctxt "staff.mbts_xact_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_usr_label
+msgctxt "staff.mbts_usr_label"
+msgid "User"
+msgstr ""
+
+#: staff.mbts_last_billing_note_label
+msgid "Last Billing Note"
+msgstr ""
+
+#: staff.mbts_last_billing_type_label
+msgid "Last Billing Type"
+msgstr ""
+
+#: staff.mbts_last_billing_timestamp_label
+msgid "Last Billed"
+msgstr ""
+
+#: staff.mbts_last_payment_note_label
+msgid "Last Payment Note"
+msgstr ""
+
+#: staff.mbts_last_payment_type_label
+msgid "Last Payment Type"
+msgstr ""
+
+#: staff.mbts_last_payment_timestamp_label
+msgid "Last Payment"
+msgstr ""
+
+#: staff.mb_billing_type_label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.mb_xact_label
+msgctxt "staff.mb_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mb_billing_ts_label
+msgctxt "staff.mb_billing_ts_label"
+msgid "When"
+msgstr ""
+
+#: staff.mb_void_time_label
+msgid "Void Time"
+msgstr ""
+
+#: staff.mb_note_label
+msgctxt "staff.mb_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mb_amount_label
+msgctxt "staff.mb_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mb_voider_label
+msgid "Voider"
+msgstr ""
+
+#: staff.mb_voided_label
+msgctxt "staff.mb_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mb_id_label
+msgid "Billing ID"
+msgstr ""
+
+#: staff.mp_credit_card_payment_label
+msgid "Credit Card Payment"
+msgstr ""
+
+#: staff.mp_forgive_payment_label
+msgid "Forgive Payment"
+msgstr ""
+
+#: staff.mp_payment_timestamp_label
+msgctxt "staff.mp_payment_timestamp_label"
+msgid "When"
+msgstr ""
+
+#: staff.mp_payment_type_label
+msgid "Payment Type"
+msgstr ""
+
+#: staff.mp_voided_label
+msgctxt "staff.mp_voided_label"
+msgid "Voided"
+msgstr ""
+
+#: staff.mp_id_label
+msgid "Payment ID"
+msgstr ""
+
+#: staff.mp_goods_payment_label
+msgid "Goods Payment"
+msgstr ""
+
+#: staff.mp_xact_label
+msgctxt "staff.mp_xact_label"
+msgid "Transaction ID"
+msgstr ""
+
+#: staff.mp_credit_payment_label
+msgid "Credit Payment"
+msgstr ""
+
+#: staff.mp_work_payment_label
+msgid "Work Payment"
+msgstr ""
+
+#: staff.mp_note_label
+msgctxt "staff.mp_note_label"
+msgid "Note"
+msgstr ""
+
+#: staff.mp_cash_payment_label
+msgid "Cash Payment"
+msgstr ""
+
+#: staff.mp_amount_label
+msgctxt "staff.mp_amount_label"
+msgid "Amount"
+msgstr ""
+
+#: staff.mp_check_payment_label
+msgid "Check Payment"
+msgstr ""
+
+#: staff.mp_cash_drawer_label
+msgid "Workstation"
+msgstr ""
+
+#: staff.mp_accepting_usr_label
+msgid "Staff"
+msgstr ""
+
+#: staff.card_barcode_label
+msgctxt "staff.card_barcode_label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.au_active_label
+msgid "Active"
+msgstr ""
+
+#: staff.au_usrname_label
+msgid "Login Name"
+msgstr ""
+
+#: staff.au_profile_label
+msgid "Profile"
+msgstr ""
+
+#: staff.au_barred_label
+msgctxt "staff.au_barred_label"
+msgid "Barred"
+msgstr ""
+
+#: staff.au_alert_message_label
+msgid "Alert"
+msgstr ""
+
+#: staff.au_claims_returned_count_label
+msgid "Returns Claimed"
+msgstr ""
+
+#: staff.au_create_date_label
+msgid "Created On"
+msgstr ""
+
+#: staff.au_expire_date_label
+msgid "Expires On"
+msgstr ""
+
+#: staff.au_home_library_label
+msgid "Home Library"
+msgstr ""
+
+#: staff.au_home_library_fullname_label
+msgid "Home Library (Full Name)"
+msgstr ""
+
+#: staff.au_credit_forward_balance_label
+msgid "Credit"
+msgstr ""
+
+#: staff.au_day_phone_label
+msgid "Day Phone"
+msgstr ""
+
+#: staff.au_evening_phone_label
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.au_other_phone_label
+msgid "Other Phone"
+msgstr ""
+
+#: staff.au_email_label
+msgid "Email"
+msgstr ""
+
+#: staff.au_birth_date_label
+msgid "Birth Date"
+msgstr ""
+
+#: staff.au_ident_type_label
+msgid "Identification Type"
+msgstr ""
+
+#: staff.au_ident_value_label
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ident_type2_label
+msgid "Identification Type 2"
+msgstr ""
+
+#: staff.au_ident_value2_label
+msgid "Identification Value 2"
+msgstr ""
+
+#: staff.au_net_access_level_label
+msgid "Internet Access"
+msgstr ""
+
+#: staff.au_master_account_label
+msgid "Group Lead"
+msgstr ""
+
+#: staff.au_group_id_label
+msgid "Group ID"
+msgstr ""
+
+#: staff.au_id_label
+msgid "User ID"
+msgstr ""
+
+#: staff.au_name_prefix_label
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_family_name_label
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_first_given_name_label
+msgid "First Name"
+msgstr ""
+
+#: staff.au_second_given_name_label
+msgid "Middle Name"
+msgstr ""
+
+#: staff.au_name_suffix_label
+msgid "Suffix"
+msgstr ""
+
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgid "ISSN"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers/Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.ser
+msgid "Serials"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: staff.z39_50.search_class.publisher
+msgid "Publisher"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.main.data.loaded
+msgid "Data loaded."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.synced
+msgid "Offline interface synchronized with server."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.noncat_sort.error
+msgid "error in noncat sorting:"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.please_wait
+msgid "Please wait"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.workstation_registration_denied
+msgid "You do not have permission to register a workstation."
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.override
+msgid "Override Registration Failure?"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.error
+msgid "Workstation Registration error (%1$s)"
+msgstr ""
+
+#: staff.main.gen_offline_widgets.registration.success
+msgid "Registration successful"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:45-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: config.bib_source:3
+msgid "oclc"
+msgstr ""
+
+#: config.bib_source:5
+msgid "System Local"
+msgstr ""
+
+#: config.bib_source:7
+msgid "Project Gutenberg"
+msgstr ""
+
+#: config.standing:9
+msgid "Good"
+msgstr ""
+
+#: config.standing:10
+msgid "Barred"
+msgstr ""
+
+#: config.non_cataloged_type:43
+msgid "Paperback Book"
+msgstr ""
+
+#: config.identification_type:46
+msgid "Drivers License"
+msgstr ""
+
+#: config.identification_type:48
+msgid "SSN"
+msgstr ""
+
+#: config.identification_type:50
+msgid "Other"
+msgstr ""
+
+#: config.rule_circ_duration:53
+msgid "7_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:55
+msgid "28_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:57
+msgid "3_months_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:59
+msgid "3_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:61
+msgid "2_months_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:63
+msgid "35_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:65
+msgid "7_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:67
+msgid "1_hour_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:69
+msgid "28_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:71
+msgid "14_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:73
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:76
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:78
+msgid "overdue_min"
+msgstr ""
+
+#: config.rule_max_fine:80
+msgid "overdue_mid"
+msgstr ""
+
+#: config.rule_max_fine:82
+msgid "overdue_max"
+msgstr ""
+
+#: config.rule_max_fine:84
+msgid "overdue_equip_min"
+msgstr ""
+
+#: config.rule_max_fine:86
+msgid "overdue_equip_mid"
+msgstr ""
+
+#: config.rule_max_fine:88
+msgid "overdue_equip_max"
+msgstr ""
+
+#: config.rule_recuring_fine:91
+msgid "default"
+msgstr ""
+
+#: config.rule_recuring_fine:93
+msgid "10_cent_per_day"
+msgstr ""
+
+#: config.rule_recuring_fine:95
+msgid "50_cent_per_day"
+msgstr ""
+
+#: config.rule_age_hold_protect:97
+msgid "3month"
+msgstr ""
+
+#: config.rule_age_hold_protect:98
+msgid "6month"
+msgstr ""
+
+#: config.copy_status:100
+msgid "Available"
+msgstr ""
+
+#: config.copy_status:102
+msgid "Checked out"
+msgstr ""
+
+#: config.copy_status:104
+msgid "Bindery"
+msgstr ""
+
+#: config.copy_status:105
+msgid "Lost"
+msgstr ""
+
+#: config.copy_status:106
+msgid "Missing"
+msgstr ""
+
+#: config.copy_status:108
+msgid "In process"
+msgstr ""
+
+#: config.copy_status:109
+msgid "In transit"
+msgstr ""
+
+#: config.copy_status:110
+msgid "Reshelving"
+msgstr ""
+
+#: config.copy_status:111
+msgid "On holds shelf"
+msgstr ""
+
+#: config.copy_status:112
+msgid "On order"
+msgstr ""
+
+#: config.copy_status:114
+msgid "ILL"
+msgstr ""
+
+#: config.copy_status:115
+msgid "Cataloging"
+msgstr ""
+
+#: config.copy_status:116
+msgid "Reserves"
+msgstr ""
+
+#: config.copy_status:117
+msgid "Discard/Weed"
+msgstr ""
+
+#: config.copy_status:118
+msgid "Damaged"
+msgstr ""
+
+#: config.net_access_level:123
+msgid "Filtered"
+msgstr ""
+
+#: config.net_access_level:125
+msgid "Unfiltered"
+msgstr ""
+
+#: config.net_access_level:127
+msgid "No Access"
+msgstr ""
+
+#: config.audience_map:130
+msgid "Unknown or unspecified"
+msgstr ""
+
+#: config.audience_map:132
+msgid "Preschool"
+msgstr ""
+
+#: config.audience_map:134
+msgid "Primary"
+msgstr ""
+
+#: config.audience_map:136
+msgid "Pre-adolescent"
+msgstr ""
+
+#: config.audience_map:138
+msgid "Adolescent"
+msgstr ""
+
+#: config.audience_map:140
+msgid "Adult"
+msgstr ""
+
+#: config.audience_map:142
+msgid "Specialized"
+msgstr ""
+
+#: config.audience_map:144
+msgid "General"
+msgstr ""
+
+#: config.audience_map:146
+msgid "Juvenile"
+msgstr ""
+
+#: config.lit_form_map:149
+msgid "Not fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:151
+msgid "Fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:153
+msgid "Comic strips"
+msgstr ""
+
+#: config.lit_form_map:155
+msgid "Dramas"
+msgstr ""
+
+#: config.lit_form_map:157
+msgid "Essays"
+msgstr ""
+
+#: config.lit_form_map:159
+msgid "Novels"
+msgstr ""
+
+#: config.lit_form_map:161
+msgid "Humor, satires, etc."
+msgstr ""
+
+#: config.lit_form_map:163
+msgid "Letters"
+msgstr ""
+
+#: config.lit_form_map:165
+msgid "Short stories"
+msgstr ""
+
+#: config.lit_form_map:167
+msgid "Mixed forms"
+msgstr ""
+
+#: config.lit_form_map:169
+msgid "Poetry"
+msgstr ""
+
+#: config.lit_form_map:171
+msgid "Speeches"
+msgstr ""
+
+#: config.lit_form_map:173
+msgid "Unknown"
+msgstr ""
+
+#: config.language_map:177
+msgid "Afar"
+msgstr ""
+
+#: config.language_map:178
+msgid "Abkhaz"
+msgstr ""
+
+#: config.language_map:179
+msgid "Achinese"
+msgstr ""
+
+#: config.language_map:180
+msgid "Acoli"
+msgstr ""
+
+#: config.language_map:181
+msgid "Adangme"
+msgstr ""
+
+#: config.language_map:182
+msgid "Adygei"
+msgstr ""
+
+#: config.language_map:183
+msgid "Afroasiatic (Other)"
+msgstr ""
+
+#: config.language_map:184
+msgid "Afrihili (Artificial language)"
+msgstr ""
+
+#: config.language_map:185
+msgid "Afrikaans"
+msgstr ""
+
+#: config.language_map:186
+msgid "Aljamía"
+msgstr ""
+
+#: config.language_map:187
+msgid "Akan"
+msgstr ""
+
+#: config.language_map:188
+msgid "Akkadian"
+msgstr ""
+
+#: config.language_map:189
+msgid "Albanian"
+msgstr ""
+
+#: config.language_map:190
+msgid "Aleut"
+msgstr ""
+
+#: config.language_map:191
+msgid "Algonquian (Other)"
+msgstr ""
+
+#: config.language_map:192
+msgid "Amharic"
+msgstr ""
+
+#: config.language_map:193
+msgid "English, Old (ca. 450-1100)"
+msgstr ""
+
+#: config.language_map:194
+msgid "Apache languages"
+msgstr ""
+
+#: config.language_map:195
+msgid "Arabic"
+msgstr ""
+
+#: config.language_map:196
+msgid "Aramaic"
+msgstr ""
+
+#: config.language_map:197
+msgid "Aragonese Spanish"
+msgstr ""
+
+#: config.language_map:198
+msgid "Armenian"
+msgstr ""
+
+#: config.language_map:199
+msgid "Mapuche"
+msgstr ""
+
+#: config.language_map:200
+msgid "Arapaho"
+msgstr ""
+
+#: config.language_map:201
+msgid "Artificial (Other)"
+msgstr ""
+
+#: config.language_map:202
+msgid "Arawak"
+msgstr ""
+
+#: config.language_map:203
+msgid "Assamese"
+msgstr ""
+
+#: config.language_map:204
+msgid "Bable"
+msgstr ""
+
+#: config.language_map:205
+msgid "Athapascan (Other)"
+msgstr ""
+
+#: config.language_map:206
+msgid "Australian languages"
+msgstr ""
+
+#: config.language_map:207
+msgid "Avaric"
+msgstr ""
+
+#: config.language_map:208
+msgid "Avestan"
+msgstr ""
+
+#: config.language_map:209
+msgid "Awadhi"
+msgstr ""
+
+#: config.language_map:210
+msgid "Aymara"
+msgstr ""
+
+#: config.language_map:211
+msgid "Azerbaijani"
+msgstr ""
+
+#: config.language_map:212
+msgid "Banda"
+msgstr ""
+
+#: config.language_map:213
+msgid "Bamileke languages"
+msgstr ""
+
+#: config.language_map:214
+msgid "Bashkir"
+msgstr ""
+
+#: config.language_map:215
+msgid "Baluchi"
+msgstr ""
+
+#: config.language_map:216
+msgid "Bambara"
+msgstr ""
+
+#: config.language_map:217
+msgid "Balinese"
+msgstr ""
+
+#: config.language_map:218
+msgid "Basque"
+msgstr ""
+
+#: config.language_map:219
+msgid "Basa"
+msgstr ""
+
+#: config.language_map:220
+msgid "Baltic (Other)"
+msgstr ""
+
+#: config.language_map:221
+msgid "Beja"
+msgstr ""
+
+#: config.language_map:222
+msgid "Belarusian"
+msgstr ""
+
+#: config.language_map:223
+msgid "Bemba"
+msgstr ""
+
+#: config.language_map:224
+msgid "Bengali"
+msgstr ""
+
+#: config.language_map:225
+msgid "Berber (Other)"
+msgstr ""
+
+#: config.language_map:226
+msgid "Bhojpuri"
+msgstr ""
+
+#: config.language_map:227
+msgid "Bihari"
+msgstr ""
+
+#: config.language_map:228
+msgid "Bikol"
+msgstr ""
+
+#: config.language_map:229
+msgid "Edo"
+msgstr ""
+
+#: config.language_map:230
+msgid "Bislama"
+msgstr ""
+
+#: config.language_map:231
+msgid "Siksika"
+msgstr ""
+
+#: config.language_map:232
+msgid "Bantu (Other)"
+msgstr ""
+
+#: config.language_map:233
+msgid "Bosnian"
+msgstr ""
+
+#: config.language_map:234
+msgid "Braj"
+msgstr ""
+
+#: config.language_map:235
+msgid "Breton"
+msgstr ""
+
+#: config.language_map:236
+msgid "Batak"
+msgstr ""
+
+#: config.language_map:237
+msgid "Buriat"
+msgstr ""
+
+#: config.language_map:238
+msgid "Bugis"
+msgstr ""
+
+#: config.language_map:239
+msgid "Bulgarian"
+msgstr ""
+
+#: config.language_map:240
+msgid "Burmese"
+msgstr ""
+
+#: config.language_map:241
+msgid "Caddo"
+msgstr ""
+
+#: config.language_map:242
+msgid "Central American Indian (Other)"
+msgstr ""
+
+#: config.language_map:243
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:244
+msgid "Carib"
+msgstr ""
+
+#: config.language_map:245
+msgid "Catalan"
+msgstr ""
+
+#: config.language_map:246
+msgid "Caucasian (Other)"
+msgstr ""
+
+#: config.language_map:247
+msgid "Cebuano"
+msgstr ""
+
+#: config.language_map:248
+msgid "Celtic (Other)"
+msgstr ""
+
+#: config.language_map:249
+msgid "Chamorro"
+msgstr ""
+
+#: config.language_map:250
+msgid "Chibcha"
+msgstr ""
+
+#: config.language_map:251
+msgid "Chechen"
+msgstr ""
+
+#: config.language_map:252
+msgid "Chagatai"
+msgstr ""
+
+#: config.language_map:253
+msgid "Chinese"
+msgstr ""
+
+#: config.language_map:254
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:255
+msgid "Mari"
+msgstr ""
+
+#: config.language_map:256
+msgid "Chinook jargon"
+msgstr ""
+
+#: config.language_map:257
+msgid "Choctaw"
+msgstr ""
+
+#: config.language_map:258
+msgid "Chipewyan"
+msgstr ""
+
+#: config.language_map:259
+msgid "Cherokee"
+msgstr ""
+
+#: config.language_map:260
+msgid "Church Slavic"
+msgstr ""
+
+#: config.language_map:261
+msgid "Chuvash"
+msgstr ""
+
+#: config.language_map:262
+msgid "Cheyenne"
+msgstr ""
+
+#: config.language_map:263
+msgid "Chamic languages"
+msgstr ""
+
+#: config.language_map:264
+msgid "Coptic"
+msgstr ""
+
+#: config.language_map:265
+msgid "Cornish"
+msgstr ""
+
+#: config.language_map:266
+msgid "Corsican"
+msgstr ""
+
+#: config.language_map:267
+msgid "Creoles and Pidgins, English-based (Other)"
+msgstr ""
+
+#: config.language_map:268
+msgid "Creoles and Pidgins, French-based (Other)"
+msgstr ""
+
+#: config.language_map:269
+msgid "Creoles and Pidgins, Portuguese-based (Other)"
+msgstr ""
+
+#: config.language_map:270
+msgid "Cree"
+msgstr ""
+
+#: config.language_map:271
+msgid "Crimean Tatar"
+msgstr ""
+
+#: config.language_map:272
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
+
+#: config.language_map:273
+msgid "Cushitic (Other)"
+msgstr ""
+
+#: config.language_map:274
+msgid "Czech"
+msgstr ""
+
+#: config.language_map:275
+msgid "Dakota"
+msgstr ""
+
+#: config.language_map:276
+msgid "Danish"
+msgstr ""
+
+#: config.language_map:277
+msgid "Dargwa"
+msgstr ""
+
+#: config.language_map:278
+msgid "Dayak"
+msgstr ""
+
+#: config.language_map:279
+msgid "Delaware"
+msgstr ""
+
+#: config.language_map:280
+msgid "Slave"
+msgstr ""
+
+#: config.language_map:281
+msgid "Dogrib"
+msgstr ""
+
+#: config.language_map:282
+msgid "Dinka"
+msgstr ""
+
+#: config.language_map:283
+msgid "Divehi"
+msgstr ""
+
+#: config.language_map:284
+msgid "Dogri"
+msgstr ""
+
+#: config.language_map:285
+msgid "Dravidian (Other)"
+msgstr ""
+
+#: config.language_map:286
+msgid "Duala"
+msgstr ""
+
+#: config.language_map:287
+msgid "Dutch, Middle (ca. 1050-1350)"
+msgstr ""
+
+#: config.language_map:288
+msgid "Dutch"
+msgstr ""
+
+#: config.language_map:289
+msgid "Dyula"
+msgstr ""
+
+#: config.language_map:290
+msgid "Dzongkha"
+msgstr ""
+
+#: config.language_map:291
+msgid "Efik"
+msgstr ""
+
+#: config.language_map:292
+msgid "Egyptian"
+msgstr ""
+
+#: config.language_map:293
+msgid "Ekajuk"
+msgstr ""
+
+#: config.language_map:294
+msgid "Elamite"
+msgstr ""
+
+#: config.language_map:295
+msgid "English"
+msgstr ""
+
+#: config.language_map:296
+msgid "English, Middle (1100-1500)"
+msgstr ""
+
+#: config.language_map:297
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:298
+msgid "Eskimo languages"
+msgstr ""
+
+#: config.language_map:299
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:300
+msgid "Estonian"
+msgstr ""
+
+#: config.language_map:301
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:302
+msgid "Ewe"
+msgstr ""
+
+#: config.language_map:303
+msgid "Ewondo"
+msgstr ""
+
+#: config.language_map:304
+msgid "Fang"
+msgstr ""
+
+#: config.language_map:305
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:306
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:307
+msgid "Fanti"
+msgstr ""
+
+#: config.language_map:308
+msgid "Fijian"
+msgstr ""
+
+#: config.language_map:309
+msgid "Finnish"
+msgstr ""
+
+#: config.language_map:310
+msgid "Finno-Ugrian (Other)"
+msgstr ""
+
+#: config.language_map:311
+msgid "Fon"
+msgstr ""
+
+#: config.language_map:312
+msgid "French"
+msgstr ""
+
+#: config.language_map:313
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:314
+msgid "French, Middle (ca. 1400-1600)"
+msgstr ""
+
+#: config.language_map:315
+msgid "French, Old (ca. 842-1400)"
+msgstr ""
+
+#: config.language_map:316
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:317
+msgid "Fula"
+msgstr ""
+
+#: config.language_map:318
+msgid "Friulian"
+msgstr ""
+
+#: config.language_map:319
+msgid "Gã"
+msgstr ""
+
+#: config.language_map:320
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:321
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:322
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:323
+msgid "Gayo"
+msgstr ""
+
+#: config.language_map:324
+msgid "Gbaya"
+msgstr ""
+
+#: config.language_map:325
+msgid "Germanic (Other)"
+msgstr ""
+
+#: config.language_map:326
+msgid "Georgian"
+msgstr ""
+
+#: config.language_map:327
+msgid "German"
+msgstr ""
+
+#: config.language_map:328
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:329
+msgid "Gilbertese"
+msgstr ""
+
+#: config.language_map:330
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:331
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:332
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:333
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:334
+msgid "German, Middle High (ca. 1050-1500)"
+msgstr ""
+
+#: config.language_map:335
+msgid "German, Old High (ca. 750-1050)"
+msgstr ""
+
+#: config.language_map:336
+msgid "Gondi"
+msgstr ""
+
+#: config.language_map:337
+msgid "Gorontalo"
+msgstr ""
+
+#: config.language_map:338
+msgid "Gothic"
+msgstr ""
+
+#: config.language_map:339
+msgid "Grebo"
+msgstr ""
+
+#: config.language_map:340
+msgid "Greek, Ancient (to 1453)"
+msgstr ""
+
+#: config.language_map:341
+msgid "Greek, Modern (1453- )"
+msgstr ""
+
+#: config.language_map:342
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:343
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:344
+msgid "Gujarati"
+msgstr ""
+
+#: config.language_map:345
+msgid "Gwich'in"
+msgstr ""
+
+#: config.language_map:346
+msgid "Haida"
+msgstr ""
+
+#: config.language_map:347
+msgid "Haitian French Creole"
+msgstr ""
+
+#: config.language_map:348
+msgid "Hausa"
+msgstr ""
+
+#: config.language_map:349
+msgid "Hawaiian"
+msgstr ""
+
+#: config.language_map:350
+msgid "Hebrew"
+msgstr ""
+
+#: config.language_map:351
+msgid "Herero"
+msgstr ""
+
+#: config.language_map:352
+msgid "Hiligaynon"
+msgstr ""
+
+#: config.language_map:353
+msgid "Himachali"
+msgstr ""
+
+#: config.language_map:354
+msgid "Hindi"
+msgstr ""
+
+#: config.language_map:355
+msgid "Hittite"
+msgstr ""
+
+#: config.language_map:356
+msgid "Hmong"
+msgstr ""
+
+#: config.language_map:357
+msgid "Hiri Motu"
+msgstr ""
+
+#: config.language_map:358
+msgid "Hungarian"
+msgstr ""
+
+#: config.language_map:359
+msgid "Hupa"
+msgstr ""
+
+#: config.language_map:360
+msgid "Iban"
+msgstr ""
+
+#: config.language_map:361
+msgid "Igbo"
+msgstr ""
+
+#: config.language_map:362
+msgid "Icelandic"
+msgstr ""
+
+#: config.language_map:363
+msgid "Ido"
+msgstr ""
+
+#: config.language_map:364
+msgid "Sichuan Yi"
+msgstr ""
+
+#: config.language_map:365
+msgid "Ijo"
+msgstr ""
+
+#: config.language_map:366
+msgid "Inuktitut"
+msgstr ""
+
+#: config.language_map:367
+msgid "Interlingue"
+msgstr ""
+
+#: config.language_map:368
+msgid "Iloko"
+msgstr ""
+
+#: config.language_map:369
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:370
+msgid "Indic (Other)"
+msgstr ""
+
+#: config.language_map:371
+msgid "Indonesian"
+msgstr ""
+
+#: config.language_map:372
+msgid "Indo-European (Other)"
+msgstr ""
+
+#: config.language_map:373
+msgid "Ingush"
+msgstr ""
+
+#: config.language_map:374
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:375
+msgid "Inupiaq"
+msgstr ""
+
+#: config.language_map:376
+msgid "Iranian (Other)"
+msgstr ""
+
+#: config.language_map:377
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:378
+msgid "Iroquoian (Other)"
+msgstr ""
+
+#: config.language_map:379
+msgid "Italian"
+msgstr ""
+
+#: config.language_map:380
+msgid "Javanese"
+msgstr ""
+
+#: config.language_map:381
+msgid "Japanese"
+msgstr ""
+
+#: config.language_map:382
+msgid "Judeo-Persian"
+msgstr ""
+
+#: config.language_map:383
+msgid "Judeo-Arabic"
+msgstr ""
+
+#: config.language_map:384
+msgid "Kara-Kalpak"
+msgstr ""
+
+#: config.language_map:385
+msgid "Kabyle"
+msgstr ""
+
+#: config.language_map:386
+msgid "Kachin"
+msgstr ""
+
+#: config.language_map:387
+msgid "Kalâtdlisut"
+msgstr ""
+
+#: config.language_map:388
+msgid "Kamba"
+msgstr ""
+
+#: config.language_map:389
+msgid "Kannada"
+msgstr ""
+
+#: config.language_map:390
+msgid "Karen"
+msgstr ""
+
+#: config.language_map:391
+msgid "Kashmiri"
+msgstr ""
+
+#: config.language_map:392
+msgid "Kanuri"
+msgstr ""
+
+#: config.language_map:393
+msgid "Kawi"
+msgstr ""
+
+#: config.language_map:394
+msgid "Kazakh"
+msgstr ""
+
+#: config.language_map:395
+msgid "Kabardian"
+msgstr ""
+
+#: config.language_map:396
+msgid "Khasi"
+msgstr ""
+
+#: config.language_map:397
+msgid "Khoisan (Other)"
+msgstr ""
+
+#: config.language_map:398
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:399
+msgid "Khotanese"
+msgstr ""
+
+#: config.language_map:400
+msgid "Kikuyu"
+msgstr ""
+
+#: config.language_map:401
+msgid "Kinyarwanda"
+msgstr ""
+
+#: config.language_map:402
+msgid "Kyrgyz"
+msgstr ""
+
+#: config.language_map:403
+msgid "Kimbundu"
+msgstr ""
+
+#: config.language_map:404
+msgid "Konkani"
+msgstr ""
+
+#: config.language_map:405
+msgid "Komi"
+msgstr ""
+
+#: config.language_map:406
+msgid "Kongo"
+msgstr ""
+
+#: config.language_map:407
+msgid "Korean"
+msgstr ""
+
+#: config.language_map:408
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:409
+msgid "Kpelle"
+msgstr ""
+
+#: config.language_map:410
+msgid "Kru"
+msgstr ""
+
+#: config.language_map:411
+msgid "Kurukh"
+msgstr ""
+
+#: config.language_map:412
+msgid "Kuanyama"
+msgstr ""
+
+#: config.language_map:413
+msgid "Kumyk"
+msgstr ""
+
+#: config.language_map:414
+msgid "Kurdish"
+msgstr ""
+
+#: config.language_map:415
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:416
+msgid "Kutenai"
+msgstr ""
+
+#: config.language_map:417
+msgid "Ladino"
+msgstr ""
+
+#: config.language_map:418
+msgid "Lahnda"
+msgstr ""
+
+#: config.language_map:419
+msgid "Lamba"
+msgstr ""
+
+#: config.language_map:420
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:421
+msgid "Lao"
+msgstr ""
+
+#: config.language_map:422
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:423
+msgid "Latin"
+msgstr ""
+
+#: config.language_map:424
+msgid "Latvian"
+msgstr ""
+
+#: config.language_map:425
+msgid "Lezgian"
+msgstr ""
+
+#: config.language_map:426
+msgid "Limburgish"
+msgstr ""
+
+#: config.language_map:427
+msgid "Lingala"
+msgstr ""
+
+#: config.language_map:428
+msgid "Lithuanian"
+msgstr ""
+
+#: config.language_map:429
+msgid "Mongo-Nkundu"
+msgstr ""
+
+#: config.language_map:430
+msgid "Lozi"
+msgstr ""
+
+#: config.language_map:431
+msgid "Letzeburgesch"
+msgstr ""
+
+#: config.language_map:432
+msgid "Luba-Lulua"
+msgstr ""
+
+#: config.language_map:433
+msgid "Luba-Katanga"
+msgstr ""
+
+#: config.language_map:434
+msgid "Ganda"
+msgstr ""
+
+#: config.language_map:435
+msgid "Luiseño"
+msgstr ""
+
+#: config.language_map:436
+msgid "Lunda"
+msgstr ""
+
+#: config.language_map:437
+msgid "Luo (Kenya and Tanzania)"
+msgstr ""
+
+#: config.language_map:438
+msgid "Lushai"
+msgstr ""
+
+#: config.language_map:439
+msgid "Macedonian"
+msgstr ""
+
+#: config.language_map:440
+msgid "Madurese"
+msgstr ""
+
+#: config.language_map:441
+msgid "Magahi"
+msgstr ""
+
+#: config.language_map:442
+msgid "Marshallese"
+msgstr ""
+
+#: config.language_map:443
+msgid "Maithili"
+msgstr ""
+
+#: config.language_map:444
+msgid "Makasar"
+msgstr ""
+
+#: config.language_map:445
+msgid "Malayalam"
+msgstr ""
+
+#: config.language_map:446
+msgid "Mandingo"
+msgstr ""
+
+#: config.language_map:447
+msgid "Maori"
+msgstr ""
+
+#: config.language_map:448
+msgid "Austronesian (Other)"
+msgstr ""
+
+#: config.language_map:449
+msgid "Marathi"
+msgstr ""
+
+#: config.language_map:450
+msgid "Masai"
+msgstr ""
+
+#: config.language_map:451
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:452
+msgid "Malay"
+msgstr ""
+
+#: config.language_map:453
+msgid "Mandar"
+msgstr ""
+
+#: config.language_map:454
+msgid "Mende"
+msgstr ""
+
+#: config.language_map:455
+msgid "Irish, Middle (ca. 1100-1550)"
+msgstr ""
+
+#: config.language_map:456
+msgid "Micmac"
+msgstr ""
+
+#: config.language_map:457
+msgid "Minangkabau"
+msgstr ""
+
+#: config.language_map:458
+msgid "Miscellaneous languages"
+msgstr ""
+
+#: config.language_map:459
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+#: config.language_map:460
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:461
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:462
+msgid "Maltese"
+msgstr ""
+
+#: config.language_map:463
+msgid "Manchu"
+msgstr ""
+
+#: config.language_map:464
+msgid "Manipuri"
+msgstr ""
+
+#: config.language_map:465
+msgid "Manobo languages"
+msgstr ""
+
+#: config.language_map:466
+msgid "Mohawk"
+msgstr ""
+
+#: config.language_map:467
+msgid "Moldavian"
+msgstr ""
+
+#: config.language_map:468
+msgid "Mongolian"
+msgstr ""
+
+#: config.language_map:469
+msgid "Mooré"
+msgstr ""
+
+#: config.language_map:470
+msgid "Multiple languages"
+msgstr ""
+
+#: config.language_map:471
+msgid "Munda (Other)"
+msgstr ""
+
+#: config.language_map:472
+msgid "Creek"
+msgstr ""
+
+#: config.language_map:473
+msgid "Marwari"
+msgstr ""
+
+#: config.language_map:474
+msgid "Mayan languages"
+msgstr ""
+
+#: config.language_map:475
+msgid "Nahuatl"
+msgstr ""
+
+#: config.language_map:476
+msgid "North American Indian (Other)"
+msgstr ""
+
+#: config.language_map:477
+msgid "Neapolitan Italian"
+msgstr ""
+
+#: config.language_map:478
+msgid "Nauru"
+msgstr ""
+
+#: config.language_map:479
+msgid "Navajo"
+msgstr ""
+
+#: config.language_map:480
+msgid "Ndebele (South Africa)"
+msgstr ""
+
+#: config.language_map:481
+msgid "Ndebele (Zimbabwe) "
+msgstr ""
+
+#: config.language_map:482
+msgid "Ndonga"
+msgstr ""
+
+#: config.language_map:483
+msgid "Low German"
+msgstr ""
+
+#: config.language_map:484
+msgid "Nepali"
+msgstr ""
+
+#: config.language_map:485
+msgid "Newari"
+msgstr ""
+
+#: config.language_map:486
+msgid "Nias"
+msgstr ""
+
+#: config.language_map:487
+msgid "Niger-Kordofanian (Other)"
+msgstr ""
+
+#: config.language_map:488
+msgid "Niuean"
+msgstr ""
+
+#: config.language_map:489
+msgid "Norwegian (Nynorsk)"
+msgstr ""
+
+#: config.language_map:490
+msgid "Norwegian (Bokmål)"
+msgstr ""
+
+#: config.language_map:491
+msgid "Nogai"
+msgstr ""
+
+#: config.language_map:492
+msgid "Old Norse"
+msgstr ""
+
+#: config.language_map:493
+msgid "Norwegian"
+msgstr ""
+
+#: config.language_map:494
+msgid "Northern Sotho"
+msgstr ""
+
+#: config.language_map:495
+msgid "Nubian languages"
+msgstr ""
+
+#: config.language_map:496
+msgid "Nyanja"
+msgstr ""
+
+#: config.language_map:497
+msgid "Nyamwezi"
+msgstr ""
+
+#: config.language_map:498
+msgid "Nyankole"
+msgstr ""
+
+#: config.language_map:499
+msgid "Nyoro"
+msgstr ""
+
+#: config.language_map:500
+msgid "Nzima"
+msgstr ""
+
+#: config.language_map:501
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:502
+msgid "Ojibwa"
+msgstr ""
+
+#: config.language_map:503
+msgid "Oriya"
+msgstr ""
+
+#: config.language_map:504
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:505
+msgid "Osage"
+msgstr ""
+
+#: config.language_map:506
+msgid "Ossetic"
+msgstr ""
+
+#: config.language_map:507
+msgid "Turkish, Ottoman"
+msgstr ""
+
+#: config.language_map:508
+msgid "Otomian languages"
+msgstr ""
+
+#: config.language_map:509
+msgid "Papuan (Other)"
+msgstr ""
+
+#: config.language_map:510
+msgid "Pangasinan"
+msgstr ""
+
+#: config.language_map:511
+msgid "Pahlavi"
+msgstr ""
+
+#: config.language_map:512
+msgid "Pampanga"
+msgstr ""
+
+#: config.language_map:513
+msgid "Panjabi"
+msgstr ""
+
+#: config.language_map:514
+msgid "Papiamento"
+msgstr ""
+
+#: config.language_map:515
+msgid "Palauan"
+msgstr ""
+
+#: config.language_map:516
+msgid "Old Persian (ca. 600-400 B.C.)"
+msgstr ""
+
+#: config.language_map:517
+msgid "Persian"
+msgstr ""
+
+#: config.language_map:518
+msgid "Philippine (Other)"
+msgstr ""
+
+#: config.language_map:519
+msgid "Phoenician"
+msgstr ""
+
+#: config.language_map:520
+msgid "Pali"
+msgstr ""
+
+#: config.language_map:521
+msgid "Polish"
+msgstr ""
+
+#: config.language_map:522
+msgid "Ponape"
+msgstr ""
+
+#: config.language_map:523
+msgid "Portuguese"
+msgstr ""
+
+#: config.language_map:524
+msgid "Prakrit languages"
+msgstr ""
+
+#: config.language_map:525
+msgid "Provençal (to 1500)"
+msgstr ""
+
+#: config.language_map:526
+msgid "Pushto"
+msgstr ""
+
+#: config.language_map:527
+msgid "Quechua"
+msgstr ""
+
+#: config.language_map:528
+msgid "Rajasthani"
+msgstr ""
+
+#: config.language_map:529
+msgid "Rapanui"
+msgstr ""
+
+#: config.language_map:530
+msgid "Rarotongan"
+msgstr ""
+
+#: config.language_map:531
+msgid "Romance (Other)"
+msgstr ""
+
+#: config.language_map:532
+msgid "Raeto-Romance"
+msgstr ""
+
+#: config.language_map:533
+msgid "Romani"
+msgstr ""
+
+#: config.language_map:534
+msgid "Romanian"
+msgstr ""
+
+#: config.language_map:535
+msgid "Rundi"
+msgstr ""
+
+#: config.language_map:536
+msgid "Russian"
+msgstr ""
+
+#: config.language_map:537
+msgid "Sandawe"
+msgstr ""
+
+#: config.language_map:538
+msgid "Sango (Ubangi Creole)"
+msgstr ""
+
+#: config.language_map:539
+msgid "Yakut"
+msgstr ""
+
+#: config.language_map:540
+msgid "South American Indian (Other)"
+msgstr ""
+
+#: config.language_map:541
+msgid "Salishan languages"
+msgstr ""
+
+#: config.language_map:542
+msgid "Samaritan Aramaic"
+msgstr ""
+
+#: config.language_map:543
+msgid "Sanskrit"
+msgstr ""
+
+#: config.language_map:544
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:545
+msgid "Sasak"
+msgstr ""
+
+#: config.language_map:546
+msgid "Santali"
+msgstr ""
+
+#: config.language_map:547
+msgid "Serbian"
+msgstr ""
+
+#: config.language_map:548
+msgid "Scots"
+msgstr ""
+
+#: config.language_map:549
+msgid "Croatian"
+msgstr ""
+
+#: config.language_map:550
+msgid "Selkup"
+msgstr ""
+
+#: config.language_map:551
+msgid "Semitic (Other)"
+msgstr ""
+
+#: config.language_map:552
+msgid "Irish, Old (to 1100)"
+msgstr ""
+
+#: config.language_map:553
+msgid "Sign languages"
+msgstr ""
+
+#: config.language_map:554
+msgid "Shan"
+msgstr ""
+
+#: config.language_map:555
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:556
+msgid "Sidamo"
+msgstr ""
+
+#: config.language_map:557
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:558
+msgid "Siouan (Other)"
+msgstr ""
+
+#: config.language_map:559
+msgid "Sino-Tibetan (Other)"
+msgstr ""
+
+#: config.language_map:560
+msgid "Slavic (Other)"
+msgstr ""
+
+#: config.language_map:561
+msgid "Slovak"
+msgstr ""
+
+#: config.language_map:562
+msgid "Slovenian"
+msgstr ""
+
+#: config.language_map:563
+msgid "Southern Sami"
+msgstr ""
+
+#: config.language_map:564
+msgid "Northern Sami"
+msgstr ""
+
+#: config.language_map:565
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:566
+msgid "Lule Sami"
+msgstr ""
+
+#: config.language_map:567
+msgid "Inari Sami"
+msgstr ""
+
+#: config.language_map:568
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:569
+msgid "Skolt Sami"
+msgstr ""
+
+#: config.language_map:570
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:571
+msgid "Sindhi"
+msgstr ""
+
+#: config.language_map:572
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:573
+msgid "Soninke"
+msgstr ""
+
+#: config.language_map:574
+msgid "Sogdian"
+msgstr ""
+
+#: config.language_map:575
+msgid "Somali"
+msgstr ""
+
+#: config.language_map:576
+msgid "Songhai"
+msgstr ""
+
+#: config.language_map:577
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:578
+msgid "Spanish"
+msgstr ""
+
+#: config.language_map:579
+msgid "Sardinian"
+msgstr ""
+
+#: config.language_map:580
+msgid "Serer"
+msgstr ""
+
+#: config.language_map:581
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#: config.language_map:582
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:583
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:584
+msgid "Sukuma"
+msgstr ""
+
+#: config.language_map:585
+msgid "Sundanese"
+msgstr ""
+
+#: config.language_map:586
+msgid "Susu"
+msgstr ""
+
+#: config.language_map:587
+msgid "Sumerian"
+msgstr ""
+
+#: config.language_map:588
+msgid "Swahili"
+msgstr ""
+
+#: config.language_map:589
+msgid "Swedish"
+msgstr ""
+
+#: config.language_map:590
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:591
+msgid "Syriac"
+msgstr ""
+
+#: config.language_map:592
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:593
+msgid "Tahitian"
+msgstr ""
+
+#: config.language_map:594
+msgid "Tai (Other)"
+msgstr ""
+
+#: config.language_map:595
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:596
+msgid "Tamil"
+msgstr ""
+
+#: config.language_map:597
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:598
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:599
+msgid "Telugu"
+msgstr ""
+
+#: config.language_map:600
+msgid "Temne"
+msgstr ""
+
+#: config.language_map:601
+msgid "Terena"
+msgstr ""
+
+#: config.language_map:602
+msgid "Tetum"
+msgstr ""
+
+#: config.language_map:603
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:604
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:605
+msgid "Thai"
+msgstr ""
+
+#: config.language_map:606
+msgid "Tibetan"
+msgstr ""
+
+#: config.language_map:607
+msgid "Tigré"
+msgstr ""
+
+#: config.language_map:608
+msgid "Tigrinya"
+msgstr ""
+
+#: config.language_map:609
+msgid "Tiv"
+msgstr ""
+
+#: config.language_map:610
+msgid "Tokelauan"
+msgstr ""
+
+#: config.language_map:611
+msgid "Tlingit"
+msgstr ""
+
+#: config.language_map:612
+msgid "Tamashek"
+msgstr ""
+
+#: config.language_map:613
+msgid "Tonga (Nyasa)"
+msgstr ""
+
+#: config.language_map:614
+msgid "Tongan"
+msgstr ""
+
+#: config.language_map:615
+msgid "Tok Pisin"
+msgstr ""
+
+#: config.language_map:616
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:617
+msgid "Tsimshian"
+msgstr ""
+
+#: config.language_map:618
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:619
+msgid "Tsonga"
+msgstr ""
+
+#: config.language_map:620
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:621
+msgid "Turkmen"
+msgstr ""
+
+#: config.language_map:622
+msgid "Tumbuka"
+msgstr ""
+
+#: config.language_map:623
+msgid "Tupi languages"
+msgstr ""
+
+#: config.language_map:624
+msgid "Turkish"
+msgstr ""
+
+#: config.language_map:625
+msgid "Altaic (Other)"
+msgstr ""
+
+#: config.language_map:626
+msgid "Tuvaluan"
+msgstr ""
+
+#: config.language_map:627
+msgid "Twi"
+msgstr ""
+
+#: config.language_map:628
+msgid "Tuvinian"
+msgstr ""
+
+#: config.language_map:629
+msgid "Udmurt"
+msgstr ""
+
+#: config.language_map:630
+msgid "Ugaritic"
+msgstr ""
+
+#: config.language_map:631
+msgid "Uighur"
+msgstr ""
+
+#: config.language_map:632
+msgid "Ukrainian"
+msgstr ""
+
+#: config.language_map:633
+msgid "Umbundu"
+msgstr ""
+
+#: config.language_map:634
+msgid "Undetermined"
+msgstr ""
+
+#: config.language_map:635
+msgid "Urdu"
+msgstr ""
+
+#: config.language_map:636
+msgid "Uzbek"
+msgstr ""
+
+#: config.language_map:637
+msgid "Vai"
+msgstr ""
+
+#: config.language_map:638
+msgid "Venda"
+msgstr ""
+
+#: config.language_map:639
+msgid "Vietnamese"
+msgstr ""
+
+#: config.language_map:640
+msgid "Volapük"
+msgstr ""
+
+#: config.language_map:641
+msgid "Votic"
+msgstr ""
+
+#: config.language_map:642
+msgid "Wakashan languages"
+msgstr ""
+
+#: config.language_map:643
+msgid "Walamo"
+msgstr ""
+
+#: config.language_map:644
+msgid "Waray"
+msgstr ""
+
+#: config.language_map:645
+msgid "Washo"
+msgstr ""
+
+#: config.language_map:646
+msgid "Welsh"
+msgstr ""
+
+#: config.language_map:647
+msgid "Sorbian languages"
+msgstr ""
+
+#: config.language_map:648
+msgid "Walloon"
+msgstr ""
+
+#: config.language_map:649
+msgid "Wolof"
+msgstr ""
+
+#: config.language_map:650
+msgid "Kalmyk"
+msgstr ""
+
+#: config.language_map:651
+msgid "Xhosa"
+msgstr ""
+
+#: config.language_map:652
+msgid "Yao (Africa)"
+msgstr ""
+
+#: config.language_map:653
+msgid "Yapese"
+msgstr ""
+
+#: config.language_map:654
+msgid "Yiddish"
+msgstr ""
+
+#: config.language_map:655
+msgid "Yoruba"
+msgstr ""
+
+#: config.language_map:656
+msgid "Yupik languages"
+msgstr ""
+
+#: config.language_map:657
+msgid "Zapotec"
+msgstr ""
+
+#: config.language_map:658
+msgid "Zenaga"
+msgstr ""
+
+#: config.language_map:659
+msgid "Zhuang"
+msgstr ""
+
+#: config.language_map:660
+msgid "Zande"
+msgstr ""
+
+#: config.language_map:661
+msgid "Zulu"
+msgstr ""
+
+#: config.language_map:662
+msgid "Zuni"
+msgstr ""
+
+#: config.item_form_map:664
+msgid "Microfilm"
+msgstr ""
+
+#: config.item_form_map:665
+msgid "Microfiche"
+msgstr ""
+
+#: config.item_form_map:666
+msgid "Microopaque"
+msgstr ""
+
+#: config.item_form_map:667
+msgid "Large print"
+msgstr ""
+
+#: config.item_form_map:668
+msgid "Braille"
+msgstr ""
+
+#: config.item_form_map:669
+msgid "Regular print reproduction"
+msgstr ""
+
+#: config.item_form_map:670
+msgid "Electronic"
+msgstr ""
+
+#: config.item_type_map:672
+msgid "Language material"
+msgstr ""
+
+#: config.item_type_map:673
+msgid "Manuscript language material"
+msgstr ""
+
+#: config.item_type_map:674
+msgid "Projected medium"
+msgstr ""
+
+#: config.item_type_map:675
+msgid "Two-dimensional nonprojectable graphic"
+msgstr ""
+
+#: config.item_type_map:676
+msgid "Three-dimensional artifact or naturally occurring object"
+msgstr ""
+
+#: config.item_type_map:677
+msgid "Kit"
+msgstr ""
+
+#: config.item_type_map:678
+msgid "Mixed materials"
+msgstr ""
+
+#: config.item_type_map:679
+msgid "Cartographic material"
+msgstr ""
+
+#: config.item_type_map:680
+msgid "Manuscript cartographic material"
+msgstr ""
+
+#: config.item_type_map:681
+msgid "Notated music"
+msgstr ""
+
+#: config.item_type_map:682
+msgid "Manuscript notated music"
+msgstr ""
+
+#: config.item_type_map:683
+msgid "Nonmusical sound recording"
+msgstr ""
+
+#: config.item_type_map:684
+msgid "Musical sound recording"
+msgstr ""
+
+#: config.item_type_map:685
+msgid "Computer file"
+msgstr ""
+
+#: config.bib_level_map:687
+msgid "Monographic component part"
+msgstr ""
+
+#: config.bib_level_map:688
+msgid "Serial component part"
+msgstr ""
+
+#: config.bib_level_map:689
+msgid "Collection"
+msgstr ""
+
+#: config.bib_level_map:690
+msgid "Subunit"
+msgstr ""
+
+#: config.bib_level_map:691
+msgid "Integrating resource"
+msgstr ""
+
+#: config.bib_level_map:692
+msgid "Monograph/Item"
+msgstr ""
+
+#: config.bib_level_map:693
+msgid "Serial"
+msgstr ""
+
+#: config.i18n_locale:698
+msgid "American English"
+msgstr ""
+
+#: config.i18n_locale:700
+msgid "Canadian English"
+msgstr ""
+
+#: config.i18n_locale:702
+msgid "Canadian Fench"
+msgstr ""
+
+#: config.i18n_locale:704
+msgid "American Spanish"
+msgstr ""
+
+#: config.i18n_locale:706
+msgid "Mexican Spanish"
+msgstr ""
+
+#: actor.org_unit_type:713
+msgid "Consortium"
+msgstr ""
+
+#: actor.org_unit_type:715
+msgid "System"
+msgstr ""
+
+#: actor.org_unit_type:717
+msgid "Branch"
+msgstr ""
+
+#: actor.org_unit_type:719
+msgid "Sub-lib"
+msgstr ""
+
+#: actor.org_unit_type:721
+msgid "Bookmobile"
+msgstr ""
+
+#: actor.org_unit:724
+msgid "Example Consortium"
+msgstr ""
+
+#: actor.org_unit:726
+msgid "Example System 1"
+msgstr ""
+
+#: actor.org_unit:728
+msgid "Example System 2"
+msgstr ""
+
+#: actor.org_unit:730
+msgid "Example Branch 1"
+msgstr ""
+
+#: actor.org_unit:732
+msgid "Example Branch 2"
+msgstr ""
+
+#: actor.org_unit:734
+msgid "Example Branch 3"
+msgstr ""
+
+#: actor.org_unit:736
+msgid "Example Branch 4"
+msgstr ""
+
+#: actor.org_unit:738
+msgid "Example Sub-lib 1"
+msgstr ""
+
+#: actor.org_unit:740
+msgid "Example Bookmobile 1"
+msgstr ""
+
+#: actor.org_address:742
+msgid "123 Main St."
+msgstr ""
+
+#: permission.perm_list:760
+msgid "User is allowed to place a hold on a specific copy"
+msgstr ""
+
+#: permission.perm_list:766
+msgid "Allows a user to view another user's holds"
+msgstr ""
+
+#: permission.perm_list:770
+msgid "Allows a user to update another user's hold"
+msgstr ""
+
+#: permission.perm_list:780
+msgid "User is allowed to create new MARC records"
+msgstr ""
+
+#: permission.perm_list:820
+msgid "User may create new billable transactions"
+msgstr ""
+
+#: permission.perm_list:822
+msgid "Allows a user to create a new bill on a transaction"
+msgstr ""
+
+#: permission.perm_list:824
+msgid "Allows a user to view another user's containers (buckets)"
+msgstr ""
+
+#: permission.perm_list:826
+msgid "Allows a user to create a new container for another user"
+msgstr ""
+
+#: permission.perm_list:828
+msgid "User is allowed to create a new copy object"
+msgstr ""
+
+#: permission.perm_list:830
+msgid "Allows a user to change org unit settings"
+msgstr ""
+
+#: permission.perm_list:832
+msgid "Allows a user to see what another use has checked out"
+msgstr ""
+
+#: permission.perm_list:834
+msgid "User may view another user's transactions"
+msgstr ""
+
+#: permission.perm_list:836
+msgid "Allows a user to delete another user container"
+msgstr ""
+
+#: permission.perm_list:838
+msgid "Create a container item for another user"
+msgstr ""
+
+#: permission.perm_list:840
+msgid "User can add other users to permission groups"
+msgstr ""
+
+#: permission.perm_list:842
+msgid "User can remove other users from permission groups"
+msgstr ""
+
+#: permission.perm_list:844
+msgid "Allow user to view others' permission groups"
+msgstr ""
+
+#: permission.perm_list:846
+msgid "Allows a user to determine of another user can checkout an item"
+msgstr ""
+
+#: permission.perm_list:848
+msgid "Allows a user to edit copies in batch"
+msgstr ""
+
+#: permission.perm_list:850
+msgid "User may create a new patron statistical category"
+msgstr ""
+
+#: permission.perm_list:852
+msgid "User may create a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:854
+msgid "User may create a new patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:856
+msgid "User may create a new copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:858
+msgid "User may update a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:860
+msgid "User may update a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:862
+msgid "User may update a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:864
+msgid "User may update a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:866
+msgid "User may link a copy to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:868
+msgid "User may link another user to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:870
+msgid "User may delete a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:872
+msgid "User may delete a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:874
+msgid "User may delete a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:876
+msgid "User may delete a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:878
+msgid "User may delete a patron stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:880
+msgid "User may delete a copy stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:882
+msgid "Allows a user to create a new non-cataloged item type"
+msgstr ""
+
+#: permission.perm_list:884
+msgid "Allows a user to update a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:886
+msgid "Allows a user to create a new in-house-use "
+msgstr ""
+
+#: permission.perm_list:888
+msgid "Allows a user to check out a copy"
+msgstr ""
+
+#: permission.perm_list:890
+msgid "Allows a user to create a new copy location"
+msgstr ""
+
+#: permission.perm_list:892
+msgid "Allows a user to update a copy location"
+msgstr ""
+
+#: permission.perm_list:894
+msgid "Allows a user to delete a copy location"
+msgstr ""
+
+#: permission.perm_list:896
+msgid "Allows a user to create a transit_copy object for transiting a copy"
+msgstr ""
+
+#: permission.perm_list:898
+msgid "Allows a user to close out a transit on a copy"
+msgstr ""
+
+#: permission.perm_list:900
+msgid "Allows a user to see if another user has permission to place a hold on a given copy"
+msgstr ""
+
+#: permission.perm_list:902
+msgid "Allows a user to view which users have checked out a given copy"
+msgstr ""
+
+#: permission.perm_list:904
+msgid "Allows a user to perform z3950 queries against remote servers"
+msgstr ""
+
+#: permission.perm_list:906
+msgid "Allows a user to register a new workstation"
+msgstr ""
+
+#: permission.perm_list:908
+msgid "Allows a user to view all notes attached to a copy"
+msgstr ""
+
+#: permission.perm_list:910
+msgid "Allows a user to view all notes attached to a volume"
+msgstr ""
+
+#: permission.perm_list:912
+msgid "Allows a user to view all notes attached to a title"
+msgstr ""
+
+#: permission.perm_list:914
+msgid "Allows a user to create a new volume note"
+msgstr ""
+
+#: permission.perm_list:916
+msgid "Allows a user to create a new copy note"
+msgstr ""
+
+#: permission.perm_list:918
+msgid "Allows a user to create a new title note"
+msgstr ""
+
+#: permission.perm_list:920
+msgid "Allows a user to delete someone elses copy notes"
+msgstr ""
+
+#: permission.perm_list:922
+msgid "Allows a user to delete someone elses volume note"
+msgstr ""
+
+#: permission.perm_list:924
+msgid "Allows a user to delete someone elses title note"
+msgstr ""
+
+#: permission.perm_list:926
+msgid "Allows a user to update another users container"
+msgstr ""
+
+#: permission.perm_list:928
+msgid "Allows a user to create a container for themselves"
+msgstr ""
+
+#: permission.perm_list:930
+msgid "Allows a user to view notifications attached to a hold"
+msgstr ""
+
+#: permission.perm_list:932
+msgid "Allows a user to create new hold notifications"
+msgstr ""
+
+#: permission.perm_list:934
+msgid "Allows a user to update an org unit setting"
+msgstr ""
+
+#: permission.perm_list:936
+msgid "Allows a user to upload an offline script"
+msgstr ""
+
+#: permission.perm_list:938
+msgid "Allows a user to view uploaded offline script information"
+msgstr ""
+
+#: permission.perm_list:940
+msgid "Allows a user to execute an offline script batch"
+msgstr ""
+
+#: permission.perm_list:942
+msgid "Allows a user to change set the due date on an item to any date"
+msgstr ""
+
+#: permission.perm_list:944
+msgid "Allows a user to bypass the circ permit call for checkout"
+msgstr ""
+
+#: permission.perm_list:946
+msgid "Allows a user to override the copy_is_reference event"
+msgstr ""
+
+#: permission.perm_list:948
+msgid "Allows a user to void a bill"
+msgstr ""
+
+#: permission.perm_list:950
+msgid "Allows a person to check in/out an item that is claims returned"
+msgstr ""
+
+#: permission.perm_list:952
+msgid "Allows a user to check out an item in a non-circulatable status"
+msgstr ""
+
+#: permission.perm_list:954
+msgid "Allows a user to check in/out an item that has an alert message"
+msgstr ""
+
+#: permission.perm_list:956
+msgid "Allows a user to remove the lost status from a copy"
+msgstr ""
+
+#: permission.perm_list:958
+msgid "Allows a user to change the missing status on a copy"
+msgstr ""
+
+#: permission.perm_list:960
+msgid "Allows a user to abort a copy transit if the user is at the transit destination or source"
+msgstr ""
+
+#: permission.perm_list:962
+msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest"
+msgstr ""
+
+#: permission.perm_list:964
+msgid "Allowsa user to query the zip code data method"
+msgstr ""
+
+#: permission.perm_list:968
+msgid "Allows a user to create duplicate holds (e.g. two holds on the same title)"
+msgstr ""
+
+#: permission.perm_list:970
+msgid "Allows a user to update a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:972
+msgid "Allows a user to remove a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:974
+msgid "Allows a user to create a new closed date for a location"
+msgstr ""
+
+#: permission.perm_list:976
+msgid "Allows a user to delete a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:978
+msgid "Allows a user to put someone into collections"
+msgstr ""
+
+#: permission.perm_list:980
+msgid "Allows a user to remove someone from collections"
+msgstr ""
+
+#: permission.perm_list:982
+msgid "Allows a user to bar a patron"
+msgstr ""
+
+#: permission.perm_list:984
+msgid "Allows a user to un-bar a patron"
+msgstr ""
+
+#: permission.perm_list:986
+msgid "Allows a user to remove an existing workstation so a new one can replace it"
+msgstr ""
+
+#: permission.perm_list:988
+msgid "Allows a user to add/remove users to/from the \"User\" group"
+msgstr ""
+
+#: permission.perm_list:990
+msgid "Allows a user to add/remove users to/from the \"Patron\" group"
+msgstr ""
+
+#: permission.perm_list:992
+msgid "Allows a user to add/remove users to/from the \"Staff\" group"
+msgstr ""
+
+#: permission.perm_list:994
+msgid "Allows a user to add/remove users to/from the \"Circulator\" group"
+msgstr ""
+
+#: permission.perm_list:996
+msgid "Allows a user to add/remove users to/from the \"Cataloger\" group"
+msgstr ""
+
+#: permission.perm_list:998
+msgid "Allows a user to add/remove users to/from the \"GlobalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:1000
+msgid "Allows a user to add/remove users to/from the \"LocalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:1002
+msgid "Allows a user to add/remove users to/from the \"LibraryManager\" group"
+msgstr ""
+
+#: permission.perm_list:1004
+msgid "Allows a user to add/remove users to/from the \"Cat1\" group"
+msgstr ""
+
+#: permission.perm_list:1006
+msgid "Allows a user to add/remove users to/from the \"Supercat\" group"
+msgstr ""
+
+#: permission.perm_list:1008
+msgid "Allows a user to add/remove users to/from the \"SIP-Client\" group"
+msgstr ""
+
+#: permission.perm_list:1010
+msgid "Allows a user to add/remove users to/from the \"Vendor\" group"
+msgstr ""
+
+#: permission.perm_list:1012
+msgid "Allows a user to place a hold on an age-protected item"
+msgstr ""
+
+#: permission.perm_list:1014
+msgid "Allows a user to renew an item past the maximun renewal count"
+msgstr ""
+
+#: permission.perm_list:1016
+msgid "Allow staff to override checkout count failure"
+msgstr ""
+
+#: permission.perm_list:1018
+msgid "Allow staff to override overdue count failure"
+msgstr ""
+
+#: permission.perm_list:1020
+msgid "Allow staff to override fine amount checkout failure"
+msgstr ""
+
+#: permission.perm_list:1026
+msgid "Allow staff to force checkout of Missing/Lost type items"
+msgstr ""
+
+#: permission.perm_list:1028
+msgid "allows users to place multiple holds on a single title"
+msgstr ""
+
+#: permission.perm_list:1030
+msgid "Allows a users to run reports"
+msgstr ""
+
+#: permission.perm_list:1032
+msgid "Allows a user to share report his own folders"
+msgstr ""
+
+#: permission.perm_list:1034
+msgid "Allow user to view report output"
+msgstr ""
+
+#: permission.perm_list:1036
+msgid "Allows a user to checkout an item that is marked as non-circ"
+msgstr ""
+
+#: permission.perm_list:1038
+msgid "Allows a user to delete an item out of another user's container"
+msgstr ""
+
+#: permission.perm_list:1040
+msgid "Allow a staff member to define where another staff member has their permissions"
+msgstr ""
+
+#: permission.perm_list:1042
+msgid "Allow a staff member to directly remove a bibliographic record"
+msgstr ""
+
+#: actor.usr:1254
+msgid "Administrator"
+msgstr ""
+
+#: asset.copy_location:1267
+msgid "Stacks"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:28-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: field.aihu.org_unit.label:705 field.ancihu.org_unit.label:722
+msgid "Using Library"
+msgstr ""
+
+#: field.rxbt.voided.label:3519
+msgid "Voided Billing Amount"
+msgstr ""
+
+#: field.bre.source.label:1067
+msgid "Record Source"
+msgstr ""
+
+#: field.bre.marc.label:1065
+msgid "MARC21Slim"
+msgstr ""
+
+#: field.rocit.title.label:3779
+msgid "Title"
+msgstr ""
+
+#: field.mbts.xact_start.label:644
+msgid "Transaction Start Time"
+msgstr ""
+
+#: field.mrd.vr_format.label:1515
+msgid "Video Recording Format"
+msgstr ""
+
+#: field.vqbr.bib_source.label:173
+msgid "Bib Source"
+msgstr ""
+
+#: field.aua.within_city_limits.label:1576
+msgid "Within City Limits?"
+msgstr ""
+
+#: field.rhrr.hold_type.label:3504
+msgid "Hold Request Type"
+msgstr ""
+
+#: field.au.demographic.label:1272
+msgid "Demographic Info"
+msgstr ""
+
+#: class.mwp.label:2562
+msgid "Work Payment"
+msgstr ""
+
+#: field.au.ident_value2.label:1253
+msgid "Secondary Identification"
+msgstr ""
+
+#: class.acirc.label:1754
+msgid "Aged (patronless) Circulation"
+msgstr ""
+
+#: field.mbts.last_payment_note.label:637
+#: field.rccbs.last_payment_note.label:3661
+msgid "Last Payment Note"
+msgstr ""
+
+#: field.au.expire_date.label:1245
+msgid "Privilege Expiration Date"
+msgstr ""
+
+#: field.ac.id.label:2262
+msgid "Card ID"
+msgstr ""
+
+#: field.mp.credit_card_payment.label:3011
+#: field.mbp.credit_card_payment.label:3042
+msgid "Credit Card Payment Detail"
+msgstr ""
+
+#: class.rssr.label:3416
+msgid "Simple Record Extracts"
+msgstr ""
+
+#: field.au.id.label:1249 field.rud.id.label:3477
+msgid "User ID"
+msgstr ""
+
+#: field.asc.entries.label:2244 field.actsc.entries.label:2274
+msgid "Entries"
+msgstr ""
+
+#: field.acp.dummy_title.label:2716
+msgid "Precat Dummy Title"
+msgstr ""
+
+#: field.acpn.create_date.label:1324
+msgid "Note Creation Date/Time"
+msgstr ""
+
+#: field.aua.street2.label:1573
+msgid "Street (2)"
+msgstr ""
+
+#: field.au.barred.label:1235
+msgid "Barred"
+msgstr ""
+
+#: field.mcrp.id.label:2326
+msgid "Pyament ID"
+msgstr ""
+
+#: field.au.claims_returned_count.label:1238
+msgid "Claims-returned Count"
+msgstr ""
+
+#: field.bre.series_field_entries.label:1077
+msgid "Indexed Series Field Entries"
+msgstr ""
+
+#: field.rccbs.demographic_general_division.label:3668
+msgid "User Age Demographic"
+msgstr ""
+
+#: field.rccc.dewey.label:3579
+msgid "Call Number Dewey/Prefix"
+msgstr ""
+
+#: field.crahp.name.label:2771 field.crmf.name.label:2783
+msgid "Rule Name"
+msgstr ""
+
+#: field.clfm.code.label:2548
+msgid "LitF Code"
+msgstr ""
+
+#: field.mrd.type_mat.label:1514
+msgid "TMat"
+msgstr ""
+
+#: field.mb.billing_type.label:3183 field.rmocbbol.billing_type.label:3830
+#: field.rmocbbcol.billing_type.label:3861
+#: field.rmocbbhol.billing_type.label:3895
+msgid "Billing Type"
+msgstr ""
+
+#: class.mckp.label:2671 field.mdp.check_payment.label:3099
+msgid "Check Payment"
+msgstr ""
+
+#: field.rccc.stat_cat_1.label:3586
+msgid "Legacy CAT1 Link"
+msgstr ""
+
+#: field.mfr.tag.label:1363
+msgid "Tag"
+msgstr ""
+
+#: field.aout.org_units.label:2384
+msgid "Org Units"
+msgstr ""
+
+#: field.rccbs.profile_group.label:3674
+msgid "User Profile Group"
+msgstr ""
+
+#: field.vbm.field.label:246 field.vam.field.label:371
+msgid "Matched Attribute"
+msgstr ""
+
+#: field.ahn.method.label:1875
+msgid "Notification Method"
+msgstr ""
+
+#: field.vqbrad.xpath.label:200 field.vqarad.xpath.label:325
+msgid "XPath"
+msgstr ""
+
+#: field.au.groups.label:1269
+msgid "Additional Permission Groups"
+msgstr ""
+
+#: field.ccm.magnetic_media.label:433
+msgid "Magnetic Media"
+msgstr ""
+
+#: field.ahr.request_lib.label:2136
+msgid "Requesting Library"
+msgstr ""
+
+#: field.ahtc.source.label:3152
+msgid "Sending Library"
+msgstr ""
+
+#: field.rccc.call_number.label:3577
+msgid "Call Number Link"
+msgstr ""
+
+#: field.ahr.target.label:2141
+msgid "Target Object ID"
+msgstr ""
+
+#: field.circ.checkin_lib.label:1637 field.combcirc.checkin_lib.label:1692
+#: field.acirc.checkin_lib.label:1759 field.rodcirc.checkin_lib.label:3724
+msgid "Check In Library"
+msgstr ""
+
+#: field.aua.state.label:1571
+msgid "State"
+msgstr ""
+
+#: field.mp.voided.label:3009 field.mbp.voided.label:3040
+#: field.mndp.voided.label:3071 field.mdp.voided.label:3096
+#: field.mb.voided.label:3187
+msgid "Voided?"
+msgstr ""
+
+#: class.citm.label:1925
+msgid "Item Type Map"
+msgstr ""
+
+#: field.rccbs.billing_location_shortname.label:3642
+msgid "Billing Location Short (Policy) Name"
+msgstr ""
+
+#: field.rud.general_division.label:3479
+msgid "General Demographic Division"
+msgstr ""
+
+#: field.asvq.responses.label:616 field.asv.responses.label:2061
+msgid "Responses"
+msgstr ""
+
+#: field.mrd.item_form.label:1508
+msgid "Form"
+msgstr ""
+
+#: field.ssr.deleted.label:2050 field.rocit.deleted.label:3806
+msgid "Deleted"
+msgstr ""
+
+#: field.aou.ou_type.label:2179 class.aout.label:2371
+msgid "Organizational Unit Type"
+msgstr ""
+
+#: field.mcrp.payment_ts.label:2328 field.mwp.payment_ts.label:2572
+#: field.mgp.payment_ts.label:2593 field.mckp.payment_ts.label:2683
+msgid "Payment Timestamp"
+msgstr ""
+
+#: field.mfr.ind1.label:1359
+msgid "Indicator 1"
+msgstr ""
+
+#: field.mfr.ind2.label:1360
+msgid "Indicator 2"
+msgstr ""
+
+#: field.au.checkins.label:1274 field.aou.checkins.label:2190
+msgid "Checkins"
+msgstr ""
+
+#: field.cblvl.code.label:1948
+msgid "Bib Level Code"
+msgstr ""
+
+#: field.bre.call_numbers.label:1054
+msgid "Call Numbers"
+msgstr ""
+
+#: field.mp.payment_ts.label:3006 field.mbp.payment_ts.label:3037
+#: field.mndp.payment_ts.label:3068 field.mdp.payment_ts.label:3091
+msgid "Payment Date/Time"
+msgstr ""
+
+#: field.clm.value.label:847
+msgid "Language"
+msgstr ""
+
+#: None:1300
+msgid "Check-ins Performed as Staff"
+msgstr ""
+
+#: field.au.other_phone.label:1258
+msgid "Other Phone"
+msgstr ""
+
+#: field.bre.simple_record.label:1079
+msgid "Simple Record Extracts "
+msgstr ""
+
+#: class.actsce.label:2499
+msgid "User Stat Cat Entry"
+msgstr ""
+
+#: field.rccc.stat_cat_2_value.label:3593
+msgid "Legacy CAT2 Value"
+msgstr ""
+
+#: class.acn.label:969 field.acp.call_number.label:2704
+msgid "Call Number/Volume"
+msgstr ""
+
+#: field.mrd.control_type.label:1505
+msgid "Ctrl"
+msgstr ""
+
+#: field.au.family_name.label:1246
+msgid "Last Name"
+msgstr ""
+
+#: field.rccc.stat_cat_2.label:3587
+msgid "Legacy CAT2 Link"
+msgstr ""
+
+#: field.au.stat_cat_entries.label:1229
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: field.vbq.owner.label:145 field.vaq.owner.label:271
+msgid "Owner"
+msgstr ""
+
+#: class.ancihu.label:715
+msgid "Non-cataloged In House Use"
+msgstr ""
+
+#: field.ahr.holdable_formats.label:2131
+msgid "Holdable Formats (for M-type hold)"
+msgstr ""
+
+#: field.acp.notes.label:2728
+msgid "Copy Notes"
+msgstr ""
+
+#: field.vbm.eg_record.label:247 field.vam.eg_record.label:372
+msgid "Evergreen Record"
+msgstr ""
+
+#: field.vbm.id.label:244 field.vam.id.label:369
+msgid "Match ID"
+msgstr ""
+
+#: field.mbts.total_owed.label:640
+msgid "Total Owed"
+msgstr ""
+
+#: field.pgt.application_perm.label:2798
+msgid "Required Permission"
+msgstr ""
+
+#: field.au.ident_type2.label:1251
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: field.actscecm.stat_cat.label:2900
+msgid "Statistical Category"
+msgstr ""
+
+#: field.mbts.last_payment_ts.label:638
+msgid "Last Payment Timestamp"
+msgstr ""
+
+#: class.rmobbcol.label:3871
+msgid "Open Circulation Balance by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.ahr.usr.label:2142
+msgid "Hold User"
+msgstr ""
+
+#: class.mdp.label:3083
+msgid "Payments: Desk"
+msgstr ""
+
+#: field.asvr.answer.label:769
+msgid "Answer"
+msgstr ""
+
+#: field.rocit.status.label:3808
+msgid "Status"
+msgstr ""
+
+#: field.aun.pub.label:659 field.acpn.pub.label:1328
+#: field.acpl.opac_visible.label:1894
+msgid "Is OPAC Visible?"
+msgstr ""
+
+#: field.ahr.notifications.label:2146
+msgid "Notifications"
+msgstr ""
+
+#: field.aou.shortname.label:2181
+msgid "Short (Policy) Name"
+msgstr ""
+
+#: field.asvr.answer_date.label:770
+msgid "Answer Date/Time"
+msgstr ""
+
+#: field.rccc.dewey_block_hundreds.label:3591
+msgid "Dewey Block -- Hundreds"
+msgstr ""
+
+#: field.acn.deleted.label:977 field.au.deleted.label:1270
+#: field.acp.deleted.label:2712
+msgid "Is Deleted"
+msgstr ""
+
+#: field.acn.edit_date.label:978 field.acp.edit_date.label:2717
+msgid "Last Edit Date/Time"
+msgstr ""
+
+#: field.mbts.xact_type.label:645 field.rccbs.xact_type.label:3655
+msgid "Transaction Type"
+msgstr ""
+
+#: field.mbt.xact_start.label:2481 field.rccbs.xact_start.label:3653
+msgid "Transaction Start Date/Time"
+msgstr ""
+
+#: class.mbts.label:627
+msgid "Billable Transaction Summary"
+msgstr ""
+
+#: field.mb.billing_ts.label:3182
+msgid "Billing Timestamp"
+msgstr ""
+
+#: field.au.billing_address.label:1236
+msgid "Physical Address"
+msgstr ""
+
+#: field.mrd.item_lang.label:1509
+msgid "Lang"
+msgstr ""
+
+#: field.cblvl.value.label:1949
+msgid "Bib Level"
+msgstr ""
+
+#: field.actsce.stat_cat.label:2506 field.asce.stat_cat.label:3132
+msgid "Stat Cat"
+msgstr ""
+
+#: field.mrd.id.label:1507
+msgid "Descriptor ID"
+msgstr ""
+
+#: field.cit.name.label:605
+msgid "Identification Name"
+msgstr ""
+
+#: field.rccc.dewey_range_tens.label:3588
+msgid "Dewey Range -- Tens"
+msgstr ""
+
+#: field.rocit.dewey_block_hundreds.label:3787
+msgid "Dewy Hundreds"
+msgstr ""
+
+#: class.rocit.label:3774
+msgid "Classic Item List"
+msgstr ""
+
+#: field.mdp.accepting_usr.label:3094
+msgid "Accepting User"
+msgstr ""
+
+#: class.vqbrad.label:192
+msgid "Queued Bib Record Attribute Definition"
+msgstr ""
+
+#: field.rmsr.biblio_record.label:3410 field.rssr.biblio_record.label:3432
+#: field.rsr.biblio_record.label:3465
+msgid "Full Bibliographic record"
+msgstr ""
+
+#: field.vqbr.marc.label:171 field.vqar.marc.label:298
+msgid "MARC"
+msgstr ""
+
+#: class.iatc.label:3685
+msgid "Inter-system Copy Transit"
+msgstr ""
+
+#: class.aihu.label:698
+msgid "In House Use"
+msgstr ""
+
+#: field.circ.circ_type.label:1665 field.combcirc.circ_type.label:1720
+#: field.acirc.circ_type.label:1787 class.rcirct.label:3485
+#: field.rcirct.type.label:3491 field.rccc.circ_type.label:3566
+#: field.rodcirc.circ_type.label:3751
+msgid "Circulation Type"
+msgstr ""
+
+#: field.ahtc.hold.label:3148
+msgid "Hold requiring Transit"
+msgstr ""
+
+#: field.bre.notes.label:1072
+msgid "Non-MARC Record Notes"
+msgstr ""
+
+#: field.aou.ill_address.label:2176
+msgid "ILL Receiving Address"
+msgstr ""
+
+#: field.aout.name.label:2381
+msgid "Type Name"
+msgstr ""
+
+#: field.rmsr.author.label:3405 field.rssr.author.label:3427
+#: field.rsr.author.label:3451
+msgid "Author (normalized)"
+msgstr ""
+
+#: field.ssr.excluded.label:2051
+msgid "Excluded"
+msgstr ""
+
+#: field.circ.stop_fines_time.label:1656
+#: field.combcirc.stop_fines_time.label:1711
+#: field.acirc.stop_fines_time.label:1778
+#: field.rodcirc.stop_fines_time.label:3743
+msgid "Fine Stop Date/Time"
+msgstr ""
+
+#: field.au.settings.label:1227
+msgid "All User Settings"
+msgstr ""
+
+#: field.acn.copies.label:974
+msgid "Copies"
+msgstr ""
+
+#: field.ahr.cancel_time.label:2143
+msgid "Hold Cancel Date/Time"
+msgstr ""
+
+#: field.pgt.perm_interval.label:2797
+msgid "User Expiration Interval"
+msgstr ""
+
+#: field.circ.fine_interval.label:1646 field.combcirc.fine_interval.label:1701
+#: field.acirc.fine_interval.label:1768 field.rodcirc.fine_interval.label:3733
+msgid "Fine Interval"
+msgstr ""
+
+#: class.mrd.label:1496
+msgid "Basic Record Descriptor"
+msgstr ""
+
+#: field.circ.billing_total.label:1666 field.combcirc.billing_total.label:1721
+#: field.acirc.billing_total.label:1788 field.mg.billing_total.label:2448
+#: field.mbt.billing_total.label:2486 field.rodcirc.billing_total.label:3752
+msgid "Billing Totals"
+msgstr ""
+
+#: field.chmt.transit_range.label:537
+msgid "Transit Range"
+msgstr ""
+
+#: class.aua.label:1560
+msgid "User Address"
+msgstr ""
+
+#: class.aou.label:2167
+msgid "Organizational Unit"
+msgstr ""
+
+#: field.ancc.circ_time.label:2835 field.rccc.xact_start.label:3565
+msgid "Circulation Date/Time"
+msgstr ""
+
+#: field.cvrfm.value.label:452
+msgid "Format"
+msgstr ""
+
+#: field.rmsr.issn.label:3409 field.rssr.issn.label:3431
+#: field.rsr.issn.label:3458
+msgid "ISSN"
+msgstr ""
+
+#: class.cifm.label:951
+msgid "Item Form Map"
+msgstr ""
+
+#: field.rmsr.title.label:3404 field.rssr.title.label:3426
+#: field.rsr.title.label:3449
+msgid "Title Proper (normalized)"
+msgstr ""
+
+#: field.ahr.selection_depth.label:2139
+msgid "Item Selection Depth"
+msgstr ""
+
+#: field.circ.circ_lib.label:1640 field.combcirc.circ_lib.label:1695
+#: field.acirc.circ_lib.label:1762 field.acp.circ_lib.label:2706
+#: field.ancc.circ_lib.label:2834 field.rodcirc.circ_lib.label:3727
+#: field.rmocbbcol.circ_lib.label:3859 field.rmobbcol.circ_lib.label:3876
+msgid "Circulating Library"
+msgstr ""
+
+#: field.rxpt.unvoided.label:3532
+msgid "Unvoided Paid Amount"
+msgstr ""
+
+#: field.aou.opac_visible.label:2184 field.asc.opac_visible.label:2247
+#: field.actsc.opac_visible.label:2277 field.acp.opac_visible.label:2724
+#: field.rocit.opac_visible.label:3803
+msgid "OPAC Visible"
+msgstr ""
+
+#: field.asc.id.label:2245 field.actsc.id.label:2275
+msgid "Stat Cat ID"
+msgstr ""
+
+#: field.cam.code.label:937
+msgid "Audience Code"
+msgstr ""
+
+#: field.rsr.genre.label:3461
+msgid "Genres (normalized)"
+msgstr ""
+
+#: field.rmsr.publisher.label:3406 field.rssr.publisher.label:3428
+#: field.rsr.publisher.label:3452
+msgid "Publisher (normalized)"
+msgstr ""
+
+#: field.mbts.usr.label:642
+msgid "Billed User"
+msgstr ""
+
+#: field.ccmrs.max_fine_rule.label:589 field.circ.max_fine_rule.label:1649
+#: field.combcirc.max_fine_rule.label:1704
+#: field.acirc.max_fine_rule.label:1771 class.crmf.label:2776
+#: field.rodcirc.max_fine_rule.label:3736
+msgid "Max Fine Rule"
+msgstr ""
+
+#: field.ssr.total.label:2047
+msgid "Total Results"
+msgstr ""
+
+#: field.rccc.circ_lib_id.label:3564
+msgid "Library Circulation Location Link"
+msgstr ""
+
+#: field.au.alert_message.label:1234 field.acp.alert_message.label:2702
+msgid "Alert Message"
+msgstr ""
+
+#: field.rccbs.last_payment_ts.label:3660
+msgid "Last Payment Date/Time"
+msgstr ""
+
+#: field.mbts.id.label:633 field.mg.id.label:2440 field.mbt.id.label:2478
+#: field.mwp.xact.label:2573 field.mgp.xact.label:2594
+#: field.rxbt.xact.label:3517 field.rxpt.xact.label:3531
+#: field.rccbs.id.label:3640
+msgid "Transaction ID"
+msgstr ""
+
+#: field.mwp.id.label:2570 field.mgp.id.label:2591 field.mckp.id.label:2681
+#: field.mp.id.label:3004 field.mbp.id.label:3035 field.mndp.id.label:3066
+#: field.mdp.id.label:3089
+msgid "Payment ID"
+msgstr ""
+
+#: field.mcrp.amount.label:2324 field.mwp.amount.label:2568
+#: field.mgp.amount.label:2589 field.mckp.amount.label:2677
+#: field.mp.amount.label:3003 field.mbp.amount.label:3034
+#: field.mndp.amount.label:3065 field.mdp.amount.label:3088
+#: field.mb.amount.label:3181
+msgid "Amount"
+msgstr ""
+
+#: field.ahn.notify_time.label:1878
+msgid "Notification Date/Time"
+msgstr ""
+
+#: class.chmt.label:529
+msgid "Hold Matrix Test Set"
+msgstr ""
+
+#: class.chmm.label:465
+msgid "Hold Matrix Matchpoint"
+msgstr ""
+
+#: field.bre.subject_field_entries.label:1074
+msgid "Indexed Subject Field Entries"
+msgstr ""
+
+#: field.ccmrs.duration_rule.label:587
+msgid "Duration Rule"
+msgstr ""
+
+#: class.acpl.label:1885
+msgid "Copy/Shelving Location"
+msgstr ""
+
+#: field.auoi.org_unit.label:399
+msgid "Allowed Org Unit"
+msgstr ""
+
+#: class.clfm.label:2543 field.rccc.lit_form.label:3571
+msgid "Literary Form"
+msgstr ""
+
+#: field.ahr.prev_check_time.label:2135
+msgid "Last Targeting Date/Time"
+msgstr ""
+
+#: field.asvr.response_group_id.label:774
+msgid "Response Group ID"
+msgstr ""
+
+#: field.chmm.active.label:471 field.ccmm.active.label:507
+msgid "Active?"
+msgstr ""
+
+#: field.au.usrname.label:1268
+msgid "OPAC/Staff Client User Name"
+msgstr ""
+
+#: field.ssr.rel.label:2045
+msgid "Relevance"
+msgstr ""
+
+#: class.aus.label:669
+msgid "User Setting"
+msgstr ""
+
+#: field.circ.duration.label:1644 field.combcirc.duration.label:1699
+#: field.acirc.duration.label:1766 field.cnct.circ_duration.label:2361
+#: field.rodcirc.duration.label:3731
+msgid "Circulation Duration"
+msgstr ""
+
+#: field.rccc.language.label:3570
+msgid "Item Language"
+msgstr ""
+
+#: class.mbp.label:3029
+msgid "Payments: Brick-and-mortar"
+msgstr ""
+
+#: class.actscecm.label:2894
+msgid "User Statistical Category Entry"
+msgstr ""
+
+#: class.vqarad.label:317
+msgid "Queued Authority Record Attribute Definition"
+msgstr ""
+
+#: field.ahn.note.label:1876
+msgid "Notification Note"
+msgstr ""
+
+#: field.ccmrs.recurring_fine_rule.label:588
+#: field.circ.recuring_fine_rule.label:1653
+#: field.combcirc.recuring_fine_rule.label:1708
+#: field.acirc.recuring_fine_rule.label:1775
+#: field.rodcirc.recuring_fine_rule.label:3740
+msgid "Recurring Fine Rule"
+msgstr ""
+
+#: field.circ.duration_rule.label:1645 field.combcirc.duration_rule.label:1700
+#: field.acirc.duration_rule.label:1767 field.rodcirc.duration_rule.label:3732
+msgid "Circ Duration Rule"
+msgstr ""
+
+#: field.ccmt.max_overdue.label:556
+msgid "Max Overdue"
+msgstr ""
+
+#: field.ccmt.max_items_out.label:555
+msgid "Max Items Out"
+msgstr ""
+
+#: class.asc.label:2239
+msgid "Asset Statistical Category"
+msgstr ""
+
+#: field.asv.required.label:2069
+msgid "Is Required?"
+msgstr ""
+
+#: field.au.survey_responses.label:1230
+msgid "Survey Responses"
+msgstr ""
+
+#: field.atc.id.label:740 field.ahtc.id.label:3149 field.iatc.id.label:3702
+msgid "Transit ID"
+msgstr ""
+
+#: field.acp.total_circ_count.label:2731
+msgid "Total Circulations"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_name.label:3647
+msgid "User Home Library Name"
+msgstr ""
+
+#: field.au.credit_forward_balance.label:1240
+msgid "User Credit Balance"
+msgstr ""
+
+#: class.vqbra.label:215
+msgid "Queued Bib Record Attribute"
+msgstr ""
+
+#: field.aun.create_date.label:656 field.acp.create_date.label:2710
+msgid "Creation Date/Time"
+msgstr ""
+
+#: field.rocit.due_date.label:3810
+msgid "Due Date"
+msgstr ""
+
+#: field.aout.id.label:2380
+msgid "Type ID"
+msgstr ""
+
+#: field.circ.payments.label:1663 field.combcirc.payments.label:1718
+#: field.acirc.payments.label:1785 field.rodcirc.payments.label:3749
+msgid "Transaction Payments"
+msgstr ""
+
+#: class.bre.label:1049
+msgid "Bibliographic Record"
+msgstr ""
+
+#: field.ahr.eligible_copies.label:2148
+msgid "Eligible Copies"
+msgstr ""
+
+#: field.mp.cash_payment.label:3010 field.mbp.cash_payment.label:3041
+msgid "Cash Payment Detail"
+msgstr ""
+
+#: field.mfr.id.label:1358
+msgid "Field ID"
+msgstr ""
+
+#: field.rocit.ref.label:3804
+msgid "Reference"
+msgstr ""
+
+#: field.ancc.item_type.label:2837
+msgid "Non-cat Item Type"
+msgstr ""
+
+#: field.chmm.user_home_ou.label:472 field.rmocbbhol.home_ou.label:3893
+#: field.rmobbhol.home_ou.label:3910
+msgid "User Home Library"
+msgstr ""
+
+#: class.vam.label:364
+msgid "Queued Authority Record Match"
+msgstr ""
+
+#: field.rccbs.total_owed.label:3658 field.rmocbbol.billed.label:3831
+#: field.rmocbbcol.billed.label:3862 field.rmocbbhol.billed.label:3896
+msgid "Total Billed"
+msgstr ""
+
+#: class.aun.label:651
+msgid "User Note"
+msgstr ""
+
+#: class.actsc.label:2269
+msgid "User Statistical Category"
+msgstr ""
+
+#: field.ccmm.grp.label:509 class.pgt.label:2787
+msgid "Permission Group"
+msgstr ""
+
+#: field.mp.forgive_payment.label:3015 field.mbp.forgive_payment.label:3046
+#: field.mndp.forgive_payment.label:3073
+msgid "Forgive Payment Detail"
+msgstr ""
+
+#: field.rhrr.target.label:3503
+msgid "Hold Target"
+msgstr ""
+
+#: field.au.suffix.label:1265
+msgid "Suffix/Title"
+msgstr ""
+
+#: field.asvr.effective_date.label:771
+msgid "Effective Answer Date/Time"
+msgstr ""
+
+#: field.acp.deposit.label:2713
+msgid "Is Deposit Required"
+msgstr ""
+
+#: field.ahr.capture_time.label:2123
+msgid "Capture Date/Time"
+msgstr ""
+
+#: field.mbts.balance_owed.label:632 field.rccbs.balance_owed.label:3673
+msgid "Balance Owed"
+msgstr ""
+
+#: field.chmt.max_holds.label:538
+msgid "Max Holds"
+msgstr ""
+
+#: field.rhrr.bib_record.label:3505
+msgid "Target Bib Record"
+msgstr ""
+
+#: class.ac.label:2255
+msgid "Library Card"
+msgstr ""
+
+#: field.au.second_given_name.label:1263
+msgid "Middle Name"
+msgstr ""
+
+#: field.aihu.staff.label:706 field.ancihu.staff.label:723
+msgid "Recording Staff"
+msgstr ""
+
+#: field.aou.billing_address.label:2173
+msgid "Billing Address"
+msgstr ""
+
+#: field.acp.stat_cat_entries.label:2700
+msgid "Statistical Catagory Entries"
+msgstr ""
+
+#: field.crahp.id.label:2770 field.crmf.id.label:2782
+msgid "Rule ID"
+msgstr ""
+
+#: field.acp.loan_duration.label:2722
+msgid "Loan Duration"
+msgstr ""
+
+#: field.vbq.queue_type.label:148 field.vaq.queue_type.label:274
+#: field.mrd.item_type.label:1510 field.aua.address_type.label:1565
+msgid "Type"
+msgstr ""
+
+#: field.ahr.expire_time.label:2126
+msgid "Hold Expire Date/Time"
+msgstr ""
+
+#: field.bre.full_record_entries.label:1078
+msgid "Flattened MARC Fields "
+msgstr ""
+
+#: field.rmsr.quality.label:3401 field.rssr.quality.label:3423
+#: field.rsr.quality.label:3446
+msgid "Overall Record Quality"
+msgstr ""
+
+#: class.mg.label:2434
+msgid "Grocery Transaction"
+msgstr ""
+
+#: field.rocit.age_protect.label:3802
+msgid "Age Protection"
+msgstr ""
+
+#: field.acn.record.label:983 field.combcirc.copy_bib_record.label:1730
+#: field.acirc.copy_bib_record.label:1797
+msgid "Bib Record"
+msgstr ""
+
+#: field.rccbs.patron_city.label:3670
+msgid "User City"
+msgstr ""
+
+#: field.ahn.hold.label:1873 field.aufh.hold.label:2870
+msgid "Hold"
+msgstr ""
+
+#: field.cifm.value.label:957
+msgid "Item Form"
+msgstr ""
+
+#: class.cit.label:599
+msgid "Identification Type"
+msgstr ""
+
+#: field.ahr.requestor.label:2138
+msgid "Requesting User"
+msgstr ""
+
+#: field.auoi.opt_in_ws.label:396 class.aws.label:410
+msgid "Workstation"
+msgstr ""
+
+#: field.mcrp.xact.label:2329 field.mb.xact.label:3189
+msgid "Transaction"
+msgstr ""
+
+#: field.rocit.owning_lib_name.label:3797
+msgid "Owning Lib Name"
+msgstr ""
+
+#: field.rccc.circ_lib.label:3563
+msgid "Library Circulation Location Short (Policy) Name"
+msgstr ""
+
+#: field.acp.fine_level.label:2719
+msgid "Fine Level"
+msgstr ""
+
+#: field.vqbra.record.label:221 field.vqara.record.label:346
+#: field.ssr.record.label:2046
+msgid "Record"
+msgstr ""
+
+#: field.aun.id.label:658 field.acpn.id.label:1326
+msgid "Note ID"
+msgstr ""
+
+#: field.ahr.bib_rec.label:2147
+msgid "Bib Record link"
+msgstr ""
+
+#: field.rsr.uniform_title.label:3450
+msgid "Uniform Title (normalized)"
+msgstr ""
+
+#: field.mg.xact_finish.label:2443
+msgid "Transaction Finish Timestamp"
+msgstr ""
+
+#: class.ahr.label:2116
+msgid "Hold Request"
+msgstr ""
+
+#: field.aihu.item.label:704 class.acp.label:2695
+msgid "Item"
+msgstr ""
+
+#: field.chmm.marc_form.label:481 field.ccmm.marc_form.label:512
+#: field.rccc.item_form.label:3572
+msgid "MARC Form"
+msgstr ""
+
+#: class.ccmt.label:548
+msgid "Circulation Matrix Test Set"
+msgstr ""
+
+#: field.chmm.usr_grp.label:477
+msgid "User Permission Group"
+msgstr ""
+
+#: field.ancihu.item_type.label:721 field.citm.value.label:1931
+msgid "Item Type"
+msgstr ""
+
+#: field.ssr.visible.label:2049
+msgid "Visible"
+msgstr ""
+
+#: class.rmocbbol.label:3823
+msgid "Open Circulation Billing by Owning Library"
+msgstr ""
+
+#: field.ahr.phone_notify.label:2133
+msgid "Notifications Phone Number"
+msgstr ""
+
+#: field.mg.billable_transaction.label:2447
+msgid "Billable Transaction link"
+msgstr ""
+
+#: field.circ.id.label:1647 field.combcirc.id.label:1702
+#: field.acirc.id.label:1769 field.rodcirc.id.label:3734
+msgid "Circ ID"
+msgstr ""
+
+#: field.bre.deleted.label:1059
+msgid "Is Deleted?"
+msgstr ""
+
+#: class.vaq.label:265
+msgid "Import/Overlay Authority Queue"
+msgstr ""
+
+#: field.mbt.billings.label:2484
+msgid "Billing Line Items"
+msgstr ""
+
+#: field.acp.circulate.label:2708
+msgid "Can Circulate"
+msgstr ""
+
+#: field.rocit.call_number_label.label:3785
+msgid "Callnumber Label"
+msgstr ""
+
+#: field.aou.parent_ou.label:2180
+msgid "Parent Organizational Unit"
+msgstr ""
+
+#: class.erfcc.label:3541
+msgid "Total Circulation Count, Including Legacy"
+msgstr ""
+
+#: field.bre.last_xact_id.label:1064
+msgid "Last Transaction ID"
+msgstr ""
+
+#: field.mp.check_payment.label:3013 field.mbp.check_payment.label:3044
+msgid "Check Payment Detail"
+msgstr ""
+
+#: field.ahr.id.label:2132 field.rhrr.id.label:3502
+msgid "Hold ID"
+msgstr ""
+
+#: field.mbts.last_billing_ts.label:635
+msgid "Last Billing Timestamp"
+msgstr ""
+
+#: field.rocit.dewey_block_tens.label:3786
+msgid "Dewy Tens"
+msgstr ""
+
+#: field.rocit.stat_cat_1_value.label:3793
+msgid "Legacy Stat Cat 1 Value"
+msgstr ""
+
+#: field.pgt.usergroup.label:2799
+msgid "Is User Group"
+msgstr ""
+
+#: field.rccbs.usr.label:3651
+msgid "User Link"
+msgstr ""
+
+#: field.acpl.circulate.label:1890
+msgid "Can Circulate?"
+msgstr ""
+
+#: field.acp.stat_cat_entry_copy_maps.label:2729
+msgid "Stat-Cat entry maps"
+msgstr ""
+
+#: field.aout.children.label:2376
+msgid "Subordinate Types"
+msgstr ""
+
+#: field.bre.fixed_fields.label:1055
+msgid "Fixed Field Entry"
+msgstr ""
+
+#: field.bre.fingerprint.label:1062 field.rmsr.fingerprint.label:3400
+#: field.rssr.fingerprint.label:3422 field.rsr.fingerprint.label:3445
+msgid "Fingerprint"
+msgstr ""
+
+#: field.chmm.ref_flag.label:483 field.ccmm.ref_flag.label:514
+msgid "Reference?"
+msgstr ""
+
+#: field.pgt.children.label:2792
+msgid "Child Groups"
+msgstr ""
+
+#: field.rccc.dewey_block_tens.label:3590
+msgid "Dewey Block -- Tens"
+msgstr ""
+
+#: field.aws.owning_lib.label:417 field.chmm.item_owning_ou.label:475
+#: field.acn.owning_lib.label:982 field.asv.owner.label:2067
+#: field.asc.owner.label:2248 field.actsc.owner.label:2278
+#: field.cnct.owning_lib.label:2365 field.rmocbbol.owning_lib.label:3829
+#: field.rmobbol.owning_lib.label:3844 field.rmocbbcol.owning_lib.label:3860
+#: field.rmobbcol.owning_lib.label:3877 field.rmocbbhol.owning_lib.label:3894
+#: field.rmobbhol.owning_lib.label:3911
+msgid "Owning Library"
+msgstr ""
+
+#: field.rocit.circ_lib_name.label:3798
+msgid "Circ Lib Name"
+msgstr ""
+
+#: field.vqbr.create_time.label:169 field.vqar.create_time.label:296
+msgid "Create Time"
+msgstr ""
+
+#: field.amtr.success.label:129
+msgid "Success"
+msgstr ""
+
+#: field.circ.circ_staff.label:1641 field.combcirc.circ_staff.label:1696
+#: field.acirc.circ_staff.label:1763 field.ancc.staff.label:2839
+#: field.rodcirc.circ_staff.label:3728
+msgid "Circulating Staff"
+msgstr ""
+
+#: class.asce.label:3125
+msgid "Item Stat Cat Entry"
+msgstr ""
+
+#: field.combcirc.usr_birth_year.label:1725
+#: field.acirc.usr_birth_year.label:1792
+msgid "Patron Birth Year"
+msgstr ""
+
+#: field.atc.hold_transit_copy.label:746 class.ahtc.label:3140
+#: field.iatc.hold_transit_copy.label:3708
+msgid "Hold Transit"
+msgstr ""
+
+#: field.asv.opac.label:2066
+msgid "OPAC Surevey?"
+msgstr ""
+
+#: field.vqbra.id.label:220 field.vqara.id.label:345
+msgid "Attribute ID"
+msgstr ""
+
+#: field.aun.creator.label:657
+msgid "Creating Staff"
+msgstr ""
+
+#: class.ccmrs.label:581
+msgid "Circulation Matrix Rule Set"
+msgstr ""
+
+#: field.ccm.sip2_media_type.label:432
+msgid "SIP2 Media Type"
+msgstr ""
+
+#: field.vqbrad.code.label:198 field.vqarad.code.label:323
+#: field.ccm.code.label:429 field.cvrfm.code.label:451
+msgid "Code"
+msgstr ""
+
+#: field.rocit.patron_name.label:3812
+msgid "Patron Name"
+msgstr ""
+
+#: class.cvrfm.label:446 field.chmm.marc_vr_format.label:482
+#: field.ccmm.marc_vr_format.label:513
+msgid "Videorecording Format"
+msgstr ""
+
+#: field.circ.due_date.label:1643 field.combcirc.due_date.label:1698
+#: field.acirc.due_date.label:1765 field.rodcirc.due_date.label:3730
+msgid "Due Date/Time"
+msgstr ""
+
+#: field.asvq.id.label:617
+msgid "Question ID"
+msgstr ""
+
+#: class.mb.label:3176
+msgid "Billing Line Item"
+msgstr ""
+
+#: field.rsr.external_uri.label:3464
+msgid "External URI List (normalized)"
+msgstr ""
+
+#: field.actsce.id.label:2504 field.actscecm.id.label:2899
+#: field.asce.id.label:3130 field.rsce1.id.label:3612
+#: field.rsce2.id.label:3626
+msgid "Entry ID"
+msgstr ""
+
+#: field.acp.age_protect.label:2701
+msgid "Age Hold Protection"
+msgstr ""
+
+#: field.amtr.fail_part.label:130
+msgid "Failure Part"
+msgstr ""
+
+#: field.acp.copy_number.label:2709
+msgid "Copy Number on Volume"
+msgstr ""
+
+#: field.mbts.last_payment_type.label:639
+#: field.rccbs.last_payment_type.label:3662
+msgid "Last Payment Type"
+msgstr ""
+
+#: class.mgp.label:2583
+msgid "Goods Payment"
+msgstr ""
+
+#: field.rmsr.isbn.label:3408 field.rssr.isbn.label:3430
+#: field.rsr.isbn.label:3457
+msgid "ISBN"
+msgstr ""
+
+#: field.circ.checkin_staff.label:1638 field.combcirc.checkin_staff.label:1693
+#: field.acirc.checkin_staff.label:1760 field.rodcirc.checkin_staff.label:3725
+msgid "Check In Staff"
+msgstr ""
+
+#: field.ccmt.script_test.label:558
+msgid "Test Script"
+msgstr ""
+
+#: field.mdp.cash_drawer.label:3095
+msgid "Cash Drawer"
+msgstr ""
+
+#: class.asvr.label:764
+msgid "Survey Response"
+msgstr ""
+
+#: class.crahp.label:2764
+msgid "Age Hold Protection Rule"
+msgstr ""
+
+#: field.au.first_given_name.label:1247
+msgid "First Name"
+msgstr ""
+
+#: field.acpl.owning_lib.label:1895
+msgid "Owning Org Unit"
+msgstr ""
+
+#: field.au.permissions.label:1226
+msgid "All Permissions"
+msgstr ""
+
+#: field.mbts.xact_finish.label:643
+msgid "Transaction Finish Time"
+msgstr ""
+
+#: field.cit.id.label:604
+msgid "Identification ID"
+msgstr ""
+
+#: field.atc.source_send_time.label:744 field.ahtc.source_send_time.label:3153
+#: field.iatc.source_send_time.label:3706
+msgid "Send Date/Time"
+msgstr ""
+
+#: class.circ.label:1632 field.rccc.id.label:3562
+msgid "Circulation"
+msgstr ""
+
+#: field.acp.price.label:2725 field.rocit.price.label:3783
+msgid "Price"
+msgstr ""
+
+#: field.ac.barcode.label:2261 field.acp.barcode.label:2703
+#: field.rocit.barcode.label:3784
+msgid "Barcode"
+msgstr ""
+
+#: field.pgt.id.label:2794
+msgid "Group ID"
+msgstr ""
+
+#: field.mrd.pub_status.label:1512
+msgid "Pub Status"
+msgstr ""
+
+#: field.rocit.create_date.label:3796
+msgid "Create Date"
+msgstr ""
+
+#: field.acp.deposit_amount.label:2714 field.rocit.deposit_amount.label:3805
+msgid "Deposit Amount"
+msgstr ""
+
+#: field.rxbt.total.label:3520
+msgid "Total Billing Amount"
+msgstr ""
+
+#: field.circ.xact_finish.label:1659 field.combcirc.xact_finish.label:1714
+#: field.acirc.xact_finish.label:1781 field.mbt.xact_finish.label:2480
+#: field.rodcirc.xact_finish.label:3746
+msgid "Transaction Finish Date/Time"
+msgstr ""
+
+#: field.acp.ref.label:2726
+msgid "Is Reference"
+msgstr ""
+
+#: field.vbq.name.label:146 field.vaq.name.label:272 field.ccm.name.label:430
+#: field.aus.name.label:675 field.cxt.name.label:893
+#: field.acpl.name.label:1893 field.asv.name.label:2065
+#: field.aou.name.label:2178 field.asc.name.label:2246
+#: field.actsc.name.label:2276 field.cnct.name.label:2364
+msgid "Name"
+msgstr ""
+
+#: field.mckp.cash_drawer.label:2679
+msgid "Workstation link"
+msgstr ""
+
+#: field.chmm.marc_type.label:480 field.ccmm.marc_type.label:511
+#: field.rccc.item_type.label:3573
+msgid "MARC Type"
+msgstr ""
+
+#: field.bre.edit_date.label:1060
+msgid "Last Edit Data/Time"
+msgstr ""
+
+#: field.clm.code.label:846 field.bre.language.label:1071
+msgid "Language Code"
+msgstr ""
+
+#: field.pgt.parent.label:2796
+msgid "Parent Group"
+msgstr ""
+
+#: field.combcirc.usr_post_code.label:1713
+#: field.acirc.usr_post_code.label:1780
+msgid "Patron ZIP"
+msgstr ""
+
+#: field.circ.xact_start.label:1660 field.combcirc.xact_start.label:1715
+#: field.acirc.xact_start.label:1782 field.rodcirc.xact_start.label:3747
+msgid "Check Out Date/Time"
+msgstr ""
+
+#: field.rxbt.unvoided.label:3518
+msgid "Unvoided Billing Amount"
+msgstr ""
+
+#: field.rxpt.total.label:3534
+msgid "Total Paid Amount"
+msgstr ""
+
+#: field.circ.billable_transaction.label:1664
+#: field.combcirc.billable_transaction.label:1719
+#: field.acirc.billable_transaction.label:1786
+#: field.rodcirc.billable_transaction.label:3750
+msgid "Base Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib_shortname.label:3582
+msgid "Patron Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.ac.active.label:2260
+msgid "IsActive?"
+msgstr ""
+
+#: field.cnct.in_house.label:2363
+msgid "In House?"
+msgstr ""
+
+#: field.rsr.geographic_subject.label:3460
+msgid "Geographic Subjects (normalized)"
+msgstr ""
+
+#: field.combcirc.copy_call_number.label:1726
+#: field.acirc.copy_call_number.label:1793
+msgid "Call Number"
+msgstr ""
+
+#: field.au.card.label:1237
+msgid "Current Library Card"
+msgstr ""
+
+#: field.atc.target_copy.label:745 field.ahtc.target_copy.label:3154
+#: field.iatc.target_copy.label:3707
+msgid "Transited Copy"
+msgstr ""
+
+#: field.actsce.value.label:2507 field.rsce1.value.label:3614
+#: field.rsce2.value.label:3628
+msgid "Entry Value"
+msgstr ""
+
+#: field.acpn.creator.label:1325
+msgid "Note Creator"
+msgstr ""
+
+#: field.combcirc.copy_circ_lib.label:1729
+#: field.acirc.copy_circ_lib.label:1796
+msgid "Copy Circulating Library"
+msgstr ""
+
+#: class.vbm.label:239
+msgid "Queued Bib Record Match"
+msgstr ""
+
+#: field.ssr.checked.label:2048
+msgid "Checked"
+msgstr ""
+
+#: field.mfr.record.label:1361 field.mrd.record.label:1513
+msgid "Bib Record Entry"
+msgstr ""
+
+#: field.rccbs.usr_home_ou.label:3648
+msgid "User Home Library Link"
+msgstr ""
+
+#: field.ccmm.usr_age_lower_bound.label:515
+msgid "User Age: Lower Bound"
+msgstr ""
+
+#: field.acp.id.label:2721 field.erfcc.id.label:3546 field.rocit.id.label:3782
+msgid "Copy ID"
+msgstr ""
+
+#: field.au.day_phone.label:1241
+msgid "Daytime Phone"
+msgstr ""
+
+#: field.circ.target_copy.label:1657 field.combcirc.target_copy.label:1712
+#: field.acirc.target_copy.label:1779 field.rodcirc.target_copy.label:3744
+msgid "Circulating Item"
+msgstr ""
+
+#: field.rocit.author.label:3780
+msgid "Author"
+msgstr ""
+
+#: field.ahr.email_notify.label:2125
+msgid "Notify by Email?"
+msgstr ""
+
+#: field.circ.payment_total.label:1667 field.combcirc.payment_total.label:1722
+#: field.acirc.payment_total.label:1789 field.mg.payment_total.label:2449
+#: field.mbt.payment_total.label:2487 field.rodcirc.payment_total.label:3753
+msgid "Payment Totals"
+msgstr ""
+
+#: field.rccc.patron_id.label:3580
+msgid "Patron Link"
+msgstr ""
+
+#: field.ccmcmt.id.label:570
+msgid "Test ID"
+msgstr ""
+
+#: field.mp.goods_payment.label:3016 field.mbp.goods_payment.label:3047
+#: field.mndp.goods_payment.label:3074
+msgid "Goods Payment Detail"
+msgstr ""
+
+#: field.au.notes.label:1271
+msgid "User Notes"
+msgstr ""
+
+#: field.acn.notes.label:984
+msgid "Notes"
+msgstr ""
+
+#: class.rmsr.label:3394
+msgid "Fast Simple Record Extracts"
+msgstr ""
+
+#: field.vqbra.attr_value.label:223 field.vqara.attr_value.label:348
+#: field.aus.value.label:677 field.asce.value.label:3133
+msgid "Value"
+msgstr ""
+
+#: field.bre.tcn_source.label:1068 field.rmsr.tcn_source.label:3402
+#: field.rssr.tcn_source.label:3424 field.rsr.tcn_source.label:3447
+msgid "TCN Source"
+msgstr ""
+
+#: class.rsce1.label:3607
+msgid "CAT1 Entry"
+msgstr ""
+
+#: field.mrd.enc_level.label:1506
+msgid "ELvl"
+msgstr ""
+
+#: field.ahtc.dest.label:3146
+msgid "Destination Library"
+msgstr ""
+
+#: class.aufh.label:2862
+msgid "Unfulfilled Hold Targets"
+msgstr ""
+
+#: field.rocit.creator.label:3801
+msgid "Creator"
+msgstr ""
+
+#: field.rccc.dewey_range_hundreds.label:3589
+msgid "Dewey Range -- Hundreds"
+msgstr ""
+
+#: field.rccc.copy_id.label:3567
+msgid "Copy Link"
+msgstr ""
+
+#: field.ahr.selection_ou.label:2140
+msgid "Selection Locus"
+msgstr ""
+
+#: field.rsr.series_statement.label:3455
+msgid "Series Statement (normalized)"
+msgstr ""
+
+#: class.rccbs.label:3635
+msgid "Classic Open Transaction Summary"
+msgstr ""
+
+#: class.cnct.label:2356
+msgid "Non-cataloged Type"
+msgstr ""
+
+#: field.asvq.question.label:618 field.asvr.question.label:773
+#: field.asva.question.label:2822
+msgid "Question"
+msgstr ""
+
+#: field.ahtc.prev_hop.label:3151
+msgid "Previous Stop"
+msgstr ""
+
+#: field.bre.tcn_value.label:1069 field.rmsr.tcn_value.label:3403
+#: field.rssr.tcn_value.label:3425 field.rsr.tcn_value.label:3448
+msgid "TCN Value"
+msgstr ""
+
+#: class.ahn.label:1868
+msgid "Hold Notification"
+msgstr ""
+
+#: field.rcirct.id.label:3490 field.rmocbbol.id.label:3828
+#: field.rmocbbcol.id.label:3858 field.rmocbbhol.id.label:3892
+msgid "Circulation ID"
+msgstr ""
+
+#: field.circ.opac_renewal.label:1650 field.combcirc.opac_renewal.label:1705
+#: field.acirc.opac_renewal.label:1772 field.rodcirc.opac_renewal.label:3737
+msgid "OPAC Renewal"
+msgstr ""
+
+#: field.rsr.topic_subject.label:3459
+msgid "Topic Subjects (normalized)"
+msgstr ""
+
+#: field.rccbs.barcode.label:3650
+msgid "User Barcode"
+msgstr ""
+
+#: field.au.profile.label:1262
+msgid "Main (Profile) Permission Group"
+msgstr ""
+
+#: field.mfr.subfield.label:1362
+msgid "Subfield"
+msgstr ""
+
+#: field.acn.creator.label:976 field.acp.creator.label:2711
+msgid "Creating User"
+msgstr ""
+
+#: field.acp.holdable.label:2720
+msgid "Is Holdable"
+msgstr ""
+
+#: field.rocit.tcn_value.label:3807
+msgid "TCN"
+msgstr ""
+
+#: field.acn.editor.label:979 field.bre.editor.label:1061
+#: field.acp.editor.label:2718
+msgid "Last Editing User"
+msgstr ""
+
+#: field.circ.max_fine.label:1648 field.combcirc.max_fine.label:1703
+#: field.acirc.max_fine.label:1770 field.crmf.amount.label:2781
+#: field.rodcirc.max_fine.label:3735
+msgid "Max Fine Amount"
+msgstr ""
+
+#: field.ahtc.copy_status.label:3145
+msgid "Copy Status at Transit"
+msgstr ""
+
+#: field.aou.settings.label:2188
+msgid "Settings"
+msgstr ""
+
+#: field.ahr.hold_type.label:2130
+msgid "Hold Type"
+msgstr ""
+
+#: field.vqbr.queue.label:172 field.vqar.queue.label:299
+msgid "Queue"
+msgstr ""
+
+#: field.mp.credit_payment.label:3012 field.mbp.credit_payment.label:3043
+msgid "Credit Payment Detail"
+msgstr ""
+
+#: field.ahr.request_time.label:2137
+msgid "Request Date/Time"
+msgstr ""
+
+#: field.vbm.queued_record.label:245 field.vam.queued_record.label:370
+msgid "Queued Record"
+msgstr ""
+
+#: field.rccbs.xact_finish.label:3654
+msgid "Transaction End Date/Time"
+msgstr ""
+
+#: field.mrd.bib_level.label:1502
+msgid "BLvl"
+msgstr ""
+
+#: field.aou.workstations.label:2191
+msgid "Workstations"
+msgstr ""
+
+#: field.au.hold_requests.label:1225
+msgid "All Hold Requests"
+msgstr ""
+
+#: field.au.master_account.label:1256
+msgid "Is Group Lead Account"
+msgstr ""
+
+#: class.ccmm.label:501
+msgid "Circulation Matrix Matchpoint"
+msgstr ""
+
+#: field.aihu.use_time.label:707 field.ancihu.use_time.label:724
+msgid "Use Date/Time"
+msgstr ""
+
+#: field.mfr.value.label:1364
+msgid "Normalized Value"
+msgstr ""
+
+#: field.ccmt.circulate.label:554
+msgid "Circulate?"
+msgstr ""
+
+#: class.cxt.label:887
+msgid "XML/XSLT Transform Definition"
+msgstr ""
+
+#: field.mcrp.accepting_usr.label:2323 field.mwp.accepting_usr.label:2567
+#: field.mgp.accepting_usr.label:2588 field.mckp.accepting_usr.label:2676
+msgid "Accepting Staff Member"
+msgstr ""
+
+#: field.rccc.demographic_general_division.label:3576
+msgid "Patron Age Demographic"
+msgstr ""
+
+#: class.ccmcmt.label:565
+msgid "Circulation Matrix Circulation Modifier Subtest"
+msgstr ""
+
+#: field.rsr.corporate_subject.label:3463
+msgid "Corporate Name Subjects (normalized)"
+msgstr ""
+
+#: field.acp.dummy_author.label:2715
+msgid "Precat Dummy Author"
+msgstr ""
+
+#: class.rodcirc.label:3719
+msgid "Overdue Circulation"
+msgstr ""
+
+#: field.bre.active.label:1056
+msgid "Is Active?"
+msgstr ""
+
+#: field.ccmm.org_unit.label:508
+msgid "Org Unit"
+msgstr ""
+
+#: field.crahp.prox.label:2772
+msgid "Allowed Proximity"
+msgstr ""
+
+#: field.ahr.fulfillment_time.label:2129
+msgid "Fulfillment Date/Time"
+msgstr ""
+
+#: field.mg.note.label:2441 field.mwp.note.label:2571
+#: field.mgp.note.label:2592 field.mckp.note.label:2682
+#: field.mp.note.label:3005 field.mbp.note.label:3036
+#: field.mndp.note.label:3067 field.mdp.note.label:3090
+#: field.mb.note.label:3185
+msgid "Note"
+msgstr ""
+
+#: class.vqbr.label:163
+msgid "Queued Bib Record"
+msgstr ""
+
+#: field.rocit.stat_cat_1.label:3791
+msgid "Legacy Stat Cat 1"
+msgstr ""
+
+#: field.rocit.stat_cat_2.label:3792
+msgid "Legacy Stat Cat 2"
+msgstr ""
+
+#: field.aua.id.label:1569
+msgid "Address ID"
+msgstr ""
+
+#: field.rccbs.patron_county.label:3669
+msgid "User County"
+msgstr ""
+
+#: field.rocit.circ_lib.label:3800
+msgid "Circ Lib"
+msgstr ""
+
+#: field.chmt.include_frozen_holds.label:539
+msgid "Max includes Frozen"
+msgstr ""
+
+#: field.acn.id.label:980
+msgid "Call Number/Volume ID"
+msgstr ""
+
+#: field.aout.opac_label.label:2382
+msgid "OPAC Label"
+msgstr ""
+
+#: class.vqar.label:290
+msgid "Queued Authority Record"
+msgstr ""
+
+#: class.au.label:1217
+msgid "ILS User"
+msgstr ""
+
+#: class.asvq.label:610
+msgid "User Survey Question"
+msgstr ""
+
+#: field.circ.phone_renewal.label:1651 field.combcirc.phone_renewal.label:1706
+#: field.acirc.phone_renewal.label:1773 field.rodcirc.phone_renewal.label:3738
+msgid "Phone Renewal"
+msgstr ""
+
+#: field.combcirc.usr_home_ou.label:1723 field.acirc.usr_home_ou.label:1790
+msgid "Patron Home Library"
+msgstr ""
+
+#: field.chmm.requestor_grp.label:478
+msgid "Requestor Permission Group"
+msgstr ""
+
+#: field.bre.quality.label:1066
+msgid "Overall Quality"
+msgstr ""
+
+#: field.au.active.label:1233 field.sra.active.label:1967
+msgid "Active"
+msgstr ""
+
+#: field.mdp.cash_payment.label:3097
+msgid "Cash Payment"
+msgstr ""
+
+#: class.cblvl.label:1943
+msgid "Bib Level Map"
+msgstr ""
+
+#: field.cxt.xslt.label:896
+msgid "XSLT"
+msgstr ""
+
+#: field.au.addresses.label:1222
+msgid "All Addresses"
+msgstr ""
+
+#: class.sra.label:1961
+msgid "Relevance Adjustment"
+msgstr ""
+
+#: field.ccmm.usr_age_upper_bound.label:516
+msgid "User Age: Upper Bound"
+msgstr ""
+
+#: field.ahr.fulfillment_lib.label:2127
+msgid "Fulfilling Library"
+msgstr ""
+
+#: field.aua.post_code.label:1570
+msgid "Postal Code"
+msgstr ""
+
+#: field.rocit.shelving_location.label:3790
+msgid "Shelving Location Name"
+msgstr ""
+
+#: field.mb.voider.label:3188
+msgid "Voiding Staff Member"
+msgstr ""
+
+#: field.mcrp.note.label:2327
+msgid "Payment Note"
+msgstr ""
+
+#: field.amtr.matchpoint.label:128 field.chmm.id.label:470
+#: field.ccmm.id.label:506 field.chmt.matchpoint.label:534
+#: field.ccmt.matchpoint.label:553 field.ccmcmt.matchpoint.label:571
+#: field.ccmrs.matchpoint.label:586
+msgid "Matchpoint ID"
+msgstr ""
+
+#: field.mbts.total_paid.label:641 field.rccbs.total_paid.label:3657
+msgid "Total Paid"
+msgstr ""
+
+#: field.vqbra.field.label:222 field.vqara.field.label:347
+msgid "Field"
+msgstr ""
+
+#: field.ahtc.transit_copy.label:3155
+msgid "Base Transit"
+msgstr ""
+
+#: field.ccmt.max_fines.label:557
+msgid "Max Fines"
+msgstr ""
+
+#: field.aufh.fail_time.label:2869
+msgid "Retargeting Date/Time"
+msgstr ""
+
+#: field.au.performed_circulations.label:1275 None:1302
+msgid "Circulations Performed as Staff"
+msgstr ""
+
+#: field.asvr.id.label:772 field.asva.id.label:2821
+msgid "Answer ID"
+msgstr ""
+
+#: field.mcrp.payment.label:2331 field.mwp.payment.label:2574
+#: field.mgp.payment.label:2595 field.mckp.payment.label:2685
+msgid "Payment link"
+msgstr ""
+
+#: field.rmobbol.billing_types.label:3845
+#: field.rmobbcol.billing_types.label:3878
+#: field.rmobbhol.billing_types.label:3912
+msgid "Billing Types"
+msgstr ""
+
+#: field.aua.city.label:1566
+msgid "City"
+msgstr ""
+
+#: field.acpl.holdable.label:1891
+msgid "Is Holdable?"
+msgstr ""
+
+#: field.bre.create_date.label:1057 field.au.create_date.label:1239
+#: field.circ.create_time.label:1661 field.combcirc.create_time.label:1716
+#: field.acirc.create_time.label:1783
+msgid "Record Creation Date/Time"
+msgstr ""
+
+#: field.acp.holds.label:2732
+msgid "Holds"
+msgstr ""
+
+#: field.chmm.request_ou.label:473
+msgid "Request Library"
+msgstr ""
+
+#: field.rccc.patron_city.label:3584
+msgid "Patron City"
+msgstr ""
+
+#: field.aou.children.label:2172
+msgid "Subordinate Organizational Units"
+msgstr ""
+
+#: field.asva.responses.label:2819
+msgid "Responses using this Answer"
+msgstr ""
+
+#: field.ahr.thaw_date.label:2150
+msgid "Thaw Date (if frozen)"
+msgstr ""
+
+#: field.asvr.usr.label:776
+msgid "Responding User"
+msgstr ""
+
+#: class.rccc.label:3557
+msgid "Classic Circulation View"
+msgstr ""
+
+#: field.ahr.frozen.label:2149
+msgid "Currently Frozen"
+msgstr ""
+
+#: field.aihu.id.label:703 field.ancihu.id.label:720
+msgid "Use ID"
+msgstr ""
+
+#: field.vbq.complete.label:147 field.vaq.complete.label:273
+msgid "Complete"
+msgstr ""
+
+#: field.atc.dest_recv_time.label:739 field.ahtc.dest_recv_time.label:3147
+#: field.iatc.dest_recv_time.label:3701
+msgid "Receive Date/Time"
+msgstr ""
+
+#: field.asv.poll.label:2068
+msgid "Poll Style?"
+msgstr ""
+
+#: field.rmsr.pubdate.label:3407 field.rssr.pubdate.label:3429
+#: field.rsr.pubdate.label:3453
+msgid "Publication Year (normalized)"
+msgstr ""
+
+#: field.cnct.id.label:2362
+msgid "Non-cat Type ID"
+msgstr ""
+
+#: field.asva.answer.label:2820
+msgid "Answer Text"
+msgstr ""
+
+#: field.aou.holds_address.label:2174
+msgid "Holds Receiving Address"
+msgstr ""
+
+#: field.acpn.owning_copy.label:1327
+msgid "Copy"
+msgstr ""
+
+#: field.aout.can_have_vols.label:2378
+msgid "Can Have Volumes?"
+msgstr ""
+
+#: field.vqbr.id.label:168 field.vqar.id.label:295 field.bre.id.label:1063
+#: field.aufh.id.label:2871 field.rmsr.id.label:3399 field.rssr.id.label:3421
+#: field.rsr.id.label:3443
+msgid "Record ID"
+msgstr ""
+
+#: class.cam.label:932
+msgid "Audience Map"
+msgstr ""
+
+#: field.rocit.stop_fines.label:3809
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: field.au.email.label:1243 field.aou.email.label:2182
+msgid "Email Address"
+msgstr ""
+
+#: field.clfm.description.label:2549
+msgid "LitF Description"
+msgstr ""
+
+#: field.au.passwd.label:1259
+msgid "Password (obfuscated)"
+msgstr ""
+
+#: field.mrd.audience.label:1501
+msgid "Audn"
+msgstr ""
+
+#: field.cam.value.label:939
+msgid "Audience"
+msgstr ""
+
+#: field.aout.parent.label:2383
+msgid "Parent Type"
+msgstr ""
+
+#: class.rud.label:3472
+msgid "User Demographics"
+msgstr ""
+
+#: field.atc.prev_hop.label:742 field.iatc.prev_hop.label:3704
+msgid "Previous Hop (unused)"
+msgstr ""
+
+#: field.vqbrad.id.label:197 field.vqarad.id.label:322 field.sra.id.label:1966
+#: field.ssr.id.label:2044
+msgid "ID"
+msgstr ""
+
+#: field.aou.users.label:2185
+msgid "Users"
+msgstr ""
+
+#: field.circ.usr.label:1658 field.ancc.patron.label:2838
+#: field.rodcirc.usr.label:3745
+msgid "Patron"
+msgstr ""
+
+#: class.mcrp.label:2318
+msgid "House Credit Payment"
+msgstr ""
+
+#: field.atc.source.label:743 field.iatc.source.label:3705
+msgid "Source"
+msgstr ""
+
+#: field.chmt.age_hold_protect_rule.label:540
+msgid "Copy Age Hold Protection Rule"
+msgstr ""
+
+#: field.cxt.prefix.label:895
+msgid "Namespace Prefix"
+msgstr ""
+
+#: field.au.cards.label:1223
+msgid "All Library Cards"
+msgstr ""
+
+#: field.rxpt.voided.label:3533
+msgid "Voided (Returned) Paid Amount"
+msgstr ""
+
+#: class.rmocbbhol.label:3887
+msgid "Open Circulation Billing by User Home Library and Owning Library"
+msgstr ""
+
+#: field.mbts.last_billing_note.label:634
+#: field.rccbs.last_billing_note.label:3665
+msgid "Last Billing Note"
+msgstr ""
+
+#: field.rccbs.billing_location.label:3644
+msgid "Billing Location Link"
+msgstr ""
+
+#: field.mrd.cat_form.label:1503
+msgid "Cat Form"
+msgstr ""
+
+#: class.combcirc.label:1687
+msgid "Combined Aged and Active Circulations"
+msgstr ""
+
+#: field.atc.dest.label:738 field.iatc.dest.label:3700
+msgid "Destination"
+msgstr ""
+
+#: field.au.evening_phone.label:1244
+msgid "Evening Phone"
+msgstr ""
+
+#: field.au.ident_type.label:1250
+msgid "Primary Identification Type"
+msgstr ""
+
+#: class.rmobbol.label:3839
+msgid "Open Circulation Balance by Owning Library"
+msgstr ""
+
+#: field.mg.billing_location.label:2439
+msgid "Billing Location"
+msgstr ""
+
+#: field.vqbr.imported_as.label:174 field.vqar.imported_as.label:300
+msgid "Final Target Record"
+msgstr ""
+
+#: class.mndp.label:3060
+msgid "Payments: Non-drawer Staff"
+msgstr ""
+
+#: field.pgt.name.label:2795
+msgid "Group Name"
+msgstr ""
+
+#: field.aout.can_have_users.label:2377
+msgid "Can Have Users?"
+msgstr ""
+
+#: field.rocit.stat_cat_2_value.label:3794
+msgid "Legacy Stat Cat 2 Value"
+msgstr ""
+
+#: field.chmt.distance_is_from_owner.label:536
+msgid "Range is from Owning Lib?"
+msgstr ""
+
+#: field.rocit.use_count.label:3788
+msgid "Use Count"
+msgstr ""
+
+#: field.chmm.item_circ_ou.label:476
+msgid "Item Circ Library"
+msgstr ""
+
+#: field.mckp.xact.label:2684
+msgid "Transaction link"
+msgstr ""
+
+#: field.mbt.circulation.label:2483
+msgid "Circulation Billing link"
+msgstr ""
+
+#: class.vqara.label:340
+msgid "Queued Authority Record Attribute"
+msgstr ""
+
+#: field.vqbr.purpose.label:175 field.vaq.queue_purpose.label:275
+#: field.vqar.purpose.label:301
+msgid "Purpose"
+msgstr ""
+
+#: field.bre.author_field_entries.label:1076
+msgid "Indexed Author Field Entries"
+msgstr ""
+
+#: field.vqbrad.remove.label:201 field.vqarad.remove.label:326
+msgid "Remove RegExp"
+msgstr ""
+
+#: field.aou.phone.label:2183
+msgid "Phone Number"
+msgstr ""
+
+#: field.acn.create_date.label:975
+msgid "Create Date/Time"
+msgstr ""
+
+#: class.atc.label:732
+msgid "Copy Transit"
+msgstr ""
+
+#: field.au.super_user.label:1266
+msgid "Is Super User"
+msgstr ""
+
+#: class.mfr.label:1353
+msgid "Flattened MARC Fields"
+msgstr ""
+
+#: class.acpn.label:1319
+msgid "Copy Note"
+msgstr ""
+
+#: field.chmt.holdable.label:535
+msgid "Holdable?"
+msgstr ""
+
+#: field.acp.circ_as_type.label:2705
+msgid "Circulation Type (MARC)"
+msgstr ""
+
+#: field.auoi.staff.label:397
+msgid "Staff Member"
+msgstr ""
+
+#: field.aws.id.label:415
+msgid "Workstation ID"
+msgstr ""
+
+#: class.vbq.label:139
+msgid "Import/Overlay Bib Queue"
+msgstr ""
+
+#: field.atc.persistant_transfer.label:741
+#: field.iatc.persistant_transfer.label:3703
+msgid "Is Persistent? (unused)"
+msgstr ""
+
+#: field.rccc.patron_zip.label:3585
+msgid "Patron ZIP Code"
+msgstr ""
+
+#: field.ahtc.persistant_transfer.label:3150
+msgid "Is Persistent?"
+msgstr ""
+
+#: field.au.net_access_level.label:1257
+msgid "Internet Access Level"
+msgstr ""
+
+#: class.rmocbbcol.label:3853
+msgid "Open Circulation Billing by Circulating Library and Owning Library"
+msgstr ""
+
+#: field.rccbs.patron_zip.label:3671
+msgid "User ZIP Code"
+msgstr ""
+
+#: field.mcrp.payment_type.label:2330 field.mwp.payment_type.label:2575
+#: field.mgp.payment_type.label:2596 field.mckp.payment_type.label:2686
+#: field.mp.payment_type.label:3007 field.mbp.payment_type.label:3038
+#: field.mndp.payment_type.label:3069 field.mdp.payment_type.label:3092
+msgid "Payment Type"
+msgstr ""
+
+#: field.mdp.credit_card_payment.label:3098
+msgid "Credit Card Payment"
+msgstr ""
+
+#: field.au.usrgroup.label:1267
+msgid "Family Linkage or other Group"
+msgstr ""
+
+#: field.ahn.id.label:1874
+msgid "Notification ID"
+msgstr ""
+
+#: field.rccbs.last_billing_ts.label:3664
+msgid "Last Billing Date/Time"
+msgstr ""
+
+#: field.mcrp.amount_collected.label:2325
+#: field.mwp.amount_collected.label:2569 field.mgp.amount_collected.label:2590
+#: field.mckp.amount_collected.label:2678
+msgid "Amount Collected"
+msgstr ""
+
+#: field.ahr.current_copy.label:2124
+msgid "Currently Targeted Copy"
+msgstr ""
+
+#: field.aout.depth.label:2379
+msgid "Type Depth"
+msgstr ""
+
+#: field.rccc.stat_cat_1_value.label:3592
+msgid "Legacy CAT1 Value"
+msgstr ""
+
+#: class.auoi.label:390
+msgid "User Sharing Opt-in"
+msgstr ""
+
+#: field.combcirc.usr_profile.label:1724 field.acirc.usr_profile.label:1791
+#: field.rccc.profile_group.label:3575
+msgid "Patron Profile Group"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_shortname.label:3646
+msgid "User Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.au.dob.label:1242 field.rud.dob.label:3478
+msgid "Date of Birth"
+msgstr ""
+
+#: field.aun.title.label:660 field.acpn.title.label:1329
+msgid "Note Title"
+msgstr ""
+
+#: field.auoi.id.label:395
+msgid "Opt-in ID"
+msgstr ""
+
+#: field.asvq.answers.label:615
+msgid "Answers"
+msgstr ""
+
+#: field.combcirc.copy_owning_lib.label:1728
+#: field.acirc.copy_owning_lib.label:1795
+msgid "Copy Owning Library"
+msgstr ""
+
+#: field.ccmcmt.items_out.label:572
+msgid "Items Out"
+msgstr ""
+
+#: field.bre.creator.label:1058
+msgid "Record Creator"
+msgstr ""
+
+#: field.vbm.field_type.label:248
+msgid "Field Type"
+msgstr ""
+
+#: field.acpl.id.label:1892
+msgid "Location ID"
+msgstr ""
+
+#: field.rocit.patron_barcode.label:3811
+msgid "Patron Barcode"
+msgstr ""
+
+#: field.rccc.owning_lib_name.label:3569
+msgid "Owning Library Short (Policy) Name"
+msgstr ""
+
+#: class.ancc.label:2829
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: class.asva.label:2814
+msgid "Survey Answer"
+msgstr ""
+
+#: class.mbt.label:2473 field.mp.xact.label:3008 field.mbp.xact.label:3039
+#: field.mndp.xact.label:3070 field.mdp.xact.label:3093
+msgid "Billable Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib.label:3581
+msgid "Patron Home Library Link"
+msgstr ""
+
+#: field.ahr.transit.label:2122
+msgid "Transit"
+msgstr ""
+
+#: field.circ.billings.label:1662 field.combcirc.billings.label:1717
+#: field.acirc.billings.label:1784 field.rodcirc.billings.label:3748
+msgid "Transaction Billings"
+msgstr ""
+
+#: field.au.photo_url.label:1260
+msgid "Photo URL"
+msgstr ""
+
+#: class.mp.label:2998
+msgid "Payments: All"
+msgstr ""
+
+#: field.asv.questions.label:2060
+msgid "Questions"
+msgstr ""
+
+#: field.cifm.code.label:956
+msgid "Item Form Code"
+msgstr ""
+
+#: field.clfm.value.label:2550
+msgid "LitF Name"
+msgstr ""
+
+#: field.aun.value.label:662 field.acpn.value.label:1330
+msgid "Note Content"
+msgstr ""
+
+#: field.asv.start_date.label:2070
+msgid "Survey Start Date/Time"
+msgstr ""
+
+#: field.au.checkouts.label:1224
+msgid "All Circulations"
+msgstr ""
+
+#: field.aws.name.label:416
+msgid "Workstation Name"
+msgstr ""
+
+#: field.mckp.check_number.label:2680
+msgid "Check Number"
+msgstr ""
+
+#: field.rsr.summary.label:3456
+msgid "Summary (normalized)"
+msgstr ""
+
+#: field.vbq.id.label:144 field.vaq.id.label:270
+msgid "Queue ID"
+msgstr ""
+
+#: field.au.ident_value.label:1252
+msgid "Primary Identification"
+msgstr ""
+
+#: field.sra.bump.label:1969
+msgid "Bump Type"
+msgstr ""
+
+#: field.ahr.fulfillment_staff.label:2128
+msgid "Fulfilling Staff"
+msgstr ""
+
+#: field.mrd.char_encoding.label:1504
+msgid "Character Encoding"
+msgstr ""
+
+#: field.mp.work_payment.label:3014 field.mbp.work_payment.label:3045
+#: field.mndp.work_payment.label:3072
+msgid "Work Payment Detail"
+msgstr ""
+
+#: field.erfcc.circ_count.label:3547
+msgid "Total Circulation Count"
+msgstr ""
+
+#: field.ancc.id.label:2836
+msgid "Non-cat Circulation ID"
+msgstr ""
+
+#: field.auoi.usr.label:398 field.aun.usr.label:661 field.aus.usr.label:676
+#: field.aua.usr.label:1574 field.ac.usr.label:2263 field.mg.usr.label:2442
+#: field.mbt.usr.label:2479 field.actscecm.target_usr.label:2902
+msgid "User"
+msgstr ""
+
+#: field.aua.street1.label:1572
+msgid "Street (1)"
+msgstr ""
+
+#: field.mg.billings.label:2445
+msgid "Billings"
+msgstr ""
+
+#: field.mrd.lit_form.label:1511
+msgid "LitF"
+msgstr ""
+
+#: field.rccbs.billing_location_name.label:3643
+msgid "Billing Location Name"
+msgstr ""
+
+#: field.circ.stop_fines.label:1655 field.combcirc.stop_fines.label:1710
+#: field.acirc.stop_fines.label:1777 field.rodcirc.stop_fines.label:3742
+msgid "Fine Stop Reason"
+msgstr ""
+
+#: field.mbt.payments.label:2485
+msgid "Payment Line Items"
+msgstr ""
+
+#: field.cxt.namespace_uri.label:894
+msgid "Namespace URI"
+msgstr ""
+
+#: field.sra.multiplier.label:1970
+msgid "Multiplier"
+msgstr ""
+
+#: class.rmobbhol.label:3905
+msgid "Open Circulation Balance by User Home Library and Owning Library"
+msgstr ""
+
+#: field.aua.valid.label:1575
+msgid "Valid Address?"
+msgstr ""
+
+#: field.acp.status.label:2727
+msgid "Copy Status"
+msgstr ""
+
+#: field.sra.field.label:1968
+msgid "Index Field"
+msgstr ""
+
+#: field.asvq.survey.label:619 field.asvr.survey.label:775
+#: class.asv.label:2055
+msgid "Survey"
+msgstr ""
+
+#: field.mb.id.label:3184
+msgid "Billing ID"
+msgstr ""
+
+#: field.aou.circulations.label:2187 field.acp.circulations.label:2730
+msgid "Circulations"
+msgstr ""
+
+#: field.aus.id.label:674
+msgid "Setting ID"
+msgstr ""
+
+#: field.rmobbol.balance.label:3846 field.rmobbcol.balance.label:3879
+#: field.rmobbhol.balance.label:3913
+msgid "Balance"
+msgstr ""
+
+#: field.au.mailing_address.label:1255 field.aou.mailing_address.label:2177
+msgid "Mailing Address"
+msgstr ""
+
+#: field.rocit.pubdate.label:3781
+msgid "Pubdate"
+msgstr ""
+
+#: field.acn.label.label:981 field.rccc.call_number_label.label:3578
+msgid "Call Number Label"
+msgstr ""
+
+#: field.au.standing_penalties.label:1228
+msgid "Standing Penalties"
+msgstr ""
+
+#: field.asv.id.label:2064
+msgid "Survey ID"
+msgstr ""
+
+#: field.bre.metarecord.label:1070 field.rsr.metarecord.label:3444
+msgid "Metarecord"
+msgstr ""
+
+#: field.aua.county.label:1568
+msgid "County"
+msgstr ""
+
+#: field.au.prefix.label:1261
+msgid "Prefix"
+msgstr ""
+
+#: field.rccc.patron_county.label:3583
+msgid "Patron County"
+msgstr ""
+
+#: field.actsce.owner.label:2505 field.asce.owner.label:3131
+#: field.rsce1.owner.label:3613 field.rsce2.owner.label:3627
+msgid "Entry Owner"
+msgstr ""
+
+#: field.rccc.circ_modifier.label:3568 field.rocit.circ_modifier.label:3789
+msgid "Circ Modifier"
+msgstr ""
+
+#: field.rsr.series_title.label:3454
+msgid "Series Title (normalized)"
+msgstr ""
+
+#: field.mbt.grocery.label:2482
+msgid "Grocery Billing link"
+msgstr ""
+
+#: field.actscecm.stat_cat_entry.label:2901
+msgid "Entry Text"
+msgstr ""
+
+#: field.aufh.current_copy.label:2868
+msgid "Non-fulfilling Copy"
+msgstr ""
+
+#: field.combcirc.copy_location.label:1727
+#: field.acirc.copy_location.label:1794 field.acp.location.label:2723
+#: field.rccc.shelving_location.label:3574
+msgid "Shelving Location"
+msgstr ""
+
+#: field.aou.id.label:2175
+msgid "Organizational Unit ID"
+msgstr ""
+
+#: field.chmm.pickup_ou.label:474 field.ahr.pickup_lib.label:2134
+msgid "Pickup Library"
+msgstr ""
+
+#: field.vqbrad.description.label:199 field.vqarad.description.label:324
+#: field.ccm.description.label:431 field.cam.description.label:938
+#: field.asv.description.label:2062 field.pgt.description.label:2793
+msgid "Description"
+msgstr ""
+
+#: field.bre.keyword_field_entries.label:1073
+msgid "Indexed Keyword Field Entries"
+msgstr ""
+
+#: field.vqbr.import_time.label:170 field.vqar.import_time.label:297
+msgid "Import Time"
+msgstr ""
+
+#: field.aufh.circ_lib.label:2867
+msgid "Non-fulfilling Library"
+msgstr ""
+
+#: field.au.home_ou.label:1248
+msgid "Home Library"
+msgstr ""
+
+#: field.rocit.edit_date.label:3795
+msgid "Edit Date"
+msgstr ""
+
+#: class.clm.label:841
+msgid "Language Map"
+msgstr ""
+
+#: field.atc.copy_status.label:737 field.iatc.copy_status.label:3699
+msgid "Pretransit Copy Status"
+msgstr ""
+
+#: field.crahp.age.label:2769
+msgid "Item Age"
+msgstr ""
+
+#: field.au.standing.label:1264
+msgid "Standing (unused)"
+msgstr ""
+
+#: field.rsr.name_subject.label:3462
+msgid "Personal Name Subjects (normalized)"
+msgstr ""
+
+#: field.asv.usr_summary.label:2071
+msgid "Display in User Summary"
+msgstr ""
+
+#: field.ahn.notify_staff.label:1877
+msgid "Notifying Staff"
+msgstr ""
+
+#: field.aua.country.label:1567
+msgid "Country"
+msgstr ""
+
+#: field.circ.checkin_time.label:1639 field.combcirc.checkin_time.label:1694
+#: field.acirc.checkin_time.label:1761 field.rodcirc.checkin_time.label:3726
+msgid "Check In Date/Time"
+msgstr ""
+
+#: field.mg.payments.label:2446
+msgid "Payments"
+msgstr ""
+
+#: field.rocit.owning_lib.label:3799
+msgid "Owning Lib"
+msgstr ""
+
+#: class.rsce2.label:3621
+msgid "CAT2 Entry"
+msgstr ""
+
+#: field.mbts.last_billing_type.label:636
+#: field.rccbs.last_billing_type.label:3666
+msgid "Last Billing Type"
+msgstr ""
+
+#: field.circ.recuring_fine.label:1652 field.combcirc.recuring_fine.label:1707
+#: field.acirc.recuring_fine.label:1774 field.rodcirc.recuring_fine.label:3739
+msgid "Recurring Fine Amount"
+msgstr ""
+
+#: field.asv.end_date.label:2063
+msgid "Survey End Date/Time"
+msgstr ""
+
+#: field.mg.xact_start.label:2444
+msgid "Transaction Start Timestamp"
+msgstr ""
+
+#: field.bre.title_field_entries.label:1075
+msgid "Indexed Title Field Entries"
+msgstr ""
+
+#: field.aou.closed_dates.label:2186
+msgid "Closed Dates"
+msgstr ""
+
+#: class.ccm.label:424 field.chmm.circ_modifier.label:479
+#: field.ccmm.circ_modifier.label:510 field.ccmcmt.circ_mod.label:573
+#: field.acp.circ_modifier.label:2707
+msgid "Circulation Modifier"
+msgstr ""
+
+#: field.aou.addresses.label:2189
+msgid "Addresses"
+msgstr ""
+
+#: field.vqbrad.ident.label:202 field.vqarad.ident.label:327
+msgid "Is Identifier?"
+msgstr ""
+
+#: field.auoi.opt_in_ts.label:400
+msgid "Opt-in Date/Time"
+msgstr ""
+
+#: field.circ.desk_renewal.label:1642 field.combcirc.desk_renewal.label:1697
+#: field.acirc.desk_renewal.label:1764 field.rodcirc.desk_renewal.label:3729
+msgid "Desk Renewal"
+msgstr ""
+
+#: field.citm.code.label:1930
+msgid "Item Type Code"
+msgstr ""
+
+#: field.circ.renewal_remaining.label:1654
+#: field.combcirc.renewal_remaining.label:1709
+#: field.acirc.renewal_remaining.label:1776
+#: field.rodcirc.renewal_remaining.label:3741
+msgid "Remaining Renewals"
+msgstr ""
+
+#: field.mb.void_time.label:3186
+msgid "Void Timestamp"
+msgstr ""
+
+#: field.au.billable_transactions.label:1273 None:1295
+msgid "Billable Transactions"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-07-25 13:19:44-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: 1208.TITLE_LAST_COPY:66
+msgid "The last copy attached to a title is being removed or deleted"
+msgstr ""
+
+#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:441
+msgid "The requested container_user_bucket_item was not found"
+msgstr ""
+
+#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:426
+msgid "The requested money_user_circulation_summary was not found"
+msgstr ""
+
+#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:494
+msgid "The requested container_copy_bucket was not found"
+msgstr ""
+
+#: 1218.ITEM_AGE_PROTECTED:104
+msgid "This item is too new to have a hold placed on it"
+msgstr ""
+
+#: 1214.PATRON_DUP_IDENT1:87
+msgid "The selected primary identification type and value are in use by another patron"
+msgstr ""
+
+#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:318
+msgid "The requested permission_perm_list was not found"
+msgstr ""
+
+#: 1213.PATRON_BARRED:83
+msgid "The patron is barred"
+msgstr ""
+
+#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:405
+msgid "The requested metabib_series_field_entry was not found"
+msgstr ""
+
+#: 8002.OFFLINE_FILE_ERROR:697
+msgid " An offline file or directory could not be created or accessed "
+msgstr ""
+
+#: 1502.ASSET_COPY_NOT_FOUND:173
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a copy object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1639.REPORTER_SCHEDULE_NOT_FOUND:548
+msgid "The requested reporter_schedule was not found"
+msgstr ""
+
+#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:554
+msgid "The requested action_open_circ_count_by_circ_mod was not found"
+msgstr ""
+
+#: 0.SUCCESS:14
+msgid " "
+msgstr ""
+
+#: 7006.COPY_IS_REFERENCE:641
+msgid " Copy is reference material "
+msgstr ""
+
+#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:459
+msgid "The requested config_rules_recuring_fine was not found"
+msgstr ""
+
+#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:456
+msgid "The requested metabib_subject_field_entry was not found"
+msgstr ""
+
+#: 2001.DATABASE_UPDATE_FAILED:599
+msgid "The attempt to write to the DB failed"
+msgstr ""
+
+#: 1507.CONTAINER_ITEM_NOT_FOUND:196
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container item object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:253
+msgid "The requested action_survey_response was not found"
+msgstr ""
+
+#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:301
+msgid "The requested money_open_billable_transaction_summary was not found"
+msgstr ""
+
+#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:298
+msgid "The requested config_rules_circ_duration was not found"
+msgstr ""
+
+#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:453
+msgid "The requested action_open_circulation was not found"
+msgstr ""
+
+#: 1559.METABIB_FULL_REC_NOT_FOUND:312
+msgid "The requested metabib_full_rec was not found"
+msgstr ""
+
+#: 1527.OPEN_TCN_NOT_FOUND:219
+msgid "No TCN could be found that does not collide with existing records"
+msgstr ""
+
+#: 8000.OFFLINE_SESSION_ACTIVE:691
+msgid " An offline session for this location is currently processing "
+msgstr ""
+
+#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:324
+msgid "The requested metabib_keyword_field_entry was not found"
+msgstr ""
+
+#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:277
+msgid "The requested config_audience_map was not found"
+msgstr ""
+
+#: 1001.NO_SESSION:26
+msgid "User login session has either timed out or does not exist"
+msgstr ""
+
+#: 1525.BILLING_NOT_FOUND:215
+msgid " Requested billing note does not exist "
+msgstr ""
+
+#: 8001.OFFLINE_SESSION_FILE_EXISTS:694
+msgid " An offline file for this workstation exists within this session "
+msgstr ""
+
+#: 1529.ACTOR_WORKSTATION_NOT_FOUND:227
+msgid "The requested actor_workstation was not found"
+msgstr ""
+
+#: 1227.COPY_DELETE_WARNING:140
+msgid "The copy in question is not in an ideal status for deleting"
+msgstr ""
+
+#: 1223.PATRON_NO_PHONE:122
+msgid "The user does not have a valid phone number assigned"
+msgstr ""
+
+#: 1002.ACTOR_USER_NOT_FOUND:29
+msgid "Someone attempted to retrieve a user from the system and the user was not found"
+msgstr ""
+
+#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:539
+msgid "The requested reporter_output_folder was not found"
+msgstr ""
+
+#: 1217.PATRON_INACTIVE:101
+msgid "This account is marked as inactive"
+msgstr ""
+
+#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:542
+msgid "The requested reporter_report_folder was not found"
+msgstr ""
+
+#: 1545.PERM_EX_NOT_FOUND:274
+msgid "The requested perm_ex was not found"
+msgstr ""
+
+#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:295
+msgid "The requested actor_org_unit_closed_date was not found"
+msgstr ""
+
+#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:262
+msgid "The requested authority_record_descriptor was not found"
+msgstr ""
+
+#: 7011.COPY_STATUS_LOST:656
+msgid "Copy has is marked as lost"
+msgstr ""
+
+#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:393
+msgid "The requested container_call_number_bucket was not found"
+msgstr ""
+
+#: 1229.VOLUME_DELETED:147
+msgid "The requested volume is marked as deleted"
+msgstr ""
+
+#: 1635.REPORTER_REPORT_NOT_FOUND:536
+msgid "The requested reporter_report was not found"
+msgstr ""
+
+#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:524
+#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:527
+#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:530
+msgid "The requested money_collections_tracker was not found"
+msgstr ""
+
+#: 5000.PERM_FAILURE:608
+msgid "Permission Denied"
+msgstr ""
+
+#: 7015.NEGATIVE_PATRON_BALANCE:668
+msgid "This requested action would result in a negative patron balance"
+msgstr ""
+
+#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:342
+msgid "The requested actor_user_standing_penalty was not found"
+msgstr ""
+
+#: 1200.USERNAME_EXISTS:39
+msgid "The given username already exists in the database"
+msgstr ""
+
+#: 9000.REPORT_TEMPLATE_EXISTS:725
+msgid " A report template with the given name and folder already exists"
+msgstr ""
+
+#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:438
+msgid "The requested actor_stat_cat_entry was not found"
+msgstr ""
+
+#: 1710.CONTAINER_EXISTS:591
+msgid "User has already created a bucket with the requested name"
+msgstr ""
+
+#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:358
+msgid "The requested container_biblio_record_entry_bucket was not found"
+msgstr ""
+
+#: 1701.COPY_LOCATION_EXISTS:564
+msgid " The copy location object already exists "
+msgstr ""
+
+#: 1703.WORKSTATION_NAME_EXISTS:570
+msgid " A workstation with that name already exists "
+msgstr ""
+
+#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:488
+msgid "The requested actor_stat_cat_entry_user_map was not found"
+msgstr ""
+
+#: 8007.OFFLINE_SESSION_EXISTS:712
+msgid " A session with the given name already exists "
+msgstr ""
+
+#: 1558.ASSET_COPY_NOTE_NOT_FOUND:309
+msgid "The requested asset_copy_note was not found"
+msgstr ""
+
+#: 7017.ROUTE_TO_COPY_LOCATION:677
+msgid ""
+" \n"
+"\t\tA copy needs to be routed to a copy location. The location\n"
+"\t\tshould be specified within the event with a 'location' key\n"
+"\t\t"
+msgstr ""
+
+#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:182
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a transit object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1624.MONEY_PAYMENT_NOT_FOUND:503
+msgid "The requested money_payment was not found"
+msgstr ""
+
+#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:420
+msgid "The requested actor_org_unit_type was not found"
+msgstr ""
+
+#: 1004.Z3950_BAD_QUERY:35
+msgid "The Z query is not formatted correctly"
+msgstr ""
+
+#: 1205.CARD_EXISTS:57
+msgid "The given user barcode already exists"
+msgstr ""
+
+#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:385
+msgid "The requested actor_org_address was not found"
+msgstr ""
+
+#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:167
+msgid "The requested biblio_record_entry was not found"
+msgstr ""
+
+#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:470
+msgid "The requested permission_grp_tree was not found"
+msgstr ""
+
+#: 1523.TITLE_NOTE_NOT_FOUND:212
+msgid " Requested title note does not exist "
+msgstr ""
+
+#: 9001.REPORT_REPORT_EXISTS:729
+msgid " A report with the given name and folder already exists"
+msgstr ""
+
+#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:248
+msgid "The requested action_in_house_use was not found"
+msgstr ""
+
+#: 7016.ITEM_ON_HOLDS_SHELF:671
+msgid "This requested item is currently on the holds shelf"
+msgstr ""
+
+#: 7005.LOCATION_CIRC_NOT_ALLOWED:638
+msgid " Location does not allow materials to circulate "
+msgstr ""
+
+#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:321
+msgid "The requested metabib_metarecord_source_map was not found"
+msgstr ""
+
+#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:233
+msgid "The requested action_survey_question was not found"
+msgstr ""
+
+#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:467
+msgid "The requested config_rules_max_fine was not found"
+msgstr ""
+
+#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:306
+msgid "The requested actor_org_unit_setting was not found"
+msgstr ""
+
+#: 7009.CIRC_CLAIMS_RETURNED:650
+msgid " Requested circulation is marked claims returned "
+msgstr ""
+
+#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:517
+msgid "The requested permission_usr_grp_map was not found"
+msgstr ""
+
+#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:450
+msgid "The requested money_work_payment was not found"
+msgstr ""
+
+#: 2000.BAD_PARAMS:596
+msgid "Invalid parameters were encountered in a method"
+msgstr ""
+
+#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:327
+msgid "The requested money_cash_payment was not found"
+msgstr ""
+
+#: 1221.ORG_CANNOT_HAVE_VOLS:115
+msgid "The selected location cannot have volumes attached"
+msgstr ""
+
+#: 1704.TCN_EXISTS:573
+msgid "A record already exists with the requested TCN value"
+msgstr ""
+
+#: 1.UNKNOWN:17
+msgid "Placeholder event. Used for development only"
+msgstr ""
+
+#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:497
+msgid "The requested biblio_record_node was not found"
+msgstr ""
+
+#: 8003.OFFLINE_PARAM_ERROR:700
+msgid " Missing params in offline upload "
+msgstr ""
+
+#: 1534.ACTOR_USER_SETTING_NOT_FOUND:242
+msgid "The requested actor_user_setting was not found"
+msgstr ""
+
+#: 1211.BILL_ALREADY_VOIDED:76
+msgid "The selecte bill has already been voided"
+msgstr ""
+
+#: 1222.PATRON_NO_EMAIL_ADDRESS:119
+msgid "The user does not have a valid email address assigned"
+msgstr ""
+
+#: 7001.PATRON_BAD_STANDING:625
+msgid ""
+"\n"
+"\t\t\tThe patron in question is not able to check out materials because\n"
+"\t\t\ttheir account is in bad standing\n"
+"\t\t"
+msgstr ""
+
+#: 1215.CIRC_EXCEEDS_COPY_RANGE:94
+msgid ""
+"\n"
+"\t\t\tThe selected copy may not circulate because the recipient's home \n"
+"\t\t\tlocation is not within the copy's circulation range\n"
+"\t\t"
+msgstr ""
+
+#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:447
+msgid "The requested config_lit_form_map was not found"
+msgstr ""
+
+#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:336
+msgid "The requested metabib_record_descriptor was not found"
+msgstr ""
+
+#: 1702.OPEN_CIRCULATION_EXISTS:567
+msgid " There is an open circulation on the requested item "
+msgstr ""
+
+#: 8009.OFFLINE_NO_ORG:718 8010.OFFLINE_SESSION_COMPLETE:721
+msgid " No org id was provided "
+msgstr ""
+
+#: 1630.ACTOR_USER_NOTE_NOT_FOUND:520
+msgid "The requested actor_user_note was not found"
+msgstr ""
+
+#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:199
+msgid "Requested asset_call_number was not found"
+msgstr ""
+
+#: 1209.Z3950_LOGIN_FAILED:69
+msgid "The login failed"
+msgstr ""
+
+#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:268
+msgid "The requested money_credit_card_payment was not found"
+msgstr ""
+
+#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:473
+msgid "The requested action_survey_answer was not found"
+msgstr ""
+
+#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:245
+msgid "The requested metabib_author_field_entry was not found"
+msgstr ""
+
+#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:509
+msgid "The requested asset_stat_cat_entry was not found"
+msgstr ""
+
+#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:417
+msgid "The requested config_non_cataloged_type was not found"
+msgstr ""
+
+#: 1225.TRANSIT_ABORT_NOT_ALLOWED:128
+msgid "The transit on this item may not be aborted due to the state the item is in"
+msgstr ""
+
+#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:265
+msgid "The requested config_language_map was not found"
+msgstr ""
+
+#: 1206.VOLUME_NOT_EMPTY:60
+msgid "The selected volume has copies attached"
+msgstr ""
+
+#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:259
+msgid "The requested authority_record_entry was not found"
+msgstr ""
+
+#: 1203.COPY_BAD_STATUS:48
+msgid "The given copy is not in a standard circulation status"
+msgstr ""
+
+#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:435
+msgid "The requested money_billable_transaction was not found"
+msgstr ""
+
+#: 7004.COPY_NOT_AVAILABLE:635
+msgid " Copy is not available "
+msgstr ""
+
+#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:287
+msgid "The requested money_open_user_summary was not found"
+msgstr ""
+
+#: 1207.REFUND_EXCEEDS_BALANCE:63
+msgid "A refund greater than the negative balance on a transaction was provided"
+msgstr ""
+
+#: 3.NO_CHANGE:20
+msgid "No change occurred"
+msgstr ""
+
+#: 1201.CIRC_PERMIT_BAD_KEY:42
+msgid "A checkout was attempted without a valid checkout permit key"
+msgstr ""
+
+#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:411
+msgid "The requested money_credit_payment was not found"
+msgstr ""
+
+#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:485
+msgid "The requested metabib_title_field_entry was not found"
+msgstr ""
+
+#: 1202.ITEM_NOT_CATALOGED:45
+msgid "The requested item is not cataloged in the database"
+msgstr ""
+
+#: 1628.MONEY_BILLING_NOT_FOUND:514
+msgid "The requested money_billing was not found"
+msgstr ""
+
+#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:271
+msgid "The requested config_metabib_field was not found"
+msgstr ""
+
+#: 2002.DATABASE_QUERY_FAILED:602
+msgid "The attempt to query to the DB failed"
+msgstr ""
+
+#: 1549.CONFIG_STANDING_NOT_FOUND:284
+msgid "The requested config_standing was not found"
+msgstr ""
+
+#: 1210.INCORRECT_PASSWORD:73
+msgid "The provided password is not correct"
+msgstr ""
+
+#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:379
+msgid "The requested config_item_type_map was not found"
+msgstr ""
+
+#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:230
+msgid "The requested config_identification_type was not found"
+msgstr ""
+
+#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:370
+msgid "The requested asset_copy_location was not found"
+msgstr ""
+
+#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:347
+msgid "The requested asset_call_number_note was not found"
+msgstr ""
+
+#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:222
+msgid "Requested address was not found"
+msgstr ""
+
+#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:629
+msgid "The patron in question has the maximum number of items already checked out"
+msgstr ""
+
+#: 1003.Z3950_SEARCH_FAILED:32
+msgid "The Z search did not succeed"
+msgstr ""
+
+#: 1533.ACTOR_USR_NOTE_NOT_FOUND:239
+msgid "The requested actor_usr_note was not found"
+msgstr ""
+
+#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:491
+msgid "The requested permission_grp_perm_map was not found"
+msgstr ""
+
+#: 1204.CIRC_BAD_STATUS:54
+msgid ""
+"\n"
+"\t\t\tThe given circulation is not in a standard status or\n"
+"\t\t\tthe circulation was never fully closed properly\n"
+"\t\t"
+msgstr ""
+
+#: 1709.MAX_HOLDS:588
+msgid "User has reached the maximum number of holds"
+msgstr ""
+
+#: 1706.ITEM_BARCODE_EXISTS:579
+msgid "An item with the same barcode exists"
+msgstr ""
+
+#: 7014.COPY_IN_TRANSIT:665
+msgid "Copy is in transit"
+msgstr ""
+
+#: 1219.COPY_REMOTE_CIRC_LIB:107 1220.ITEM_NOT_HOLDABLE:111
+msgid "A copy with a remote circulating library (circ_lib) was encountered"
+msgstr ""
+
+#: 7000.ROUTE_ITEM:618
+msgid ""
+" \n"
+"\t\t\tA copy needs to be routed to a different location\t\n"
+"\t\t\tThe destination location will be specified by an 'org' key\n"
+"\t\t\twithin the event object\n"
+"\t\t"
+msgstr ""
+
+#: 7007.COPY_NEEDED_FOR_HOLD:644
+msgid " Copy is needed to fulfil a hold "
+msgstr ""
+
+#: 7010.COPY_ALERT_MESSAGE:653
+msgid " The requested copy has an alert message attached "
+msgstr ""
+
+#: 1231.RECORD_NOT_EMPTY:154
+msgid "The selected bib record has volumes attached"
+msgstr ""
+
+#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:176
+msgid "The requested action_hold_request was not found"
+msgstr ""
+
+#: 1212.PATRON_EXCEEDS_OVERDUE_COUNT:79
+msgid "The patron has too many overdue items"
+msgstr ""
+
+#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:367
+msgid "The requested action_hold_notification was not found"
+msgstr ""
+
+#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:462
+msgid "The requested money_check_payment was not found"
+msgstr ""
+
+#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:500
+msgid "The requested permission_usr_perm_map was not found"
+msgstr ""
+
+#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:376
+msgid "The requested asset_stat_cat_entry_copy_map was not found"
+msgstr ""
+
+#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:280
+msgid "The requested config_item_form_map was not found"
+msgstr ""
+
+#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:408
+msgid "The requested container_user_bucket was not found"
+msgstr ""
+
+#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:482
+msgid "The requested action_unfulfilled_hold_list was not found"
+msgstr ""
+
+#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:292
+msgid "The requested actor_org_unit_hours_of_operation was not found"
+msgstr ""
+
+#: 1576.EX_NOT_FOUND:361
+msgid "The requested ex was not found"
+msgstr ""
+
+#: 8004.OFFLINE_CONFIG_ERROR:703 8005.OFFLINE_CHECKSUM_FAILED:706
+#: 8006.OFFLINE_SESSION_NOT_FOUND:709
+msgid " Offline server is not configured properly "
+msgstr ""
+
+#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:339
+msgid "The requested config_copy_status was not found"
+msgstr ""
+
+#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:256
+msgid "The requested container_copy_bucket_item was not found"
+msgstr ""
+
+#: 1590.ACTOR_STAT_CAT_NOT_FOUND:402
+msgid "The requested actor_stat_cat was not found"
+msgstr ""
+
+#: 7003.COPY_CIRC_NOT_ALLOWED:632
+msgid " Target copy is not allowed to circulate "
+msgstr ""
+
+#: 7008.MAX_RENEWALS_REACHED:647
+msgid " Circulation has no more renewals remaining "
+msgstr ""
+
+#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:364
+msgid "The requested action_hold_copy_map was not found"
+msgstr ""
+
+#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:545
+msgid "The requested reporter_template_folder was not found"
+msgstr ""
+
+#: 1500.ACTION_CIRCULATION_NOT_FOUND:164
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a circulation object from the system and \n"
+"\t\t\tthe object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135
+msgid ""
+"\n"
+"\t\t\tThis refund amount is not allowed because it exceeds \n"
+"\t\t\tthe total amount of desk payments for this transaction.\n"
+"\t\t"
+msgstr ""
+
+#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:479
+msgid "The requested money_open_user_circulation_summary was not found"
+msgstr ""
+
+#: 1583.ACTION_SURVEY_NOT_FOUND:382
+msgid "The requested action_survey was not found"
+msgstr ""
+
+#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:506
+msgid "The requested container_biblio_record_entry_bucket_item was not found"
+msgstr ""
+
+#: 1000.LOGIN_FAILED:23
+msgid "User login failed"
+msgstr ""
+
+#: 1599.MONEY_GROCERY_NOT_FOUND:429
+msgid "The requested money_grocery was not found"
+msgstr ""
+
+#: 7012.COPY_STATUS_MISSING:659
+msgid "Copy has is marked as missing"
+msgstr ""
+
+#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:236
+msgid "The requested money_billable_transaction_summary was not found"
+msgstr ""
+
+#: 2003.INTERNAL_SERVER_ERROR:605
+msgid "There was an internal server error"
+msgstr ""
+
+#: 8008.OFFLINE_INVALID_SESSION:715
+msgid " The session name is invalid "
+msgstr ""
+
+#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:423
+msgid "The requested biblio_record_note was not found"
+msgstr ""
+
+#: 1588.ASSET_STAT_CAT_NOT_FOUND:396
+msgid "The requested asset_stat_cat was not found"
+msgstr ""
+
+#: 1224.PATRON_ACCOUNT_EXPIRED:125
+msgid "The patron's account has expired"
+msgstr ""
+
+#: 1560.METABIB_METARECORD_NOT_FOUND:315
+msgid "The requested metabib_metarecord was not found"
+msgstr ""
+
+#: 1707.HOLD_EXISTS:582
+msgid "User already has an open hold on the selected item"
+msgstr ""
+
+#: 1506.CONTAINER_NOT_FOUND:190
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:333
+msgid "The requested money_forgive_payment was not found"
+msgstr ""
+
+#: 1230.XACT_COLLISION:150
+msgid "The saved item has been edited by another user"
+msgstr ""
+
+#: 1700.NON_CAT_TYPE_EXISTS:561
+msgid " The non-cataloged type object already exists "
+msgstr ""
+
+#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:585
+msgid "A duplicate money.collections_tracker object already exists in the database"
+msgstr ""
+
+#: 1634.REPORTER_TEMPLATE_NOT_FOUND:533
+msgid "The requested reporter_template was not found"
+msgstr ""
+
+#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:432
+msgid "The requested config_bib_source was not found"
+msgstr ""
+
+#: 1228.BIB_RECORD_DELETED:144
+msgid "The requested bib record is marked as deleted"
+msgstr ""
+
+#: 7018.COPY_MARKED_LOST:682
+msgid "The requested item is already marked as lost"
+msgstr ""
+
+#: 1705.VOLUME_LABEL_EXISTS:576
+msgid "A volume with the same label, title and owning library exists"
+msgstr ""
+
+#: 1589.ACTOR_CARD_NOT_FOUND:399
+msgid "The requested actor_card was not found"
+msgstr ""
+
+#: 1216.PATRON_CARD_INACTIVE:98
+msgid "The patron's card is not active"
+msgstr ""
+
+#: 7013.PATRON_EXCEEDS_FINES:662
+msgid "The patron in question has reached the maximum fine amount"
+msgstr ""
+
+#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:390
+msgid "The requested actor_org_unit was not found"
+msgstr ""
+
+#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:355
+msgid "The requested container_call_number_bucket_item was not found"
+msgstr ""
+
+#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:204
+msgid "The requested action_hold_transit_copy was not found"
+msgstr ""
+
+#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:414
+msgid "The requested authority_full_rec was not found"
+msgstr ""
+
+#: 1565.ACTOR_PROFILE_NOT_FOUND:330
+msgid "The requested actor_profile was not found"
+msgstr ""
+
+#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:373
+msgid "The requested metabib_virtual_record was not found"
+msgstr ""
+
+#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:551
+msgid "The requested actor_usr_org_unit_opt_in was not found"
+msgstr ""
+
+#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:350
+msgid "The requested authority_record_note was not found"
+msgstr ""
+
+#: 1520.WORKSTATION_NOT_FOUND:209
+msgid " Requested workstation object does not exist "
+msgstr ""
+
+#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:476
+msgid "The requested action_non_cataloged_circulation was not found"
+msgstr ""
+
+#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:444
+msgid "The requested money_user_summary was not found"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: lang.description
+msgid "English"
+msgstr ""
+
+#: lang.author
+msgid "PINES"
+msgstr ""
+
+#: common.check_date.description
+msgid "Check today's date above."
+msgstr ""
+
+#: common.check_barcode.description
+msgid "Check barcode?"
+msgstr ""
+
+#: common.date_helper
+msgid "or choose one of these"
+msgstr ""
+
+#: common.date_helper.normal
+msgctxt "common.date_helper.normal"
+msgid "Normal"
+msgstr ""
+
+#: common.date_helper.3_days
+msgid "Today + 3 days"
+msgstr ""
+
+#: common.date_helper.7_days
+msgid "Today + 7 days"
+msgstr ""
+
+#: common.date_helper.14_days
+msgid "Today + 14 days"
+msgstr ""
+
+#: common.date_helper.30_days
+msgid "Today + 30 days"
+msgstr ""
+
+#: common.due_date.description
+msgid "Enter the item due date:"
+msgstr ""
+
+#: common.enter.label
+#: common.enter.accesskey
+msgctxt "common.enter.label common.enter.accesskey"
+msgid "&Enter"
+msgstr ""
+
+#: common.enter_barcode.description
+msgid "Enter the item barcode:"
+msgstr ""
+
+#: common.title
+msgctxt "common.title"
+msgid "Title"
+msgstr ""
+
+#: common.author
+msgctxt "common.author"
+msgid "Author"
+msgstr ""
+
+#: common.subject
+msgctxt "common.subject"
+msgid "Subject"
+msgstr ""
+
+#: common.series
+msgid "Series"
+msgstr ""
+
+#: common.keyword
+msgctxt "common.keyword"
+msgid "Keyword"
+msgstr ""
+
+#: common.type
+msgctxt "common.type"
+msgid "Type"
+msgstr ""
+
+#: common.isbn
+msgctxt "common.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: common.format
+msgctxt "common.format"
+msgid "Format"
+msgstr ""
+
+#: common.login
+msgid "Login"
+msgstr ""
+
+#: common.logout
+msgid "Log Out"
+msgstr ""
+
+#: common.at
+msgid "at"
+msgstr ""
+
+#: common.of
+msgctxt "common.of"
+msgid "of"
+msgstr ""
+
+#: common.cancel
+msgctxt "common.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: common.library
+msgctxt "common.library"
+msgid "Library"
+msgstr ""
+
+#: common.step1.label
+msgid "Step 1)"
+msgstr ""
+
+#: common.step2.label
+#: common.step2.accesskey
+msgid "Step &2)"
+msgstr ""
+
+#: common.step3.label
+#: common.step3.accesskey
+msgid "Step &3)"
+msgstr ""
+
+#: common.step4.label
+#: common.step4.accesskey
+msgid "Step &4)"
+msgstr ""
+
+#: common.step5.label
+msgid "Step 5)"
+msgstr ""
+
+#: common.step6.label
+msgid "Step 6)"
+msgstr ""
+
+#: common.username
+msgctxt "common.username"
+msgid "Username"
+msgstr ""
+
+#: common.username.label
+#: common.username.accesskey
+msgid "&Username:"
+msgstr ""
+
+#: common.password
+msgctxt "common.password"
+msgid "Password"
+msgstr ""
+
+#: common.refresh
+msgctxt "common.refresh"
+msgid "Refresh"
+msgstr ""
+
+#: common.submit
+msgctxt "common.submit"
+msgid "Submit"
+msgstr ""
+
+#: common.user_not_found
+msgid "User not found"
+msgstr ""
+
+#: common.unimplemented
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: common.delete_transactions.label
+msgid "Delete selected transaction"
+msgstr ""
+
+#: common.save_transactions.label
+#: common.save_transactions.accesskey
+msgid "&Save these transactions"
+msgstr ""
+
+#: ilsevent.1000
+msgid "Login failed. The username or password entered was incorrect."
+msgstr ""
+
+#: ilsevent.1001
+msgid "Login session has timed out or does not exist"
+msgstr ""
+
+#: ilsevent.1002
+msgid "User was not found in the database"
+msgstr ""
+
+#: ilsevent.5000
+msgid "Permission Denied"
+msgstr ""
+
+#: ilsperm.CREATE_HOLD
+msgid "User is not allowed to create holds for other users at this location"
+msgstr ""
+
+#: common.cancel.accesskey
+msgctxt "common.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: common.login.accesskey
+msgctxt "common.login.accesskey"
+msgid "L"
+msgstr ""
+
+#: common.password.accesskey
+msgctxt "common.password.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.about.title
+msgid "About"
+msgstr ""
+
+#: staff.acp_label_barcode
+msgctxt "staff.acp_label_barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.acp_label_call_number
+msgctxt "staff.acp_label_call_number"
+msgid "Call Number"
+msgstr ""
+
+#: staff.acp_label_circ_as_type
+msgid "Circulate As Type"
+msgstr ""
+
+#: staff.acp_label_circ_lib
+msgid "Circulation Library"
+msgstr ""
+
+#: staff.acp_label_circ_modifier
+msgid "Circulation Modifier"
+msgstr ""
+
+#: staff.acp_label_copy_number
+msgctxt "staff.acp_label_copy_number"
+msgid "Copy Number"
+msgstr ""
+
+#: staff.acp_label_deposit
+msgctxt "staff.acp_label_deposit"
+msgid "Deposit"
+msgstr ""
+
+#: staff.acp_label_deposit_amount
+msgctxt "staff.acp_label_deposit_amount"
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.acp_label_fine_level
+msgctxt "staff.acp_label_fine_level"
+msgid "Fine Level"
+msgstr ""
+
+#: staff.acp_label_id
+msgid "Copy ID"
+msgstr ""
+
+#: staff.acp_label_loan_duration
+msgctxt "staff.acp_label_loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.acp_label_location
+msgctxt "staff.acp_label_location"
+msgid "Location"
+msgstr ""
+
+#: staff.acp_label_price
+msgctxt "staff.acp_label_price"
+msgid "Price"
+msgstr ""
+
+#: staff.acp_label_status
+msgctxt "staff.acp_label_status"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_capture_time_label
+msgid "Capture Time"
+msgstr ""
+
+#: staff.ahr_current_copy_label
+msgid "Current Copy"
+msgstr ""
+
+#: staff.ahr_email_notify_label
+msgid "Email Notify"
+msgstr ""
+
+#: staff.ahr_expire_time_label
+msgid "Expire Time"
+msgstr ""
+
+#: staff.ahr_fulfillment_time_label
+msgid "Fulfillment Time"
+msgstr ""
+
+#: staff.ahr_hold_type_label
+msgctxt "staff.ahr_hold_type_label"
+msgid "Type"
+msgstr ""
+
+#: staff.ahr_holdable_formats_label
+msgid "Holdable Formats"
+msgstr ""
+
+#: staff.ahr_id_label
+msgid "Hold ID"
+msgstr ""
+
+#: staff.ahr_ischanged_label
+msgctxt "staff.ahr_ischanged_label"
+msgid "Is changed"
+msgstr ""
+
+#: staff.ahr_isdeleted_label
+msgctxt "staff.ahr_isdeleted_label"
+msgid "Is deleted"
+msgstr ""
+
+#: staff.ahr_isnew_label
+msgctxt "staff.ahr_isnew_label"
+msgid "Is new"
+msgstr ""
+
+#: staff.ahr_phone_notify_label
+msgid "Phone Notify"
+msgstr ""
+
+#: staff.ahr_pickup_lib_label
+msgctxt "staff.ahr_pickup_lib_label"
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.ahr_prev_check_time_label
+msgid "Previous Check Time"
+msgstr ""
+
+#: staff.ahr_request_time_label
+msgid "Request Time"
+msgstr ""
+
+#: staff.ahr_requestor_label
+msgid "Requestor"
+msgstr ""
+
+#: staff.ahr_selection_depth_label
+msgid "Selection Depth"
+msgstr ""
+
+#: staff.ahr_status_label
+msgctxt "staff.ahr_status_label"
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_target_label
+msgid "Target"
+msgstr ""
+
+#: staff.ahr_usr_label
+msgid "User"
+msgstr ""
+
+#: staff.au_active_label
+msgctxt "staff.au_active_label"
+msgid "Active"
+msgstr ""
+
+#: staff.au_addresses_label
+msgctxt "staff.au_addresses_label"
+msgid "Addresses"
+msgstr ""
+
+#: staff.au_alert_message_label
+msgctxt "staff.au_alert_message_label"
+msgid "Alert Message"
+msgstr ""
+
+#: staff.au_billing_address_label
+msgctxt "staff.au_billing_address_label"
+msgid "Billing Address"
+msgstr ""
+
+#: staff.au_card_label
+msgid "Card"
+msgstr ""
+
+#: staff.au_cards_label
+msgid "Cards"
+msgstr ""
+
+#: staff.au_checkouts_label
+msgid "Check Outs"
+msgstr ""
+
+#: staff.au_claims_returned_count_label
+msgctxt "staff.au_claims_returned_count_label"
+msgid "Claims Returned Count"
+msgstr ""
+
+#: staff.au_create_date_label
+msgid "Create Date"
+msgstr ""
+
+#: staff.au_credit_forward_balance_label
+msgid "Credit Forward Balance"
+msgstr ""
+
+#: staff.au_day_phone_label
+msgid "Day Phone"
+msgstr ""
+
+#: staff.au_dob_label
+msgctxt "staff.au_dob_label"
+msgid "Date of Birth"
+msgstr ""
+
+#: staff.au_email_label
+msgid "Email"
+msgstr ""
+
+#: staff.au_evening_phone_label
+msgctxt "staff.au_evening_phone_label"
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.au_expire_date_label
+msgctxt "staff.au_expire_date_label"
+msgid "Expire Date"
+msgstr ""
+
+#: staff.au_family_name_label
+msgctxt "staff.au_family_name_label"
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_first_given_name_label
+msgid "First Given Name"
+msgstr ""
+
+#: staff.au_hold_requests_label
+msgid "Hold Requests"
+msgstr ""
+
+#. "OU" is an organization unit - typically a library
+#: staff.au_home_ou_label
+msgid "Home OU"
+msgstr ""
+
+#: staff.au_id_label
+msgid "User ID"
+msgstr ""
+
+#: staff.au_ident_type2_label
+msgid "Identification Type2"
+msgstr ""
+
+#: staff.au_ident_type_label
+msgid "Identification Type"
+msgstr ""
+
+#: staff.au_ident_value2_label
+msgid "Identification Value2"
+msgstr ""
+
+#: staff.au_ident_value_label
+msgid "Identification Value"
+msgstr ""
+
+#: staff.au_ischanged_label
+msgctxt "staff.au_ischanged_label"
+msgid "Is changed"
+msgstr ""
+
+#: staff.au_isdeleted_label
+msgctxt "staff.au_isdeleted_label"
+msgid "Is deleted"
+msgstr ""
+
+#: staff.au_isnew_label
+msgctxt "staff.au_isnew_label"
+msgid "Is new"
+msgstr ""
+
+#: staff.au_label_active
+msgctxt "staff.au_label_active"
+msgid "Active"
+msgstr ""
+
+#: staff.au_label_family_name
+msgctxt "staff.au_label_family_name"
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_label_first_given_name
+msgctxt "staff.au_label_first_given_name"
+msgid "First Name"
+msgstr ""
+
+#: staff.au_label_id
+msgid "Record ID"
+msgstr ""
+
+#: staff.au_label_prefix
+msgctxt "staff.au_label_prefix"
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_label_second_given_name
+msgctxt "staff.au_label_second_given_name"
+msgid "Middle Name"
+msgstr ""
+
+#: staff.au_label_suffix
+msgctxt "staff.au_label_suffix"
+msgid "Suffix"
+msgstr ""
+
+#. "xact" is a transaction
+#: staff.au_last_xact_id_label
+msgid "Last Xact ID"
+msgstr ""
+
+#: staff.au_mailing_address_label
+msgctxt "staff.au_mailing_address_label"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.au_master_account_label
+msgid "Master Account"
+msgstr ""
+
+#: staff.au_net_access_level_label
+msgid "Net Access Level"
+msgstr ""
+
+#: staff.au_other_phone_label
+msgctxt "staff.au_other_phone_label"
+msgid "Other Phone"
+msgstr ""
+
+#: staff.au_passwd_label
+msgctxt "staff.au_passwd_label"
+msgid "Password"
+msgstr ""
+
+#: staff.au_password_label
+msgctxt "staff.au_password_label"
+msgid "Password"
+msgstr ""
+
+#: staff.au_photo_url_label
+msgid "Photo URL"
+msgstr ""
+
+#: staff.au_prefix_label
+msgctxt "staff.au_prefix_label"
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_profile_label
+msgctxt "staff.au_profile_label"
+msgid "Profile"
+msgstr ""
+
+#: staff.au_second_given_name_label
+msgid "Second Given Name"
+msgstr ""
+
+#: staff.au_settings_label
+msgid "Settings"
+msgstr ""
+
+#: staff.au_standing_label
+msgctxt "staff.au_standing_label"
+msgid "Standing"
+msgstr ""
+
+#: staff.au_stat_cat_entries_label
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: staff.au_suffix_label
+msgctxt "staff.au_suffix_label"
+msgid "Suffix"
+msgstr ""
+
+#: staff.au_super_user_label
+msgid "Super User"
+msgstr ""
+
+#: staff.au_survey_responses_label
+msgid "Survey Responses"
+msgstr ""
+
+#: staff.au_usrgroup_label
+msgid "User group"
+msgstr ""
+
+#: staff.au_usrname_label
+msgid "User name"
+msgstr ""
+
+#: staff.admin.survey.available.label
+msgid "Available to:"
+msgstr ""
+
+#: staff.admin.survey.description.label
+msgid "Description:"
+msgstr ""
+
+#: staff.admin.survey.end.label
+msgid "End:"
+msgstr ""
+
+#: staff.admin.survey.format.label
+msgid "Poll Format:"
+msgstr ""
+
+#: staff.admin.survey.name.label
+msgctxt "staff.admin.survey.name.label"
+msgid "Name:"
+msgstr ""
+
+#: staff.admin.survey.opac_visible.label
+msgctxt "staff.admin.survey.opac_visible.label"
+msgid "OPAC Visible:"
+msgstr ""
+
+#: staff.admin.survey.required.label
+msgid "Required:"
+msgstr ""
+
+#: staff.admin.survey.save_question.label
+#: staff.admin.survey.save_question.accesskey
+msgid "Save this &Question"
+msgstr ""
+
+#: staff.admin.survey.staff_client.label
+msgid "Staff Client:"
+msgstr ""
+
+#: staff.admin.survey.start.label
+msgid "Start:"
+msgstr ""
+
+#: staff.auth.login_header
+msgid "Log in"
+msgstr ""
+
+#: staff.auth.logoff_prompt
+msgid "Log off"
+msgstr ""
+
+#: staff.auth.logoff_prompt.accesskey
+msgid "f"
+msgstr ""
+
+#: staff.auth.logoff_prompt.key
+msgctxt "staff.auth.logoff_prompt.key"
+msgid "L"
+msgstr ""
+
+#: staff.auth.name_prompt
+msgctxt "staff.auth.name_prompt"
+msgid "Name:"
+msgstr ""
+
+#: staff.auth.name_prompt.key
+msgctxt "staff.auth.name_prompt.key"
+msgid "N"
+msgstr ""
+
+#: staff.auth.password_prompt
+msgid "Password:"
+msgstr ""
+
+#: staff.auth.password_prompt.accesskey
+msgctxt "staff.auth.password_prompt.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.auth.password_prompt.key
+msgctxt "staff.auth.password_prompt.key"
+msgid "P"
+msgstr ""
+
+#: staff.auth.quit_prompt
+msgid "Exit Evergreen"
+msgstr ""
+
+#: staff.auth.quit_prompt.key
+msgid "x"
+msgstr ""
+
+#: staff.auth.submit_prompt
+msgctxt "staff.auth.submit_prompt"
+msgid "Submit"
+msgstr ""
+
+#: staff.auth.submit_prompt.key
+msgctxt "staff.auth.submit_prompt.key"
+msgid "S"
+msgstr ""
+
+#: staff.auth.title
+msgid "Evergreen Staff Client 3"
+msgstr ""
+
+#: staff.auth.version
+msgid "Evergreen 0.1.0 20051202"
+msgstr ""
+
+#: staff.bills_current_payment_label
+msgid "Current Payment"
+msgstr ""
+
+#: staff.bills_information
+msgid "Information"
+msgstr ""
+
+#: staff.bills_interface_label
+msgctxt "staff.bills_interface_label"
+msgid "Bills"
+msgstr ""
+
+#: staff.bills_money_label
+msgid "Money"
+msgstr ""
+
+#: staff.bills_total_owed_label
+msgid "Total Owed"
+msgstr ""
+
+#: staff.bills_wizard_label
+msgid "Bill Patron"
+msgstr ""
+
+#: staff.bills_xact_dates_label
+msgid "Record and Dates"
+msgstr ""
+
+#: staff.browse_list.barcode
+msgctxt "staff.browse_list.barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.browse_list.callnumber
+msgctxt "staff.browse_list.callnumber"
+msgid "Call Number"
+msgstr ""
+
+#: staff.browse_list.circ_as_type
+msgid "Circulate As"
+msgstr ""
+
+#: staff.browse_list.circ_lib
+msgctxt "staff.browse_list.circ_lib"
+msgid "Circulating Library"
+msgstr ""
+
+#: staff.browse_list.circ_modifier
+msgid "Circ Modifier"
+msgstr ""
+
+#: staff.browse_list.circulate
+msgctxt "staff.browse_list.circulate"
+msgid "Circulate"
+msgstr ""
+
+#: staff.browse_list.copy_number
+msgctxt "staff.browse_list.copy_number"
+msgid "Copy Number"
+msgstr ""
+
+#: staff.browse_list.create_date
+msgid "Creation Date"
+msgstr ""
+
+#: staff.browse_list.creator
+msgid "Creator"
+msgstr ""
+
+#: staff.browse_list.deposit
+msgctxt "staff.browse_list.deposit"
+msgid "Deposit"
+msgstr ""
+
+#: staff.browse_list.deposit_amount
+msgctxt "staff.browse_list.deposit_amount"
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.browse_list.edit_date
+msgid "Edit Date"
+msgstr ""
+
+#: staff.browse_list.editor
+msgid "Editor"
+msgstr ""
+
+#: staff.browse_list.fine_level
+msgctxt "staff.browse_list.fine_level"
+msgid "Fine Level"
+msgstr ""
+
+#: staff.browse_list.library
+msgid "Owning Lib"
+msgstr ""
+
+#: staff.browse_list.loan_duration
+msgctxt "staff.browse_list.loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.browse_list.location
+msgid "Location and Barcode"
+msgstr ""
+
+#: staff.browse_list.location2
+msgctxt "staff.browse_list.location2"
+msgid "Location"
+msgstr ""
+
+#: staff.browse_list.opac_visible
+msgctxt "staff.browse_list.opac_visible"
+msgid "OPAC"
+msgstr ""
+
+#: staff.browse_list.price
+msgctxt "staff.browse_list.price"
+msgid "Price"
+msgstr ""
+
+#: staff.browse_list.ref
+msgctxt "staff.browse_list.ref"
+msgid "Reference"
+msgstr ""
+
+#: staff.browse_list.shelving_loc
+msgctxt "staff.browse_list.shelving_loc"
+msgid "Shelving Location"
+msgstr ""
+
+#: staff.browse_list.status
+msgctxt "staff.browse_list.status"
+msgid "Status"
+msgstr ""
+
+#: staff.browse_list.win_title
+msgctxt "staff.browse_list.win_title"
+msgid "Cataloging"
+msgstr ""
+
+#: staff.cat.fixed.BKS
+msgid "BKS"
+msgstr ""
+
+#: staff.cat.fixed.BKS.key
+msgctxt "staff.cat.fixed.BKS.key"
+msgid "B"
+msgstr ""
+
+#: staff.cat.fixed.COM
+msgid "COM"
+msgstr ""
+
+#: staff.cat.fixed.COM.key
+msgctxt "staff.cat.fixed.COM.key"
+msgid "O"
+msgstr ""
+
+#: staff.cat.fixed.MAP
+msgid "MAP"
+msgstr ""
+
+#: staff.cat.fixed.MAP.key
+msgctxt "staff.cat.fixed.MAP.key"
+msgid "P"
+msgstr ""
+
+#: staff.cat.fixed.MIX
+msgid "MIX"
+msgstr ""
+
+#: staff.cat.fixed.MIX.key
+msgctxt "staff.cat.fixed.MIX.key"
+msgid "M"
+msgstr ""
+
+#: staff.cat.fixed.REC
+msgid "REC"
+msgstr ""
+
+#: staff.cat.fixed.REC.key
+msgctxt "staff.cat.fixed.REC.key"
+msgid "R"
+msgstr ""
+
+#: staff.cat.fixed.SCO
+msgid "SCO"
+msgstr ""
+
+#: staff.cat.fixed.SCO.key
+msgctxt "staff.cat.fixed.SCO.key"
+msgid "C"
+msgstr ""
+
+#: staff.cat.fixed.SER
+msgid "SER"
+msgstr ""
+
+#: staff.cat.fixed.SER.key
+msgctxt "staff.cat.fixed.SER.key"
+msgid "S"
+msgstr ""
+
+#: staff.cat.fixed.VIS
+msgid "VIS"
+msgstr ""
+
+#: staff.cat.fixed.VIS.key
+msgctxt "staff.cat.fixed.VIS.key"
+msgid "V"
+msgstr ""
+
+#: staff.cat.opac.add_bucket.label
+#: staff.cat.opac.add_bucket.accesskey
+msgctxt "staff.cat.opac.add_bucket.label staff.cat.opac.add_bucket.accesskey"
+msgid "Add to &Bucket"
+msgstr ""
+
+#: staff.cat.opac.bib_in_new_tab.label
+msgctxt "staff.cat.opac.bib_in_new_tab.label"
+msgid "Duplicate in New Tab"
+msgstr ""
+
+#: staff.cat.opac.copy_browse.label
+#: staff.cat.opac.copy_browse.accesskey
+msgctxt "staff.cat.opac.copy_browse.label staff.cat.opac.copy_browse.accesskey"
+msgid "&Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.opac.default.label
+msgid "Set bottom interface as Default"
+msgstr ""
+
+#: staff.cat.opac.marc_edit.label
+#: staff.cat.opac.marc_edit.accesskey
+msgctxt "staff.cat.opac.marc_edit.label staff.cat.opac.marc_edit.accesskey"
+msgid "MARC &Edit"
+msgstr ""
+
+#: staff.cat.opac.marc_view.label
+#: staff.cat.opac.marc_view.accesskey
+msgctxt "staff.cat.opac.marc_view.label staff.cat.opac.marc_view.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.opac.mark_for_overlay.label
+#: staff.cat.opac.mark_for_overlay.accesskey
+msgid "&Mark for Overlay"
+msgstr ""
+
+#: staff.cat.opac.delete_record.label
+#: staff.cat.opac.delete_record.accesskey
+msgid "&Delete Record"
+msgstr ""
+
+#: staff.cat.opac.undelete_record.label
+#: staff.cat.opac.undelete_record.accesskey
+msgid "&Undelete Record"
+msgstr ""
+
+#: staff.cat.opac.menu.label
+#: staff.cat.opac.menu.accesskey
+msgid "&Actions for this Record"
+msgstr ""
+
+#: staff.cat.opac.opac_view.label
+#: staff.cat.opac.opac_view.accesskey
+msgctxt "staff.cat.opac.opac_view.label staff.cat.opac.opac_view.accesskey"
+msgid "&OPAC View"
+msgstr ""
+
+#: staff.cat.opac.record_end.label
+#: staff.cat.opac.record_end.accesskey
+msgid "&End"
+msgstr ""
+
+#: staff.cat.opac.record_next.label
+#: staff.cat.opac.record_next.accesskey
+msgid "&Next"
+msgstr ""
+
+#: staff.cat.opac.record_prev.label
+#: staff.cat.opac.record_prev.accesskey
+msgid "&Previous"
+msgstr ""
+
+#: staff.cat.opac.record_start.label
+#: staff.cat.opac.record_start.accesskey
+msgid "&Start"
+msgstr ""
+
+#: staff.cat.opac.refresh_me.label
+msgid "Reset Display"
+msgstr ""
+
+#: staff.cat.opac.remove_me.label
+msgctxt "staff.cat.opac.remove_me.label"
+msgid "Remove this Frame"
+msgstr ""
+
+#: staff.cat.opac.view_holds.label
+#: staff.cat.opac.view_holds.accesskey
+msgctxt "staff.cat.opac.view_holds.label staff.cat.opac.view_holds.accesskey"
+msgid "View Hold&s"
+msgstr ""
+
+#: staff.cat.popup.add_to_bucket
+msgctxt "staff.cat.popup.add_to_bucket"
+msgid "Add to Bucket"
+msgstr ""
+
+#: staff.cat.popup.add_to_bucket.key
+msgid ""
+"_: staff.cat.popup.add_to_bucket.key\n"
+""
+msgstr ""
+
+#: staff.cat.popup.browse.record.tab.key
+msgctxt "staff.cat.popup.browse.record.tab.key"
+msgid ""
+msgstr ""
+
+#: staff.cat.popup.browse.record.window.key
+msgctxt "staff.cat.popup.browse.record.window.key"
+msgid ""
+msgstr ""
+
+#: staff.cat.popup.browse_record.tab
+msgid "View Copies (Tab)"
+msgstr ""
+
+#: staff.cat.popup.browse_record.window
+msgid "View Copies (Window)"
+msgstr ""
+
+#: staff.cat.popup.edit.record.tab.key
+msgctxt "staff.cat.popup.edit.record.tab.key"
+msgid ""
+msgstr ""
+
+#: staff.cat.popup.edit.record.window.key
+msgctxt "staff.cat.popup.edit.record.window.key"
+msgid ""
+msgstr ""
+
+#: staff.cat.popup.edit_record.tab
+msgid "Edit Record (Tab)"
+msgstr ""
+
+#: staff.cat.popup.edit_record.window
+msgid "Edit Record (Window)"
+msgstr ""
+
+#: staff.cat.search_advanced
+msgid "Advanced"
+msgstr ""
+
+#: staff.cat.search_advanced.key
+msgctxt "staff.cat.search_advanced.key"
+msgid "V"
+msgstr ""
+
+#: staff.cat.search_all
+msgctxt "staff.cat.search_all"
+msgid "Keyword"
+msgstr ""
+
+#: staff.cat.search_author
+msgctxt "staff.cat.search_author"
+msgid "Author"
+msgstr ""
+
+#: staff.cat.search_barcode
+msgctxt "staff.cat.search_barcode"
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.cat.search_callnumber
+msgctxt "staff.cat.search_callnumber"
+msgid "Call Number"
+msgstr ""
+
+#: staff.cat.search_count_copy
+msgctxt "staff.cat.search_count_copy"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.search_count_copy.key
+msgctxt "staff.cat.search_count_copy.key"
+msgid "L"
+msgstr ""
+
+#: staff.cat.search_count_copy_show
+msgid "Show Only These Records"
+msgstr ""
+
+#: staff.cat.search_criteria
+msgid "Search Criteria"
+msgstr ""
+
+#: staff.cat.search_format
+msgctxt "staff.cat.search_format"
+msgid "Format"
+msgstr ""
+
+#: staff.cat.search_format.key
+msgctxt "staff.cat.search_format.key"
+msgid "F"
+msgstr ""
+
+#: staff.cat.search_id
+msgid "System ID"
+msgstr ""
+
+#: staff.cat.search_isbn
+msgid "ISBN or ISSN"
+msgstr ""
+
+#: staff.cat.search_location
+msgctxt "staff.cat.search_location"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.search_location.key
+msgctxt "staff.cat.search_location.key"
+msgid "L"
+msgstr ""
+
+#: staff.cat.search_order
+msgid "Order"
+msgstr ""
+
+#: staff.cat.search_order.key
+msgctxt "staff.cat.search_order.key"
+msgid "O"
+msgstr ""
+
+#: staff.cat.search_pubyear
+msgctxt "staff.cat.search_pubyear"
+msgid "Pub Year"
+msgstr ""
+
+#: staff.cat.search_subject
+msgctxt "staff.cat.search_subject"
+msgid "Subject"
+msgstr ""
+
+#: staff.cat.search_submit
+msgctxt "staff.cat.search_submit"
+msgid "Search"
+msgstr ""
+
+#: staff.cat.search_submit.key
+msgctxt "staff.cat.search_submit.key"
+msgid "S"
+msgstr ""
+
+#: staff.cat.search_tcn
+msgctxt "staff.cat.search_tcn"
+msgid "TCN"
+msgstr ""
+
+#: staff.cat.search_term
+msgid "Terms"
+msgstr ""
+
+#: staff.cat.search_term.key
+msgid "e"
+msgstr ""
+
+#: staff.cat.search_title
+msgctxt "staff.cat.search_title"
+msgid "Title"
+msgstr ""
+
+#: staff.cat.search_type
+msgctxt "staff.cat.search_type"
+msgid "Type"
+msgstr ""
+
+#: staff.cat.search_type.key
+msgctxt "staff.cat.search_type.key"
+msgid "T"
+msgstr ""
+
+#: staff.cat.test
+msgid "Test"
+msgstr ""
+
+#: staff.cat.test.key
+msgctxt "staff.cat.test.key"
+msgid "E"
+msgstr ""
+
+#: staff.cat.title
+msgid "TCN goes here"
+msgstr ""
+
+#: staff.cat.type_of_material
+msgid "All"
+msgstr ""
+
+#: staff.cat.type_of_material.a
+msgid "Language Material"
+msgstr ""
+
+#: staff.cat.type_of_material.c
+msgid "Notated Music"
+msgstr ""
+
+#: staff.cat.type_of_material.d
+msgid "Manuscript Notated Music"
+msgstr ""
+
+#: staff.cat.type_of_material.e
+msgid "Cartographic Material"
+msgstr ""
+
+#: staff.cat.type_of_material.f
+msgid "Manuscript Cartographic Material"
+msgstr ""
+
+#: staff.cat.type_of_material.g
+msgid "Projected Medium"
+msgstr ""
+
+#: staff.cat.type_of_material.i
+msgid "Nonmusical Sound Recording"
+msgstr ""
+
+#: staff.cat.type_of_material.j
+msgid "Musical Sound Recording"
+msgstr ""
+
+#: staff.cat.type_of_material.k
+msgid "Two-dimensional Nonprojectable Graphic"
+msgstr ""
+
+#: staff.cat.type_of_material.m
+msgid "Computer File"
+msgstr ""
+
+#: staff.cat.type_of_material.o
+msgid "Kit"
+msgstr ""
+
+#: staff.cat.type_of_material.p
+msgid "Mixed Material"
+msgstr ""
+
+#: staff.cat.type_of_material.r
+msgid "Three-dimensional Artifact or Naturally Occurring Object"
+msgstr ""
+
+#: staff.cat.type_of_material.t
+msgid "Manuscript Language Material"
+msgstr ""
+
+#: staff.checkin.auto_print_label
+msgctxt "staff.checkin.auto_print_label"
+msgid "Auto-Print"
+msgstr ""
+
+#: staff.checkin.auto_print_label.accesskey
+msgctxt "staff.checkin.auto_print_label.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.checkin.done_label
+msgid "Done"
+msgstr ""
+
+#: staff.checkin.done_label.accesskey
+msgctxt "staff.checkin.done_label.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.checkin.print_receipt.label
+msgctxt "staff.checkin.print_receipt.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.checkin.print_receipt.accesskey
+msgctxt "staff.checkin.print_receipt.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.checkin.reprint_receipt_label
+msgctxt "staff.checkin.reprint_receipt_label"
+msgid "Re-Print Last List"
+msgstr ""
+
+#: staff.checkin.reprint_receipt_label.accesskey
+msgctxt "staff.checkin.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.checkin_interface_label
+msgctxt "staff.checkin_interface_label"
+msgid "Check In"
+msgstr ""
+
+#: staff.checkin_label_route_to
+msgid "Route To"
+msgstr ""
+
+#: staff.checkin_label_status
+msgctxt "staff.checkin_label_status"
+msgid "Status"
+msgstr ""
+
+#: staff.checkin_label_text
+msgid "Message"
+msgstr ""
+
+#: staff.checkin_patron.name.label
+msgctxt "staff.checkin_patron.name.label"
+msgid "Patron Name"
+msgstr ""
+
+#: staff.checkin_patron.retrieve
+msgctxt "staff.checkin_patron.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.checkin_patron.retrieve.accesskey
+msgctxt "staff.checkin_patron.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.checkout_interface_label
+msgctxt "staff.checkout_interface_label"
+msgid "Check Out"
+msgstr ""
+
+#: staff.circ.offline.main.label
+msgid "Evergreen Offline"
+msgstr ""
+
+#: staff.circ.offline.server_time.tooltiptext
+msgid "Estimated Server Time - Click to adjust"
+msgstr ""
+
+#: staff.circ.offline.cmd_checkout.label
+#: staff.circ.offline.cmd_checkout.accesskey
+msgid "&Check Out"
+msgstr ""
+
+#: staff.circ.offline.cmd_renew.label
+#: staff.circ.offline.cmd_renew.accesskey
+msgid "&Renew"
+msgstr ""
+
+#: staff.circ.offline.cmd_in_house_use.label
+#: staff.circ.offline.cmd_in_house_use.accesskey
+msgid "In &House Use"
+msgstr ""
+
+#: staff.circ.offline.cmd_checkin.label
+#: staff.circ.offline.cmd_checkin.accesskey
+msgid "Check &In"
+msgstr ""
+
+#: staff.circ.offline.cmd_register_patron.label
+#: staff.circ.offline.cmd_register_patron.accesskey
+msgid "Register &Patron"
+msgstr ""
+
+#: staff.circ.offline.cmd_print_last_receipt.label
+#: staff.circ.offline.cmd_print_last_receipt.accesskey
+msgid "&Last Receipt"
+msgstr ""
+
+#: staff.circ.offline.cmd_exit.label
+#: staff.circ.offline.cmd_exit.accesskey
+msgctxt "staff.circ.offline.cmd_exit.label staff.circ.offline.cmd_exit.accesskey"
+msgid "E&xit"
+msgstr ""
+
+#: staff.circ.offline_checkin.main.label
+msgid "Standalone Check In"
+msgstr ""
+
+#: staff.circ.offline_checkin.step2a.label
+#: staff.circ.offline_checkin.step2a.accesskey
+msgctxt "staff.circ.offline_checkin.step2a.label staff.circ.offline_checkin.step2a.accesskey"
+msgid "&Enter"
+msgstr ""
+
+#: staff.circ.offline_checkin.step3.description
+msgid "Repeat Steps 2 until done."
+msgstr ""
+
+#: staff.circ.offline.finish.description
+msgctxt "staff.circ.offline.finish.description"
+msgid "Finish"
+msgstr ""
+
+#: staff.circ.offline.print.description
+msgid "Print receipt?"
+msgstr ""
+
+#: staff.circ.offline_checkout.main.label
+msgid "Standalone Check Out"
+msgstr ""
+
+#: staff.circ.offline_checkout.step2.description
+msgid "Enter the patron's barcode:"
+msgstr ""
+
+#: staff.circ.offline_checkout.step5.description
+msgctxt "staff.circ.offline_checkout.step5.description"
+msgid "Repeat Steps 3 and 4 until done."
+msgstr ""
+
+#: staff.circ.offline_in_house_use.main.label
+msgid "Standalone In House Use"
+msgstr ""
+
+#: staff.circ.offline_in_house_use.uses.label
+msgid "Enter the number of uses for the item:"
+msgstr ""
+
+#: staff.circ.offline_in_house_use.step4.description
+msgid "Repeat Steps 2 and 3 until done."
+msgstr ""
+
+#: staff.circ.offline_register.main.label
+msgid "Standalone Patron Registration"
+msgstr ""
+
+#: staff.circ.offline_register.x_home_ou.label
+msgctxt "staff.circ.offline_register.x_home_ou.label"
+msgid "Home Library:"
+msgstr ""
+
+#: staff.circ.offline_register.x_profile.label
+msgctxt "staff.circ.offline_register.x_profile.label"
+msgid "Profile:"
+msgstr ""
+
+#: staff.circ.offline_register.barcode.label
+msgid "New Barcode:"
+msgstr ""
+
+#: staff.circ.offline_register.passwd.label
+msgid "New Password:"
+msgstr ""
+
+#: staff.circ.offline_register.family_name.label
+msgctxt "staff.circ.offline_register.family_name.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.circ.offline_register.first_given_name.label
+msgctxt "staff.circ.offline_register.first_given_name.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.circ.offline_register.dob.label
+msgctxt "staff.circ.offline_register.dob.label"
+msgid "Date of Birth:"
+msgstr ""
+
+#: staff.circ.offline_register.x_ident_type.label
+msgid "Identification Type:"
+msgstr ""
+
+#: staff.circ.offline_register.ident_value.label
+msgid "Ident Value:"
+msgstr ""
+
+#: staff.circ.offline_register.billing_address.label
+msgctxt "staff.circ.offline_register.billing_address.label"
+msgid "Billing Address"
+msgstr ""
+
+#: staff.circ.offline_register.street1.label
+msgid "Line 1"
+msgstr ""
+
+#: staff.circ.offline_register.street2.label
+msgid "Line 2"
+msgstr ""
+
+#: staff.circ.offline_register.city.label
+msgctxt "staff.circ.offline_register.city.label"
+msgid "City"
+msgstr ""
+
+#: staff.circ.offline_register.state.label
+msgctxt "staff.circ.offline_register.state.label"
+msgid "State"
+msgstr ""
+
+#: staff.circ.offline_register.state.default_value
+msgid "GA"
+msgstr ""
+
+#: staff.circ.offline_register.post_code.label
+msgid "Postal Code"
+msgstr ""
+
+#: staff.circ.offline_register.country.label
+msgctxt "staff.circ.offline_register.country.label"
+msgid "Country"
+msgstr ""
+
+#: staff.circ.offline_register.country.default_value
+msgid "USA"
+msgstr ""
+
+#: staff.circ.offline_register.submit.label
+#: staff.circ.offline_register.submit.accesskey
+msgid "&Save patron registration"
+msgstr ""
+
+#: staff.circ.offline_renew.main.label
+msgid "Standalone Renew"
+msgstr ""
+
+#: staff.circ.offline_renew.p_barcode.description
+msgid "(Optional) Enter the patron's barcode:"
+msgstr ""
+
+#: staff.circ.offline_renew.step5.label
+msgctxt "staff.circ.offline_renew.step5.label"
+msgid "Repeat Steps 3 and 4 until done."
+msgstr ""
+
+#: staff.circ.checkin.caption
+msgctxt "staff.circ.checkin.caption"
+msgid "Check In"
+msgstr ""
+
+#: staff.circ.checkin.scan.label
+#: staff.circ.checkin.scan.accesskey
+msgctxt "staff.circ.checkin.scan.label staff.circ.checkin.scan.accesskey"
+msgid "Enter B&arcode:"
+msgstr ""
+
+#: staff.circ.checkin.submit.label
+#: staff.circ.checkin.submit.accesskey
+msgctxt "staff.circ.checkin.submit.label staff.circ.checkin.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.circ.context_cancel_hold
+msgctxt "staff.circ.context_cancel_hold"
+msgid "Cancel Hold"
+msgstr ""
+
+#: staff.circ.context_checkin
+msgctxt "staff.circ.context_checkin"
+msgid "Check In"
+msgstr ""
+
+#: staff.circ.context_edit
+msgid "Edit Copy"
+msgstr ""
+
+#: staff.circ.context_lost
+msgid "Mark as Lost"
+msgstr ""
+
+#: staff.circ.context_missing
+msgid "Mark as Missing"
+msgstr ""
+
+#: staff.circ.context_opac
+msgid "Show Title in OPAC"
+msgstr ""
+
+#: staff.circ.context_renew
+msgctxt "staff.circ.context_renew"
+msgid "Renew"
+msgstr ""
+
+#: staff.circ.hold_capture.caption
+msgid "Capture Hold"
+msgstr ""
+
+#: staff.circ.hold_capture.scan_label
+msgid "Enter Barcode:"
+msgstr ""
+
+#: staff.circ.hold_capture.scan_label.accesskey
+msgctxt "staff.circ.hold_capture.scan_label.accesskey"
+msgid "a"
+msgstr ""
+
+#: staff.circ.hold_capture.submit_label
+msgctxt "staff.circ.hold_capture.submit_label"
+msgid "Submit"
+msgstr ""
+
+#: staff.circ.hold_capture.submit_label.accesskey
+msgctxt "staff.circ.hold_capture.submit_label.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ_label_due_date
+msgctxt "staff.circ_label_due_date"
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ_label_id
+msgid "Circulation ID"
+msgstr ""
+
+#: staff.circ_label_renewal_remaining
+msgid "Remaining Renewals"
+msgstr ""
+
+#: staff.circ_label_xact_finish
+msgid "Check in Date"
+msgstr ""
+
+#: staff.circ_label_xact_start
+msgid "Check out Date"
+msgstr ""
+
+#: staff.copies_editor_interface_label
+msgid "Copies Edit"
+msgstr ""
+
+#: staff.copy.attr.barcode
+msgctxt "staff.copy.attr.barcode"
+msgid "Barcode"
+msgstr ""
+
+#: staff.copy.attr.circulate
+msgid "Circulate?"
+msgstr ""
+
+#: staff.copy.attr.circulate.no
+msgctxt "staff.copy.attr.circulate.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.circulate.yes
+msgctxt "staff.copy.attr.circulate.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.circulating_lib
+msgctxt "staff.copy.attr.circulating_lib"
+msgid "Circulating Library"
+msgstr ""
+
+#: staff.copy.attr.copy_available
+msgid "Copy Status: Available?"
+msgstr ""
+
+#: staff.copy.attr.copy_status
+msgid "Copy Status"
+msgstr ""
+
+#: staff.copy.attr.deposit
+msgid "Deposit?"
+msgstr ""
+
+#: staff.copy.attr.deposit.no
+msgctxt "staff.copy.attr.deposit.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.deposit.yes
+msgctxt "staff.copy.attr.deposit.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.deposit_amount
+msgctxt "staff.copy.attr.deposit_amount"
+msgid "Amount"
+msgstr ""
+
+#: staff.copy.attr.deposit_notes
+msgid "Deposit Notes"
+msgstr ""
+
+#: staff.copy.attr.fine_level
+msgctxt "staff.copy.attr.fine_level"
+msgid "Fine Level"
+msgstr ""
+
+#: staff.copy.attr.fine_level.high
+msgid "High"
+msgstr ""
+
+#: staff.copy.attr.fine_level.low
+msgid "Low"
+msgstr ""
+
+#: staff.copy.attr.fine_level.normal
+msgctxt "staff.copy.attr.fine_level.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.copy.attr.holds_protection
+msgid "Holds Protection"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example1
+msgid "3 months (facility)"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example2
+msgid "6 months (region)"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example3
+msgid "No hold protection"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example4
+msgid "Not holdable"
+msgstr ""
+
+#: staff.copy.attr.home_lib
+msgctxt "staff.copy.attr.home_lib"
+msgid "Home Library"
+msgstr ""
+
+#: staff.copy.attr.loan_duration
+msgctxt "staff.copy.attr.loan_duration"
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.copy.attr.loan_duration.long
+msgid "Long"
+msgstr ""
+
+#: staff.copy.attr.loan_duration.normal
+msgctxt "staff.copy.attr.loan_duration.normal"
+msgid "Normal"
+msgstr ""
+
+#: staff.copy.attr.loan_duration.short
+msgid "Short"
+msgstr ""
+
+#: staff.copy.attr.notes
+msgid "Copy Notes"
+msgstr ""
+
+#: staff.copy.attr.notes_viewable
+msgid "Copy Notes Patron Viewable?"
+msgstr ""
+
+#: staff.copy.attr.notes_viewable.example1
+msgctxt "staff.copy.attr.notes_viewable.example1"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.notes_viewable.example2
+msgctxt "staff.copy.attr.notes_viewable.example2"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.opac_visible
+msgid "OPAC Visible?"
+msgstr ""
+
+#: staff.copy.attr.opac_visible.no
+msgctxt "staff.copy.attr.opac_visible.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.opac_visible.yes
+msgctxt "staff.copy.attr.opac_visible.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.price
+msgctxt "staff.copy.attr.price"
+msgid "Price"
+msgstr ""
+
+#: staff.copy.attr.reference_material
+msgid "Reference Material?"
+msgstr ""
+
+#: staff.copy.attr.reference_material.no
+msgctxt "staff.copy.attr.reference_material.no"
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.reference_material.yes
+msgctxt "staff.copy.attr.reference_material.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.shelving_location
+msgctxt "staff.copy.attr.shelving_location"
+msgid "Shelving Location"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example1
+msgid "Stacks"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example10
+msgid "Paperback"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example2
+msgid "Audio-Visual"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example3
+msgid "Children's Room"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example4
+msgid "Garden Room"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example5
+msgctxt "staff.copy.attr.shelving_location.example5"
+msgid "Reference"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example6
+msgid "Ready Reference"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example7
+msgid "Behind Circulation Desk"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example8
+msgctxt "staff.copy.attr.shelving_location.example8"
+msgid "Display"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example9
+msgid "Health"
+msgstr ""
+
+#: staff.copy.attr.stat.audience
+msgid "Audience"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example1
+msgid "Adult"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example2
+msgid "Juvenile"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example3
+msgid "Preschool"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example4
+msgid "Primary"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example5
+msgid "Pre-adolescent"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example6
+msgid "Young adult"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example7
+msgid "General"
+msgstr ""
+
+#: staff.copy.attr.stat.genre
+msgid "Genre"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example1
+msgid "Adventure"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example10
+msgid "Spy"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example11
+msgid "Thriller"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example12
+msgid "War"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example13
+msgid "Western"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example14
+msgid "Religious fiction"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example15
+msgid "Shortstory"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example16
+msgctxt "staff.copy.attr.stat.genre.example16"
+msgid "Biography"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example17
+msgctxt "staff.copy.attr.stat.genre.example17"
+msgid "Holiday"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example18
+msgid "Nonfiction"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example2
+msgid "Fantasy"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example3
+msgid "Historical"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example4
+msgctxt "staff.copy.attr.stat.genre.example4"
+msgid "Holiday"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example5
+msgid "Horror"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example6
+msgid "Humor"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example7
+msgid "Mystery"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example8
+msgid "Romance"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example9
+msgid "Sci-fi"
+msgstr ""
+
+#: staff.copy.bucket
+msgctxt "staff.copy.bucket"
+msgid "Add to Bucket"
+msgstr ""
+
+#: staff.copy.bucket.key
+msgctxt "staff.copy.bucket.key"
+msgid "B"
+msgstr ""
+
+#: staff.copy.clone
+msgid "Clone Copy"
+msgstr ""
+
+#: staff.copy.clone.key
+msgctxt "staff.copy.clone.key"
+msgid ""
+msgstr ""
+
+#: staff.copy.close
+msgid "Close Window"
+msgstr ""
+
+#: staff.copy.close.key
+msgctxt "staff.copy.close.key"
+msgid "C"
+msgstr ""
+
+#: staff.copy.default.attr
+msgid "Default Attributes"
+msgstr ""
+
+#: staff.copy.default.attr.value
+msgctxt "staff.copy.default.attr.value"
+msgid "Value"
+msgstr ""
+
+#: staff.copy.delete
+msgid "Delete Copy"
+msgstr ""
+
+#: staff.copy.delete.key
+msgctxt "staff.copy.delete.key"
+msgid ""
+msgstr ""
+
+#: staff.copy.edit_categories
+msgid "Edit Categories"
+msgstr ""
+
+#: staff.copy.edit_entries
+msgid "Edit Entries"
+msgstr ""
+
+#: staff.copy.local.attr
+msgid "Local Attributes"
+msgstr ""
+
+#: staff.copy.local.attr.value
+msgctxt "staff.copy.local.attr.value"
+msgid "Value"
+msgstr ""
+
+#: staff.copy.notes
+msgctxt "staff.copy.notes"
+msgid "Note"
+msgstr ""
+
+#: staff.copy.notes.add
+msgid "Add Note"
+msgstr ""
+
+#: staff.copy.notes.add.key
+msgctxt "staff.copy.notes.add.key"
+msgid "A"
+msgstr ""
+
+#: staff.copy.notes.date
+msgid "Date"
+msgstr ""
+
+#: staff.copy.notes.delete
+msgid "Delete Note"
+msgstr ""
+
+#: staff.copy.notes.delete.key
+msgctxt "staff.copy.notes.delete.key"
+msgid "D"
+msgstr ""
+
+#: staff.copy.notes.from
+msgid "From"
+msgstr ""
+
+#: staff.copy.notes.opac
+msgctxt "staff.copy.notes.opac"
+msgid "OPAC"
+msgstr ""
+
+#: staff.copy.reload
+msgid "Reload Copy"
+msgstr ""
+
+#: staff.copy.reload.key
+msgctxt "staff.copy.reload.key"
+msgid "R"
+msgstr ""
+
+#: staff.copy.save
+msgid "Save Copy"
+msgstr ""
+
+#: staff.copy.save.key
+msgctxt "staff.copy.save.key"
+msgid "S"
+msgstr ""
+
+#: staff.copy.title
+msgid "Barcode goes here"
+msgstr ""
+
+#: staff.copy.transfer
+msgid "Transfer Copy"
+msgstr ""
+
+#: staff.copy.transfer.key
+msgctxt "staff.copy.transfer.key"
+msgid ""
+msgstr ""
+
+#: staff.copy.wizard.title
+msgid "Batch Add Copies Wizard"
+msgstr ""
+
+#: staff.copy_browser_interface_label
+msgctxt "staff.copy_browser_interface_label"
+msgid "Copies"
+msgstr ""
+
+#: staff.copy_stat_cat_editor_interface_label
+msgid "Copy statistical categories"
+msgstr ""
+
+#: staff.display_patron_interface_label
+msgid "Display patron"
+msgstr ""
+
+#: staff.displaying.hits_per_page
+msgid "Results per page"
+msgstr ""
+
+#: staff.displaying.of
+msgctxt "staff.displaying.of"
+msgid "of"
+msgstr ""
+
+#: staff.displaying.results
+msgid "Displaying results"
+msgstr ""
+
+#: staff.fieldmapper_label
+msgid "Fieldmapper"
+msgstr ""
+
+#: staff.filter_console_label
+msgid "Filter Console"
+msgstr ""
+
+#: staff.hold_capture.auto_print.label
+#: staff.hold_capture.auto_print.accesskey
+msgctxt "staff.hold_capture.auto_print.label staff.hold_capture.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr ""
+
+#: staff.hold_capture.done.label
+#: staff.hold_capture.done.accesskey
+msgctxt "staff.hold_capture.done.label staff.hold_capture.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.hold_capture.print_receipt.label
+msgctxt "staff.hold_capture.print_receipt.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.hold_capture.print_receipt.accesskey
+msgctxt "staff.hold_capture.print_receipt.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.hold_capture.reprint_receipt_label
+msgctxt "staff.hold_capture.reprint_receipt_label"
+msgid "Re-Print Last List"
+msgstr ""
+
+#: staff.hold_capture.reprint_receipt_label.accesskey
+msgctxt "staff.hold_capture.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.hold_capture_interface_label
+msgid "Hold capture"
+msgstr ""
+
+#: staff.hold_capture_patron.name.label
+msgctxt "staff.hold_capture_patron.name.label"
+msgid "Patron Name"
+msgstr ""
+
+#: staff.hold_capture_patron.retrieve
+msgctxt "staff.hold_capture_patron.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.hold_capture_patron.retrieve.accesskey
+msgctxt "staff.hold_capture_patron.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.holds_status_available
+msgid "Available"
+msgstr ""
+
+#: staff.holds_status_in_transit
+msgctxt "staff.holds_status_in_transit"
+msgid "In Transit"
+msgstr ""
+
+#: staff.holds_status_waiting_for_capture
+msgid "Copy found, waiting for capture"
+msgstr ""
+
+#: staff.holds_status_waiting_for_copy
+msgid "Waiting for available copy"
+msgstr ""
+
+#: staff.items_out_interface_label
+msgid "Items out"
+msgstr ""
+
+#: staff.javascript_console_label
+msgid "Console"
+msgstr ""
+
+#: staff.javascript_shell_label
+msgid "JavaScript Shell"
+msgstr ""
+
+#: staff.main.auth.caption
+msgid "Startup and Shutdown"
+msgstr ""
+
+#: staff.main.authentication.caption
+msgid "Authentication"
+msgstr ""
+
+#: staff.main.auth.debug.caption
+msgid "Debug Options"
+msgstr ""
+
+#: staff.main.auth.debug.clear
+msgctxt "staff.main.auth.debug.clear"
+msgid "Clear Cache"
+msgstr ""
+
+#: staff.main.auth.debug.clear.accesskey
+msgctxt "staff.main.auth.debug.clear.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.main.auth.debug.javascript
+msgid "JavaScript Console"
+msgstr ""
+
+#: staff.main.auth.debug.javascript.accesskey
+msgid "J"
+msgstr ""
+
+#: staff.main.auth.hostname
+msgid "Hostname"
+msgstr ""
+
+#: staff.main.auth.hostname.accesskey
+msgctxt "staff.main.auth.hostname.accesskey"
+msgid "H"
+msgstr ""
+
+#: staff.main.auth.offline.caption
+msgid "Offline Use"
+msgstr ""
+
+#: staff.main.auth.offline.export
+msgid "Export Transactions"
+msgstr ""
+
+#: staff.main.auth.offline.import
+msgid "Import Transactions"
+msgstr ""
+
+#: staff.main.auth.offline.interface
+msgid "Standalone Interface"
+msgstr ""
+
+#: staff.main.auth.offline.interface.accesskey
+msgctxt "staff.main.auth.offline.interface.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.main.auth.retest
+msgid "Re-Test Server"
+msgstr ""
+
+#: staff.main.auth.retest.accesskey
+msgctxt "staff.main.auth.retest.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.main.auth.server
+msgid "Server"
+msgstr ""
+
+#: staff.main.auth.status
+msgctxt "staff.main.auth.status"
+msgid "Status"
+msgstr ""
+
+#: staff.main.auth.version
+msgid "Version"
+msgstr ""
+
+#: staff.main.auth.workstation
+msgid "Workstation"
+msgstr ""
+
+#: staff.main.menu.acquisitions.key
+msgid "q"
+msgstr ""
+
+#: staff.main.menu.acquisitions.label
+msgid "Acquisitions"
+msgstr ""
+
+#: staff.main.menu.admin.accesskey
+msgctxt "staff.main.menu.admin.accesskey"
+msgid "-"
+msgstr ""
+
+#: staff.main.menu.admin.browse_holds.label
+#: staff.main.menu.admin.browse_holds.accesskey
+msgid "&Browse Unfulfilled Holds for this Pickup Lib"
+msgstr ""
+
+#: staff.main.menu.admin.change_session.label
+msgid "Operator Change: New"
+msgstr ""
+
+#: staff.main.menu.admin.clear_cache.accesskey
+msgctxt "staff.main.menu.admin.clear_cache.accesskey"
+msgid "3"
+msgstr ""
+
+#: staff.main.menu.admin.clear_cache.label
+msgctxt "staff.main.menu.admin.clear_cache.label"
+msgid "Clear Cache"
+msgstr ""
+
+#: staff.main.menu.admin.cmd_console.label
+#: staff.main.menu.admin.cmd_console.accesskey
+msgid "&JavaScript Console"
+msgstr ""
+
+#: staff.main.menu.admin.cmd_shell.label
+#: staff.main.menu.admin.cmd_shell.accesskey
+msgid "JavaScript S&hell"
+msgstr ""
+
+#: staff.main.menu.admin.cmd_test.label
+msgid "Test Module"
+msgstr ""
+
+#: staff.main.menu.admin.copy_location_edit.label
+#: staff.main.menu.admin.copy_location_edit.accesskey
+msgid "Copy &Location Editor"
+msgstr ""
+
+#: staff.main.menu.admin.developer.accesskey
+msgctxt "staff.main.menu.admin.developer.accesskey"
+msgid "-"
+msgstr ""
+
+#: staff.main.menu.admin.developer.label
+msgid "For developers..."
+msgstr ""
+
+#: staff.main.menu.admin.download_patrons.label
+#: staff.main.menu.admin.download_patrons.accesskey
+msgid "&Download Offline Patron List"
+msgstr ""
+
+#: staff.main.menu.admin.fieldmapper.label
+#: staff.main.menu.admin.fieldmapper.accesskey
+msgid "Field&mapper"
+msgstr ""
+
+#: staff.main.menu.admin.key
+msgid "i"
+msgstr ""
+
+#: staff.main.menu.admin.label
+msgid "Admin"
+msgstr ""
+
+#: staff.main.menu.admin.local_admin.label
+#: staff.main.menu.admin.local_admin.accesskey
+msgid "&Local System Administration"
+msgstr ""
+
+#: staff.main.menu.admin.non_cat_type_edit.label
+#: staff.main.menu.admin.non_cat_type_edit.accesskey
+msgid "&Non-Cataloged Type Editor"
+msgstr ""
+
+#: staff.main.menu.admin.offline_xacts.label
+#: staff.main.menu.admin.offline_xacts.accesskey
+msgid "Offline &Transaction Management"
+msgstr ""
+
+#: staff.main.menu.admin.public_opac.label
+#: staff.main.menu.admin.public_opac.accesskey
+msgid "&Public OPAC"
+msgstr ""
+
+#: staff.main.menu.admin.restore_all_tabs.label
+msgid "Unhide Tabs"
+msgstr ""
+
+#: staff.main.menu.admin.extension_manager.label
+msgid "Extension Manager"
+msgstr ""
+
+#: staff.main.menu.admin.theme_manager.label
+msgid "Theme Manager"
+msgstr ""
+
+#: staff.main.menu.admin.about_config.label
+msgid "about:config"
+msgstr ""
+
+#: staff.main.menu.admin.stat_cat_edit.label
+#: staff.main.menu.admin.stat_cat_edit.accesskey
+msgid "Statistical &Category Editor"
+msgstr ""
+
+#: staff.main.menu.admin.survey_wizard.label
+#: staff.main.menu.admin.survey_wizard.accesskey
+msgid "&Survey Wizard"
+msgstr ""
+
+#: staff.main.menu.admin.template_edit.label
+#: staff.main.menu.admin.template_edit.accesskey
+msgid "&Receipt Template Editor"
+msgstr ""
+
+#: staff.main.menu.admin.user_edit.label
+#: staff.main.menu.admin.user_edit.accesskey
+msgid "&User Permission Editor"
+msgstr ""
+
+#: staff.main.menu.admin.xuleditor.label
+#: staff.main.menu.admin.xuleditor.accesskey
+msgid "&XUL Test"
+msgstr ""
+
+#: staff.main.menu.admin.venkman.label
+msgid "Venkman"
+msgstr ""
+
+#: staff.main.menu.cat.label
+#: staff.main.menu.cat.accesskey
+msgid "Catalo&ging"
+msgstr ""
+
+#: staff.main.menu.cat.add_bib.key
+msgctxt "staff.main.menu.cat.add_bib.key"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.cat.add_bib.label
+msgid "Add Bib Record"
+msgstr ""
+
+#: staff.main.menu.cat.add_copy.key
+msgctxt "staff.main.menu.cat.add_copy.key"
+msgid "I"
+msgstr ""
+
+#: staff.main.menu.cat.add_copy.label
+msgid "Add Item"
+msgstr ""
+
+#: staff.main.menu.cat.add_volume.key
+msgctxt "staff.main.menu.cat.add_volume.key"
+msgid "V"
+msgstr ""
+
+#: staff.main.menu.cat.add_volume.label
+msgid "Add Volume"
+msgstr ""
+
+#: staff.main.menu.cat.bib_search.key
+msgctxt "staff.main.menu.cat.bib_search.key"
+msgid "S"
+msgstr ""
+
+#: staff.main.menu.cat.bib_search.label
+msgid "Search the Catalog"
+msgstr ""
+
+#: staff.main.menu.cat.bib_status.key
+msgctxt "staff.main.menu.cat.bib_status.key"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.cat.bib_status.label
+msgid "Display Bib Record"
+msgstr ""
+
+#: staff.main.menu.cat.copy_status.accesskey
+msgctxt "staff.main.menu.cat.copy_status.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.cat.copy_status.key
+msgctxt "staff.main.menu.cat.copy_status.key"
+msgid "I"
+msgstr ""
+
+#: staff.main.menu.cat.copy_status.label
+msgctxt "staff.main.menu.cat.copy_status.label"
+msgid "Display Item"
+msgstr ""
+
+#: staff.main.menu.cat.create_marc.label
+#: staff.main.menu.cat.create_marc.accesskey
+msgid "Create &New Marc Record"
+msgstr ""
+
+#: staff.main.menu.cat.dedup.key
+msgctxt "staff.main.menu.cat.dedup.key"
+msgid "M"
+msgstr ""
+
+#: staff.main.menu.cat.dedup.label
+msgid "Merge and Transfer Interface"
+msgstr ""
+
+#: staff.main.menu.cat.edit_copy_buckets.label
+#: staff.main.menu.cat.edit_copy_buckets.accesskey
+msgid "Manage Copy &Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.edit_record_buckets.label
+#: staff.main.menu.cat.edit_record_buckets.accesskey
+msgid "Manage &Record Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.edit_volume_buckets.label
+#: staff.main.menu.cat.edit_volume_buckets.accesskey
+msgid "Manage &Volume Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.edit_user_buckets.label
+#: staff.main.menu.cat.edit_user_buckets.accesskey
+msgid "Manage &User Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.key
+msgctxt "staff.main.menu.cat.key"
+msgid "a"
+msgstr ""
+
+#: staff.main.menu.cat.retrieve_last_record.label
+#: staff.main.menu.cat.retrieve_last_record.accesskey
+msgid "Retrieve &Last Record"
+msgstr ""
+
+#: staff.main.menu.cat.search_tcn.label
+#: staff.main.menu.cat.search_tcn.accesskey
+msgid "Retrieve record by &TCN"
+msgstr ""
+
+#: staff.main.menu.cat.search_bib_id.label
+#: staff.main.menu.cat.search_bib_id.accesskey
+msgid "Retrieve record by Record I&D"
+msgstr ""
+
+#: staff.main.menu.cat.volume_status.key
+msgctxt "staff.main.menu.cat.volume_status.key"
+msgid "V"
+msgstr ""
+
+#: staff.main.menu.cat.volume_status.label
+msgid "Display Volume"
+msgstr ""
+
+#: staff.main.menu.cat.z39_50_import.label
+#: staff.main.menu.cat.z39_50_import.accesskey
+msgid "Import Record from &Z39.50"
+msgstr ""
+
+#: staff.main.menu.circ.barcode.retrieve_patron
+msgid "Retrieve Patron by Barcode"
+msgstr ""
+
+#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
+msgctxt "staff.main.menu.circ.barcode.retrieve_patron.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.main.menu.circ.barcode.show_item
+msgid "Show Item Status by Barcode"
+msgstr ""
+
+#: staff.main.menu.circ.barcode.show_item.accesskey
+msgctxt "staff.main.menu.circ.barcode.show_item.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.circ.checkin.key
+msgctxt "staff.main.menu.circ.checkin.key"
+msgid "C"
+msgstr ""
+
+#: staff.main.menu.circ.checkin.label
+msgid "Check In Items"
+msgstr ""
+
+#: staff.main.menu.circ.checkout.key
+msgctxt "staff.main.menu.circ.checkout.key"
+msgid "O"
+msgstr ""
+
+#: staff.main.menu.circ.checkout.label
+msgid "Check Out Items"
+msgstr ""
+
+#: staff.main.menu.circ.claimed_returned.key
+msgctxt "staff.main.menu.circ.claimed_returned.key"
+msgid "C"
+msgstr ""
+
+#: staff.main.menu.circ.claimed_returned.label
+msgid "Mark as \"Claimed Returned\""
+msgstr ""
+
+#: staff.main.menu.circ.copy_status.key
+msgctxt "staff.main.menu.circ.copy_status.key"
+msgid "I"
+msgstr ""
+
+#: staff.main.menu.circ.copy_status.label
+msgctxt "staff.main.menu.circ.copy_status.label"
+msgid "Display Item"
+msgstr ""
+
+#: staff.main.menu.circ.found.key
+msgctxt "staff.main.menu.circ.found.key"
+msgid "F"
+msgstr ""
+
+#: staff.main.menu.circ.found.label
+msgid "Mark Found"
+msgstr ""
+
+#: staff.main.menu.circ.hold_browse.label
+#: staff.main.menu.circ.hold_browse.accesskey
+msgid "&Browse Holds Shelf"
+msgstr ""
+
+#: staff.main.menu.circ.hold_capture.key
+msgctxt "staff.main.menu.circ.hold_capture.key"
+msgid "H"
+msgstr ""
+
+#: staff.main.menu.circ.hold_capture.label
+msgid "Capture Holds"
+msgstr ""
+
+#: staff.main.menu.circ.hold_pull.label
+#: staff.main.menu.circ.hold_pull.accesskey
+msgid "Pull Li&st for Hold Requests"
+msgstr ""
+
+#: staff.main.menu.circ.in_house.label
+#: staff.main.menu.circ.in_house.accesskey
+msgid "Record &In-House Use"
+msgstr ""
+
+#: staff.main.menu.circ.key
+msgctxt "staff.main.menu.circ.key"
+msgid "C"
+msgstr ""
+
+#: staff.main.menu.circ.label
+msgctxt "staff.main.menu.circ.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.main.menu.circ.lost.key
+msgctxt "staff.main.menu.circ.lost.key"
+msgid "L"
+msgstr ""
+
+#: staff.main.menu.circ.lost.label
+msgctxt "staff.main.menu.circ.lost.label"
+msgid "Mark Lost"
+msgstr ""
+
+#: staff.main.menu.circ.mark_used.key
+msgctxt "staff.main.menu.circ.mark_used.key"
+msgid "U"
+msgstr ""
+
+#: staff.main.menu.circ.mark_used.label
+msgid "Mark Used"
+msgstr ""
+
+#: staff.main.menu.circ.missing.key
+msgctxt "staff.main.menu.circ.missing.key"
+msgid "M"
+msgstr ""
+
+#: staff.main.menu.circ.missing.label
+msgid "Mark Missing"
+msgstr ""
+
+#: staff.main.menu.circ.offline.label
+#: staff.main.menu.circ.offline.accesskey
+msgid "Enter O&ffline Interface"
+msgstr ""
+
+#: staff.main.menu.circ.patron_registration.key
+msgctxt "staff.main.menu.circ.patron_registration.key"
+msgid "R"
+msgstr ""
+
+#: staff.main.menu.circ.patron_registration.label
+msgid "Register Patron"
+msgstr ""
+
+#: staff.main.menu.circ.patron_retrieve.label
+#: staff.main.menu.circ.patron_retrieve.accesskey
+msgctxt "staff.main.menu.circ.patron_retrieve.label staff.main.menu.circ.patron_retrieve.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.main.menu.circ.patron_status.key
+msgctxt "staff.main.menu.circ.patron_status.key"
+msgid "P"
+msgstr ""
+
+#: staff.main.menu.circ.patron_status.label
+msgid "Display Patron"
+msgstr ""
+
+#: staff.main.menu.circ.place_hold.label
+#: staff.main.menu.circ.place_hold.accesskey
+msgid "Place &Hold"
+msgstr ""
+
+#: staff.main.menu.circ.place_hold.key
+msgctxt "staff.main.menu.circ.place_hold.key"
+msgid "H"
+msgstr ""
+
+#: staff.main.menu.circ.quick_add.key
+msgctxt "staff.main.menu.circ.quick_add.key"
+msgid "Q"
+msgstr ""
+
+#: staff.main.menu.circ.quick_add.label
+msgid "Quick Add"
+msgstr ""
+
+#: staff.main.menu.circ.renew.key
+msgid "n"
+msgstr ""
+
+#: staff.main.menu.circ.renew.label
+msgctxt "staff.main.menu.circ.renew.label"
+msgid "Renew"
+msgstr ""
+
+#: staff.main.menu.circ.reprint.label
+#: staff.main.menu.circ.reprint.accesskey
+msgid "Re-Print &Last"
+msgstr ""
+
+#: staff.main.menu.circ.special.key
+msgctxt "staff.main.menu.circ.special.key"
+msgid "S"
+msgstr ""
+
+#: staff.main.menu.circ.special.label
+msgid "Special Circulation"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.copies
+msgctxt "staff.main.menu.edit.buckets.copies"
+msgid "Copy Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.copies.accesskey
+msgctxt "staff.main.menu.edit.buckets.copies.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.key
+msgctxt "staff.main.menu.edit.buckets.key"
+msgid "B"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.label
+msgid "Manage Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.records
+msgctxt "staff.main.menu.edit.buckets.records"
+msgid "Record Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.records.accesskey
+msgctxt "staff.main.menu.edit.buckets.records.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.volumes
+msgid "Volume Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.volumes.accesskey
+msgctxt "staff.main.menu.edit.buckets.volumes.accesskey"
+msgid "V"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.users
+msgid "User Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.users.accesskey
+msgctxt "staff.main.menu.edit.buckets.users.accesskey"
+msgid "U"
+msgstr ""
+
+#: staff.main.menu.edit.copy.key
+msgctxt "staff.main.menu.edit.copy.key"
+msgid "C"
+msgstr ""
+
+#: staff.main.menu.edit.copy.label
+msgctxt "staff.main.menu.edit.copy.label"
+msgid "Copy"
+msgstr ""
+
+#: staff.main.menu.edit.cut.key
+msgctxt "staff.main.menu.edit.cut.key"
+msgid "t"
+msgstr ""
+
+#: staff.main.menu.edit.cut.label
+msgid "Cut"
+msgstr ""
+
+#: staff.main.menu.edit.delete.key
+msgctxt "staff.main.menu.edit.delete.key"
+msgid "D"
+msgstr ""
+
+#: staff.main.menu.edit.delete.label
+msgctxt "staff.main.menu.edit.delete.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.main.menu.edit.find.key
+msgctxt "staff.main.menu.edit.find.key"
+msgid "F"
+msgstr ""
+
+#: staff.main.menu.edit.find.label
+msgid "Find"
+msgstr ""
+
+#: staff.main.menu.edit.find_again.key
+msgid "g"
+msgstr ""
+
+#: staff.main.menu.edit.find_again.label
+msgid "Find Again"
+msgstr ""
+
+#: staff.main.menu.edit.key
+msgctxt "staff.main.menu.edit.key"
+msgid "E"
+msgstr ""
+
+#: staff.main.menu.edit.label
+msgctxt "staff.main.menu.edit.label"
+msgid "Edit"
+msgstr ""
+
+#: staff.main.menu.edit.paste.key
+msgctxt "staff.main.menu.edit.paste.key"
+msgid "P"
+msgstr ""
+
+#: staff.main.menu.edit.paste.label
+msgid "Paste"
+msgstr ""
+
+#: staff.main.menu.edit.redo.key
+msgctxt "staff.main.menu.edit.redo.key"
+msgid "R"
+msgstr ""
+
+#: staff.main.menu.edit.redo.label
+msgid "Redo"
+msgstr ""
+
+#: staff.main.menu.edit.select_all.key
+msgctxt "staff.main.menu.edit.select_all.key"
+msgid "A"
+msgstr ""
+
+#: staff.main.menu.edit.select_all.label
+msgid "Select All"
+msgstr ""
+
+#: staff.main.menu.edit.undo.key
+msgctxt "staff.main.menu.edit.undo.key"
+msgid "U"
+msgstr ""
+
+#: staff.main.menu.edit.undo.label
+msgid "Undo"
+msgstr ""
+
+#: staff.main.menu.entity.bib.key
+msgctxt "staff.main.menu.entity.bib.key"
+msgid ""
+msgstr ""
+
+#: staff.main.menu.entity.bib.label
+msgid "Bib Records"
+msgstr ""
+
+#: staff.main.menu.entity.copy.key
+msgctxt "staff.main.menu.entity.copy.key"
+msgid ""
+msgstr ""
+
+#: staff.main.menu.entity.copy.label
+msgid "Items"
+msgstr ""
+
+#: staff.main.menu.entity.patron.key
+msgctxt "staff.main.menu.entity.patron.key"
+msgid ""
+msgstr ""
+
+#: staff.main.menu.entity.patron.label
+msgid "Patrons"
+msgstr ""
+
+#: staff.main.menu.entity.patron.register.key
+msgctxt "staff.main.menu.entity.patron.register.key"
+msgid "R"
+msgstr ""
+
+#: staff.main.menu.entity.volume.key
+msgctxt "staff.main.menu.entity.volume.key"
+msgid ""
+msgstr ""
+
+#: staff.main.menu.entity.volume.label
+msgid "Volumes"
+msgstr ""
+
+#: staff.main.menu.file.close.label
+#: staff.main.menu.file.close.accesskey
+msgid "Close &Window"
+msgstr ""
+
+#: staff.main.menu.file.close.key
+msgctxt "staff.main.menu.file.close.key"
+msgid "C"
+msgstr ""
+
+#: staff.main.menu.file.close_tab.label
+#: staff.main.menu.file.close_tab.accesskey
+msgid "&Close Tab"
+msgstr ""
+
+#: staff.main.menu.file.close_tab.key
+msgctxt "staff.main.menu.file.close_tab.key"
+msgid ""
+msgstr ""
+
+#: staff.main.menu.file.key
+msgctxt "staff.main.menu.file.key"
+msgid "F"
+msgstr ""
+
+#: staff.main.menu.file.label
+msgid "File"
+msgstr ""
+
+#: staff.main.menu.file.new.key
+msgctxt "staff.main.menu.file.new.key"
+msgid "N"
+msgstr ""
+
+#: staff.main.menu.file.new.label
+msgid "New Window"
+msgstr ""
+
+#: staff.main.menu.file.new_tab.key
+msgctxt "staff.main.menu.file.new_tab.key"
+msgid "T"
+msgstr ""
+
+#: staff.main.menu.file.new_tab.label
+msgid "New Tab"
+msgstr ""
+
+#: staff.main.menu.file.open.key
+msgctxt "staff.main.menu.file.open.key"
+msgid "O"
+msgstr ""
+
+#: staff.main.menu.file.open.label
+msgid "Open Session"
+msgstr ""
+
+#: staff.main.menu.file.save.key
+msgctxt "staff.main.menu.file.save.key"
+msgid "S"
+msgstr ""
+
+#: staff.main.menu.file.save.label
+msgid "Save Session"
+msgstr ""
+
+#: staff.main.menu.help.key
+msgctxt "staff.main.menu.help.key"
+msgid "H"
+msgstr ""
+
+#: staff.main.menu.help.label
+msgctxt "staff.main.menu.help.label"
+msgid "Help"
+msgstr ""
+
+#: staff.main.menu.quit
+msgid "Quit Program"
+msgstr ""
+
+#: staff.main.menu.quit.accesskey
+msgctxt "staff.main.menu.quit.accesskey"
+msgid "Q"
+msgstr ""
+
+#: staff.main.menu.replace_barcode.label
+msgctxt "staff.main.menu.replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.main.menu.reports.key
+msgctxt "staff.main.menu.reports.key"
+msgid ""
+msgstr ""
+
+#: staff.main.menu.reports.label
+msgctxt "staff.main.menu.reports.label"
+msgid "Reports"
+msgstr ""
+
+#: staff.main.menu.search.catalog.label
+#: staff.main.menu.search.catalog.accesskey
+msgid "Search the &Catalog"
+msgstr ""
+
+#: staff.main.menu.search.copies.label
+#: staff.main.menu.search.copies.accesskey
+msgid "Search for copies by &Barcode"
+msgstr ""
+
+#: staff.main.menu.search.key
+msgid "r"
+msgstr ""
+
+#: staff.main.menu.search.label
+msgctxt "staff.main.menu.search.label"
+msgid "Search"
+msgstr ""
+
+#: staff.main.menu.search.patrons.label
+#: staff.main.menu.search.patrons.accesskey
+msgid "Search for &Patrons"
+msgstr ""
+
+#: staff.main.menu.search.patrons_barcode.label
+#: staff.main.menu.search.patrons_barcode.accesskey
+msgid "Search for patro&n by Barcode"
+msgstr ""
+
+#: staff.main.menu.search.record.label
+#: staff.main.menu.search.record.accesskey
+msgid "Search for record by &TCN"
+msgstr ""
+
+#: staff.main.menu.search.record_via_id.label
+#: staff.main.menu.search.record_via_id.accesskey
+msgid "Search for record by Record I&D"
+msgstr ""
+
+#: staff.main.menu.serials.key
+msgid "l"
+msgstr ""
+
+#: staff.main.menu.serials.label
+msgctxt "staff.main.menu.serials.label"
+msgid "Serials"
+msgstr ""
+
+#: staff.main.menu.tabs.close
+msgid "Close All Tabs"
+msgstr ""
+
+#: staff.main.menu.tabs.close.accesskey
+msgctxt "staff.main.menu.tabs.close.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.main.menu.title
+msgid "Evergreen Staff Client"
+msgstr ""
+
+#: staff.main.simple_auth.authorization.label
+msgid "Authorization"
+msgstr ""
+
+#: staff.main.simple_auth.authorize.label
+#: staff.main.simple_auth.authorize.accesskey
+msgid "&Authorization"
+msgstr ""
+
+#: staff.main.simple_auth.exception.label
+msgid "Exception"
+msgstr ""
+
+#: staff.main.test.example_template.label
+msgid "Hello world!"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.desc
+msgid "Index"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field
+msgctxt "staff.marc.008.BKS.MAP.indx.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field_end_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_end_pos"
+msgid "31"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field_size
+msgctxt "staff.marc.008.BKS.MAP.indx.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgctxt "staff.marc.008.BKS.MAP.indx.field_start_pos"
+msgid "31"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.short
+msgid "Indx"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc"
+msgid "Form of Item"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos"
+msgid "23"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos"
+msgid "23"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.help
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.short
+msgctxt "staff.marc.008.BKS.SER.MIX.SCO.REC.form.short"
+msgid "Form"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.desc
+msgid "Government Publication"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos"
+msgid "28"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos"
+msgid "28"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/gpub.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.short
+msgid "GPub"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.desc
+msgid "Conference Publication"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field
+msgctxt "staff.marc.008.BKS.SER.conf.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field_end_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_end_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field_size
+msgctxt "staff.marc.008.BKS.SER.conf.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field_start_pos
+msgctxt "staff.marc.008.BKS.SER.conf.field_start_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/conf.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.short
+msgid "Conf"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.desc
+msgid "Target Audience"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos
+msgctxt "staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/audn.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.short
+msgid "Audn"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.desc
+msgctxt "staff.marc.008.BKS.biog.desc"
+msgid "Biography"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field
+msgctxt "staff.marc.008.BKS.biog.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field_end_pos
+msgctxt "staff.marc.008.BKS.biog.field_end_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field_size
+msgctxt "staff.marc.008.BKS.biog.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field_start_pos
+msgctxt "staff.marc.008.BKS.biog.field_start_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/biog.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.short
+msgid "Biog"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.desc
+msgctxt "staff.marc.008.BKS.cont.desc"
+msgid "Nature of Contents"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field
+msgctxt "staff.marc.008.BKS.cont.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field_end_pos
+msgctxt "staff.marc.008.BKS.cont.field_end_pos"
+msgid "27"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field_size
+msgctxt "staff.marc.008.BKS.cont.field_size"
+msgid "4"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field_start_pos
+msgctxt "staff.marc.008.BKS.cont.field_start_pos"
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.help
+msgctxt "staff.marc.008.BKS.cont.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.short
+msgctxt "staff.marc.008.BKS.cont.short"
+msgid "Cont"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.desc
+msgid "Festschrift"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field
+msgctxt "staff.marc.008.BKS.fest.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field_end_pos
+msgctxt "staff.marc.008.BKS.fest.field_end_pos"
+msgid "30"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field_size
+msgctxt "staff.marc.008.BKS.fest.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field_start_pos
+msgctxt "staff.marc.008.BKS.fest.field_start_pos"
+msgid "30"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/fest.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.short
+msgid "Fest"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.desc
+msgid "Illustrations"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.field
+msgctxt "staff.marc.008.BKS.ills.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.field_end_pos
+msgctxt "staff.marc.008.BKS.ills.field_end_pos"
+msgid "21"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.field_size
+msgctxt "staff.marc.008.BKS.ills.field_size"
+msgid "4"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.field_start_pos
+msgctxt "staff.marc.008.BKS.ills.field_start_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/ills.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.short
+msgid "Ills"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.desc
+msgid "Literary Form"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field
+msgctxt "staff.marc.008.BKS.litf.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field_end_pos
+msgctxt "staff.marc.008.BKS.litf.field_end_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field_size
+msgctxt "staff.marc.008.BKS.litf.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field_start_pos
+msgctxt "staff.marc.008.BKS.litf.field_start_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/litf.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.short
+msgid "LitF"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.desc
+msgctxt "staff.marc.008.MAP.VIS.form.desc"
+msgid "Form of Item"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.field
+msgctxt "staff.marc.008.MAP.VIS.form.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.field_end_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_end_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.field_size
+msgctxt "staff.marc.008.MAP.VIS.form.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgctxt "staff.marc.008.MAP.VIS.form.field_start_pos"
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.help
+msgctxt "staff.marc.008.MAP.VIS.form.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
+msgstr ""
+
+#: staff.marc.008.MAP.VIS.form.short
+msgctxt "staff.marc.008.MAP.VIS.form.short"
+msgid "Form"
+msgstr ""
+
+#: staff.marc.008.SER.alph.desc
+msgid "Original Alphabet or Script of Title"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field
+msgctxt "staff.marc.008.SER.alph.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field_end_pos
+msgctxt "staff.marc.008.SER.alph.field_end_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field_size
+msgctxt "staff.marc.008.SER.alph.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.alph.field_start_pos
+msgctxt "staff.marc.008.SER.alph.field_start_pos"
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.SER.alph.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.alph.short
+msgid "Alph"
+msgstr ""
+
+#: staff.marc.008.SER.cont.desc
+msgctxt "staff.marc.008.SER.cont.desc"
+msgid "Nature of Contents"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field
+msgctxt "staff.marc.008.SER.cont.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_end_pos
+msgctxt "staff.marc.008.SER.cont.field_end_pos"
+msgid "27"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_size
+msgctxt "staff.marc.008.SER.cont.field_size"
+msgid "3"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_start_pos
+msgid "25"
+msgstr ""
+
+#: staff.marc.008.SER.cont.help
+msgctxt "staff.marc.008.SER.cont.help"
+msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.cont.short
+msgctxt "staff.marc.008.SER.cont.short"
+msgid "Cont"
+msgstr ""
+
+#: staff.marc.008.SER.entw.desc
+msgid "Nature of Entire Work"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field
+msgctxt "staff.marc.008.SER.entw.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_end_pos
+msgctxt "staff.marc.008.SER.entw.field_end_pos"
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_size
+msgctxt "staff.marc.008.SER.entw.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.entw.field_start_pos
+msgctxt "staff.marc.008.SER.entw.field_start_pos"
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.SER.entw.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.entw.short
+msgid "EntW"
+msgstr ""
+
+#: staff.marc.008.SER.freq.desc
+msgid "Frequency"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field
+msgctxt "staff.marc.008.SER.freq.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_end_pos
+msgctxt "staff.marc.008.SER.freq.field_end_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_size
+msgctxt "staff.marc.008.SER.freq.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.freq.field_start_pos
+msgctxt "staff.marc.008.SER.freq.field_start_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.SER.freq.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.freq.short
+msgid "Freq"
+msgstr ""
+
+#: staff.marc.008.SER.issn.desc
+msgid "ISSN Center"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field
+msgctxt "staff.marc.008.SER.issn.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_end_pos
+msgctxt "staff.marc.008.SER.issn.field_end_pos"
+msgid "20"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_size
+msgctxt "staff.marc.008.SER.issn.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_start_pos
+msgctxt "staff.marc.008.SER.issn.field_start_pos"
+msgid "20"
+msgstr ""
+
+#: staff.marc.008.SER.issn.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/issn.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.issn.short
+msgctxt "staff.marc.008.SER.issn.short"
+msgid "ISSN"
+msgstr ""
+
+#: staff.marc.008.SER.orig.desc
+msgid "Form of Original Item"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field
+msgctxt "staff.marc.008.SER.orig.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_end_pos
+msgctxt "staff.marc.008.SER.orig.field_end_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_size
+msgctxt "staff.marc.008.SER.orig.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.orig.field_start_pos
+msgctxt "staff.marc.008.SER.orig.field_start_pos"
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.SER.orig.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.orig.short
+msgid "Orig"
+msgstr ""
+
+#: staff.marc.008.SER.regl.desc
+msgid "Regularity"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field
+msgctxt "staff.marc.008.SER.regl.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field_end_pos
+msgctxt "staff.marc.008.SER.regl.field_end_pos"
+msgid "19"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field_size
+msgctxt "staff.marc.008.SER.regl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field_start_pos
+msgctxt "staff.marc.008.SER.regl.field_start_pos"
+msgid "19"
+msgstr ""
+
+#: staff.marc.008.SER.regl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/regl.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.regl.short
+msgid "Regl"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.desc
+msgid "Type of Continuing Resource"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field
+msgctxt "staff.marc.008.SER.srtp.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_end_pos
+msgctxt "staff.marc.008.SER.srtp.field_end_pos"
+msgid "21"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_size
+msgctxt "staff.marc.008.SER.srtp.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.field_start_pos
+msgctxt "staff.marc.008.SER.srtp.field_start_pos"
+msgid "21"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.short
+msgid "SrTp"
+msgstr ""
+
+#: staff.marc.008.SER.succ.desc
+msgid "Entry Convention"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field
+msgctxt "staff.marc.008.SER.succ.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_end_pos
+msgctxt "staff.marc.008.SER.succ.field_end_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_size
+msgctxt "staff.marc.008.SER.succ.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.SER.succ.field_start_pos
+msgctxt "staff.marc.008.SER.succ.field_start_pos"
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.SER.succ.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.succ.short
+msgid "S/L"
+msgstr ""
+
+#: staff.marc.008.ctry.desc
+msgid "Country of Publication, etc."
+msgstr ""
+
+#: staff.marc.008.ctry.field
+msgctxt "staff.marc.008.ctry.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.ctry.field_end_pos
+msgctxt "staff.marc.008.ctry.field_end_pos"
+msgid "17"
+msgstr ""
+
+#: staff.marc.008.ctry.field_size
+msgctxt "staff.marc.008.ctry.field_size"
+msgid "3"
+msgstr ""
+
+#: staff.marc.008.ctry.field_start_pos
+msgid "15"
+msgstr ""
+
+#: staff.marc.008.ctry.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/ctry.shtm"
+msgstr ""
+
+#: staff.marc.008.ctry.short
+msgid "Ctry"
+msgstr ""
+
+#: staff.marc.008.date1.desc
+msgctxt "staff.marc.008.date1.desc"
+msgid "Date 1"
+msgstr ""
+
+#: staff.marc.008.date1.field
+msgctxt "staff.marc.008.date1.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.date1.field_end_pos
+msgid "10"
+msgstr ""
+
+#: staff.marc.008.date1.field_size
+msgctxt "staff.marc.008.date1.field_size"
+msgid "4"
+msgstr ""
+
+#: staff.marc.008.date1.field_start_pos
+msgctxt "staff.marc.008.date1.field_start_pos"
+msgid "7"
+msgstr ""
+
+#: staff.marc.008.date1.short
+msgctxt "staff.marc.008.date1.short"
+msgid "Date 1"
+msgstr ""
+
+#: staff.marc.008.date2.desc
+msgctxt "staff.marc.008.date2.desc"
+msgid "Date 2"
+msgstr ""
+
+#: staff.marc.008.date2.field
+msgctxt "staff.marc.008.date2.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.date2.field_end_pos
+msgid "14"
+msgstr ""
+
+#: staff.marc.008.date2.field_size
+msgctxt "staff.marc.008.date2.field_size"
+msgid "4"
+msgstr ""
+
+#: staff.marc.008.date2.field_start_pos
+msgid "11"
+msgstr ""
+
+#: staff.marc.008.date2.short
+msgctxt "staff.marc.008.date2.short"
+msgid "Date 2"
+msgstr ""
+
+#: staff.marc.008.dates
+msgid "Dates"
+msgstr ""
+
+#: staff.marc.008.dates.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/dates.shtm"
+msgstr ""
+
+#: staff.marc.008.dtst.desc
+msgid "Type of Date/Publication Status"
+msgstr ""
+
+#: staff.marc.008.dtst.field
+msgctxt "staff.marc.008.dtst.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.dtst.field_end_pos
+msgctxt "staff.marc.008.dtst.field_end_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.008.dtst.field_size
+msgctxt "staff.marc.008.dtst.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.dtst.field_start_pos
+msgctxt "staff.marc.008.dtst.field_start_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.008.dtst.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/dtst.shtm"
+msgstr ""
+
+#: staff.marc.008.dtst.short
+msgid "DtSt"
+msgstr ""
+
+#: staff.marc.008.entered.desc
+msgid "Date Entered"
+msgstr ""
+
+#: staff.marc.008.entered.field
+msgctxt "staff.marc.008.entered.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.entered.field_end_pos
+msgctxt "staff.marc.008.entered.field_end_pos"
+msgid "5"
+msgstr ""
+
+#: staff.marc.008.entered.field_size
+msgctxt "staff.marc.008.entered.field_size"
+msgid "6"
+msgstr ""
+
+#: staff.marc.008.entered.field_start_pos
+msgid "0"
+msgstr ""
+
+#: staff.marc.008.entered.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/entered.shtm"
+msgstr ""
+
+#: staff.marc.008.entered.short
+msgid "Entered"
+msgstr ""
+
+#: staff.marc.008.lang.desc
+msgid "Language Code"
+msgstr ""
+
+#: staff.marc.008.lang.field
+msgctxt "staff.marc.008.lang.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.lang.field_end_pos
+msgid "37"
+msgstr ""
+
+#: staff.marc.008.lang.field_size
+msgctxt "staff.marc.008.lang.field_size"
+msgid "3"
+msgstr ""
+
+#: staff.marc.008.lang.field_start_pos
+msgid "35"
+msgstr ""
+
+#: staff.marc.008.lang.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/lang.shtm"
+msgstr ""
+
+#: staff.marc.008.lang.short
+msgid "Lang"
+msgstr ""
+
+#: staff.marc.008.mrec.desc
+msgid "Modified Record"
+msgstr ""
+
+#: staff.marc.008.mrec.field
+msgctxt "staff.marc.008.mrec.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.mrec.field_end_pos
+msgctxt "staff.marc.008.mrec.field_end_pos"
+msgid "38"
+msgstr ""
+
+#: staff.marc.008.mrec.field_size
+msgctxt "staff.marc.008.mrec.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.mrec.field_start_pos
+msgctxt "staff.marc.008.mrec.field_start_pos"
+msgid "38"
+msgstr ""
+
+#: staff.marc.008.mrec.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/mrec.shtm"
+msgstr ""
+
+#: staff.marc.008.mrec.short
+msgid "MRec"
+msgstr ""
+
+#: staff.marc.008.srce.desc
+msgid "Cataloging Source"
+msgstr ""
+
+#: staff.marc.008.srce.field
+msgctxt "staff.marc.008.srce.field"
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.srce.field_end_pos
+msgctxt "staff.marc.008.srce.field_end_pos"
+msgid "39"
+msgstr ""
+
+#: staff.marc.008.srce.field_size
+msgctxt "staff.marc.008.srce.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.srce.field_start_pos
+msgctxt "staff.marc.008.srce.field_start_pos"
+msgid "39"
+msgstr ""
+
+#: staff.marc.008.srce.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/srce.shtm"
+msgstr ""
+
+#: staff.marc.008.srce.short
+msgid "Srce"
+msgstr ""
+
+#: staff.marc.LDR.blvl.desc
+msgid "Bibliographic Level"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field
+msgctxt "staff.marc.LDR.blvl.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_end_pos
+msgctxt "staff.marc.LDR.blvl.field_end_pos"
+msgid "7"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_size
+msgctxt "staff.marc.LDR.blvl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field_start_pos
+msgctxt "staff.marc.LDR.blvl.field_start_pos"
+msgid "7"
+msgstr ""
+
+#: staff.marc.LDR.blvl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
+msgstr ""
+
+#: staff.marc.LDR.blvl.short
+msgid "BLvl"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.desc
+msgid "Type of Control"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field
+msgctxt "staff.marc.LDR.ctrl.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field_end_pos
+msgctxt "staff.marc.LDR.ctrl.field_end_pos"
+msgid "8"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field_size
+msgctxt "staff.marc.LDR.ctrl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field_start_pos
+msgctxt "staff.marc.LDR.ctrl.field_start_pos"
+msgid "8"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/ctrl.shtm"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.short
+msgid "Ctrl"
+msgstr ""
+
+#: staff.marc.LDR.desc.desc
+msgid "Descriptive Cataloging Form"
+msgstr ""
+
+#: staff.marc.LDR.desc.field
+msgctxt "staff.marc.LDR.desc.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_end_pos
+msgctxt "staff.marc.LDR.desc.field_end_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_size
+msgctxt "staff.marc.LDR.desc.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.desc.field_start_pos
+msgctxt "staff.marc.LDR.desc.field_start_pos"
+msgid "18"
+msgstr ""
+
+#: staff.marc.LDR.desc.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
+msgstr ""
+
+#: staff.marc.LDR.desc.short
+msgid "Desc"
+msgstr ""
+
+#: staff.marc.LDR.elvl.desc
+msgid "Encoding Level"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field
+msgctxt "staff.marc.LDR.elvl.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_end_pos
+msgctxt "staff.marc.LDR.elvl.field_end_pos"
+msgid "17"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_size
+msgctxt "staff.marc.LDR.elvl.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.elvl.field_start_pos
+msgctxt "staff.marc.LDR.elvl.field_start_pos"
+msgid "17"
+msgstr ""
+
+#: staff.marc.LDR.elvl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
+msgstr ""
+
+#: staff.marc.LDR.elvl.short
+msgid "ELvl"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.desc
+msgid "Record Status"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field
+msgctxt "staff.marc.LDR.rec_stat.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_end_pos
+msgctxt "staff.marc.LDR.rec_stat.field_end_pos"
+msgid "5"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_size
+msgctxt "staff.marc.LDR.rec_stat.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.field_start_pos
+msgctxt "staff.marc.LDR.rec_stat.field_start_pos"
+msgid "5"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.short
+msgid "Rec stat"
+msgstr ""
+
+#: staff.marc.LDR.type.desc
+msgid "Type of Record"
+msgstr ""
+
+#: staff.marc.LDR.type.field
+msgctxt "staff.marc.LDR.type.field"
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.type.field_end_pos
+msgctxt "staff.marc.LDR.type.field_end_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.LDR.type.field_size
+msgctxt "staff.marc.LDR.type.field_size"
+msgid "1"
+msgstr ""
+
+#: staff.marc.LDR.type.field_start_pos
+msgctxt "staff.marc.LDR.type.field_start_pos"
+msgid "6"
+msgstr ""
+
+#: staff.marc.LDR.type.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
+msgstr ""
+
+#: staff.marc.LDR.type.short
+msgctxt "staff.marc.LDR.type.short"
+msgid "Type"
+msgstr ""
+
+#: staff.marc.close.editor.key
+msgid "W"
+msgstr ""
+
+#: staff.marc.display
+msgctxt "staff.marc.display"
+msgid "Display"
+msgstr ""
+
+#: staff.marc.display.control_fields
+msgid "Toggle Control and Data Fields"
+msgstr ""
+
+#: staff.marc.display.control_fields.key
+msgctxt "staff.marc.display.control_fields.key"
+msgid "F"
+msgstr ""
+
+#: staff.marc.display.cover_art
+msgid "Toggle Cover Art"
+msgstr ""
+
+#: staff.marc.display.cover_art.key
+msgctxt "staff.marc.display.cover_art.key"
+msgid "A"
+msgstr ""
+
+#: staff.marc.display.explain
+msgid "Explain Errors"
+msgstr ""
+
+#: staff.marc.display.explain.key
+msgid "X"
+msgstr ""
+
+#: staff.marc.display.fixed.BKS
+msgid "Fixed Fields as BKS"
+msgstr ""
+
+#: staff.marc.display.fixed.BKS.key
+msgctxt "staff.marc.display.fixed.BKS.key"
+msgid "B"
+msgstr ""
+
+#: staff.marc.display.fixed.COM
+msgid "Fixed Fields as COM"
+msgstr ""
+
+#: staff.marc.display.fixed.COM.key
+msgctxt "staff.marc.display.fixed.COM.key"
+msgid "O"
+msgstr ""
+
+#: staff.marc.display.fixed.MAP
+msgid "Fixed Fields as MAP"
+msgstr ""
+
+#: staff.marc.display.fixed.MAP.key
+msgctxt "staff.marc.display.fixed.MAP.key"
+msgid "P"
+msgstr ""
+
+#: staff.marc.display.fixed.MIX
+msgid "Fixed Fields as MIX"
+msgstr ""
+
+#: staff.marc.display.fixed.MIX.key
+msgctxt "staff.marc.display.fixed.MIX.key"
+msgid "M"
+msgstr ""
+
+#: staff.marc.display.fixed.REC
+msgid "Fixed Fields as REC"
+msgstr ""
+
+#: staff.marc.display.fixed.REC.key
+msgctxt "staff.marc.display.fixed.REC.key"
+msgid "R"
+msgstr ""
+
+#: staff.marc.display.fixed.SCO
+msgid "Fixed Fields as SCO"
+msgstr ""
+
+#: staff.marc.display.fixed.SCO.key
+msgctxt "staff.marc.display.fixed.SCO.key"
+msgid "C"
+msgstr ""
+
+#: staff.marc.display.fixed.SER
+msgid "Fixed Fields as SER"
+msgstr ""
+
+#: staff.marc.display.fixed.SER.key
+msgctxt "staff.marc.display.fixed.SER.key"
+msgid "S"
+msgstr ""
+
+#: staff.marc.display.fixed.VIS
+msgid "Fixed Fields as VIS"
+msgstr ""
+
+#: staff.marc.display.fixed.VIS.key
+msgctxt "staff.marc.display.fixed.VIS.key"
+msgid "V"
+msgstr ""
+
+#: staff.marc.display.key
+msgctxt "staff.marc.display.key"
+msgid "D"
+msgstr ""
+
+#: staff.marc.display.legend
+msgid "Legend"
+msgstr ""
+
+#: staff.marc.display.legend.key
+msgctxt "staff.marc.display.legend.key"
+msgid "L"
+msgstr ""
+
+#: staff.marc.display.meta_data
+msgid "Toggle Metadata"
+msgstr ""
+
+#: staff.marc.display.meta_data.key
+msgctxt "staff.marc.display.meta_data.key"
+msgid "E"
+msgstr ""
+
+#: staff.marc.editor.keys.help
+msgid ""
+"Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = "
+"Delete Row;"
+msgstr ""
+
+#: staff.marc.file
+msgctxt "staff.marc.file"
+msgid "MARC"
+msgstr ""
+
+#: staff.marc.file.close
+msgid "Close Editor"
+msgstr ""
+
+#: staff.marc.file.close.key
+msgctxt "staff.marc.file.close.key"
+msgid "C"
+msgstr ""
+
+#: staff.marc.file.export
+msgctxt "staff.marc.file.export"
+msgid "Export"
+msgstr ""
+
+#: staff.marc.file.export.key
+msgctxt "staff.marc.file.export.key"
+msgid "E"
+msgstr ""
+
+#: staff.marc.file.key
+msgctxt "staff.marc.file.key"
+msgid "M"
+msgstr ""
+
+#: staff.marc.file.publish
+msgid "Save (to DB)"
+msgstr ""
+
+#: staff.marc.file.publish.key
+msgctxt "staff.marc.file.publish.key"
+msgid "S"
+msgstr ""
+
+#: staff.marc.file.reload
+msgid "Reload"
+msgstr ""
+
+#: staff.marc.file.reload.key
+msgctxt "staff.marc.file.reload.key"
+msgid "R"
+msgstr ""
+
+#: staff.marc.file.validate
+msgid "Validate"
+msgstr ""
+
+#: staff.marc.file.validate.key
+msgctxt "staff.marc.file.validate.key"
+msgid "V"
+msgstr ""
+
+#: staff.marc.groupbox.control
+msgid "Control Fields"
+msgstr ""
+
+#: staff.marc.groupbox.cover
+msgid "Cover Art"
+msgstr ""
+
+#: staff.marc.groupbox.data
+msgid "Data Fields"
+msgstr ""
+
+#: staff.marc.groupbox.fixed
+msgid "Fixed Fields"
+msgstr ""
+
+#: staff.marc.groupbox.meta
+msgid "Metadata (NOT YET IMPLEMENTED)"
+msgstr ""
+
+#: staff.marc_editor_interface_label
+msgctxt "staff.marc_editor_interface_label"
+msgid "MARC"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgctxt "staff.mbts_balance_owed_label"
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill # "
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgctxt "staff.mbts_total_owed_label"
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgctxt "staff.mbts_total_paid_label"
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_xact_finish_label
+msgctxt "staff.mbts_xact_finish_label"
+msgid "Finish"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgctxt "staff.mbts_xact_start_label"
+msgid "Start"
+msgstr ""
+
+#: staff.mvr_label_author
+msgctxt "staff.mvr_label_author"
+msgid "Author"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Document ID"
+msgstr ""
+
+#: staff.mvr_label_title
+msgctxt "staff.mvr_label_title"
+msgid "Title"
+msgstr ""
+
+#: staff.next.range
+msgid "Next"
+msgstr ""
+
+#: staff.next.range.key
+msgctxt "staff.next.range.key"
+msgid "N"
+msgstr ""
+
+#: staff.opac_navigator_interface_label
+msgid "CAtalog Navigator"
+msgstr ""
+
+#: staff.patron.context_display
+msgctxt "staff.patron.context_display"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.patron_barcode_entry_interface_label
+msgctxt "staff.patron_barcode_entry_interface_label"
+msgid "Patron"
+msgstr ""
+
+#: staff.patron_display.bills.label
+msgid "Bills:"
+msgstr ""
+
+#: staff.patron_display.checkout.auto_print.label
+#: staff.patron_display.checkout.auto_print.accesskey
+msgctxt "staff.patron_display.checkout.auto_print.label staff.patron_display.checkout.auto_print.accesskey"
+msgid "&Auto-Print"
+msgstr ""
+
+#: staff.patron_display.checkout.done.label
+#: staff.patron_display.checkout.done.accesskey
+msgctxt "staff.patron_display.checkout.done.label staff.patron_display.checkout.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt.label
+msgid "Print Receipt"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt.accesskey
+msgctxt "staff.patron_display.checkout.print_receipt.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_display.checkout.reprint_receipt_label
+msgid "Re-Print Last Receipt"
+msgstr ""
+
+#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgctxt "staff.patron_display.checkout.reprint_receipt_label.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.patron_display.checkout.scan.label
+#: staff.patron_display.checkout.scan.accesskey
+msgctxt "staff.patron_display.checkout.scan.label staff.patron_display.checkout.scan.accesskey"
+msgid "Enter B&arcode:"
+msgstr ""
+
+#: staff.patron_display.checkout.submit.label
+#: staff.patron_display.checkout.submit.accesskey
+msgctxt "staff.patron_display.checkout.submit.label staff.patron_display.checkout.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.patron_display.checkouts.label
+msgid "Check Outs:"
+msgstr ""
+
+#: staff.patron_display.checkouts_overdue.label
+msgid "Overdue:"
+msgstr ""
+
+#: staff.patron_display.contact.caption
+msgid "Identity & Contact Info"
+msgstr ""
+
+#: staff.patron_display.credit.label
+msgid "Credit:"
+msgstr ""
+
+#: staff.patron_display.date_of_birth.label
+msgctxt "staff.patron_display.date_of_birth.label"
+msgid "Date of Birth:"
+msgstr ""
+
+#: staff.patron_display.day_phone.label
+msgid "Day Phone:"
+msgstr ""
+
+#: staff.patron_display.email.label
+msgctxt "staff.patron_display.email.label"
+msgid "Email:"
+msgstr ""
+
+#: staff.patron_display.evening_phone.label
+msgid "Evening Phone:"
+msgstr ""
+
+#: staff.patron_display.family_name.label
+msgctxt "staff.patron_display.family_name.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.patron_display.first_given_name.label
+msgctxt "staff.patron_display.first_given_name.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron_display.holds.label
+msgid "Holds:"
+msgstr ""
+
+#: staff.patron_display.holds_available.label
+msgctxt "staff.patron_display.holds_available.label"
+msgid "Available:"
+msgstr ""
+
+#: staff.patron_display.home_ou.label
+msgctxt "staff.patron_display.home_ou.label"
+msgid "Home Library:"
+msgstr ""
+
+#: staff.patron_display.ident1.label
+msgid "ID 1:"
+msgstr ""
+
+#: staff.patron_display.ident2.label
+msgid "ID 2:"
+msgstr ""
+
+#: staff.patron_display.items.print_receipt.label
+#: staff.patron_display.items.print_receipt.accesskey
+msgid "&Print Receipt"
+msgstr ""
+
+#: staff.patron_display.items_claimed_returned.label
+msgid "Items Claimed Returned:"
+msgstr ""
+
+#: staff.patron_display.library_card.label
+msgid "Library Card:"
+msgstr ""
+
+#: staff.patron_display.mailing.city.label
+msgid "Mailing City:"
+msgstr ""
+
+#: staff.patron_display.mailing.post_code.label
+msgid "Mailing ZIP:"
+msgstr ""
+
+#: staff.patron_display.mailing.state.label
+msgid "Mailing State:"
+msgstr ""
+
+#: staff.patron_display.mailing.street1.label
+msgid "Mailing Address 1:"
+msgstr ""
+
+#: staff.patron_display.mailing.street2.label
+msgid "Mailing Address 2:"
+msgstr ""
+
+#: staff.patron_display.mailing_address
+msgctxt "staff.patron_display.mailing_address"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.patron_display.name.label
+msgctxt "staff.patron_display.name.label"
+msgid "Patron Name"
+msgstr ""
+
+#: staff.patron_display.other_phone.label
+msgid "Other Phone:"
+msgstr ""
+
+#: staff.patron_display.physical.city.label
+msgid "Physical City:"
+msgstr ""
+
+#: staff.patron_display.physical.post_code.label
+msgid "Physical ZIP:"
+msgstr ""
+
+#: staff.patron_display.physical.state.label
+msgid "Physical State:"
+msgstr ""
+
+#: staff.patron_display.physical.street1.label
+msgid "Physical Address 1:"
+msgstr ""
+
+#: staff.patron_display.physical.street2.label
+msgid "Physical Address 2:"
+msgstr ""
+
+#: staff.patron_display.physical_address
+msgctxt "staff.patron_display.physical_address"
+msgid "Physical Address"
+msgstr ""
+
+#: staff.patron_display.profile.label
+msgctxt "staff.patron_display.profile.label"
+msgid "Profile:"
+msgstr ""
+
+#: staff.patron_display.second_given_name.label
+msgctxt "staff.patron_display.second_given_name.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron_display.standing.label
+msgid "Standing:"
+msgstr ""
+
+#: staff.patron_display.status.caption
+msgctxt "staff.patron_display.status.caption"
+msgid "Status"
+msgstr ""
+
+#: staff.patron_display_interface_label
+msgctxt "staff.patron_display_interface_label"
+msgid "Patron"
+msgstr ""
+
+#: staff.patron_editor_interface_label
+msgid "Patron Edit"
+msgstr ""
+
+#: staff.patron_interface_label
+msgid "Patron "
+msgstr ""
+
+#: staff.patron_navbar.bills
+msgctxt "staff.patron_navbar.bills"
+msgid "Bills"
+msgstr ""
+
+#: staff.patron_navbar.bills.accesskey
+msgctxt "staff.patron_navbar.bills.accesskey"
+msgid "B"
+msgstr ""
+
+#: staff.patron_navbar.checkout
+msgctxt "staff.patron_navbar.checkout"
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron_navbar.checkout.accesskey
+msgctxt "staff.patron_navbar.checkout.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron_navbar.edit
+msgctxt "staff.patron_navbar.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.patron_navbar.edit.accesskey
+msgctxt "staff.patron_navbar.edit.accesskey"
+msgid "E"
+msgstr ""
+
+#: staff.patron_navbar.holds
+msgid "Holds"
+msgstr ""
+
+#: staff.patron_navbar.holds.accesskey
+msgctxt "staff.patron_navbar.holds.accesskey"
+msgid "H"
+msgstr ""
+
+#: staff.patron_navbar.info
+msgid "Info"
+msgstr ""
+
+#: staff.patron_navbar.info.accesskey
+msgid "o"
+msgstr ""
+
+#: staff.patron_navbar.items
+msgid "Items Out"
+msgstr ""
+
+#: staff.patron_navbar.items.accesskey
+msgctxt "staff.patron_navbar.items.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.patron_navbar.items.problem_items.caption
+msgid "Lost, Claimed Returned, Long Overdue, Has Unpaid Billings"
+msgstr ""
+
+#: staff.patron_navbar.refresh
+msgctxt "staff.patron_navbar.refresh"
+msgid "Refresh"
+msgstr ""
+
+#: staff.patron_navbar.refresh.accesskey
+msgctxt "staff.patron_navbar.refresh.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.patron_navbar.retrieve
+msgctxt "staff.patron_navbar.retrieve"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.patron_navbar.retrieve.accesskey
+msgctxt "staff.patron_navbar.retrieve.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.patron_register_interface_label
+msgid "New Patron"
+msgstr ""
+
+#: staff.patron_search_form.caption
+msgid "Search for Patron"
+msgstr ""
+
+#: staff.patron_search_form.city.accesskey
+msgctxt "staff.patron_search_form.city.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.city.label
+msgid "City:"
+msgstr ""
+
+#: staff.patron_search_form.clear.label
+#: staff.patron_search_form.clear.accesskey
+msgctxt "staff.patron_search_form.clear.label staff.patron_search_form.clear.accesskey"
+msgid "&Clear Form"
+msgstr ""
+
+#: staff.patron_search_form.email.accesskey
+msgctxt "staff.patron_search_form.email.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.email.label
+msgctxt "staff.patron_search_form.email.label"
+msgid "Email:"
+msgstr ""
+
+#: staff.patron_search_form.family_name.label
+#: staff.patron_search_form.family_name.accesskey
+msgid "&Last Name:"
+msgstr ""
+
+#: staff.patron_search_form.first_given_name.accesskey
+msgctxt "staff.patron_search_form.first_given_name.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.first_given_name.label
+msgctxt "staff.patron_search_form.first_given_name.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron_search_form.ident.accesskey
+msgctxt "staff.patron_search_form.ident.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.ident.label
+msgid "ID:"
+msgstr ""
+
+#: staff.patron_search_form.phone.label
+#: staff.patron_search_form.phone.accesskey
+msgid "&Phone:"
+msgstr ""
+
+#: staff.patron_search_form.post_code.accesskey
+msgctxt "staff.patron_search_form.post_code.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.post_code.label
+msgid "ZIP:"
+msgstr ""
+
+#: staff.patron_search_form.search.label
+#: staff.patron_search_form.search.accesskey
+msgctxt "staff.patron_search_form.search.label staff.patron_search_form.search.accesskey"
+msgid "&Search"
+msgstr ""
+
+#: staff.patron_search_form.second_given_name.accesskey
+msgctxt "staff.patron_search_form.second_given_name.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.second_given_name.label
+msgctxt "staff.patron_search_form.second_given_name.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron_search_form.state.accesskey
+msgctxt "staff.patron_search_form.state.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.state.label
+msgid "State:"
+msgstr ""
+
+#: staff.patron_search_form.street1.label
+#: staff.patron_search_form.street1.accesskey
+msgid "A&ddress 1:"
+msgstr ""
+
+#: staff.patron_search_form.street2.accesskey
+msgctxt "staff.patron_search_form.street2.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.patron_search_form.street2.label
+msgid "Address 2:"
+msgstr ""
+
+#: staff.patron_search_interface_label
+msgid "Patron Search"
+msgstr ""
+
+#: staff.patron_stat_cat_editor_interface_label
+msgctxt "staff.patron_stat_cat_editor_interface_label"
+msgid "Patron Statistical Categories"
+msgstr ""
+
+#: staff.previous.range
+msgid "Previous"
+msgstr ""
+
+#: staff.previous.range.key
+msgctxt "staff.previous.range.key"
+msgid "P"
+msgstr ""
+
+#: staff.receipt_template_editor_interface_label
+msgid "Receipts"
+msgstr ""
+
+#: staff.record_list.author
+msgctxt "staff.record_list.author"
+msgid "Author"
+msgstr ""
+
+#: staff.record_list.copy_count
+msgid "Copiesˤ"
+msgstr ""
+
+#: staff.record_list.isbn
+msgctxt "staff.record_list.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: staff.record_list.issn
+msgctxt "staff.record_list.issn"
+msgid "ISSN"
+msgstr ""
+
+#: staff.record_list.publisher
+msgctxt "staff.record_list.publisher"
+msgid "Publisher"
+msgstr ""
+
+#: staff.record_list.pubyear
+msgctxt "staff.record_list.pubyear"
+msgid "Pub Year"
+msgstr ""
+
+#: staff.record_list.tcn
+msgctxt "staff.record_list.tcn"
+msgid "TCN"
+msgstr ""
+
+#: staff.record_list.title
+msgctxt "staff.record_list.title"
+msgid "Title"
+msgstr ""
+
+#: staff.record_list.win_title
+msgctxt "staff.record_list.win_title"
+msgid "Cataloging"
+msgstr ""
+
+#: staff.retrieving.record
+msgctxt "staff.retrieving.record"
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.survey.wizard.page1
+msgid "Initial Settings"
+msgstr ""
+
+#: staff.survey.wizard.page2
+msgid "Add Questions for Survey:"
+msgstr ""
+
+#: staff.survey.wizard.title
+msgid "Add a Survey Wizard"
+msgstr ""
+
+#: staff.survey_admin_interface_label
+msgid "Survey Administration"
+msgstr ""
+
+#: staff.volume.attr.callnumber
+msgctxt "staff.volume.attr.callnumber"
+msgid "Call Number"
+msgstr ""
+
+#: staff.volume.attr.owning_lib
+msgctxt "staff.volume.attr.owning_lib"
+msgid "Owning Library"
+msgstr ""
+
+#: staff.volume.wizard.page1
+msgid "Entering Volumes"
+msgstr ""
+
+#: staff.volume.wizard.page2
+msgid "Entering Copies"
+msgstr ""
+
+#: staff.volume.wizard.page3
+msgid "Entering Barcodes"
+msgstr ""
+
+#: staff.volume.wizard.page4
+msgid "Entering Copy-Level Attribute Defaults"
+msgstr ""
+
+#: staff.volume.wizard.title
+msgid "Batch Add Volumes or Copies Wizard"
+msgstr ""
+
+#: staff.xuleditor_label
+msgid "XUL TEST"
+msgstr ""
+
+#: staff.z39_50.search_class.author
+msgctxt "staff.z39_50.search_class.author"
+msgid "Author"
+msgstr ""
+
+#: staff.z39_50.search_class.isbn
+msgctxt "staff.z39_50.search_class.isbn"
+msgid "ISBN"
+msgstr ""
+
+#: staff.z39_50.search_class.issn
+msgctxt "staff.z39_50.search_class.issn"
+msgid "ISSN"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers or Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.ser
+msgctxt "staff.z39_50.search_class.item_type.ser"
+msgid "Serials"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "PubDate"
+msgstr ""
+
+#: staff.z39_50.search_class.publisher
+msgctxt "staff.z39_50.search_class.publisher"
+msgid "Publisher"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50.search_class.title
+msgctxt "staff.z39_50.search_class.title"
+msgid "Title"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 Import"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.caption
+msgid "Offline Sessions"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.refresh.accesskey
+msgctxt "staff.server.admin.offline.xacts.refresh.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.create.label
+msgctxt "staff.server.admin.offline.xacts.create.label"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.execute.label
+msgid "Process"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.update.label
+msgid "Update"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.status.label
+msgid "Uploaded Transaction Files"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.status.desc
+msgid ""
+"The transactions from the following workstations have been uploaded, but not "
+"processed. When all expected workstations are present here, use the "
+"Process button above."
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.label
+msgid "Exceptions"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.desc
+msgid ""
+"All transactions from this session have been processed. The errors, if any, "
+"are listed below."
+msgstr ""
+
+#: staff.server.admin.offline.xacts.export.label
+msgid "Export List"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.print.label
+msgctxt "staff.server.admin.offline.xacts.print.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_item.label
+msgid "Retrieve Item"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_patron.label
+msgctxt "staff.server.admin.offline.xacts.get_patron.label"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.get_details.label
+msgid "Details"
+msgstr ""
+
+#: staff.server.admin.offline.xacts.errors.caption
+msgid "The session is now processing. Hit Refresh to check its status."
+msgstr ""
+
+#: staff.server.admin.font.sound.caption
+msgid "Adjust Sound"
+msgstr ""
+
+#: staff.server.admin.font.sound.checkbox
+msgid "Disable sound?"
+msgstr ""
+
+#: staff.server.admin.save_disk
+msgid "Save to Disk"
+msgstr ""
+
+#: staff.server.admin.font.global.caption
+msgid "Adjust Global Font"
+msgstr ""
+
+#: staff.server.admin.font.smaller
+msgid "Smaller than Default"
+msgstr ""
+
+#: staff.server.admin.font.default
+msgid "Default"
+msgstr ""
+
+#: staff.server.admin.font.larger
+msgid "Larger than Default"
+msgstr ""
+
+#: staff.server.admin.font.xxsmall
+msgid "XX-Small"
+msgstr ""
+
+#: staff.server.admin.font.xsmall
+msgid "X-Small"
+msgstr ""
+
+#: staff.server.admin.font.small
+msgid "Small"
+msgstr ""
+
+#: staff.server.admin.font.medium
+msgid "Medium"
+msgstr ""
+
+#: staff.server.admin.font.large
+msgid "Large"
+msgstr ""
+
+#: staff.server.admin.font.xlarge
+msgid "X-Large"
+msgstr ""
+
+#: staff.server.admin.font.xxlarge
+msgid "XX-Large"
+msgstr ""
+
+#. "5pt" is an abbreviation for "5 point font size"
+#: staff.server.admin.font.5pt
+msgid "5pt"
+msgstr ""
+
+#. "6pt" is an abbreviation for "6 point font size"
+#: staff.server.admin.font.6pt
+msgid "6pt"
+msgstr ""
+
+#. "7pt" is an abbreviation for "7 point font size"
+#: staff.server.admin.font.7pt
+msgid "7pt"
+msgstr ""
+
+#. "8pt" is an abbreviation for "8 point font size"
+#: staff.server.admin.font.8pt
+msgid "8pt"
+msgstr ""
+
+#. "9pt" is an abbreviation for "9 point font size"
+#: staff.server.admin.font.9pt
+msgid "9pt"
+msgstr ""
+
+#. "10pt" is an abbreviation for "10 point font size"
+#: staff.server.admin.font.10pt
+msgid "10pt"
+msgstr ""
+
+#. "11pt" is an abbreviation for "11 point font size"
+#: staff.server.admin.font.11pt
+msgid "11pt"
+msgstr ""
+
+#. "12pt" is an abbreviation for "12 point font size"
+#: staff.server.admin.font.12pt
+msgid "12pt"
+msgstr ""
+
+#. "13pt" is an abbreviation for "13 point font size"
+#: staff.server.admin.font.13pt
+msgid "13pt"
+msgstr ""
+
+#. "14pt" is an abbreviation for "14 point font size"
+#: staff.server.admin.font.14pt
+msgid "14pt"
+msgstr ""
+
+#. "15pt" is an abbreviation for "15 point font size"
+#: staff.server.admin.font.15pt
+msgid "15pt"
+msgstr ""
+
+#. "16pt" is an abbreviation for "16 point font size"
+#: staff.server.admin.font.16pt
+msgid "16pt"
+msgstr ""
+
+#. "17pt" is an abbreviation for "17 point font size"
+#: staff.server.admin.font.17pt
+msgid "17pt"
+msgstr ""
+
+#. "18pt" is an abbreviation for "18 point font size"
+#: staff.server.admin.font.18pt
+msgid "18pt"
+msgstr ""
+
+#: staff.server.admin.font.restore
+msgid "Restore Default"
+msgstr ""
+
+#: staff.server.admin.transit.filter.caption
+msgid "Transit Filter"
+msgstr ""
+
+#: staff.server.admin.transit.library.label
+msgid "Transit Library"
+msgstr ""
+
+#: staff.server.admin.transit.to.label
+msgid "Transit to"
+msgstr ""
+
+#: staff.server.admin.transit.from.label
+msgid "Transit from"
+msgstr ""
+
+#: staff.server.admin.transit.date.label
+msgid "Transit Date falls between"
+msgstr ""
+
+#: staff.server.admin.transit.date.today
+msgid "Today"
+msgstr ""
+
+#: staff.server.admin.transit.date.week
+msgid "Today - 7 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.2weeks
+msgid "Today - 14 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.3weeks
+msgid "Today - 21 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.30days
+msgid "Today - 30 days"
+msgstr ""
+
+#: staff.server.admin.transit.date.start
+msgid "The Beginning"
+msgstr ""
+
+#: staff.server.admin.transit.retrieve.label
+#: staff.server.admin.transit.retrieve.accesskey
+msgid "Retrieve &Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.label
+msgctxt "staff.server.admin.transit.list.label"
+msgid "Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.print
+msgid "Print Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.actions
+msgid "Actions for Selected Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.actions.accesskey
+msgctxt "staff.server.admin.transit.list.actions.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.server.admin.transit.list.copy.label
+#: staff.server.admin.transit.list.copy.accesskey
+msgctxt "staff.server.admin.transit.list.copy.label staff.server.admin.transit.list.copy.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.server.admin.transit.list.add.label
+#: staff.server.admin.transit.list.add.accesskey
+msgctxt "staff.server.admin.transit.list.add.label staff.server.admin.transit.list.add.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.server.admin.transit.list.show.label
+#: staff.server.admin.transit.list.show.accesskey
+msgctxt "staff.server.admin.transit.list.show.label staff.server.admin.transit.list.show.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.server.admin.transit.list.details.label
+#: staff.server.admin.transit.list.details.accesskey
+msgctxt "staff.server.admin.transit.list.details.label staff.server.admin.transit.list.details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.server.admin.transit.list.circs.label
+#: staff.server.admin.transit.list.circs.accesskey
+msgctxt "staff.server.admin.transit.list.circs.label staff.server.admin.transit.list.circs.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.server.admin.transit.list.edit.label
+#: staff.server.admin.transit.list.edit.accesskey
+msgctxt "staff.server.admin.transit.list.edit.label staff.server.admin.transit.list.edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.server.admin.transit.list.abort.label
+msgctxt "staff.server.admin.transit.list.abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.server.admin.transit.list.save.label
+msgctxt "staff.server.admin.transit.list.save.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.server.admin.cash.title
+msgid "Evergreen: Cash Reports"
+msgstr ""
+
+#: staff.server.admin.cash.welcome
+msgctxt "staff.server.admin.cash.welcome"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.cash.start_date
+msgid "Start Date:"
+msgstr ""
+
+#: staff.server.admin.cash.date.select
+msgctxt "staff.server.admin.cash.date.select"
+msgid "Date selector"
+msgstr ""
+
+#: staff.server.admin.cash.end_date
+msgid "End Date:"
+msgstr ""
+
+#: staff.server.admin.cash.date_format
+msgid "(YYYY-MM-DD)"
+msgstr ""
+
+#: staff.server.admin.cash.view
+msgid "View reports for : "
+msgstr ""
+
+#: staff.server.admin.cash.submit
+msgctxt "staff.server.admin.cash.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.cash.desk
+msgid "Desk Payments"
+msgstr ""
+
+#: staff.server.admin.cash.user
+msgid "User Payments"
+msgstr ""
+
+#: staff.server.admin.closed_dates.title
+msgid "Evergreen: Library Closed Dates Editor"
+msgstr ""
+
+#: staff.server.admin.closed_dates.welcome
+msgctxt "staff.server.admin.closed_dates.welcome"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.title
+msgid " Closed Dates Editor "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.for
+msgid "Edit Closed Dates for: "
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.duration
+msgid "Closed Duration"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.reason
+msgid "Reason for Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.delete
+msgctxt "staff.server.admin.closed_dates.editor.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.allmultiday.delete
+msgid "delete"
+msgstr ""
+
+#. Translators: do not translate "<b>YYYY-MM-DD</b>" or "<b>HH:MM</b>"
+#: staff.server.admin.closed_dates.editor.allmultiday.format
+msgid ""
+"Note: All dates must have the form <b>YYYY-MM-DD</b>. Times must have the "
+"form <b>HH:MM</b>"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.allday
+msgid "Add Single Day Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.multiday
+msgid "Add Multiple Date Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.add.detailed
+msgid "Add Detailed Closing"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.start
+msgid "Start Date"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.start
+msgid "Start Time"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.end
+msgid "End Date"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.end
+msgid "End Time"
+msgstr ""
+
+#: staff.server.admin.closed_dates.allday.label
+msgid "All Day"
+msgstr ""
+
+#: staff.server.admin.closed_dates.editor.reason.label
+msgid "Reason for closing: "
+msgstr ""
+
+#: staff.server.admin.closed_dates.apply_all
+msgid "Apply to all of my libraries"
+msgstr ""
+
+#: staff.server.admin.closed_dates.save
+msgctxt "staff.server.admin.closed_dates.save"
+msgid "Save"
+msgstr ""
+
+#: staff.server.admin.closed_dates.cancel
+msgctxt "staff.server.admin.closed_dates.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.closed_dates.confirm_delete
+msgid "Are you sure you wish to delete the selected close date?"
+msgstr ""
+
+#: staff.server.admin.closed_dates.date.invalid
+msgid "Invalid date format"
+msgstr ""
+
+#: staff.server.admin.closed_dates.time.invalid
+msgid "Invalid time format"
+msgstr ""
+
+#: staff.server.admin.closed_dates.success
+msgid "Closed date successfully updated"
+msgstr ""
+
+#: staff.server.admin.copy_locations.title
+msgid "Evergreen: Copy Locations Editor"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor
+msgid " Copy Locations Editor "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.create
+msgid "Create a new copy location"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.name
+msgid "Name: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.holdable.label
+msgid "Holdable: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.yes
+msgctxt "staff.server.admin.copy_locations.editor.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.no
+msgctxt "staff.server.admin.copy_locations.editor.no"
+msgid "No"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.opac_visible.label
+msgid "OPAC Visible: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.circulate.label
+msgid "Circulate: "
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.library.label
+msgid "Owning Library:"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.library
+msgctxt "staff.server.admin.copy_locations.editor.library"
+msgid "Owning Library"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.holdable
+msgid "Holdable"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.help
+msgctxt "staff.server.admin.copy_locations.editor.help"
+msgid "Help"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.opac_visible
+msgid "OPAC Visible"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.circulate
+msgctxt "staff.server.admin.copy_locations.editor.circulate"
+msgid "Circulate"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.edit
+msgctxt "staff.server.admin.copy_locations.editor.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.delete
+msgctxt "staff.server.admin.copy_locations.editor.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.help.holdable
+msgid ""
+"If a copy location is 'Holdable', copies in that location may have holds "
+"placed on them."
+msgstr ""
+
+#: staff.server.admin.copy_locations.editor.delete.confirm
+msgid ""
+"Are you sure you wish to delete the selected copy location? Note: If copies "
+"are currently attached to this location, the delete operation will fail."
+msgstr ""
+
+#: staff.server.admin.copy_locations.submit
+msgctxt "staff.server.admin.copy_locations.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.copy_locations.cancel
+msgctxt "staff.server.admin.copy_locations.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.copy_locations.update_success
+msgid "Update Succeeded"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title
+msgid "Evergreen Holds Pull List"
+msgstr ""
+
+#. This will be followed by the org_unit name
+#: staff.server.admin.hold_pull.header
+msgid "Evergreen Holds Pull List : "
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.hold_pull.greeting
+msgctxt "staff.server.admin.hold_pull.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.hold_pull.sort.note
+msgid "Note: Click on a column header to sort the column"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title.label
+msgctxt "staff.server.admin.hold_pull.title.label"
+msgid "Title"
+msgstr ""
+
+#: staff.server.admin.hold_pull.author
+msgctxt "staff.server.admin.hold_pull.author"
+msgid "Author"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy_location
+msgid "Copy Location"
+msgstr ""
+
+#: staff.server.admin.hold_pull.call_number
+msgctxt "staff.server.admin.hold_pull.call_number"
+msgid "Call Number"
+msgstr ""
+
+#: staff.server.admin.hold_pull.barcode
+msgctxt "staff.server.admin.hold_pull.barcode"
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy
+msgctxt "staff.server.admin.hold_pull.copy"
+msgid "Copy Number"
+msgstr ""
+
+#: staff.server.admin.hold_pull.format
+msgctxt "staff.server.admin.hold_pull.format"
+msgid "Format"
+msgstr ""
+
+#: staff.server.admin.hold_pull.patron_barcode
+msgid "Patron Barcode"
+msgstr ""
+
+#: staff.server.admin.hold_pull.hold_date
+msgid "Hold Placement Date"
+msgstr ""
+
+#: staff.server.admin.hold_pull.hold_type
+msgid "Hold Type"
+msgstr ""
+
+#: staff.server.admin.hold_pull.book
+msgid "Book"
+msgstr ""
+
+#: staff.server.admin.hold_pull.large_book
+msgid "Large Print Book"
+msgstr ""
+
+#: staff.server.admin.hold_pull.audiobook
+msgid "Audiobook"
+msgstr ""
+
+#: staff.server.admin.hold_pull.video
+msgid "Video Recording"
+msgstr ""
+
+#: staff.server.admin.hold_pull.music
+msgid "Music"
+msgstr ""
+
+#: staff.server.admin.hold_pull.eresource
+msgid "Electronic Resource"
+msgstr ""
+
+#: staff.server.admin.hold_pull.copy_hold
+msgid "Copy Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.volume_hold
+msgid "Volume Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.title_hold
+msgid "Title Hold"
+msgstr ""
+
+#: staff.server.admin.hold_pull.metarecord_hold
+msgid "Metarecord Hold"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.title
+msgid "Evergreen: Non Cataloged Types Editor"
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.non_cat_types.greeting
+msgctxt "staff.server.admin.non_cat_types.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.title
+msgid " Non Cataloged Types Editor "
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.header
+msgid "Create a new non-cataloged type"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.minutes
+msgid "Minutes"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.hours
+msgid "Hours"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.days
+msgid "Days"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.weeks
+msgid "Weeks"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.months
+msgid "Months"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house_circ
+msgid "Circulate In-House?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.editor.create
+msgctxt "staff.server.admin.non_cat_types.editor.create"
+msgid "Create"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name
+msgctxt "staff.server.admin.non_cat_types.name"
+msgid "Name"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.owning_location
+msgid "Owning Location"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.duration
+msgid "Duration"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.circulate
+msgid "Circulate In House"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.edit
+msgctxt "staff.server.admin.non_cat_types.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.delete
+msgctxt "staff.server.admin.non_cat_types.delete"
+msgid "Delete"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.submit
+msgctxt "staff.server.admin.non_cat_types.submit"
+msgid "Submit"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.cancel
+msgctxt "staff.server.admin.non_cat_types.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.delete.confirm
+msgid "Are you sure you wish to delete the selected non-cataloged type?"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.in_house.help
+msgid ""
+"If the \"In-House\" flag is set on a non-cataloged type, items that circulate "
+"as that type will create \"In-House\" circulations. This is ideal for "
+"computer use, room \"rentals\", etc."
+msgstr ""
+
+#: staff.server.admin.non_cat_types.update.success
+msgid "Non-cataloged type successfully updated"
+msgstr ""
+
+#: staff.server.admin.non_cat_types.name_exists
+msgid "A non-cataloged type with the selected name already exists."
+msgstr ""
+
+#: staff.server.admin.index.title
+msgid "Local System Administration"
+msgstr ""
+
+#: staff.server.admin.index.workstation_configuration
+msgid "Workstation Configuration"
+msgstr ""
+
+#: staff.server.admin.index.library_configuration
+msgid "Library Configuration"
+msgstr ""
+
+#: staff.server.admin.index.maintenance_reports
+msgid "Maintenance Reports"
+msgstr ""
+
+#: staff.server.admin.index.fonts_and_sounds
+msgid "Global Font and Sound Settings"
+msgstr ""
+
+#: staff.server.admin.index.printer
+msgid "Printer Settings Editor"
+msgstr ""
+
+#: staff.server.admin.index.closed_dates
+msgid "Closed Dates Editor"
+msgstr ""
+
+#: staff.server.admin.index.copy_locations
+msgid "Copy Locations Editor"
+msgstr ""
+
+#: staff.server.admin.index.library_settings
+msgid "Library Settings Editor"
+msgstr ""
+
+#: staff.server.admin.index.non_cataloged_types
+msgid "Non-cataloged Types Editor"
+msgstr ""
+
+#: staff.server.admin.index.statistical_categories
+msgid "Statistical Categories Editor"
+msgstr ""
+
+#: staff.server.admin.index.hold_pull_list
+msgid "Pull List for Hold Requests"
+msgstr ""
+
+#: staff.server.admin.index.testing
+msgid "(Testing)"
+msgstr ""
+
+#: staff.server.admin.index.hold_pull_list_classic
+msgid "Pull List for Hold Requests (Classic)"
+msgstr ""
+
+#: staff.server.admin.index.reports
+msgctxt "staff.server.admin.index.reports"
+msgid "Reports"
+msgstr ""
+
+#: staff.server.admin.index.cash_reports
+msgid "Cash Reports"
+msgstr ""
+
+#: staff.server.admin.index.transits
+msgctxt "staff.server.admin.index.transits"
+msgid "Transits"
+msgstr ""
+
+#: staff.server.admin.index.transit_list
+msgid "Transit List"
+msgstr ""
+
+#: staff.server.admin.org_settings.title
+msgid "Evergreen: Library Settings Editor"
+msgstr ""
+
+#. This will be followed by the user's name
+#: staff.server.admin.org_settings.greeting
+msgctxt "staff.server.admin.org_settings.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.org_settings.header
+msgid " Library Settings Editor "
+msgstr ""
+
+#. This will be followed by the library's name
+#: staff.server.admin.org_settings.select_library
+msgid "Edit Settings for : "
+msgstr ""
+
+#. This will be followed by the library's name
+#: staff.server.admin.org_settings.selected_library
+msgid "Library Settings for "
+msgstr ""
+
+#: staff.server.admin.org_settings.opac_timeout
+msgid "OPAC Inactivity Timeout (in seconds)"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply
+msgid "Apply"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all
+msgid "Apply to all Locations"
+msgstr ""
+
+#: staff.server.admin.org_settings.staff_timeout
+msgid "Staff Login Inactivity Timeout (in seconds)"
+msgstr ""
+
+#: staff.server.admin.org_settings.lost_fee
+msgid "Lost Materials Processing Fee"
+msgstr ""
+
+#: staff.server.admin.org_settings.default_price
+msgid "Default Item Price"
+msgstr ""
+
+#: staff.server.admin.org_settings.from_address
+msgid "\"FROM\" email address for patron notices"
+msgstr ""
+
+#: staff.server.admin.org_settings.bounce_note
+msgid "(note: delivery failures will be returned this address)"
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all.note
+msgid ""
+"I. \"Apply to all Locations\" will force the new setting to be applied to all "
+"locations in the location dropdown."
+msgstr ""
+
+#: staff.server.admin.org_settings.update_success
+msgid "Update succeeded."
+msgstr ""
+
+#: staff.server.admin.org_settings.apply_all.confirm
+msgid ""
+"This will update the setting for all of the locations listed in the dropdown "
+"menu. Are you sure you wish to continue?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.title
+msgid "Evergreen: Statistical Category Editor"
+msgstr ""
+
+#: staff.server.admin.stat_cat.greeting
+msgctxt "staff.server.admin.stat_cat.greeting"
+msgid "Welcome "
+msgstr ""
+
+#: staff.server.admin.stat_cat.heading
+msgid " Statistical Category Editor"
+msgstr ""
+
+#: staff.server.admin.stat_cat.create
+msgid "Create a new statistical category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.name
+msgid "Enter the name: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.owning_library
+msgid "Owning Library: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.opac_visibility
+msgid "OPAC Visibility: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.on
+msgid "On"
+msgstr ""
+
+#: staff.server.admin.stat_cat.off
+msgid "Off"
+msgstr ""
+
+#: staff.server.admin.stat_cat.type
+msgid "Type: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.patron
+msgctxt "staff.server.admin.stat_cat.patron"
+msgid "Patron"
+msgstr ""
+
+#: staff.server.admin.stat_cat.copy
+msgctxt "staff.server.admin.stat_cat.copy"
+msgid "Copy"
+msgstr ""
+
+#: staff.server.admin.stat_cat.create.submit
+msgid "Create new statistical category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.loading_status
+msgid "Loading permissions and statistical categories..."
+msgstr ""
+
+#: staff.server.admin.stat_cat.copy_stat_cats
+msgid "Copy Statistical Categories"
+msgstr ""
+
+#: staff.server.admin.stat_cat.patron_stat_cats
+msgctxt "staff.server.admin.stat_cat.patron_stat_cats"
+msgid "Patron Statistical Categories"
+msgstr ""
+
+#: staff.server.admin.stat_cat.info_prompt
+msgid ""
+"* To edit or view information about an entry, click on the entry in the "
+"drop-down menu"
+msgstr ""
+
+#: staff.server.admin.stat_cat.none_defined
+msgid "No statistical categories are defined"
+msgstr ""
+
+#: staff.server.admin.stat_cat.name.label
+msgctxt "staff.server.admin.stat_cat.name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: staff.server.admin.stat_cat.owning_library.label
+msgctxt "staff.server.admin.stat_cat.owning_library.label"
+msgid "Owning Library"
+msgstr ""
+
+#: staff.server.admin.stat_cat.opac_visibility.label
+msgid "OPAC Visibility"
+msgstr ""
+
+#: staff.server.admin.stat_cat.entries.label
+msgid "Entries"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add_entry
+msgid "Add Entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit
+msgctxt "staff.server.admin.stat_cat.edit"
+msgid "Edit"
+msgstr ""
+
+#: staff.server.admin.stat_cat.none
+msgid "(none)"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add.label
+msgid "Add"
+msgstr ""
+
+#: staff.server.admin.stat_cat.add.prompt
+msgid "Enter the value for the new statistical category entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.delete.confirm
+msgid ""
+"This will delete the selected statistical category and all attached entries. "
+"Are you sure you wish to continue?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.entry_delete.confirm
+msgid "Are you sure you wish to remove this statistical category entry?"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_submit
+msgid "Update Statistical Category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_delete
+msgid "Delete Statistical Category"
+msgstr ""
+
+#: staff.server.admin.stat_cat.cancel
+msgctxt "staff.server.admin.stat_cat.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_owner
+msgid "Owned By "
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_name_submit
+msgid "Update Entry Value"
+msgstr ""
+
+#: staff.server.admin.stat_cat.edit_entry_delete
+msgid "Delete Entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.new_entry_name
+msgid "Enter the value of the new entry: "
+msgstr ""
+
+#: staff.server.admin.stat_cat.new_entry_create
+msgid "Create new entry"
+msgstr ""
+
+#: staff.server.admin.stat_cat.update_success
+msgid "Update succeeded"
+msgstr ""
+
+#: staff.server.admin.upload_xacts.title
+msgid "Upload Offline Transactions"
+msgstr ""
+
+#: staff.server.admin.upload_xacts.header
+msgid "Uploading transactions..."
+msgstr ""
+
+#: staff.server.admin.upload_xacts.upload
+msgid "Upload"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_clip.label
+#: staff.circ.checkin_overlay.sel_clip.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_clip.label staff.circ.checkin_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_bucket.label
+#: staff.circ.checkin_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_bucket.label staff.circ.checkin_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_opac.label
+#: staff.circ.checkin_overlay.sel_opac.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_opac.label staff.circ.checkin_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_copy_details.label
+#: staff.circ.checkin_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_copy_details.label staff.circ.checkin_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_patron.label
+#: staff.circ.checkin_overlay.sel_patron.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_patron.label staff.circ.checkin_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_last_patron.label
+#: staff.circ.checkin_overlay.sel_last_patron.accesskey
+msgid "&Retrieve Last Patron who circulated item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_edit.label
+#: staff.circ.checkin_overlay.sel_edit.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_edit.label staff.circ.checkin_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.label
+#: staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_mark_items_damaged.label staff.circ.checkin_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_transit_abort.label
+msgid "Abort Transit"
+msgstr ""
+
+#: staff.circ.checkin_overlay.sel_spine.label
+#: staff.circ.checkin_overlay.sel_spine.accesskey
+msgctxt "staff.circ.checkin_overlay.sel_spine.label staff.circ.checkin_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.checkin_overlay.save_columns.label
+msgctxt "staff.circ.checkin_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text
+msgid "Check In or Process Item"
+msgstr ""
+
+#: staff.circ.checkin_overlay.background_text.hold_capture
+msgid "Auto-Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkin_overlay.effective_date.label
+msgid "Effective Date:"
+msgstr ""
+
+#: staff.circ.checkin_overlay.actions.label
+#: staff.circ.checkin_overlay.actions.accesskey
+msgctxt "staff.circ.checkin_overlay.actions.label staff.circ.checkin_overlay.actions.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_export.label
+msgctxt "staff.circ.checkin_overlay.checkin_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.checkin_overlay.trim_list.label
+msgctxt "staff.circ.checkin_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.checkin_overlay.strict_barcode.label
+msgctxt "staff.circ.checkin_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.checkin_overlay.do_not_alert_on_precat.label
+msgid "Ignore Pre-cataloged Items"
+msgstr ""
+
+#: staff.circ.checkin_overlay.checkin_auto.label
+#: staff.circ.checkin_overlay.checkin_auto.accesskey
+msgid "Auto-&Print Hold and Transit Slips"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.label
+msgctxt "staff.circ.checkout_overlay.duedate_menu.label"
+msgid "Normal"
+msgstr ""
+
+#: staff.circ.checkout_overlay.duedate_menu.accesskey
+msgid "u"
+msgstr ""
+
+#: staff.circ.checkout_overlay.barcode.accesskey
+msgctxt "staff.circ.checkout_overlay.barcode.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.accesskey
+msgctxt "staff.circ.checkout_overlay.export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.checkout_overlay.export.label
+msgctxt "staff.circ.checkout_overlay.export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.checkout_overlay.sel_clip.label
+msgctxt "staff.circ.checkout_overlay.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.checkout_overlay.save_columns.label
+msgctxt "staff.circ.checkout_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.checkout_overlay.strict_barcode.label
+msgctxt "staff.circ.checkout_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.circ_brief.patron_id.label
+msgid "Circulation ID: "
+msgstr ""
+
+#: staff.circ.circ_brief.add_billing.label
+msgctxt "staff.circ.circ_brief.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.circ.circ_brief.xact_start.label
+msgid "Check Out Time"
+msgstr ""
+
+#: staff.circ.circ_brief.due_date.label
+msgctxt "staff.circ.circ_brief.due_date.label"
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines_time.label
+msgid "Stop Fines Time"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_time.label
+msgid "Check In Time"
+msgstr ""
+
+#: staff.circ.circ_brief.circ_lib.label
+msgid "Check Out Library"
+msgstr ""
+
+#: staff.circ.circ_brief.renewal.label
+msgid "Renewal"
+msgstr ""
+
+#: staff.circ.circ_brief.stop_fines.label
+msgid "Stop Fines Reason"
+msgstr ""
+
+#: staff.circ.circ_brief.checkin_lib.label
+msgid "Check In Library"
+msgstr ""
+
+#: staff.circ.circ_summary.caption
+msgid "Last Few Circulations"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_last.label
+#: staff.circ.circ_summary.retrieve_last.accesskey
+msgctxt "staff.circ.circ_summary.retrieve_last.label staff.circ.circ_summary.retrieve_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.circ.circ_summary.retrieve_all.label
+#: staff.circ.circ_summary.retrieve_all.accesskey
+msgid "Retrieve &All These Patrons"
+msgstr ""
+
+#: staff.circ.circ_summary.done.label
+#: staff.circ.circ_summary.done.accesskey
+msgctxt "staff.circ.circ_summary.done.label staff.circ.circ_summary.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.circ.copy_details.hold_caption
+msgid "Captured for Hold"
+msgstr ""
+
+#: staff.circ.copy_details.transit_caption
+msgctxt "staff.circ.copy_details.transit_caption"
+msgid "In Transit"
+msgstr ""
+
+#: staff.circ.copy_details.circ_caption
+msgid "Last or Current Circulation"
+msgstr ""
+
+#: staff.circ.copy_details.r_last.label
+#: staff.circ.copy_details.r_last.accesskey
+msgctxt "staff.circ.copy_details.r_last.label staff.circ.copy_details.r_last.accesskey"
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.circ.copy_details.r_hold.label
+#: staff.circ.copy_details.r_hold.accesskey
+msgid "Retrieve &Hold Patron"
+msgstr ""
+
+#: staff.circ.copy_details.done.label
+#: staff.circ.copy_details.done.accesskey
+msgctxt "staff.circ.copy_details.done.label staff.circ.copy_details.done.accesskey"
+msgid "&Done"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_clip.label
+#: staff.circ.copy_status_overlay.sel_clip.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_clip.label staff.circ.copy_status_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_bucket.label
+#: staff.circ.copy_status_overlay.sel_bucket.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_bucket.label staff.circ.copy_status_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_opac.label
+#: staff.circ.copy_status_overlay.sel_opac.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_opac.label staff.circ.copy_status_overlay.sel_opac.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_copy_details.label
+#: staff.circ.copy_status_overlay.sel_copy_details.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_copy_details.label staff.circ.copy_status_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_patron.label
+#: staff.circ.copy_status_overlay.sel_patron.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_patron.label staff.circ.copy_status_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_edit.label
+#: staff.circ.copy_status_overlay.sel_edit.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_edit.label staff.circ.copy_status_overlay.sel_edit.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_mark_items_damaged.label staff.circ.copy_status_overlay.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.sel_mark_items_missing.accesskey
+msgid "&Mark Item Missing"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_transit_abort.label
+msgctxt "staff.circ.copy_status_overlay.sel_transit_abort.label"
+msgid "Abort Transits"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_checkin.label
+#: staff.circ.copy_status_overlay.sel_checkin.accesskey
+msgid "Check I&n Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_renew.label
+#: staff.circ.copy_status_overlay.sel_renew.accesskey
+msgid "&Renew Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.sel_spine.label
+#: staff.circ.copy_status_overlay.sel_spine.accesskey
+msgctxt "staff.circ.copy_status_overlay.sel_spine.label staff.circ.copy_status_overlay.sel_spine.accesskey"
+msgid "&Print Spine Label"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.label
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_replace_barcode.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.save_columns.label
+msgctxt "staff.circ.copy_status_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_items.label
+#: staff.circ.copy_status_overlay.cmd_transfer_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_items.label staff.circ.copy_status_overlay.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_volumes.label
+#: staff.circ.copy_status_overlay.cmd_add_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_add_volumes.label staff.circ.copy_status_overlay.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_library.label
+#: staff.circ.copy_status_overlay.cmd_mark_library.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_library.label staff.circ.copy_status_overlay.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_add_items.label
+#: staff.circ.copy_status_overlay.cmd_add_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_add_items.label staff.circ.copy_status_overlay.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.label
+#: staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_edit_volumes.label staff.circ.copy_status_overlay.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_mark_volume.label
+#: staff.circ.copy_status_overlay.cmd_mark_volume.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_mark_volume.label staff.circ.copy_status_overlay.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.label
+#: staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_transfer_volumes.label staff.circ.copy_status_overlay.cmd_transfer_volumes.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_items.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_items.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.label
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey
+msgctxt "staff.circ.copy_status_overlay.cmd_delete_volumes.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label
+#: staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.label staff.circ.copy_status_overlay.copy_actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.item_status.label
+msgid "Item Status"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.last_scanned.caption
+msgid "Scan Item"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_scan_barcode.label staff.circ.copy_status_overlay.copy_status_scan_barcode.accesskey"
+msgid "&Barcode:"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.label
+#: staff.circ.copy_status_overlay.copy_status_submit_barcode.accesskey
+msgid "Submi&t"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_upload_file.label
+#: staff.circ.copy_status_overlay.copy_status_upload_file.accesskey
+msgid "&Upload From File"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.cataloger_actions.label
+#: staff.circ.copy_status_overlay.cataloger_actions.accesskey
+msgid "Actions &for Catalogers"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print.label
+#: staff.circ.copy_status_overlay.copy_status_print.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print.label staff.circ.copy_status_overlay.copy_status_print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.label
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.copy_status_print_export.accesskey
+msgctxt "staff.circ.copy_status_overlay.copy_status_print_export.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.circ.copy_status_overlay.trim_list.label
+msgctxt "staff.circ.copy_status_overlay.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.copy_status_overlay.strict_barcode.label
+msgctxt "staff.circ.copy_status_overlay.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab1.label
+#: staff.chrome.menu_frame_overlay.tab1.accesskey
+msgid "Tab &1"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab2.label
+#: staff.chrome.menu_frame_overlay.tab2.accesskey
+msgid "Tab &2"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab3.label
+#: staff.chrome.menu_frame_overlay.tab3.accesskey
+msgid "Tab &3"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab4.label
+#: staff.chrome.menu_frame_overlay.tab4.accesskey
+msgid "Tab &4"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab5.label
+#: staff.chrome.menu_frame_overlay.tab5.accesskey
+msgid "Tab &5"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab6.label
+#: staff.chrome.menu_frame_overlay.tab6.accesskey
+msgid "Tab &6"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab7.label
+#: staff.chrome.menu_frame_overlay.tab7.accesskey
+msgid "Tab &7"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab8.label
+#: staff.chrome.menu_frame_overlay.tab8.accesskey
+msgid "Tab &8"
+msgstr ""
+
+#: staff.chrome.menu_frame_overlay.tab9.label
+#: staff.chrome.menu_frame_overlay.tab9.accesskey
+msgid "Tab &9"
+msgstr ""
+
+#: staff.circ.in_house_use.main.label
+msgid "Record In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.cmgb1.caption
+msgid "In-House Use"
+msgstr ""
+
+#: staff.circ.in_house_use.multiplier.label
+#: staff.circ.in_house_use.multiplier.accesskey
+msgid "# of &uses:"
+msgstr ""
+
+#: staff.circ.in_house_use.submit.label
+#: staff.circ.in_house_use.submit.accesskey
+msgctxt "staff.circ.in_house_use.submit.label staff.circ.in_house_use.submit.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.circ.in_house_use.print.label
+msgctxt "staff.circ.in_house_use.print.label"
+msgid "Print List"
+msgstr ""
+
+#: staff.circ.in_house_use.export.label
+msgctxt "staff.circ.in_house_use.export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.circ.in_house_use.trim_list.label
+msgctxt "staff.circ.in_house_use.trim_list.label"
+msgid "Trim List (20 rows)"
+msgstr ""
+
+#: staff.circ.in_house_use.strict_barcode.label
+msgctxt "staff.circ.in_house_use.strict_barcode.label"
+msgid "Strict Barcode"
+msgstr ""
+
+#: staff.circ.in_house_use.sel_clip.label
+msgctxt "staff.circ.in_house_use.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.in_house_use.save_cols_btn.label
+msgctxt "staff.circ.in_house_use.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.pre_cat.window.title
+msgid "Pre-Catalog Fields"
+msgstr ""
+
+#: staff.circ.pre_cat.caption.label
+msgid "Pre-Catalog Field Entry"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_title.value
+msgctxt "staff.circ.pre_cat.dummy_title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.circ.pre_cat.dummy_author.value
+msgctxt "staff.circ.pre_cat.dummy_author.value"
+msgid "Author"
+msgstr ""
+
+#: staff.circ.pre_cat.cancel.label
+#: staff.circ.pre_cat.cancel.accesskey
+msgctxt "staff.circ.pre_cat.cancel.label staff.circ.pre_cat.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.circ.pre_cat.checkout.label
+#: staff.circ.pre_cat.checkout.accesskey
+msgid "Check &Out"
+msgstr ""
+
+#: staff.circ.print_list.main.label
+msgid "Templates"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.label
+msgid "ID"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.name.label
+#: staff.circ.print_list.top_ui.name.accesskey
+msgid "&Name"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.type.label
+msgctxt "staff.circ.print_list.top_ui.type.label"
+msgid "Type"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.actions.label
+msgid "Actions"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.preview.label
+#: staff.circ.print_list.top_ui.preview.accesskey
+msgid "&Preview"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.macros.label
+#: staff.circ.print_list.top_ui.macros.accesskey
+msgid "&Macros"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.default.label
+#: staff.circ.print_list.top_ui.default.accesskey
+msgid "&Default"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.save.label
+#: staff.circ.print_list.top_ui.save.accesskey
+msgid "&Save Locally"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description
+msgid "Be sure to 'Save Locally' before export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.export.label
+#: staff.circ.print_list.top_ui.description.export.accesskey
+msgid "&Export"
+msgstr ""
+
+#: staff.circ.print_list.top_ui.description.import.label
+#: staff.circ.print_list.top_ui.description.import.accesskey
+msgid "&Import"
+msgstr ""
+
+#: staff.circ.print_list.header.label
+msgid "Header"
+msgstr ""
+
+#: staff.circ.print_list.line_item.label
+msgid "Line Item"
+msgstr ""
+
+#: staff.circ.print_list.footer.label
+msgid "Footer"
+msgstr ""
+
+#: staff.main.data.loading
+msgctxt "staff.main.data.loading"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.main.ws_info.entry
+msgid "Enter a workstation name and library to register this client under:"
+msgstr ""
+
+#: staff.main.ws_info.name
+msgctxt "staff.main.ws_info.name"
+msgid "Name"
+msgstr ""
+
+#: staff.main.ws_info.register_btn.label
+#: staff.main.ws_info.register_btn.accesskey
+msgid "&Register"
+msgstr ""
+
+#: staff.cat.bib_brief.record_summary
+msgid "Record Summary"
+msgstr ""
+
+#: staff.cat.bib_brief.title
+msgid "Title:"
+msgstr ""
+
+#: staff.cat.bib_brief.view_marc
+msgid "View MARC"
+msgstr ""
+
+#: staff.cat.bib_brief.author
+msgid "Author:"
+msgstr ""
+
+#: staff.cat.bib_brief.edition
+msgid "Edition:"
+msgstr ""
+
+#: staff.cat.bib_brief.pub_date
+msgid "Publication Date:"
+msgstr ""
+
+#. "TCN" is an abbreviation for "title control number"
+#: staff.cat.bib_brief.title_control_number
+msgid "TCN:"
+msgstr ""
+
+#: staff.cat.bib_brief.created_by
+msgid "Created By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_by
+msgid "Last Edited By:"
+msgstr ""
+
+#: staff.cat.bib_brief.last_edited_on
+msgid "Last Edited On:"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard
+msgctxt "staff.circ.holds.copy_to_clipboard"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.circ.holds.copy_to_clipboard.accesskey
+msgctxt "staff.circ.holds.copy_to_clipboard.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog
+msgctxt "staff.circ.holds.show_in_catalog"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.circ.holds.show_in_catalog.accesskey
+msgctxt "staff.circ.holds.show_in_catalog.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ.holds.show_item_details
+msgid "Show Item Details"
+msgstr ""
+
+#: staff.circ.holds.show_item_details.accesskey
+msgctxt "staff.circ.holds.show_item_details.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations
+msgid "Show Last Few Circulations"
+msgstr ""
+
+#: staff.circ.holds.show_last_few_circulations.accesskey
+msgctxt "staff.circ.holds.show_last_few_circulations.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.circ.holds.retrieve_patron
+msgctxt "staff.circ.holds.retrieve_patron"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.circ.holds.retrieve_patron.accesskey
+msgctxt "staff.circ.holds.retrieve_patron.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.circ.holds.show_notices
+msgid "Show Notices"
+msgstr ""
+
+#: staff.circ.holds.show_notices.accesskey
+msgctxt "staff.circ.holds.show_notices.accesskey"
+msgid "N"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library
+msgid "Edit Pickup Library"
+msgstr ""
+
+#: staff.circ.holds.edit_pickup_library.accesskey
+msgctxt "staff.circ.holds.edit_pickup_library.accesskey"
+msgid "L"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification
+msgid "Edit Phone Notification"
+msgstr ""
+
+#: staff.circ.holds.edit_phone_notification.accesskey
+msgctxt "staff.circ.holds.edit_phone_notification.accesskey"
+msgid "P"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification
+msgid "Set Email Notification"
+msgstr ""
+
+#: staff.circ.holds.set_email_notification.accesskey
+msgctxt "staff.circ.holds.set_email_notification.accesskey"
+msgid "E"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date
+msgid "Edit Activation Date"
+msgstr ""
+
+#: staff.circ.holds.edit_activation_date.accesskey
+msgctxt "staff.circ.holds.edit_activation_date.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.circ.holds.activate_hold
+msgid "Activate Hold"
+msgstr ""
+
+#: staff.circ.holds.activate_hold.accesskey
+msgctxt "staff.circ.holds.activate_hold.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold
+msgid "Suspend Hold"
+msgstr ""
+
+#: staff.circ.holds.suspend_hold.accesskey
+msgctxt "staff.circ.holds.suspend_hold.accesskey"
+msgid "S"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range
+msgid "Edit Hold Range"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_range.accesskey
+msgctxt "staff.circ.holds.edit_hold_range.accesskey"
+msgid "R"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus
+msgid "Edit Hold Focus"
+msgstr ""
+
+#: staff.circ.holds.edit_hold_focus.accesskey
+msgctxt "staff.circ.holds.edit_hold_focus.accesskey"
+msgid "F"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged
+msgid "Mark Item Damaged"
+msgstr ""
+
+#: staff.circ.holds.mark_item_damaged.accesskey
+msgctxt "staff.circ.holds.mark_item_damaged.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.circ.holds.mark_item_missing
+msgid "Mark Item Missing"
+msgstr ""
+
+#: staff.circ.holds.mark_item_missing.accesskey
+msgctxt "staff.circ.holds.mark_item_missing.accesskey"
+msgid "M"
+msgstr ""
+
+#: staff.circ.holds.retarget
+msgid "Find Another Target"
+msgstr ""
+
+#: staff.circ.holds.retarget.accesskey
+msgctxt "staff.circ.holds.retarget.accesskey"
+msgid "T"
+msgstr ""
+
+#: staff.circ.holds.cancel
+msgctxt "staff.circ.holds.cancel"
+msgid "Cancel Hold"
+msgstr ""
+
+#: staff.circ.holds.cancel.accesskey
+msgctxt "staff.circ.holds.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.circ.holds.save_columns
+msgctxt "staff.circ.holds.save_columns"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.circ.holds.save_columns.accesskey
+msgctxt "staff.circ.holds.save_columns.accesskey"
+msgid ""
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_clip.label
+#: staff.cat.copy_browser.actions.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_clip.label staff.cat.copy_browser.actions.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label
+#: staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items_to_buckets.label staff.cat.copy_browser.actions.cmd_add_items_to_buckets.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_copy_details.label
+#: staff.cat.copy_browser.actions.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_copy_details.label staff.cat.copy_browser.actions.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_patron.label
+#: staff.cat.copy_browser.actions.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_patron.label staff.cat.copy_browser.actions.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_items.label
+#: staff.cat.copy_browser.actions.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_items.label staff.cat.copy_browser.actions.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_items.label
+#: staff.cat.copy_browser.actions.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_items.label staff.cat.copy_browser.actions.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_volumes.label
+#: staff.cat.copy_browser.actions.cmd_add_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_volumes.label staff.cat.copy_browser.actions.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_library.label
+#: staff.cat.copy_browser.actions.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_library.label staff.cat.copy_browser.actions.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_add_items.label
+#: staff.cat.copy_browser.actions.cmd_add_items.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_add_items.label staff.cat.copy_browser.actions.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.label
+#: staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_edit_volumes.label staff.cat.copy_browser.actions.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_mark_volume.label
+#: staff.cat.copy_browser.actions.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_mark_volume.label staff.cat.copy_browser.actions.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.label
+#: staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_transfer_volume.label staff.cat.copy_browser.actions.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.actions.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_damaged.label staff.cat.copy_browser.actions.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.label
+#: staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.actions.sel_mark_items_missing.label staff.cat.copy_browser.actions.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_print_spine_labels.label staff.cat.copy_browser.actions.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.actions.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.save_columns.label
+msgctxt "staff.cat.copy_browser.actions.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.actions.cmd_refresh_list.label
+#: staff.cat.copy_browser.actions.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.actions.cmd_refresh_list.label staff.cat.copy_browser.actions.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.caption
+msgid "Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.legend
+msgid "Green in the list below means the library has volumes for this record."
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_total
+msgid "Consortial Total:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.consortial_available
+msgctxt "staff.cat.copy_browser.holdings_maintenance.consortial_available"
+msgid "Available:"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acns
+msgid "Show Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_acps
+msgid "Show Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.refresh_button.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.refresh_button.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.label
+#: staff.cat.copy_browser.holdings_maintenance.show_libs.accesskey
+msgid "Show &Libraries With Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.actions.label
+#: staff.cat.copy_browser.holdings_maintenance.actions.accesskey
+msgid "Actions &for Selected Rows"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_clip.label staff.cat.copy_browser.holdings_maintenance.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label
+#: staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.label staff.cat.copy_browser.holdings_maintenance.add_items_to_bucket.accesskey"
+msgid "Add Items to &Buckets"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_copy_details.label staff.cat.copy_browser.holdings_maintenance.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_patron.label staff.cat.copy_browser.holdings_maintenance.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_items.accesskey"
+msgid "&Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_items.accesskey"
+msgid "&Transfer Items to Previously Marked Volume"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_add_volumes.accesskey"
+msgid "Add &Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_library.accesskey"
+msgid "&Mark Library as Volume Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_add_items.label staff.cat.copy_browser.holdings_maintenance.cmd_add_items.accesskey"
+msgid "&Add Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.label staff.cat.copy_browser.holdings_maintenance.cmd_edit_volumes.accesskey"
+msgid "&Edit Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_mark_volume.accesskey"
+msgid "&Mark Volume as Item Transfer Destination"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.label staff.cat.copy_browser.holdings_maintenance.cmd_transfer_volume.accesskey"
+msgid "&Transfer Volumes to Previously Marked Library"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_items.label"
+msgid "Delete Items"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_delete_volumes.label"
+msgid "Delete Volumes"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_damaged.accesskey"
+msgid "Mark Item &Damaged"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label
+#: staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.label staff.cat.copy_browser.holdings_maintenance.sel_mark_items_missing.accesskey"
+msgid "Mark Item Missin&g"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.label staff.cat.copy_browser.holdings_maintenance.cmd_print_spine_labels.accesskey"
+msgid "&Print Item Spine Labels"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.save_columns.label
+msgctxt "staff.cat.copy_browser.holdings_maintenance.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label
+#: staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey
+msgctxt "staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.label staff.cat.copy_browser.holdings_maintenance.cmd_refresh_list.accesskey"
+msgid "&Refresh Listing"
+msgstr ""
+
+#: staff.cat.copy_buckets.window_title
+msgctxt "staff.cat.copy_buckets.window_title"
+msgid "Copy Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_copies
+msgid "Pending Copies"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.bucket_view
+msgid "Bucket View"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.save_columns1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.save_columns1"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.sel_clip1"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_print_export1"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.cmd_export1"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.label
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_add.accesskey
+msgid "&Add All"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label
+msgctxt "staff.cat.copy_buckets_overlay.pending_buckets.copy_buckets_sel_add.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.refresh.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.refresh.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.save_columns2.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.sel_clip2.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.delete_item.label
+msgid "Remove Selected From Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.export.label"
+msgid "Add Selected"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.bucket.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.bucket.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.info_box.owner.label
+msgctxt "staff.cat.copy_buckets_overlay.info_box.owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.label
+#: staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print.label staff.cat.copy_buckets_overlay.copy_buckets.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.print_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.cmd_copy_buckets_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.batch.label
+msgctxt "staff.cat.copy_buckets_overlay.copy_buckets.batch.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.cmd_export_to_copy_status.label
+msgid "Show Status"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_transfer_to_volume.label
+msgid "Transfer to Specific Volume"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_edit.label
+msgid "Edit Item Attributes"
+msgstr ""
+
+#: staff.cat.copy_buckets_overlay.copy_buckets.copy_buckets_batch_copy_delete.label
+msgid "Delete All from Catalog"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.label
+msgid "Item Buckets"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.label staff.cat.copy_buckets_quick.item_buckets.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.label
+#: staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.new_bucket.label staff.cat.copy_buckets_quick.item_buckets.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr ""
+
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.label
+#: staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey
+msgctxt "staff.cat.copy_buckets_quick.item_buckets.cancel.label staff.cat.copy_buckets_quick.item_buckets.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.cat.copy_editor.window.label
+msgctxt "staff.cat.copy_editor.window.label"
+msgid "Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.groupbox1.label
+msgid "Copy Viewer"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.label
+msgid "Templates:"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.apply_template.label
+#: staff.cat.copy_editor.templates.apply_template.accesskey
+msgid "Appl&y"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.delete_template.label
+msgctxt "staff.cat.copy_editor.templates.delete_template.label"
+msgid "Delete"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.import_template.label
+msgid "Import"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.export_template.label
+msgctxt "staff.cat.copy_editor.templates.export_template.label"
+msgid "Export"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.save_template.label
+msgctxt "staff.cat.copy_editor.templates.save_template.label"
+msgid "Save"
+msgstr ""
+
+#: staff.cat.copy_editor.templates.reset.label
+#: staff.cat.copy_editor.templates.reset.accesskey
+msgid "&Reset"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.label
+msgid "Identification"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.label
+msgctxt "staff.cat.copy_editor.identification.location.label"
+msgid "Location"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.location.accesskey
+msgctxt "staff.cat.copy_editor.identification.location.accesskey"
+msgid "1"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.circulation.label
+msgctxt "staff.cat.copy_editor.identification.circulation.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.circulation.accesskey
+msgid "2"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.label
+msgid "Miscellaneous"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.miscellaneous.accesskey
+msgctxt "staff.cat.copy_editor.identification.miscellaneous.accesskey"
+msgid "3"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.label
+msgid "Statistics"
+msgstr ""
+
+#: staff.cat.copy_editor.identification.statistics.accesskey
+msgctxt "staff.cat.copy_editor.identification.statistics.accesskey"
+msgid "4"
+msgstr ""
+
+#: staff.cat.copy_editor.stat_cat_lib_filter_menu.label
+msgid "Library Filter"
+msgstr ""
+
+#: staff.cat.copy_editor.copy_notes.label
+#: staff.cat.copy_editor.copy_notes.accesskey
+msgid "Copy &Notes"
+msgstr ""
+
+#: staff.cat.copy_editor.save.label
+#: staff.cat.copy_editor.save.accesskey
+msgid "&Modify Copies"
+msgstr ""
+
+#: staff.cat.copy_editor.cancel.label
+#: staff.cat.copy_editor.cancel.accesskey
+msgctxt "staff.cat.copy_editor.cancel.label staff.cat.copy_editor.cancel.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.cat.copy_summary.label
+msgid "Item Summary"
+msgstr ""
+
+#: staff.cat.copy_summary.barcode.label
+msgctxt "staff.cat.copy_summary.barcode.label"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.cat.copy_summary.location.label
+msgid "Location:"
+msgstr ""
+
+#: staff.cat.copy_summary.call_number.label
+msgid "Call Number:"
+msgstr ""
+
+#: staff.cat.copy_summary.status.label
+msgid "Status:"
+msgstr ""
+
+#: staff.cat.copy_summary.circulate.label
+msgid "Circulate:"
+msgstr ""
+
+#: staff.cat.copy_summary.reference.label
+msgid "Reference:"
+msgstr ""
+
+#: staff.cat.copy_summary.holdable.label
+msgid "Holdable:"
+msgstr ""
+
+#: staff.cat.copy_summary.opac_visible.label
+msgctxt "staff.cat.copy_summary.opac_visible.label"
+msgid "OPAC Visible:"
+msgstr ""
+
+#: staff.cat.copy_summary.created.label
+msgid "Created:"
+msgstr ""
+
+#: staff.cat.copy_summary.edited.label
+msgid "Edited:"
+msgstr ""
+
+#: staff.cat.copy_summary.age_protect.label
+msgid "Age Protect:"
+msgstr ""
+
+#: staff.cat.copy_summary.total_circs.label
+msgid "Total Circulations:"
+msgstr ""
+
+#: staff.cat.copy_summary.alternate_view.label
+msgid "Alternate View"
+msgstr ""
+
+#: staff.cat.copy_summary.save_columns.label
+msgctxt "staff.cat.copy_summary.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.copy_summary.sel_clip.label
+msgctxt "staff.cat.copy_summary.sel_clip.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.copy_summary.print_export.label
+msgctxt "staff.cat.copy_summary.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.cat.marcedit.options.label
+msgid "Options"
+msgstr ""
+
+#: staff.cat.marcedit.stackSubfields.label
+#: staff.cat.marcedit.stackSubfields.accesskey
+msgid "&Stack subfields"
+msgstr ""
+
+#: staff.cat.marcedit.validate.label
+#: staff.cat.marcedit.validate.accesskey
+msgid "&Validate"
+msgstr ""
+
+#: staff.cat.marcedit.save-button.accesskey
+msgid "d"
+msgstr ""
+
+#: staff.cat.marcedit.help.label
+#: staff.cat.marcedit.help.accesskey
+msgctxt "staff.cat.marcedit.help.label staff.cat.marcedit.help.accesskey"
+msgid "&Help"
+msgstr ""
+
+#: staff.cat.marcedit.caption.label
+msgid "MARC Record"
+msgstr ""
+
+#: staff.cat.marcedit.toggleFFE.label
+msgid "Fixed Fields -- Record type: "
+msgstr ""
+
+#: staff.cat.marc_new.load.label
+#: staff.cat.marc_new.load.accesskey
+msgid "&Load"
+msgstr ""
+
+#: staff.cat.marc_view.title
+msgid "MARC View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.opacview.label
+#: staff.cat.opac.menuitem.opacview.accesskey
+msgctxt "staff.cat.opac.menuitem.opacview.label staff.cat.opac.menuitem.opacview.accesskey"
+msgid "&OPAC View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.marcview.label
+#: staff.cat.opac.menuitem.marcview.accesskey
+msgctxt "staff.cat.opac.menuitem.marcview.label staff.cat.opac.menuitem.marcview.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.opac.menuitem.marcedit.label
+#: staff.cat.opac.menuitem.marcedit.accesskey
+msgctxt "staff.cat.opac.menuitem.marcedit.label staff.cat.opac.menuitem.marcedit.accesskey"
+msgid "MARC &Edit"
+msgstr ""
+
+#: staff.cat.opac.menuitem.holding.label
+#: staff.cat.opac.menuitem.holding.accesskey
+msgctxt "staff.cat.opac.menuitem.holding.label staff.cat.opac.menuitem.holding.accesskey"
+msgid "&Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.opac.menuitem.viewholds.label
+#: staff.cat.opac.menuitem.viewholds.accesskey
+msgctxt "staff.cat.opac.menuitem.viewholds.label staff.cat.opac.menuitem.viewholds.accesskey"
+msgid "View Hold&s"
+msgstr ""
+
+#: staff.cat.opac.menuitem.addtobucket.label
+#: staff.cat.opac.menuitem.addtobucket.accesskey
+msgctxt "staff.cat.opac.menuitem.addtobucket.label staff.cat.opac.menuitem.addtobucket.accesskey"
+msgid "Add to &Bucket"
+msgstr ""
+
+#: staff.cat.opac.menuitem.refreshinterfaces.label
+msgid "Refresh All Interfaces"
+msgstr ""
+
+#: staff.cat.opac.menuitem.dupnewtab.label
+msgctxt "staff.cat.opac.menuitem.dupnewtab.label"
+msgid "Duplicate in New Tab"
+msgstr ""
+
+#: staff.cat.opac.menuitem.removeframe.label
+msgctxt "staff.cat.opac.menuitem.removeframe.label"
+msgid "Remove this Frame"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_query_tab.label
+#: staff.cat.record_buckets_overlay.record_query_tab.accesskey
+msgid "Record &Query"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_records_tab.label
+#: staff.cat.record_buckets_overlay.pending_records_tab.accesskey
+msgid "&Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_tab.label
+#: staff.cat.record_buckets_overlay.bucket_view_tab.accesskey
+msgid "Bucket &View"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_view_panel.label
+msgid "Bucket Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.new_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.new_bucket.label"
+msgid "New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.delete_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.delete_bucket.label"
+msgid "Delete Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.refresh_bucket.label
+msgctxt "staff.cat.record_buckets_overlay.refresh_bucket.label"
+msgid "Refresh"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_query.label
+#: staff.cat.record_buckets_overlay.record_query.accesskey
+msgid "Quer&y"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.label
+#: staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey
+msgctxt "staff.cat.record_buckets_overlay.cmd_submit_query.button.label staff.cat.record_buckets_overlay.cmd_submit_query.button.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.query_help.button.label
+#: staff.cat.record_buckets_overlay.query_help.button.accesskey
+msgctxt "staff.cat.record_buckets_overlay.query_help.button.label staff.cat.record_buckets_overlay.query_help.button.accesskey"
+msgid "&Help"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.query_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.query_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip0.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.query_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns0.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns0.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_query_to_pending.label
+msgid "Add All to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_query_to_pending.label
+msgctxt "staff.cat.record_buckets_overlay.add_sel_query_to_pending.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.pending_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.pending_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip1.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.pending_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns1.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns1.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.label
+#: staff.cat.record_buckets_overlay.add_all_pending_to_record_bucket.accesskey
+msgid "&Add All to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.add_sel_pending_to_record_bucket.label
+msgid "Add Selected to current Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_del_item.label
+msgid "Remove Selected from Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_to_pending_buckets.label"
+msgid "Add Selected to Pending Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.info_box.label
+msgctxt "staff.cat.record_buckets_overlay.info_box.label"
+msgid "Bucket #"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.bucket_owner.label
+msgctxt "staff.cat.record_buckets_overlay.bucket_owner.label"
+msgid "Owner:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.record_buckets_list_actions.label
+msgctxt "staff.cat.record_buckets_overlay.record_buckets_list_actions.label"
+msgid "List Actions"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.sel_clip2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.sel_clip2.label"
+msgid "Copy Field from selected row to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_printer.label"
+msgid "Print List CSV"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_clipboard.label"
+msgid "Copy List CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.record_buckets_csv_to_file.label"
+msgid "Save List CSV to File"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.save_columns2.label
+msgctxt "staff.cat.record_buckets_overlay.menuitem.save_columns2.label"
+msgid "Save List Configuration"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.box.label
+msgctxt "staff.cat.record_buckets_overlay.box.label"
+msgid "Batch:"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.sel_opac.label
+msgid "Show All in Catalog"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.del_records.label
+msgid "Delete All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.merge_records.label
+msgid "Merge All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.export_records.label
+msgid "Export All Records"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_usmarc.label
+msgid "MARC21"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_unimarc.label
+msgid "UNIMARC"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_xml.label
+msgid "XML"
+msgstr ""
+
+#: staff.cat.record_buckets_overlay.menuitem.export_eg_bre.label
+msgid "Evergreen BRE"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.groupbox.caption
+msgctxt "staff.cat.record_buckets_quick.groupbox.caption"
+msgid "Record Buckets"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.title
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgid "&Add to Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.add_to_bucket.label
+#: staff.cat.record_buckets_quick.add_to_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.add_to_bucket.label staff.cat.record_buckets_quick.add_to_bucket.accesskey"
+msgid "&Add to Selected Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.new_bucket.label
+#: staff.cat.record_buckets_quick.new_bucket.accesskey
+msgctxt "staff.cat.record_buckets_quick.new_bucket.label staff.cat.record_buckets_quick.new_bucket.accesskey"
+msgid "Add to &New Bucket"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.cancel.label
+#: staff.cat.record_buckets_quick.cancel.accesskey
+msgctxt "staff.cat.record_buckets_quick.cancel.label staff.cat.record_buckets_quick.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.cat.spine_labels.re-generate.label
+#: staff.cat.spine_labels.re-generate.accesskey
+msgid "Re-&Generate"
+msgstr ""
+
+#: staff.cat.spine_labels.preview_and_print.label
+#: staff.cat.spine_labels.preview_and_print.accesskey
+msgid "&Preview and Print"
+msgstr ""
+
+#: staff.cat.spine_labels.close_window.label
+#: staff.cat.spine_labels.close_window.accesskey
+msgctxt "staff.cat.spine_labels.close_window.label staff.cat.spine_labels.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.cat.spine_labels.font_size.label
+msgid "Font size (in points):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label
+msgid "Spine Label"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.left_margin.label
+msgid "Left Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_width.label
+msgctxt "staff.cat.spine_labels.spine_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.spine_label.label_length.label
+msgctxt "staff.cat.spine_labels.spine_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label
+msgid "Pocket Label"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.middle_margin.label
+msgid "Middle Margin (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_width.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_width.label"
+msgid "Label Width (in characters):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.label_length.label
+msgctxt "staff.cat.spine_labels.pocket_label.label_length.label"
+msgid "Label Length (in lines):"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.title.label
+msgid "Include Title (wraps on word at label width)"
+msgstr ""
+
+#: staff.cat.spine_labels.on_line.label
+msgid "On line:"
+msgstr ""
+
+#: staff.cat.spine_labels.pocket_label.include_title.label
+msgid "Include Title (segment after wrapping)"
+msgstr ""
+
+#: staff.cat.spine_labels.indent_title.label
+msgid "Indent a space?"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_call_number.label
+msgid "Include Call Number"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library_policy_code.label
+msgid "Include Owning Library (policy code)"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_owning_library.label
+msgid "Include Owning Library"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_shelving_location.label
+msgid "Include Shelving Location"
+msgstr ""
+
+#: staff.cat.spine_labels.inc_item_barcode.label
+msgid "Include Item Barcode"
+msgstr ""
+
+#: staff.cat.spine_labels.custom.label
+msgid "Custom:"
+msgstr ""
+
+#: staff.cat.spine_labels.available_macros.label
+msgid "Available Macros"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.title
+msgid "Volume and Copy Editor"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.label
+msgid "Volume and Copy Creator"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.check_barcodes.label
+#: staff.cat.volume_copy_creator.check_barcodes.accesskey
+msgid "Check &Barcodes?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.print_labels.label
+#: staff.cat.volume_copy_creator.print_labels.accesskey
+msgid "&Print Labels?"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.create.label
+#: staff.cat.volume_copy_creator.create.accesskey
+msgid "Edit then &Create"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.library_label.value
+msgctxt "staff.cat.volume_copy_creator.library_label.value"
+msgid "Library"
+msgstr ""
+
+#: staff.cat.volume_copy_creator.num_of_volumes_label.value
+msgid "# of volumes"
+msgstr ""
+
+#: staff.cat.volume_editor.caption.label
+msgid "Volume Editor"
+msgstr ""
+
+#: staff.cat.volume_editor.modify.label
+msgid "Modify"
+msgstr ""
+
+#: staff.cat.z3950.marc_import.label
+#: staff.cat.z3950.marc_import.accesskey
+msgid "MARC &Import via Z39.50"
+msgstr ""
+
+#: staff.cat.z3950.service_credentials.label
+msgid "Service and Credentials"
+msgstr ""
+
+#: staff.cat.z3950.service.label
+msgid "Service"
+msgstr ""
+
+#: staff.cat.z3950.username.label
+msgctxt "staff.cat.z3950.username.label"
+msgid "Username"
+msgstr ""
+
+#: staff.cat.z3950.password.label
+msgctxt "staff.cat.z3950.password.label"
+msgid "Password"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.label
+msgid "Local Catalog"
+msgstr ""
+
+#: staff.cat.z3950.catalog_service.tooltiptext
+msgid "Evergreen Native Catalog"
+msgstr ""
+
+#: staff.cat.z3950.save_creds.label
+#: staff.cat.z3950.save_creds.accesskey
+msgid "Save as &Default"
+msgstr ""
+
+#: staff.cat.z3950.query.label
+msgid "Query"
+msgstr ""
+
+#: staff.cat.z3950.query.description
+msgid ""
+"Tip: Click a search field label and then the 'Save as Default' button to "
+"have that field focused by default."
+msgstr ""
+
+#: staff.cat.z3950.clear.label
+#: staff.cat.z3950.clear.accesskey
+msgctxt "staff.cat.z3950.clear.label staff.cat.z3950.clear.accesskey"
+msgid "&Clear Form"
+msgstr ""
+
+#: staff.cat.z3950.search.label
+#: staff.cat.z3950.search.accesskey
+msgctxt "staff.cat.z3950.search.label staff.cat.z3950.search.accesskey"
+msgid "&Search"
+msgstr ""
+
+#: staff.cat.z3950.results_page.label
+#: staff.cat.z3950.results_page.accesskey
+msgid "Results &Page"
+msgstr ""
+
+#: staff.cat.z3950.results_caption.label
+msgid "Results"
+msgstr ""
+
+#: staff.cat.z3950.search_form.label
+#: staff.cat.z3950.search_form.accesskey
+msgctxt "staff.cat.z3950.search_form.label staff.cat.z3950.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.cat.z3950.page_next.label
+#: staff.cat.z3950.page_next.accesskey
+msgid "Fetch &More Results"
+msgstr ""
+
+#: staff.cat.z3950.export.label
+msgid "CSV to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.clip_button.label
+msgctxt "staff.cat.z3950.clip_button.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.cat.z3950.save_cols_btn.label
+msgctxt "staff.cat.z3950.save_cols_btn.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.cat.z3950.marc_view.label
+#: staff.cat.z3950.marc_view.accesskey
+msgctxt "staff.cat.z3950.marc_view.label staff.cat.z3950.marc_view.accesskey"
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.z3950.marc_import_overlay.label
+#: staff.cat.z3950.marc_import_overlay.accesskey
+msgid "MARC Editor for &Overlay"
+msgstr ""
+
+#: staff.cat.z3950.result_message.marc_import.label
+#: staff.cat.z3950.result_message.marc_import.accesskey
+msgid "MARC Editor for &Import"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieve_patron.label
+msgctxt "staff.pat.barcode_entry.retrieve_patron.label"
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.pat.barcode_entry.barcode.label
+#: staff.pat.barcode_entry.barcode.accesskey
+msgctxt "staff.pat.barcode_entry.barcode.label staff.pat.barcode_entry.barcode.accesskey"
+msgid "&Barcode:"
+msgstr ""
+
+#: staff.pat.barcode_entry.submit_btn.label
+#: staff.pat.barcode_entry.submit_btn.accesskey
+msgctxt "staff.pat.barcode_entry.submit_btn.label staff.pat.barcode_entry.submit_btn.accesskey"
+msgid "&Submit"
+msgstr ""
+
+#: staff.pat.barcode_entry.retrieving.label
+msgctxt "staff.pat.barcode_entry.retrieving.label"
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.bill_cc_info.visa.label
+msgid "Visa"
+msgstr ""
+
+#: staff.patron.bill_cc_info.mastercard.label
+msgid "Mastercard"
+msgstr ""
+
+#: staff.patron.bill_cc_info.american_express.label
+msgid "American Express"
+msgstr ""
+
+#: staff.patron.bill_cc_info.discover.label
+msgid "Discover"
+msgstr ""
+
+#: staff.patron.bill_cc_info.other.label
+msgid "Other"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cc_number.value
+msgid "Credit Card Number"
+msgstr ""
+
+#: staff.patron.bill_cc_info.month_expire.value
+msgid "Expire Month"
+msgstr ""
+
+#: staff.patron.bill_cc_info.year_expire.value
+msgid "Expire Year"
+msgstr ""
+
+#: staff.patron.bill_cc_info.approval_code.value
+msgid "Approval Code"
+msgstr ""
+
+#: staff.patron.bill_cc_info.note.value
+msgctxt "staff.patron.bill_cc_info.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_cc_info.cancel.label
+#: staff.patron.bill_cc_info.cancel.accesskey
+msgctxt "staff.patron.bill_cc_info.cancel.label staff.patron.bill_cc_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_cc_info.submit.label
+#: staff.patron.bill_cc_info.submit.accesskey
+msgid "&Submit this Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.info.label
+msgid "Credit Card Info"
+msgstr ""
+
+#: staff.patron.bill_cc_info.type.label
+msgid "Credit Card Type"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_info.label
+msgid "Check Information"
+msgstr ""
+
+#. "Check" is used here to indicate a payment by check, not "Verify"
+#: staff.patron.bill_check_info.check_number.value
+msgid "Check Number"
+msgstr ""
+
+#: staff.patron.bill_check_info.note.value
+msgctxt "staff.patron.bill_check_info.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_check_info.cancel.label
+#: staff.patron.bill_check_info.cancel.accesskey
+msgctxt "staff.patron.bill_check_info.cancel.label staff.patron.bill_check_info.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_check_info.submit.label
+#: staff.patron.bill_check_info.submit.accesskey
+msgid "&Submit this Information"
+msgstr ""
+
+#: staff.patron.bill_details.bills.label
+msgctxt "staff.patron.bill_details.bills.label"
+msgid "Bills"
+msgstr ""
+
+#: staff.patron.bill_details.save_columns.label
+msgctxt "staff.patron.bill_details.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.bill_details.copy_to_clipboard.label
+msgctxt "staff.patron.bill_details.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.bill_details.print_export.label
+msgctxt "staff.patron.bill_details.print_export.label"
+msgid "Print Export"
+msgstr ""
+
+#: staff.patron.bill_details.void_selection.label
+msgid "Void selected billings"
+msgstr ""
+
+#: staff.patron.bill_details.payments.label
+msgid "Payments"
+msgstr ""
+
+#: staff.patron.bill_details.show_in_catalog.label
+#: staff.patron.bill_details.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_details.show_in_catalog.label staff.patron.bill_details.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_details.close_window.label
+#: staff.patron.bill_details.close_window.accesskey
+msgctxt "staff.patron.bill_details.close_window.label staff.patron.bill_details.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.patron.bill_history.caption.label
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.add_billing.label
+msgctxt "staff.patron.bill_history.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bill_history.full_details.label
+#: staff.patron.bill_history.full_details.accesskey
+msgid "Full &Details"
+msgstr ""
+
+#: staff.patron.bill_history.show_in_catalog.label
+#: staff.patron.bill_history.show_in_catalog.accesskey
+msgctxt "staff.patron.bill_history.show_in_catalog.label staff.patron.bill_history.show_in_catalog.accesskey"
+msgid "&Show in Catalog"
+msgstr ""
+
+#: staff.patron.bill_history.print.label
+#: staff.patron.bill_history.print.accesskey
+msgctxt "staff.patron.bill_history.print.label staff.patron.bill_history.print.accesskey"
+msgid "&Print"
+msgstr ""
+
+#: staff.patron.bill_history.close_window.label
+#: staff.patron.bill_history.close_window.accesskey
+msgctxt "staff.patron.bill_history.close_window.label staff.patron.bill_history.close_window.accesskey"
+msgid "&Close Window"
+msgstr ""
+
+#: staff.patron.bills_overlay.still_checked_out.label
+msgid "Red Items are still Checked Out"
+msgstr ""
+
+#: staff.patron.bills_overlay.uncheck_all.label
+msgid "Uncheck All"
+msgstr ""
+
+#: staff.patron.bills_overlay.check_all.label
+msgid "Check All"
+msgstr ""
+
+#: staff.patron.bills_overlay.print_bills.label
+msgid "Print Bills"
+msgstr ""
+
+#: staff.patron.bills_overlay.alternate_view.label
+#: staff.patron.bills_overlay.alternate_view.accesskey
+msgid "Alternate &View"
+msgstr ""
+
+#: staff.patron.bills_overlay.summary.label
+msgid "Summary"
+msgstr ""
+
+#: staff.patron.bills_overlay.net_balance.value
+msgid "Net Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.new_balance.value
+msgid "= New Balance"
+msgstr ""
+
+#: staff.patron.bills_overlay.pay_bill.label
+msgid "Pay Bill"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.value
+msgid "Payment Type"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_type.accesskey
+msgctxt "staff.patron.bills_overlay.payment_type.accesskey"
+msgid "t"
+msgstr ""
+
+#: staff.patron.bills_overlay.cash.label
+msgid "Cash"
+msgstr ""
+
+#: staff.patron.bills_overlay.check.label
+msgid "Check"
+msgstr ""
+
+#: staff.patron.bills_overlay.credit_card.label
+msgid "Credit Card"
+msgstr ""
+
+#: staff.patron.bills_overlay.word.label
+msgid "Work"
+msgstr ""
+
+#: staff.patron.bills_overlay.forgive.label
+msgid "Forgive"
+msgstr ""
+
+#: staff.patron.bills_overlay.goods.label
+msgid "Goods"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.value
+msgid "Payment received"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_received.accesskey
+msgctxt "staff.patron.bills_overlay.payment_received.accesskey"
+msgid "a"
+msgstr ""
+
+#: staff.patron.bills_overlay.payment_applied.value
+msgid "- Payment applied"
+msgstr ""
+
+#: staff.patron.bills_overlay.change.value
+msgid "= Change"
+msgstr ""
+
+#: staff.patron.bills_overlay.patron_credit.value
+msgid "or Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.bill_patron.label
+#: staff.patron.bills_overlay.bill_patron.accesskey
+msgid "&Bill Patron"
+msgstr ""
+
+#: staff.patron.bills_overlay.history.label
+#: staff.patron.bills_overlay.history.accesskey
+msgid "&History"
+msgstr ""
+
+#: staff.patron.bills_overlay.annotate_payment.label
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills_overlay.convert_change_to_credit.label
+msgid "Convert Change to Patron Credit"
+msgstr ""
+
+#: staff.patron.bills_overlay.apply_payment.label
+#: staff.patron.bills_overlay.apply_payment.accesskey
+msgid "Apply &Payment!"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.bill_number.value
+msgid "Bill #"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.total_billed.value
+msgctxt "staff.patron.bill_summary_overlay.total_billed.value"
+msgid "Total Billed"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.title.value
+msgctxt "staff.patron.bill_summary_overlay.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.type.value
+msgctxt "staff.patron.bill_summary_overlay.type.value"
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.total_paid.value
+msgctxt "staff.patron.bill_summary_overlay.total_paid.value"
+msgid "Total Paid"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_out.value
+msgid "Checked Out"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.start.value
+msgctxt "staff.patron.bill_summary_overlay.start.value"
+msgid "Start"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.balance_owed.value
+msgctxt "staff.patron.bill_summary_overlay.balance_owed.value"
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.due_date.value
+msgctxt "staff.patron.bill_summary_overlay.due_date.value"
+msgid "Due Date"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.finish.value
+msgctxt "staff.patron.bill_summary_overlay.finish.value"
+msgid "Finish"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.renewal.value
+msgid "Renewal?"
+msgstr ""
+
+#: staff.patron.bill_summary_overlay.checked_in.value
+msgid "Checked In"
+msgstr ""
+
+#: staff.patron.bill_wizard.title
+msgid "Bill Patron Wizard"
+msgstr ""
+
+#: staff.patron.bill_wizard.create_bill.label
+msgid "Create Bill"
+msgstr ""
+
+#: staff.patron.bill_wizard.location.value
+msgctxt "staff.patron.bill_wizard.location.value"
+msgid "Location"
+msgstr ""
+
+#: staff.patron.bill_wizard.transaction_type.value
+msgid "Transaction Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.grocery.label
+msgid "Grocery"
+msgstr ""
+
+#: staff.patron.bill_wizard.circulation.label
+msgctxt "staff.patron.bill_wizard.circulation.label"
+msgid "Circulation"
+msgstr ""
+
+#: staff.patron.bill_wizard.billing_type.label
+msgid "Billing Type"
+msgstr ""
+
+#: staff.patron.bill_wizard.amount.value
+msgctxt "staff.patron.bill_wizard.amount.value"
+msgid "Amount"
+msgstr ""
+
+#: staff.patron.bill_wizard.note.value
+msgctxt "staff.patron.bill_wizard.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.bill_wizard.cancel.label
+#: staff.patron.bill_wizard.cancel.accesskey
+msgctxt "staff.patron.bill_wizard.cancel.label staff.patron.bill_wizard.cancel.accesskey"
+msgid "&Cancel"
+msgstr ""
+
+#: staff.patron.bill_wizard.submit.label
+#: staff.patron.bill_wizard.submit.accesskey
+msgid "&Submit this Bill"
+msgstr ""
+
+#: staff.patron.display_overlay.none_selected.value
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display_overlay.barred.value
+msgid "(Barred)"
+msgstr ""
+
+#: staff.patron.display_overlay.expired.value
+msgid "(Expired)"
+msgstr ""
+
+#: staff.patron.display_overlay.inactive.value
+msgid "(In-Active)"
+msgstr ""
+
+#: staff.patron.display_overlay.juvenile.value
+msgid "(Juvenile)"
+msgstr ""
+
+#: staff.patron.display_overlay.alert.value
+msgid "(Alert)"
+msgstr ""
+
+#: staff.patron.display_overlay.see_notes.value
+msgid "(See Notes)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_bills.value
+msgid "(Maximum Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.max_overdues.value
+msgid "(Maximum Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_bills.value
+msgid "(Has Bills)"
+msgstr ""
+
+#: staff.patron.display_overlay.has_overdues.value
+msgid "(Has Overdues)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_dob.value
+msgid "(Invalid Date of Birth)"
+msgstr ""
+
+#: staff.patron.display_overlay.invalid_address.value
+msgid "(Invalid Address)"
+msgstr ""
+
+#: staff.patron.display_overlay.exit.label
+#: staff.patron.display_overlay.exit.accesskey
+msgctxt "staff.patron.display_overlay.exit.label staff.patron.display_overlay.exit.accesskey"
+msgid "E&xit"
+msgstr ""
+
+#: staff.patron.display_overlay.search_form.label
+#: staff.patron.display_overlay.search_form.accesskey
+msgctxt "staff.patron.display_overlay.search_form.label staff.patron.display_overlay.search_form.accesskey"
+msgid "Search &Form"
+msgstr ""
+
+#: staff.patron.display_overlay.retrieve_patron.label
+#: staff.patron.display_overlay.retrieve_patron.accesskey
+msgid "&Retrieve Patron"
+msgstr ""
+
+#: staff.patron.bills_overlay.selected_balance.value
+msgid "Selected Balance:"
+msgstr ""
+
+#: staff.patron.bills_overlay.unselected.value
+msgid "Un-Selected:"
+msgstr ""
+
+#: staff.patron.bills_overlay.voided.value
+msgid "Voided:"
+msgstr ""
+
+#: staff.patron.bills_overlay.auto_print.label
+msgctxt "staff.patron.bills_overlay.auto_print.label"
+msgid "Auto-Print"
+msgstr ""
+
+#: staff.patron.hold_notices.add_record_notification.label
+#: staff.patron.hold_notices.add_record_notification.accesskey
+msgid "&Add Record of Notification"
+msgstr ""
+
+#: staff.patron.hold_notices.close_window.label
+#: staff.patron.hold_notices.close_window.accesskey
+msgctxt "staff.patron.hold_notices.close_window.label staff.patron.hold_notices.close_window.accesskey"
+msgid "&Close"
+msgstr ""
+
+#: staff.patron.hold_notices.method.label
+msgid "Method:"
+msgstr ""
+
+#: staff.patron.holds_overlay.pickup_lib.label
+msgctxt "staff.patron.holds_overlay.pickup_lib.label"
+msgid "Pickup Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.request_lib.label
+msgid "Requesting Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.fulfillment_lib.label
+msgid "Fulfilling Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.circ_lib.label
+msgid "Item Circulating Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.owning_lib.label
+msgid "Volume Owning Library"
+msgstr ""
+
+#: staff.patron.holds_overlay.home_lib.label
+msgid "Patron Home Library foo"
+msgstr ""
+
+#: staff.patron.holds_overlay.fetch_more.label
+#: staff.patron.holds_overlay.fetch_more.accesskey
+msgid "Fetch &More Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.lib_filter_checkbox.label
+msgid "Filter:"
+msgstr ""
+
+#: staff.patron.holds_overlay.actions_for_holds.label
+#: staff.patron.holds_overlay.actions_for_holds.accesskey
+msgid "Actions for &Selected Holds"
+msgstr ""
+
+#: staff.patron.holds_overlay.holds_export.label
+msgctxt "staff.patron.holds_overlay.holds_export.label"
+msgid "Export"
+msgstr ""
+
+#: staff.patron.info_group.clone.label
+#: staff.patron.info_group.clone.accesskey
+msgid "Register a &New Group Member by Cloning Selected Patrons"
+msgstr ""
+
+#: staff.patron.info_group.remove.label
+#: staff.patron.info_group.remove.accesskey
+msgid "&Remove Selected Patrons from the Group"
+msgstr ""
+
+#: staff.patron.info_group.move.label
+#: staff.patron.info_group.move.accesskey
+msgid "&Move Selected Patrons to another patron's group."
+msgstr ""
+
+#: staff.patron.info_group.add.label
+#: staff.patron.info_group.add.accesskey
+msgid "Move &another patron to this patron group."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_p.label
+#: staff.patron.info_group.retrieve_p.accesskey
+msgid "Retrieve Selected &Patrons"
+msgstr ""
+
+#: staff.patron.info_group.group_member.label
+msgid "Group Members"
+msgstr ""
+
+#: staff.patron.info_group.choose_an_action.label
+#: staff.patron.info_group.choose_an_action.accesskey
+msgid "Choose an &Action..."
+msgstr ""
+
+#: staff.patron.info_surveys.survey_number.value
+msgid "Survey #"
+msgstr ""
+
+#: staff.patron.info_surveys.last_answered.value
+msgid "Last Answered on:"
+msgstr ""
+
+#: staff.patron.info_surveys.answer.value
+msgid "Answer:"
+msgstr ""
+
+#: staff.patron.info.notes.label
+#: staff.patron.info.notes.accesskey
+msgid "&Notes"
+msgstr ""
+
+#: staff.patron.info.stat_cats.label
+#: staff.patron.info.stat_cats.accesskey
+msgid "&Statistical Categories"
+msgstr ""
+
+#: staff.patron.info.surveys.label
+#: staff.patron.info.surveys.accesskey
+msgid "Surve&ys"
+msgstr ""
+
+#: staff.patron.info.group.label
+#: staff.patron.info.group.accesskey
+msgid "&Group"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.value
+msgid "Include inactive patrons?"
+msgstr ""
+
+#: staff.patron.search_form_overlay.inactive.accesskey
+msgctxt "staff.patron.search_form_overlay.inactive.accesskey"
+msgid "I"
+msgstr ""
+
+#: staff.patron.search_form_overlay.search_range_menu.value
+msgid "Limit results to patrons in"
+msgstr ""
+
+#: staff.patron.search_result_overlay.save_cols.label
+msgctxt "staff.patron.search_result_overlay.save_cols.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.search_result_overlay.copy_to_clipboard.label
+msgctxt "staff.patron.search_result_overlay.copy_to_clipboard.label"
+msgid "Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.search_result_overlay.print.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.summary_overlay.psagbc.alert.label
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.summary_overlay.pssgbc.standing.label
+msgctxt "staff.patron.summary_overlay.pssgbc.standing.label"
+msgid "Standing"
+msgstr ""
+
+#: staff.patron.summary_overlay.overdue.value
+msgid "Long Overdue:"
+msgstr ""
+
+#: staff.patron.summary_overlay.claimed_returned.value
+msgid "Claimed Returned:"
+msgstr ""
+
+#: staff.patron.summary_overlay.lost_label.value
+msgid "Lost:"
+msgstr ""
+
+#: staff.patron.summary_overlay.noncat_label.value
+msgid "Non Cataloged:"
+msgstr ""
+
+#: staff.patron.summary_overlay.summary_contact.label
+msgid "ID and Contact Information"
+msgstr ""
+
+#: staff.patron.summary_overlay.opac_login.value
+msgid "OPAC Login:"
+msgstr ""
+
+#: staff.patron.user_buckets.stub_not_implemented
+msgid "Just a stub, Not Yet Implemented"
+msgstr ""
+
+#: staff.patron.user_edit.title
+msgctxt "staff.patron.user_edit.title"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.user_edit.user_name.label
+msgid "User Name:"
+msgstr ""
+
+#: staff.patron.user_edit.barcode.label
+msgctxt "staff.patron.user_edit.barcode.label"
+msgid "Barcode:"
+msgstr ""
+
+#: staff.patron.user_edit.firstname.label
+msgctxt "staff.patron.user_edit.firstname.label"
+msgid "First Name:"
+msgstr ""
+
+#: staff.patron.user_edit.middlename.label
+msgctxt "staff.patron.user_edit.middlename.label"
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron.user_edit.lastname.label
+msgctxt "staff.patron.user_edit.lastname.label"
+msgid "Last Name:"
+msgstr ""
+
+#: staff.patron.user_edit.working_location.label
+msgid "Working Location"
+msgstr ""
+
+#: staff.patron.user_edit.permission.label
+msgid "Permission"
+msgstr ""
+
+#: staff.patron.user_edit.applied.label
+msgid "Applied"
+msgstr ""
+
+#: staff.patron.user_edit.depth.label
+msgid "Depth"
+msgstr ""
+
+#: staff.patron.user_edit.grantable.label
+msgid "Grantable"
+msgstr ""
+
+#: staff.patron.user_edit.save.label
+msgctxt "staff.patron.user_edit.save.label"
+msgid "Save"
+msgstr ""
+
+#: staff.patron.ue.ev_user_editor.label
+msgctxt "staff.patron.ue.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: staff.patron.ue.user_greeting.label
+msgctxt "staff.patron.ue.user_greeting.label"
+msgid "Welcome "
+msgstr ""
+
+#: staff.patron.ue.interface_note.label
+msgid ""
+"Note: required or invalid fields are <span style='border-bottom: 2px solid "
+"red;'>marked with color</span>"
+msgstr ""
+
+#: staff.patron.ue.view_errors.label
+msgctxt "staff.patron.ue.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: staff.patron.ue.nav.user_id.label
+msgctxt "staff.patron.ue.nav.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: staff.patron.ue.nav.contact_info.label
+msgctxt "staff.patron.ue.nav.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: staff.patron.ue.nav.addresses.label
+msgctxt "staff.patron.ue.nav.addresses.label"
+msgid "3. Addresses"
+msgstr ""
+
+#: staff.patron.ue.nav.groups_permissions.label
+msgctxt "staff.patron.ue.nav.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: staff.patron.ue.nav.stat_categories.label
+msgctxt "staff.patron.ue.nav.stat_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.nav.surveys.label
+msgctxt "staff.patron.ue.nav.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: staff.patron.ue.nav.finish.label
+msgctxt "staff.patron.ue.nav.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: staff.patron.ue.loading_data.label
+msgctxt "staff.patron.ue.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: staff.patron.ue.found_duplicate_patron.label
+msgctxt "staff.patron.ue.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: staff.patron.ue.mark_lost.label
+msgctxt "staff.patron.ue.mark_lost.label"
+msgid "Mark Lost"
+msgstr ""
+
+#: staff.patron.ue.username.label
+msgctxt "staff.patron.ue.username.label"
+msgid "Username"
+msgstr ""
+
+#: staff.patron.ue.password.label
+msgctxt "staff.patron.ue.password.label"
+msgid "Password"
+msgstr ""
+
+#: staff.patron.ue.reset.label
+msgctxt "staff.patron.ue.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: staff.patron.ue.re_password.label
+msgctxt "staff.patron.ue.re_password.label"
+msgid "Password: "
+msgstr ""
+
+#: staff.patron.ue.verify_password.label
+msgctxt "staff.patron.ue.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: staff.patron.ue.first_name.label
+msgctxt "staff.patron.ue.first_name.label"
+msgid "First Name"
+msgstr ""
+
+#: staff.patron.ue.middle_name.label
+msgctxt "staff.patron.ue.middle_name.label"
+msgid "Middle Name"
+msgstr ""
+
+#: staff.patron.ue.last_name.label
+msgctxt "staff.patron.ue.last_name.label"
+msgid "Last Name"
+msgstr ""
+
+#: staff.patron.ue.suffix.label
+msgctxt "staff.patron.ue.suffix.label"
+msgid "Suffix"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.choose.label
+msgctxt "staff.patron.ue.choose.label"
+msgid "- Pick -"
+msgstr ""
+
+#: staff.patron.ue.dob.label
+msgctxt "staff.patron.ue.dob.label"
+msgid "Date of Birth"
+msgstr ""
+
+#: staff.patron.ue.primary_id_type.label
+msgctxt "staff.patron.ue.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.required.label
+msgctxt "staff.patron.ue.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: staff.patron.ue.primary_id.label
+msgctxt "staff.patron.ue.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: staff.patron.ue.secondary_id_type.label
+msgctxt "staff.patron.ue.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: staff.patron.ue.none_selected.label
+msgctxt "staff.patron.ue.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: staff.patron.ue.secondary_id.label
+msgctxt "staff.patron.ue.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: staff.patron.ue.parent_guardian.label
+msgctxt "staff.patron.ue.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: staff.patron.ue.email_address.label
+msgctxt "staff.patron.ue.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: staff.patron.ue.day_phone.label
+msgctxt "staff.patron.ue.day_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: staff.patron.ue.evening_phone.label
+msgctxt "staff.patron.ue.evening_phone.label"
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.patron.ue.other_phone.label
+msgctxt "staff.patron.ue.other_phone.label"
+msgid "Other Phone"
+msgstr ""
+
+#: staff.patron.ue.home_library.label
+msgctxt "staff.patron.ue.home_library.label"
+msgid "Home Library"
+msgstr ""
+
+#: staff.patron.ue.address.label
+msgctxt "staff.patron.ue.address.label"
+msgid "Address"
+msgstr ""
+
+#: staff.patron.ue.in_city_limits.label
+msgctxt "staff.patron.ue.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: staff.patron.ue.valid.label
+msgctxt "staff.patron.ue.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: staff.patron.ue.mailing_address.label
+msgctxt "staff.patron.ue.mailing_address.label"
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.patron.ue.physical_address.label
+msgctxt "staff.patron.ue.physical_address.label"
+msgid "Physical Address"
+msgstr ""
+
+#: staff.patron.ue.owned_address.label
+msgctxt "staff.patron.ue.owned_address.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: staff.patron.ue.edit.label
+msgctxt "staff.patron.ue.edit.label"
+msgid "Edit"
+msgstr ""
+
+#: staff.patron.ue.label.label
+msgctxt "staff.patron.ue.label.label"
+msgid "Label"
+msgstr ""
+
+#: staff.patron.ue.zip_code.label
+msgid "Zip Code"
+msgstr ""
+
+#: staff.patron.ue.street_1.label
+msgctxt "staff.patron.ue.street_1.label"
+msgid "Street 1"
+msgstr ""
+
+#: staff.patron.ue.street_2.label
+msgctxt "staff.patron.ue.street_2.label"
+msgid "Street 2"
+msgstr ""
+
+#: staff.patron.ue.city.label
+msgctxt "staff.patron.ue.city.label"
+msgid "City"
+msgstr ""
+
+#: staff.patron.ue.county.label
+msgctxt "staff.patron.ue.county.label"
+msgid "County"
+msgstr ""
+
+#: staff.patron.ue.state.label
+msgctxt "staff.patron.ue.state.label"
+msgid "State"
+msgstr ""
+
+#: staff.patron.ue.country.label
+msgctxt "staff.patron.ue.country.label"
+msgid "Country"
+msgstr ""
+
+#: staff.patron.ue.delete_this_address.label
+msgid "Delete this Address"
+msgstr ""
+
+#: staff.patron.ue.detach_this_address.label
+msgid "Detach this Address"
+msgstr ""
+
+#: staff.patron.ue.create_address.label
+msgid "Create a New Address"
+msgstr ""
+
+#: staff.patron.ue.profile_group.label
+msgctxt "staff.patron.ue.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#: staff.patron.ue.accoutn_expire_date.label
+msgctxt "staff.patron.ue.accoutn_expire_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: staff.patron.ue.internet_access_level.label
+msgctxt "staff.patron.ue.internet_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: staff.patron.ue.active.label
+msgctxt "staff.patron.ue.active.label"
+msgid "Active"
+msgstr ""
+
+#: staff.patron.ue.barred.label
+msgctxt "staff.patron.ue.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: staff.patron.ue.set_lead_account.label
+msgctxt "staff.patron.ue.set_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: staff.patron.ue.claims_returned_count.label
+msgctxt "staff.patron.ue.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr ""
+
+#: staff.patron.ue.alert_message.label
+msgctxt "staff.patron.ue.alert_message.label"
+msgid "Alert Message"
+msgstr ""
+
+#: staff.patron.ue.stat_cat_name.label
+msgctxt "staff.patron.ue.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: staff.patron.ue.owner.label
+msgctxt "staff.patron.ue.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: staff.patron.ue.value.label
+msgctxt "staff.patron.ue.value.label"
+msgid "Value"
+msgstr ""
+
+#: staff.patron.ue.no_surveys_for_location.label
+msgctxt "staff.patron.ue.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: staff.patron.ue.message1.label
+msgid "You are now ready to save the user to the database."
+msgstr ""
+
+#: staff.patron.ue.message2.label
+msgid ""
+"To view or print a summary of the changes, click on the 'View Summary' link."
+msgstr ""
+
+#: staff.patron.ue.message3.label
+msgid "To save the user, click on the 'Save User' button."
+msgstr ""
+
+#: staff.patron.ue.view_summary.label
+msgid "View Summary"
+msgstr ""
+
+#: staff.patron.ue.back.label
+msgctxt "staff.patron.ue.back.label"
+msgid "Back"
+msgstr ""
+
+#: staff.patron.ue.forward.label
+msgctxt "staff.patron.ue.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: staff.patron.ue.user_summary.label
+msgid ""
+"User Summary Information (Deleted items are marked in <span "
+"class='deleted'>color</span><span>)</span>"
+msgstr ""
+
+#: staff.patron.ue.barcode.label
+msgctxt "staff.patron.ue.barcode.label"
+msgid "Barcode"
+msgstr ""
+
+#: staff.patron.ue.addresses.label
+msgctxt "staff.patron.ue.addresses.label"
+msgid "Addresses"
+msgstr ""
+
+#: staff.patron.ue.address_label.label
+msgctxt "staff.patron.ue.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: staff.patron.ue.billing_address.label
+msgctxt "staff.patron.ue.billing_address.label"
+msgid "Billing Address"
+msgstr ""
+
+#: staff.patron.ue.profile.label
+msgctxt "staff.patron.ue.profile.label"
+msgid "Profile"
+msgstr ""
+
+#: staff.patron.ue.expire_date.label
+msgctxt "staff.patron.ue.expire_date.label"
+msgid "Expire Date"
+msgstr ""
+
+#: staff.patron.ue.family_lead_account.label
+msgctxt "staff.patron.ue.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: staff.patron.ue.stat_categories.label
+msgctxt "staff.patron.ue.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: staff.patron.ue.survey.label
+msgctxt "staff.patron.ue.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: staff.patron.ue.question.label
+msgctxt "staff.patron.ue.question.label"
+msgid "Question"
+msgstr ""
+
+#: staff.patron.ue.answer.label
+msgctxt "staff.patron.ue.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: staff.patron.ue.bad_dob.label
+msgid ""
+"The date of birth field is not formatted correctly. We are expecting YYYY-"
+"MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_username.label
+msgid "Username is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_passwords.label
+msgid "Passwords do not match or are invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_firstname.label
+msgid "First name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_middlename.label
+msgid "Middle name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_lastname.label
+msgid "Last name is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_barcode.label
+msgid "Barcode is invalid"
+msgstr ""
+
+#: staff.patron.ue.duplicate_barcode.label
+msgid "The selected barcode already exists in the database"
+msgstr ""
+
+#: staff.patron.ue.new_barcode_warn.label
+msgid ""
+"This will de-activate the existing barcode for this user! If you wish to "
+"continue, enter the new barcode below. Otherwise, click the Cancel button."
+msgstr ""
+
+#: staff.patron.ue.no_ident.label
+msgid "You must select at least one type of identification"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_dl.label
+msgid "Invalid drivers license. Should be STATE-NUMBER"
+msgstr ""
+
+#: staff.patron.ue.bad_ident_ssn.label
+msgid "Invalid social security number. Format should be 111-22-3333"
+msgstr ""
+
+#: staff.patron.ue.bad_email.label
+msgid "The email addresses is not valid"
+msgstr ""
+
+#: staff.patron.ue.bad_phone.label
+msgid "An invalid phone number was entered"
+msgstr ""
+
+#: staff.patron.ue.no_profile.label
+msgctxt "staff.patron.ue.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: staff.patron.ue.bad_expire.label
+msgid "The user expiration date is invalid. We are expecting YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.bad_claims_returned.label
+msgid "The claims returned count is invalid"
+msgstr ""
+
+#: staff.patron.ue.unknown_error.label
+msgid "An unknown formatting error occurred"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_label.label
+msgid "Address label is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_street.label
+msgid "Address street is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_city.label
+msgid "Address city is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_county.label
+msgid "Address county is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_state.label
+msgid "Address state is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_country.label
+msgid "Address country is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_addr_zip.label
+msgid "Address zip is invalid"
+msgstr ""
+
+#: staff.patron.ue.bad_survey.label
+msgid "Required survey is unanswered"
+msgstr ""
+
+#: staff.patron.ue.delete_addr_warn.label
+msgid ""
+"This will remove this address from the user. Are you sure you wish to "
+"continue?"
+msgstr ""
+
+#: staff.patron.ue.yes.label
+msgctxt "staff.patron.ue.yes.label"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.ue.no.label
+msgctxt "staff.patron.ue.no.label"
+msgid "No"
+msgstr ""
+
+#: staff.patron.ue.summary_window.label
+msgid "Patron Summary"
+msgstr ""
+
+#: staff.patron.ue.success.label
+msgid "User update succeeded"
+msgstr ""
+
+#: staff.patron.ue.dup_ident1.label
+msgid ""
+"A user already exists with the primary identification provided. Do you wish "
+"to view the duplicate record now?"
+msgstr ""
+
+#: staff.patron.ue.dup_username.label
+msgid ""
+"The selected username is in use by another user. Please choose a different "
+"username."
+msgstr ""
+
+#: staff.patron.ue.dup_barcode.label
+msgid ""
+"The selected barcode is in use by another user. Please choose a different "
+"barcode."
+msgstr ""
+
+#: staff.patron.ue.cancel_confirm.label
+msgid ""
+"Are you sure you wish to cancel this editing session? Canceling will destroy "
+"any unsaved changes you have made thus far to the user."
+msgstr ""
+
+#: staff.patron.ue.juv_guardian.label
+msgid ""
+"This patron is under 18 years of age. Please enter the name of the parent "
+"or guardian for this patron."
+msgstr ""
+
+#: staff.patron.ue.bad_date.label
+msgid ""
+"The date provided is either in the future or invalid. We are expecting "
+"YYYY-MM-DD"
+msgstr ""
+
+#: staff.patron.ue.made_barred.label
+msgid ""
+"Please add a note to the patron's alert message explaining why the patron is "
+"barred."
+msgstr ""
+
+#: staff.patron.items_overlay.sel_clip.label
+#: staff.patron.items_overlay.sel_clip.accesskey
+msgctxt "staff.patron.items_overlay.sel_clip.label staff.patron.items_overlay.sel_clip.accesskey"
+msgid "&Copy to Clipboard"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_bucket.label
+#: staff.patron.items_overlay.sel_bucket.accesskey
+msgctxt "staff.patron.items_overlay.sel_bucket.label staff.patron.items_overlay.sel_bucket.accesskey"
+msgid "&Add to Item Bucket"
+msgstr ""
+
+#: staff.patron.items_overlay.show_catalog.label
+msgctxt "staff.patron.items_overlay.show_catalog.label"
+msgid "Show in Catalog"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_copy_details.label
+#: staff.patron.items_overlay.sel_copy_details.accesskey
+msgctxt "staff.patron.items_overlay.sel_copy_details.label staff.patron.items_overlay.sel_copy_details.accesskey"
+msgid "Show &Item Details"
+msgstr ""
+
+#: staff.patron.items_overlay.sel_patron.label
+#: staff.patron.items_overlay.sel_patron.accesskey
+msgctxt "staff.patron.items_overlay.sel_patron.label staff.patron.items_overlay.sel_patron.accesskey"
+msgid "Show &Last Few Circulations"
+msgstr ""
+
+#: staff.patron.items_overlay.items_edit.label
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items_overlay.items_mark_lost.label
+msgid "Mark Lost (by Patron)"
+msgstr ""
+
+#: staff.patron.items_overlay.items_claimed_returned.label
+msgid "Mark Claimed Returned"
+msgstr ""
+
+#: staff.patron.items_overlay.items_renew.label
+msgctxt "staff.patron.items_overlay.items_renew.label"
+msgid "Renew"
+msgstr ""
+
+#: staff.patron.items_overlay.items_renew_all.label
+msgid "Renew All"
+msgstr ""
+
+#: staff.patron.items_overlay.items_checkin.label
+msgctxt "staff.patron.items_overlay.items_checkin.label"
+msgid "Check In"
+msgstr ""
+
+#: staff.patron.items_overlay.add_billing.label
+msgctxt "staff.patron.items_overlay.add_billing.label"
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.items_overlay.save_columns.label
+msgctxt "staff.patron.items_overlay.save_columns.label"
+msgid "Save Columns"
+msgstr ""
+
+#: staff.patron.items_overlay.actions_for_selected_items.label
+#: staff.patron.items_overlay.actions_for_selected_items.accesskey
+msgctxt "staff.patron.items_overlay.actions_for_selected_items.label staff.patron.items_overlay.actions_for_selected_items.accesskey"
+msgid "Actions for &Selected Items"
+msgstr ""
+
+#: staff.patron.items_overlay.show_noncats.label
+#: staff.patron.items_overlay.show_noncats.accesskey
+msgid "Show &Non-Cataloged Circulations in List Above"
+msgstr ""
+
+#: staff.patron.items_overlay.items_export.label
+msgctxt "staff.patron.items_overlay.items_export.label"
+msgid "Export"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.ev_user_editor.label
+msgctxt "ev.staff.patron.ue_xhtml.ev_user_editor.label"
+msgid "Evergreen User Editor"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.welcome.label
+msgctxt "ev.staff.patron.ue_xhtml.welcome.label"
+msgid "Welcome "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.view_errors.label
+msgctxt "ev.staff.patron.ue_xhtml.view_errors.label"
+msgid "View Errors"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.user_id.label
+msgctxt "ev.staff.patron.ue_xhtml.user_id.label"
+msgid "1. User Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.contact_info.label
+msgctxt "ev.staff.patron.ue_xhtml.contact_info.label"
+msgid "2. Contact Info"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.addresses.label
+msgctxt "ev.staff.patron.ue_xhtml.addresses.label"
+msgid "3. Addresses"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.groups_permissions.label
+msgctxt "ev.staff.patron.ue_xhtml.groups_permissions.label"
+msgid "4. Groups and Permissions"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.statistical_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.statistical_categories.label"
+msgid "5. Statistical Categories"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.surveys.label
+msgctxt "ev.staff.patron.ue_xhtml.surveys.label"
+msgid "6. Surveys"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.finish.label
+msgctxt "ev.staff.patron.ue_xhtml.finish.label"
+msgid "7. Finish"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.loading_data.label
+msgctxt "ev.staff.patron.ue_xhtml.loading_data.label"
+msgid "Loading data..."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.found_duplicate_patron.label
+msgctxt "ev.staff.patron.ue_xhtml.found_duplicate_patron.label"
+msgid "Number of possible duplicate patron(s):"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.barcode.label
+msgctxt "ev.staff.patron.ue_xhtml.barcode.label"
+msgid "Barcode"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mark_lost.label
+msgctxt "ev.staff.patron.ue_xhtml.mark_lost.label"
+msgid "Mark Lost"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.username.label
+msgctxt "ev.staff.patron.ue_xhtml.username.label"
+msgid "Username"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.password.label
+msgctxt "ev.staff.patron.ue_xhtml.password.label"
+msgid "Password"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.reset.label
+msgctxt "ev.staff.patron.ue_xhtml.reset.label"
+msgid "Reset"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.re_password.label
+msgctxt "ev.staff.patron.ue_xhtml.re_password.label"
+msgid "Password: "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.verify_password.label
+msgctxt "ev.staff.patron.ue_xhtml.verify_password.label"
+msgid "Verify Password"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.first_name.label
+msgctxt "ev.staff.patron.ue_xhtml.first_name.label"
+msgid "First Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.middle_name.label
+msgctxt "ev.staff.patron.ue_xhtml.middle_name.label"
+msgid "Middle Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.last_name.label
+msgctxt "ev.staff.patron.ue_xhtml.last_name.label"
+msgid "Last Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.suffix.label"
+msgid "Suffix"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.pick_suffix.label
+msgctxt "ev.staff.patron.ue_xhtml.pick_suffix.label"
+msgid "- Pick -"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.dob.label
+msgctxt "ev.staff.patron.ue_xhtml.dob.label"
+msgid "Date of Birth"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.primary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id_type.label"
+msgid "Primary Identification Type"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.primary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.primary_id.label"
+msgid "Primary Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.parent_guardian.label
+msgctxt "ev.staff.patron.ue_xhtml.parent_guardian.label"
+msgid "Parent or Guardian"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.email_address.label
+msgctxt "ev.staff.patron.ue_xhtml.email_address.label"
+msgid "Email Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.daytime_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.daytime_phone.label"
+msgid "Daytime Phone"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.evening_phone.label
+msgctxt "ev.staff.patron.ue_xhtml.evening_phone.label"
+msgid "Evening Phone"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.other_phone.label
+msgid "Other (Cell Phone)"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.home_library.label
+msgctxt "ev.staff.patron.ue_xhtml.home_library.label"
+msgid "Home Library"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address.label
+msgctxt "ev.staff.patron.ue_xhtml.address.label"
+msgid "Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.in_city_limits.label
+msgctxt "ev.staff.patron.ue_xhtml.in_city_limits.label"
+msgid "Within City Limits"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.valid.label
+msgctxt "ev.staff.patron.ue_xhtml.valid.label"
+msgid "Valid"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mailing_address.label
+msgctxt "ev.staff.patron.ue_xhtml.mailing_address.label"
+msgid "Mailing Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.physical_address.label
+msgctxt "ev.staff.patron.ue_xhtml.physical_address.label"
+msgid "Physical Address"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address_owned_by.label
+msgctxt "ev.staff.patron.ue_xhtml.address_owned_by.label"
+msgid "Address is owned by"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.label.label
+msgctxt "ev.staff.patron.ue_xhtml.label.label"
+msgid "Label"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.zip.label
+msgid "Zip"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.street1.label
+msgctxt "ev.staff.patron.ue_xhtml.street1.label"
+msgid "Street 1"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.street2.label
+msgctxt "ev.staff.patron.ue_xhtml.street2.label"
+msgid "Street 2"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.city.label
+msgctxt "ev.staff.patron.ue_xhtml.city.label"
+msgid "City"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.conuty.label
+msgctxt "ev.staff.patron.ue_xhtml.conuty.label"
+msgid "County"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.state.label
+msgctxt "ev.staff.patron.ue_xhtml.state.label"
+msgid "State"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.country.label
+msgctxt "ev.staff.patron.ue_xhtml.country.label"
+msgid "Country"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.profile_group.label
+msgctxt "ev.staff.patron.ue_xhtml.profile_group.label"
+msgid "Profile Group"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.required.label
+msgctxt "ev.staff.patron.ue_xhtml.required.label"
+msgid " -- Required -- "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.account_expiration_date.label
+msgctxt "ev.staff.patron.ue_xhtml.account_expiration_date.label"
+msgid "Account Expiration Date"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.net_access_level.label
+msgctxt "ev.staff.patron.ue_xhtml.net_access_level.label"
+msgid "Internet Access Level"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.active.label
+msgctxt "ev.staff.patron.ue_xhtml.active.label"
+msgid "Active"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.barred.label
+msgctxt "ev.staff.patron.ue_xhtml.barred.label"
+msgid "Barred"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.set_family_group_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.set_family_group_lead_account.label"
+msgid "Set as Family or Group Lead Account"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.claims_returned_count.label
+msgctxt "ev.staff.patron.ue_xhtml.claims_returned_count.label"
+msgid "Claims Returned Count"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.alert_message.label
+msgctxt "ev.staff.patron.ue_xhtml.alert_message.label"
+msgid "Alert Message"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.stat_cat_name.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_cat_name.label"
+msgid "Statistical Category Name"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.owner.label
+msgctxt "ev.staff.patron.ue_xhtml.owner.label"
+msgid "Owner"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.value.label
+msgctxt "ev.staff.patron.ue_xhtml.value.label"
+msgid "Value"
+msgstr ""
+
+#. Used in a selection list, the '-' at the start and end draws attention to the entry
+#: ev.staff.patron.ue_xhtml.none_selected.label
+msgctxt "ev.staff.patron.ue_xhtml.none_selected.label"
+msgid " -- None Selected -- "
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.no_surveys_for_location.label
+msgctxt "ev.staff.patron.ue_xhtml.no_surveys_for_location.label"
+msgid "No surveys have been created for this location."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.finishing_message.label
+msgid ""
+"You are now ready to save the user to the database.<br/>To view or print a "
+"summary of the changes, click on the 'View Summary' link.<br/>To save the "
+"user, click on the 'Save User' button."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.back.label
+msgctxt "ev.staff.patron.ue_xhtml.back.label"
+msgid "Back"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.forward.label
+msgctxt "ev.staff.patron.ue_xhtml.forward.label"
+msgid "Forward"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.secondary_id_type.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id_type.label"
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.secondary_id.label
+msgctxt "ev.staff.patron.ue_xhtml.secondary_id.label"
+msgid "Secondary Identification"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.address_label.label
+msgctxt "ev.staff.patron.ue_xhtml.address_label.label"
+msgid "Address Label"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.mailing.label
+msgid "Mailing"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.billing.label
+msgid "Billing"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.profile.label
+msgctxt "ev.staff.patron.ue_xhtml.profile.label"
+msgid "Profile"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.expire_date.label
+msgctxt "ev.staff.patron.ue_xhtml.expire_date.label"
+msgid "Expire Date"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.family_lead_account.label
+msgctxt "ev.staff.patron.ue_xhtml.family_lead_account.label"
+msgid "Family Lead Account"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.stat_categories.label
+msgctxt "ev.staff.patron.ue_xhtml.stat_categories.label"
+msgid "Statistical Categories"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.survey.label
+msgctxt "ev.staff.patron.ue_xhtml.survey.label"
+msgid "Survey"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.question.label
+msgctxt "ev.staff.patron.ue_xhtml.question.label"
+msgid "Question"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.answer.label
+msgctxt "ev.staff.patron.ue_xhtml.answer.label"
+msgid "Answer"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.claims_return_confirm.label
+msgid ""
+"This will reset the claims returned count for this user. Are you sure you "
+"wish to perform this action?"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.unsaved_changes.label
+msgid "You have unsaved changes."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.xact_collision.label
+msgid ""
+"It appears that someone else was also editing this user. Saving the user now "
+"will destroy their changes. Click 'OK' to refresh the user and continue "
+"editing. Click 'Cancel' to do nothing. Note that you will not be able to "
+"save the user until this page has been refreshed."
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.no_profile.label
+msgctxt "ev.staff.patron.ue_xhtml.no_profile.label"
+msgid "A profile group must be selected"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.print_page.label
+msgid "Print Page"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.return_to_editor.label
+msgid "Return to Editor"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.save_user.value
+msgid "Save User"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.save_clone_user.value
+msgid "Save and Clone User"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.cancel.value
+msgctxt "ev.staff.patron.ue_xhtml.cancel.value"
+msgid "Cancel"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.alert_message_reset.value
+msgid "Clear"
+msgstr ""
+
+#: ev.staff.patron.ue_xhtml.date_selector.label
+msgctxt "ev.staff.patron.ue_xhtml.date_selector.label"
+msgid "Date selector"
+msgstr ""
+
+#: staff.portal.title
+msgid "Evergreen Staff Client Portal Page"
+msgstr ""
+
+#: staff.portal.default.welcome
+msgid ""
+"This is the Evergreen staff client portal page. You can customize this with "
+"the information or functionality your organization needs to support its "
+"operations. For example, you could add links to process and procedure "
+"documents."
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:1"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2
+msgctxt "../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:2"
+msgid "Multiclass Search Help"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:3
+msgid "Recognized search keys include:"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:4
+msgid "Search key"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:5
+msgid "Definition"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:6
+msgid ""
+"keyword</strong>, <strong>title</strong>, "
+"<strong>author</strong>, <strong>subject</strong>, and "
+"<strong>series</strong> support additional search subclasses, "
+"specified with a <kbd>|</kbd>. For example: "
+"<kbd>title|proper:gone with the wind"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:7
+msgid "keyword/kw"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:8
+msgid "search keyword(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:9
+msgid "author/au/name"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:10
+msgid "search author(s)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:11
+msgid "title/ti"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:12
+msgid "search title"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:13
+msgid "subject/su"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:14
+msgid "search subject"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:15
+msgid "series/se"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:16
+msgid "search series"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:17
+msgid "lang"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:18
+msgid "limit by language (specifiy multiple langs with lang:l1 lang:l2 ...)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:19
+msgid "site"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:20
+msgid "search at specified org unit, corresponds to actor.org_unit.shortname"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:21
+msgid "sort"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:22
+msgid "sort type (title, author, pubdate)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:23
+msgid "dir"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:24
+msgid "sort direction (asc, desc)"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:25
+msgid "available"
+msgstr ""
+
+#: ../../Open-ILS/xul/staff_client/server/locale/en-US/multiclass_search_help.html:26
+msgid "if set to anything other than \"false\" or \"0\", limits to available items"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/offline.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: common.exception
+msgid ""
+"!! This software has encountered an error. Please tell your friendly system "
+"administrator or software developer the following:\n"
+"%1$s\n"
+"%2$s\n"
+msgstr ""
+
+#: common.jsan.missing
+msgid "The JSAN library object is missing."
+msgstr ""
+
+#: common.ok
+msgid "Ok"
+msgstr ""
+
+#: common.clear
+msgid "Clear"
+msgstr ""
+
+#: common.confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: common.error.default
+msgid "Please report that this happened."
+msgstr ""
+
+#: common.barcode.status.warning
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgstr ""
+
+#: common.barcode.status.warning.lost
+msgid "Lost"
+msgstr ""
+
+#: common.barcode.status.warning.expired
+msgid "Expired"
+msgstr ""
+
+#: common.barcode.status.warning.barred
+msgid "Barred"
+msgstr ""
+
+#: common.barcode.status.warning.blocked
+msgid "Blocked"
+msgstr ""
+
+#: common.barcode.status.warning.unknown
+msgid "with an unknown code: %1$s"
+msgstr ""
+
+#: common.date.invalid
+msgid "Invalid Date"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.unimplemented
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: cat.bib_record
+msgid "Bib Record: %1$s"
+msgstr ""
+
+#: cat.opac.delete_record.confirm
+msgid "Are you sure you want to delete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.delete_record
+msgid "Delete Record"
+msgstr ""
+
+#: cat.opac.delete
+msgid "Delete"
+msgstr ""
+
+#: cat.opac.undelete_record.confirm
+msgid "Are you sure you want to undelete title record #%1$s from the catalog?"
+msgstr ""
+
+#: cat.opac.undelete_record
+msgid "Undelete Record"
+msgstr ""
+
+#: cat.opac.undelete
+msgid "Undelete"
+msgstr ""
+
+#: cat.opac.cancel
+msgid "Cancel"
+msgstr ""
+
+#: cat.opac.record_deleted
+msgid "Record deleted."
+msgstr ""
+
+#: cat.opac.record_deleted.confirm
+msgctxt "cat.opac.record_deleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#: cat.opac.record_undeleted
+msgid "Record undeleted."
+msgstr ""
+
+#: cat.opac.record_undeleted.confirm
+msgctxt "cat.opac.record_undeleted.confirm"
+msgid "Check here to confirm this action."
+msgstr ""
+
+#. # variables: document ID, error code, error description
+#: cat.opac.record_delete.error
+msgid "Error deleting record #%1$s : %2$s : %3$s"
+msgstr ""
+
+#: cat.save_record
+msgid "Save Record"
+msgstr ""
+
+#: cat.save.success
+msgid "Record successfully saved."
+msgstr ""
+
+#: cat.save.failure
+msgid "Record not likely updated."
+msgstr ""
+
+#: cat.record.counter
+msgid "Record %1$s of %2$s"
+msgstr ""
+
+#: cat.preference.error
+msgid "Preference not likely updated."
+msgstr ""
+
+#: staff.admin.survey.save_response.label
+msgid "Save this response"
+msgstr ""
+
+#: staff.admin.survey.save_response.accesskey
+msgid "R"
+msgstr ""
+
+#: circ.bad_checkdigit
+msgid "This barcode has a bad check digit."
+msgstr ""
+
+#: circ.barcode.enter
+msgid "Please enter a patron barcode first."
+msgstr ""
+
+#: circ.barcode.warning
+msgid "Barcode Warning"
+msgstr ""
+
+#: circ.standalone
+msgid "Standalone"
+msgstr ""
+
+#: circ.duplicate_scan.msg
+msgid "This barcode has already been scanned."
+msgstr ""
+
+#: circ.duplicate_scan.field
+msgid "Duplicate Scan"
+msgstr ""
+
+#: circ.offline_checkout.nonbarcoded
+msgid "or choose a non-barcoded option..."
+msgstr ""
+
+#: circ.offline_checkout.items
+msgid "Enter the number of items:"
+msgstr ""
+
+#: circ.offline_checkout.download.warning
+msgid ""
+"WARNING: The non-barcode types have not been downloaded from the server. "
+"You should log in to retrieve these."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.lost
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.expired
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.barred
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.blocked
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.unknown
+msgid ""
+"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
+"%3$s."
+msgstr ""
+
+#: circ.offline_checkout.date.early
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: circ.offline_checkout.required_field
+msgid "Required Field"
+msgstr ""
+
+#: circ.offline_checkout.valid_count
+msgid "Please try again and enter a valid count."
+msgstr ""
+
+#: circ.offline_checkout.required_value
+msgid "Required Value"
+msgstr ""
+
+#: circ.offline_register.future.birth.date
+msgid "Patron needs to be born yesterday."
+msgstr ""
+
+#: circ.offline_register.invalid.birth.date
+msgid "Happy birthday! You need to be more than 0 days old."
+msgstr ""
+
+#: circ.offline_register.survey.prompt
+msgid "Choose a response..."
+msgstr ""
+
+#: circ.offline_register.missing.post_code
+msgid "Missing Address : Postal Code"
+msgstr ""
+
+#: circ.offline_register.missing.state
+msgid "Missing Address : State"
+msgstr ""
+
+#: circ.offline_register.missing.city
+msgid "Missing Address : City"
+msgstr ""
+
+#: circ.offline_register.missing.street1
+msgid "Missing Address : Line 1"
+msgstr ""
+
+#: circ.offline_register.missing.ident_value
+msgid "Missing Identification Value"
+msgstr ""
+
+#: circ.offline_register.missing.ident_type
+msgid "Missing Identification Type"
+msgstr ""
+
+#: circ.offline_register.missing.dob
+msgid "Missing Date of Birth"
+msgstr ""
+
+#: circ.offline_register.missing.first_given_name
+msgid "Missing First Name"
+msgstr ""
+
+#: circ.offline_register.missing.family_name
+msgid "Missing Last Name"
+msgstr ""
+
+#: circ.offline_register.missing.passwd
+msgid "Missing Password"
+msgstr ""
+
+#: circ.offline_register.missing.barcode
+msgid "Missing Barcode"
+msgstr ""
+
+#: circ.offline_register.missing.profile
+msgid "Missing Profile"
+msgstr ""
+
+#: circ.offline_register.missing.home_ou
+msgid "Missing Home Library"
+msgstr ""
+
+#: circ.offline_register.missing.alert
+msgid "Please fix the following:"
+msgstr ""
+
+#: circ.offline_register.patron.saved
+msgid "Patron Registration Saved"
+msgstr ""
+
+#: circ.offline_register.missing.library.list
+msgid "Missing library list."
+msgstr ""
+
+#: circ.offline_register.missing.profile.list
+msgid "Missing profile list."
+msgstr ""
+
+#: circ.offline_register.missing.id.type.list
+msgid "Missing identification type list."
+msgstr ""
+
+#: circ.offline_register.missing.required.surveys
+msgid "Missing required surveys."
+msgstr ""
+
+#: circ.offline_register.missing.files.error
+msgid ""
+"ERROR: Offline patron registration requires some server-generated files. "
+"Please login periodically to retrieve these files."
+msgstr ""
+
+#: jsan.file_not_found.error
+msgid "File not found: %1$s"
+msgstr ""
+
+#: jsan.namespace.creation.error
+msgid "Could not create namespace[%1$s]: %2$s"
+msgstr ""
+
+#: menu.cmd_edit_copy_buckets.tab
+msgid "Copy Buckets"
+msgstr ""
+
+#: menu.cmd_edit_volume_buckets.tab
+msgid "Volume Buckets"
+msgstr ""
+
+#: menu.cmd_edit_record_buckets.tab
+msgid "Record Buckets"
+msgstr ""
+
+#: menu.cmd_edit_user_buckets.tab
+msgid "User Buckets"
+msgstr ""
+
+#: menu.cmd_replace_barcode.prompt
+msgid "Enter original barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.label
+msgctxt "menu.cmd_replace_barcode.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.retrieval.error
+msgid "We were unable to retrieve an item with barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.prompt
+msgid "Enter the replacement barcode for the item:"
+msgstr ""
+
+#: menu.cmd_replace_barcode.replacement.label
+msgctxt "menu.cmd_replace_barcode.replacement.label"
+msgid "Replace Barcode"
+msgstr ""
+
+#: menu.cmd_replace_barcode.blank.error
+msgid "Rename aborted. Blank for barcode not allowed."
+msgstr ""
+
+#: menu.cmd_replace_barcode.duplicate.error
+msgid "Rename aborted. Another copy has barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.testing.error
+msgid "Error testing replacement barcode \"%1$s\"."
+msgstr ""
+
+#: menu.cmd_replace_barcode.permission.error
+msgid "Rename aborted. Insufficient permission."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.error
+msgid "Error renaming item."
+msgstr ""
+
+#: menu.cmd_replace_barcode.renaming.failure
+msgid "The rename operation probably failed."
+msgstr ""
+
+#: menu.cmd_search_opac.tab
+msgid "Catalog"
+msgstr ""
+
+#: menu.cmd_search_bib_id.tab
+msgid "What is the internal ID for the bibliographic record?"
+msgstr ""
+
+#: menu.cmd_search_bib_id.prompt
+msgid "Bib ID Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.tab
+msgid "What is the TCN or accession ID for the record?"
+msgstr ""
+
+#: menu.cmd_search_tcn.prompt
+msgid "TCN Lookup"
+msgstr ""
+
+#: menu.cmd_search_tcn.not_found.error
+msgid "\"%1$s\" not found"
+msgstr ""
+
+#: menu.cmd_search_tcn.deleted.error
+msgid "\"%1$s\" is deleted. Show the deleted record anyway?"
+msgstr ""
+
+#: menu.cmd_patron_register.related.tab
+msgid "Editing Related Patron"
+msgstr ""
+
+#: menu.cmd_patron_register.tab
+msgid "Register Patron"
+msgstr ""
+
+#: menu.cmd_browse_holds.tab
+msgid "Hold Browser"
+msgstr ""
+
+#: menu.cmd_browse_holds_shelf.tab
+msgid "Holds Shelf"
+msgstr ""
+
+#: menu.cmd_browse_hold_pull_list.tab
+msgid "On Shelf Pull List"
+msgstr ""
+
+#: menu.cmd_local_admin.tab
+msgid "Local Administration"
+msgstr ""
+
+#: menu.cmd_retrieve_last_patron.session.error
+msgid "No patron visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.session.error
+msgid "No record visited yet this session."
+msgstr ""
+
+#: menu.cmd_retrieve_last_record.status
+msgid "Retrieving title..."
+msgstr ""
+
+#: menu.cmd_chg_session.label
+msgid "Change Login"
+msgstr ""
+
+#: menu.cmd_chg_session.operator.label
+msgid "Change Operator: %1$s"
+msgstr ""
+
+#: menu.cmd_manage_offline_xacts.tab
+msgid "Offline Transactions"
+msgstr ""
+
+#: menu.cmd_download_patrons.complete.status
+msgid "Download completed"
+msgstr ""
+
+#: menu.cmd_download_patrons.error
+msgid ""
+"There was a problem with the download. The server returned a status %1$s : "
+"%2$s"
+msgstr ""
+
+#: menu.cmd_stat_cat_edit.tab
+msgid "Statistical Category Editor"
+msgstr ""
+
+#: menu.cmd_non_cat_type_edit.tab
+msgid "Non-Cataloged Type Editor"
+msgstr ""
+
+#: menu.cmd_copy_location_edit.tab
+msgid "Copy Location Editor"
+msgstr ""
+
+#: menu.cmd_console.tab
+msgid "JavaScript Console"
+msgstr ""
+
+#: menu.cmd_shell.tab
+msgid "JavaScript Shell"
+msgstr ""
+
+#: menu.cmd_xuleditor.tab
+msgid "XUL Editor"
+msgstr ""
+
+#: menu.cmd_fieldmapper.tab
+msgid "Fieldmapper"
+msgstr ""
+
+#: menu.cmd_public_opac.tab
+msgid "OPAC"
+msgstr ""
+
+#: menu.cmd_extension_manager.tab
+msgid "Extension Manager"
+msgstr ""
+
+#: menu.cmd_theme_manager.tab
+msgid "Theme Manager"
+msgstr ""
+
+#: menu.cmd_shutdown.prompt
+msgid "Exit Evergreen completely?"
+msgstr ""
+
+#: menu.spawn_search.msg
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: menu.close_all_tabs.error
+msgid "Error closing all tabs"
+msgstr ""
+
+#: menu.new_tab.tab
+msgid "Tab"
+msgstr ""
+
+#: menu.set_tab.error
+msgid "pause for error"
+msgstr ""
+
+#: main.testing
+msgid "Testing"
+msgstr ""
+
+#: main.transaction_export.title
+msgid "Save Transaction File As"
+msgstr ""
+
+#: main.transaction_export.prompt
+msgid "Would you like to overwrite the existing file %1$s?"
+msgstr ""
+
+#: main.transaction_export.prompt.title
+msgid "Transaction Export Warning"
+msgstr ""
+
+#: main.transaction_export.success.prompt
+msgid ""
+"Your transactions have been successfully exported to file %1$s. We strongly "
+"recommend that you now purge the transactions from this staff client. Would "
+"you like for us to do this?"
+msgstr ""
+
+#: main.transaction_export.success.title
+msgid "Transaction Export Successful"
+msgstr ""
+
+#: main.transaction_export.filename.error
+msgid ""
+"Error purging transactions: Taking too long to find a unique filename for "
+"archival."
+msgstr ""
+
+#: main.transaction_export.duplicate.warning
+msgid ""
+"Please note that you now have two sets of identical transactions. Unless "
+"the set you just exported is solely for archival purposes, we run the risk "
+"of duplicate transactions being processed on the server."
+msgstr ""
+
+#: main.transaction_export.no_filename.error
+msgid ""
+"Either you did not choose a filename, or you tried to overwrite an existing "
+"file."
+msgstr ""
+
+#: main.transaction_export.no_transactions.error
+msgid "There are no outstanding transactions to export."
+msgstr ""
+
+#: main.transaction_import.outstanding.error
+msgid ""
+"There are already outstanding transactions on this staff client. Upload "
+"these first."
+msgstr ""
+
+#: main.transaction_import.title
+msgid "Import Transaction File"
+msgstr ""
+
+#: main.transaction_import.delete.prompt
+msgid ""
+"Your transactions have been successfully migrated to this staff client.\n"
+"\n"
+"We recommend that you delete the external copy. Would you like for us to "
+"delete %1$s?"
+msgstr ""
+
+#: main.transaction_import.success
+msgid "Transaction Import Successful"
+msgstr ""
+
+#: main.on_debug.clear_cache
+msgid "cache cleared"
+msgstr ""
+
+#: main.on_debug.debug
+msgid "debug the debug :D"
+msgstr ""
+
+#: main.about_btn.label
+msgid "About this client..."
+msgstr ""
+
+#: main.new_window_btn.label
+msgid "Open New Window"
+msgstr ""
+
+#: main.new_window_btn.login_first_warning
+msgid "Please login first!"
+msgstr ""
+
+#: main.settings.migrate
+msgid ""
+"This version of the staff client stores local settings in a different "
+"location than your previous installation. Should we attempt to migrate "
+"these settings?"
+msgstr ""
+
+#: main.settings.migrate.failed
+msgid ""
+"WARNING: Unable to migrate legacy settings. The settings and configuration "
+"files appear to exist in multiple locations. \n"
+"To resolve this problem manually, please consider:\n"
+"\t%1$s\n"
+"which is in the directory where we want to store settings for the current "
+"operating system account, and:\n"
+"\t%2$s\n"
+"which is where we used to store such information.\n"
+msgstr ""
+
+#: main.settings.migrate.confirm
+msgid ""
+"Move the settings and configuration files from\n"
+"%1$s\n"
+"to\n"
+"%2$s?"
+msgstr ""
+
+#: main.settings.migrate.error
+msgid "Error trying to move %1$s to directory %2$s"
+msgstr ""
+
+#: openils.global_util.clear_cache.error
+msgid "Problem clearing the cache: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard.error
+msgid "Clipboard action failed: %1$s"
+msgstr ""
+
+#: openils.global_util.clipboard
+msgid "Copied \"%1$s\" to clipboard."
+msgstr ""
+
+#: openils.global_util.content_window_jsobject.error
+msgid "Error with get_contentWindow(%1$s) and wrappedJSObject: %2$s"
+msgstr ""
+
+#: openils.global_util.content_window.error
+msgid "Error with get_contentWindow(%1$s): %2$s"
+msgstr ""
+
+#: openils.global_util.font_size.error
+msgid "Error adjusting the font size: %1$s"
+msgstr ""
--- /dev/null
+# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
+#. extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: Evergreen 1.4\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: 2007-12-14 12:40-0800\n"
+"Last-Translator: Tigran <tigran@flib.sci.am>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: &\n"
+
+# =================================================================
+# Some generic stuff
+#. =================================================================
+#. Some generic stuff
+#. =================================================================
+#: lang.version
+msgid "remote v1"
+msgstr "հեռացրու v1"
+
+#: lang.description
+msgid "English"
+msgstr "Անգլերեն"
+
+#: lang.author
+msgid "PINES"
+msgstr "PINES"
+
+#: common.all
+msgid "All"
+msgstr "Լրիվ"
+
+#: common.currency
+msgid "$"
+msgstr "$"
+
+#: common.name
+msgid "Name"
+msgstr "Անուն"
+
+#: common.none
+msgid "None"
+msgstr "Ոչ մեկը"
+
+#: common.title
+msgid "Title"
+msgstr "Վերնագիր"
+
+#: common.author
+msgid "Author"
+msgstr "Հեղինակ"
+
+#: common.authors
+msgid "Authors"
+msgstr "Հեղինակներ"
+
+#: common.callnumber
+msgctxt "common.callnumber"
+msgid "Call Number"
+msgstr "Դասիչ"
+
+#: common.edition
+msgid "Edition"
+msgstr "Հրատարակություն"
+
+#: common.subject
+msgid "Subject"
+msgstr "Խորագիր"
+
+#: common.series
+msgid "Series"
+msgstr "Մատենաշար"
+
+#: common.keyword
+msgid "Keyword"
+msgstr "Վճռորոշ բառ"
+
+#: common.type
+msgid "Search Type"
+msgstr "Փնտրման տեսակ"
+
+#: common.isbn
+msgctxt "common.isbn"
+msgid "ISBN"
+msgstr "ISBN"
+
+#: common.format
+msgid "Format"
+msgstr "Ձևաչափ"
+
+# Message displayed while search results are loading
+#. Message displayed while search results are loading
+#: common.loading
+msgctxt "common.loading"
+msgid "Loading..."
+msgstr "Բեռնավորում..."
+
+#: common.login
+msgctxt "common.login"
+msgid "Login"
+msgstr "Գրանցում"
+
+#: common.logout
+msgid "Log Out"
+msgstr "Հեռանալ"
+
+#: common.physical
+msgid "Physical Description"
+msgstr "Ֆիզիկական նկարագրություն"
+
+#: common.pubdate
+msgid "Publication Date"
+msgstr "Հրատարակման ամսաթիվ"
+
+#: common.publisher
+msgid "Publisher"
+msgstr "Հրատարակիչ"
+
+#: common.results
+msgid "Results"
+msgstr "Արդյունքներ"
+
+#: common.select
+msgid "Select"
+msgstr "Ընտրել"
+
+#: common.status
+msgid "Status"
+msgstr "Կարգավիճակ"
+
+#: common.at
+msgid "at"
+msgstr "at"
+
+#: common.of
+msgid "of"
+msgstr "of"
+
+#: common.no
+msgid "No"
+msgstr "Ոչ"
+
+#: common.yes
+msgid "Yes"
+msgstr "Այո"
+
+#: common.cancel
+msgctxt "common.cancel"
+msgid "Cancel"
+msgstr "Չեղյալ անել"
+
+#: common.library
+msgctxt "common.library"
+msgid "Library"
+msgstr "Գրադարան"
+
+#: common.username
+msgid "Username"
+msgstr "Օգտվողի անուն"
+
+#: common.password
+msgid "Password"
+msgstr "Գաղտնաբառ"
+
+#: common.submit
+msgid "Submit"
+msgstr "Հաստատել"
+
+#: common.close
+msgid "close"
+msgstr "փակել"
+
+#: common.and
+msgid "and"
+msgstr "և"
+
+#: common.user_not_found
+msgid "User not found"
+msgstr "Օգտվողը չի գտնվել"
+
+#: opac.advanced.wizard.title
+msgctxt "opac.advanced.wizard.title"
+msgid "Advanced Search"
+msgstr "Խորացված փնտրում"
+
+#: common.nowSearching
+msgid "Now searching "
+msgstr "Հիմա որոնում է"
+
+#: common.ofAtLeast
+msgid " of about "
+msgstr ""
+
+#: common.relevancy
+msgid "Match Score: "
+msgstr "Հաշվի առ հաշիվը։"
+
+#: common.tips
+msgid "Tips:"
+msgstr "Հնարքներ։"
+
+#: common.tips.tip1
+msgid "Click on a folder icon in the sidebar to access related quick searches"
+msgstr ""
+"Սեղմիր կողային մասում առկա թղթապանակի պատկերիկի վրա առագ փնտրումը հասանելի "
+"դարձնելու համար"
+
+#: common.tips.tip2
+msgid ""
+"If you don't find what you want try expanding your search using the range "
+"selector at the right of the search bar"
+msgstr ""
+"Եթե չես գտնում այն ինչ որ պետք է քեզ, ապա ընդլայնիր որոնումը օգտագործելով "
+"փնտրման ցանկի աջ մասում եղած շղթայական ընտրիչը"
+
+#: common.org.openAll
+msgid "Expand All"
+msgstr "Ընդլայնիր բոլորը"
+
+#: common.org.closeAll
+msgid "Close All"
+msgstr "Փակիր բոլորը"
+
+#: common.org.cancel
+msgctxt "common.org.cancel"
+msgid "Cancel"
+msgstr "Չեղյալ անել"
+
+#: common.org.loading
+msgid "Loading library selector..."
+msgstr "Գրադարանի ընտրիչի բեռնավորում..."
+
+# ==========================================================
+# Tips
+#: common.org.note
+msgctxt "common.org.note"
+msgid "Tip:"
+msgstr "Հնարք։"
+
+#: common.org.notetext
+msgid ""
+"Click on a location's name to select it. Click on the folder icons to "
+"expand a section."
+msgstr ""
+"Ընտրության համար սեղմիր տեղաբաշխման անվան վրա։ Սեղմիր թղթապանակի "
+"պատկերիկների վրա բաժինը ընդլայնելու համար։"
+
+#: opac.login.login
+msgctxt "opac.login.login"
+msgid "Login"
+msgstr "Գրանցում"
+
+# =================================================================
+# Footer
+#: opac.basic
+msgctxt "opac.basic"
+msgid "Basic Catalog (HTML only)"
+msgstr "Հիմնական քարտարան (միայն HTML)"
+
+#: common.password_criteria
+#, fuzzy
+msgid ""
+"The password must be at least 7 characters in length, \n"
+"contain at least one letter (a-z/A-Z), \n"
+"and contain at least one number."
+msgstr ""
+"Գաղտնաբառը առնվազն պետք է լինի 7 նիշից ոչ պակաս, \tև պարունակի գոնե մեկ տառ "
+"(a-z/A-Z), \tև առնվազն մեկ թիվ։"
+
+#: common.a2z.title
+msgid "Title: A to Z"
+msgstr "Վերնագիր։ Ա մինչև Ֆ"
+
+#: common.z2a.title
+msgid "Title: Z to A"
+msgstr "Վերնագիր։ Ֆ մինչև Ա"
+
+#: common.a2z.author
+msgid "Author: A to Z"
+msgstr "Հեղինակ։ Ա մինչև Ֆ"
+
+#: common.z2a.author
+msgid "Author: Z to A"
+msgstr "Հեղինակ։ Ֆ մինչև Ա "
+
+#: common.new2old.pubdate
+msgid "Date: Newest to Oldest"
+msgstr "Ամսաթիվ։ թարմից դեպի հին"
+
+#: common.old2new.pubdate
+msgid "Date: Oldest to Newest"
+msgstr "Ամսաթիվ։ հնից դեպի թարմ"
+
+#: opac.style.reddish
+msgid "Reddish"
+msgstr "Կարմրավուն"
+
+#: holds.where_am_i
+#, fuzzy
+msgid ""
+"Holds lists are not as simple as \n"
+"'first come, first served.' A complex matrix combining \n"
+"consideration of item ownership, patron home library, and item purchase \n"
+"date determines priorities for holds; the list is dynamic, changing \n"
+"with every hold placed. Therefore, any indication of a place in the \n"
+"holds list would be inaccurate. The holds system is designed to \n"
+"obtain a requested item in the fastest and most efficient way possible. \n"
+"Your library will contact you when you hold items become \n"
+"available."
+msgstr ""
+"PINES դա նահանգային համակարգ է, ընթերցողներով և նյութերով \tփոխկապակցված "
+"ավելի քան 250 գրադարաններում, պահումների ցուցակները PINES-ում այդքան էլ պարզ "
+"չեն ինչպես\t'առաջին մուտք առաջին սպասարկված'։ Բարդ մատրիցան որը "
+"կոմբինացնում է \tնյութի պատկանելիության, ընթերցողի հիմնական գրադարանի, և "
+"նյութի պատվերի դիտարկումները \tորքան ամսաթիվը սահմանում է առաջնայնությունները "
+"պահումների համար. ցուցակը դինամիկ է, փոփոխվաղ \tյուրաքանչյուր տեղադրված "
+"պահման հետ։ Հետևաբար, տեղաբաշխման յուրաքանչյուր ցուցում \tպահման ցուցակում "
+"կլինի ոչ ճիշտ։ PINES-ի պահումների համակարգը նախագծված է \tպահանջվող նյութը "
+"հնարավորինս արագ և արդյունավետ կերպով ստանալու համար։ \tՁեր PINES գրադարանը "
+"կկապվի ձեր հետ երբ պահվող նյութերը կդառնան \tհասանելի։ "
+
+#: holds.advanced_options
+#, fuzzy
+msgid ""
+"If you wish to broaden the scope of your hold to include other \n"
+"versions of this title, select the formats that would be acceptable. \n"
+"The first available copy will be sent to you."
+msgstr ""
+"Եթե ցանկանում ես ընդլայնել քո պահումների տիրույթը ընդգրկելով \tայս վերնագրի "
+"այլ տարբերակներ, ընտրիր քեզ ընդունելի ձևաչափեր։ \tԱռաջին մատչելի օրինակը "
+"կառաքվի քեզ։ "
+
+# =================================================================
+# Events and Permissions
+#. =================================================================
+#. Events and Permissions
+#. =================================================================
+#: ilsevent.0
+msgid "Operation Succeeded"
+msgstr "Հաջողված գործողություն"
+
+#: ilsevent.1000
+msgid "Login failed. The username or password entered was incorrect."
+msgstr "Գրանցումը տապալվեց։ մուտք արված պայմանաբառը կամ գաղտնաբառը սխալ են։"
+
+#: ilsevent.1001
+msgid "Login session has timed out or does not exist"
+msgstr "Գրանցման սեսիայի ժամանակը լրացել է կամ գոյություն չունի։"
+
+#: ilsevent.1002
+msgid "User was not found in the database"
+msgstr "Շտեմարանում օգտվողը չի գտնվել։"
+
+#: ilsevent.1200
+msgid "The given username already exists in the database"
+msgstr "Այս ընթերցողը շտեմարանում արդեն գոյություն ունի։"
+
+#: ilsevent.5000
+msgid "Permission Denied"
+msgstr "Թույլատվությունը արգելված է"
+
+#: ilsperm.CREATE_HOLD
+msgid "User is not allowed to create holds for other users at this location"
+msgstr ""
+"Օգտվողը իրավունք չունի այս վայրում ստեղծել պահումներ այլ օգտվողների համար"
+
+# =================================================================
+# common/pages
+#. =================================================================
+#. common/pages
+#. =================================================================
+#: common.cn.loading
+msgid "Loading Callnumber Page..."
+msgstr "Բեռնավորում է դասիչների էջը..."
+
+#: common.cn.browsing
+msgid "You are now browsing"
+msgstr "Դու հիմա դիտում ես"
+
+#: common.cn.previous
+msgid "<< Previous Page"
+msgstr "<< նախորդ էջ"
+
+#: common.cn.shelf
+msgctxt "common.cn.shelf"
+msgid "Shelf Browser"
+msgstr "Դարակի դիտակ"
+
+#: common.cn.next
+msgid "Next Page >>"
+msgstr "Հաջորդ էջ >>"
+
+#: common.textsize.title
+msgid "Text Size: "
+msgstr "Տեքստի մեծություն։"
+
+#: common.textsize.regular
+msgid "Regular"
+msgstr "Սովորական"
+
+# Regular / Large
+#. Regular / Large
+#: common.textsize.separator
+msgid "/"
+msgstr "/"
+
+#: common.textsize.large
+msgid "Large"
+msgstr "Լայն"
+
+#: home.js.disabled
+#, fuzzy
+msgid ""
+"JavaScript must be enabled in order for you to use the regular Evergreen "
+"Catalog. \n"
+"However, it seems JavaScript is either disabled or not supported by your "
+"browser. \n"
+"To use the regular Evergreen Catalog, enable JavaScript by changing your "
+"browser options, then \n"
+"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. \n"
+"<br/><br/>Alternatively, you can use the basic HTML-only catalog \n"
+"<a style='color: blue; text-decoration: underline;' "
+"href='/opac/extras/slimpac/start.html'>here</a>."
+msgstr ""
+"JavaScript-ը պետք է թույլատրված լինի որպեսզի կարողանաք օգտագործել "
+"Evergreen-ի քարտարանը։ Համենայնդեպս թվում է, որ JavaScript-ը կամ "
+"արգելափակված է, կամ քո դիտակի կողմից չի աջակցվում։ Որպեսզի օգտագործեք "
+"Evergreen-ի սովորական քարտարանը, թույլատրիր JavaScript-ը փոխելով քո դիտակի "
+"ընտրանքները, ապա <a style='color: blue; text-decoration: underline;' "
+"href='/'>try again</a>։ <br/><br/>Այլընտրանքորեն կարող ես օգտագործել "
+"հիմնական միայն-HTML քարտարանը՝ <a style='color: blue; text-decoration: "
+"underline;' href='/opac/extras/slimpac/start.html'>here</a>։"
+
+# =================================================================
+# MyOPAC bookbag page
+#. =================================================================
+#. MyOPAC bookbag page
+#. =================================================================
+#: myopac.delete.bookbag
+#, fuzzy
+msgid ""
+"This will remove the selected bookbag and all items contained within the "
+"bookbag. \n"
+"Are you sure you wish to continue?"
+msgstr ""
+"Սա կհեռացնի ընտրված գրքի զամբյուղը և այնտեղ առկա բոլոր նյութերը։ Վստա՞հ ես "
+"որ ուզում ես շարունակել։"
+
+#: myopac.no.bookbags
+msgid "You have not created any bookbags"
+msgstr "Ոչ մի պատվեր չես ստեղծել"
+
+#: myopac.bookbags.title
+msgctxt "myopac.bookbags.title"
+msgid "My Bookbags"
+msgstr "Իմ գրքերի պայուսակը"
+
+#: myopac.bookbag.items
+msgid "# Items"
+msgstr "# Նյութեր"
+
+#: myopac.bookbag.shared
+msgid "Shared"
+msgstr "Համատեղ"
+
+#: myopac.bookbag.toggle
+msgid "Share / Hide"
+msgstr "Համատեղ / Թաքցնել"
+
+#: myopac.bookbag.delete
+msgid "Delete this bookbag?"
+msgstr "Ջնջե՞լ այս պատվերը"
+
+#: myopac.items
+msgid "Items"
+msgstr "Նյութեր"
+
+#: myopac.view
+msgid "(View)"
+msgstr "(Դիտել)"
+
+#: myopac.atom.feed
+msgid "ATOM Feed"
+msgstr "ATOM Feed"
+
+#: myopac.bookbag.hide
+msgid "Hide"
+msgstr "Թաքցնել"
+
+#: myopac.delete
+msgid "Delete"
+msgstr "Ջնջել"
+
+#: myopac.bookbag.create
+msgid "Create a new Bookbag"
+msgstr "Ստեղծիր նոր պատվեր"
+
+#: myopac.bookbag.naming
+msgid "Enter the name of the new Bookbag: "
+msgstr "Մուտք արա նոր գրքի զամբյուղի անունը։"
+
+#: myopac.bookbag.share
+msgid "Share this Bookbag"
+msgstr "Համատեղիր այս պատվերը"
+
+#: myopac.bookbag.no.items
+msgid "The selected bookbag contains no items..."
+msgstr "Ընտրված պատվերը չի պարունակում ոչ մի նյութ..."
+
+#: myopac.bookbag.remove
+msgid "Remove this item?"
+msgstr "Հեռացնե՞լ այս նյութը"
+
+#: myopac.remove.link
+msgid "remove"
+msgstr "հեռացնել"
+
+#: myopac.publish.text
+#, fuzzy
+msgid ""
+"Sharing a Bookbag means that the contents of the Bookbag will be visible to "
+"others. \n"
+"To see the public view of a shared Bookbag, click the \"View\" link in the \n"
+"\"Shared\" column of the Bookbag list at the top of this page."
+msgstr ""
+"Պատվերի համատեղում նշանակում է որ պատվերի բովանդակությունը տեսանելի է "
+"ուրիշներին։ Պատվերի հանրային տեսքը դիտելու համար սեղմիր \"Դիտել\" հղումը էջի "
+"վերին մասում գտնվող պատվերի ցուցակի \"Համատեղ\" սյունակում։"
+
+#: myopac.item.confirm
+msgid "Are you sure you wish to remove this bookbag item?"
+msgstr "Վստա՞հ ես որ ուզում ես հեռացնել պատվերի նյութը։"
+
+#: myopac.publish.confirm
+#, fuzzy
+msgid ""
+"Sharing this bookbag will allow the contents \n"
+"of the bookbag to be seen by others. Are you sure you wish to share this "
+"bookbag?"
+msgstr ""
+"Պատվերի համատեղումը թույլ կտա բոլորին տեսնելու բովանդակությունը։ Վստա՞հ ես "
+"որ ուզում ես համատեղել այս գրքի զամբյուղը։"
+
+#: myopac.unpublish.confirm
+msgid "Are you sure you wish to hide this bookbag?"
+msgstr "Վստա՞հ ես որ ուզում ես թաքցնել գրքի այս զամբյուղը։ "
+
+#: myopac.update.success
+msgid "The Bookbag was successfully updated."
+msgstr "Գրքի զամբյուղը հաջողությամբ թարմացված է։"
+
+#: myopac.updated.success
+msgid "Bookbag successfully updated"
+msgstr "Գրքի զամբյուղը հաջողությամբ թարմացվել է։"
+
+#: myopac.create.warning
+#, fuzzy
+msgid ""
+"Warning: Adding items to a bookbag creates a link between you and the \n"
+"items in the database. The contents of the bookbag are NOT publicly \n"
+"viewable unless the bookbag is shared. However, if you prefer not to \n"
+"have any link between your patron record and a particular item or items, \n"
+"we suggest that you do not place said items in a bookbag or that you \n"
+"avoid using bookbags all together. Thank you."
+msgstr ""
+"Զգուշացում։ Գրքի զամբյուղում նյութի ավելացումը ստեղծում է կապ քո և շտեմարանի "
+"նյութերի միջև։ Գրքի զամբյուղի բովանդակությունը հանրորեն հասանելի չէ քանի "
+"դեռ այն չի դրվել համատեղ օգտագործման։ Համենայնդեպս, եթե նախընտրում ես "
+"չունենալ ոչ մի հղում ընթերցողի գրառման և որոշակի նյութի կամ նյութերի միջև, "
+"առաջարկում ենք չտեղադրել այդ նյութերը գրքի զամբյուղում կամ խուսափել բոլոր "
+"գրքի զամբյուղների միաժամանակյա օգտագործումը։ Շնորհակալություն։"
+
+#: myopac.describe.bookbags
+msgid "Bookbags are..."
+msgstr "Գրքի զամբյուղները ..."
+
+# =================================================================
+# MyOPAC Checked Page
+#. =================================================================
+#. MyOPAC Checked Page
+#. =================================================================
+#: myopac.checked.out
+msgid "Total items out:"
+msgstr "Դուրս տրավծ նյութերի քանակ"
+
+#: myopac.checked.overdue
+msgid "Total items overdue:"
+msgstr "Ժամկետանց նյութերի քանակ"
+
+#: myopac.checked.renew
+msgid "Renew Selected Items"
+msgstr "Թարմացրու ընտրված նյութերը"
+
+#: myopac.checked.renewing
+msgid "Renewing..."
+msgstr "Թարմացվում է..."
+
+#: myopac.checked.renew.remaining
+msgid "Renewals Remaining"
+msgstr "Մնացող թարմացումներ"
+
+#: myopac.checked.noitems
+msgid "You have no items checked out at this time"
+msgstr "Այս պահին դու չունես դուրս տրված նյութեր "
+
+#: myopac.checked.other.circ
+msgid "Other Circulations"
+msgstr "Այլ տրումներ"
+
+#: myopac.checked.circ.lib
+msgid "Circulating Library"
+msgstr "Սպասարկող գրադարան"
+
+#: myopac.checked.item.type
+msgid "Circulation Type"
+msgstr "Սպասարկման տեսակ"
+
+#: myopac.checked.circ.time
+msgid "Please return by ..."
+msgstr "Խնդրվում է վերադառնալ..."
+
+#: myopac.checked.renew.success
+msgid "item(s) successfully renewed"
+msgstr "հաջողությամբ թարմացված նյութ(եր) "
+
+#: myopac.checked.renew.confirm
+msgid "Are you sure you wish to renew the selected item(s)?"
+msgstr "Արդյո՞ք վսատհ ես որ ցանկանում ես թարմացնել ընտրված նյութ(եր)ը։"
+
+#: myopac.checked.renew.fail
+msgid ""
+"The system is unable to renew the selected item at this time. This usually "
+"means the item is needed to fulfill a hold. Please see a librarian for "
+"further help."
+msgstr ""
+"Համակարգը ի վիճակի չէ այս պահին թարմացնելու ընտրված նյութը։ Սա սովորաբար "
+"նշանակում է որ նյութը հարկավոր է պահումը ավարտին հասցնելու համար։ Դիմեք "
+"գրադարանավարին հետագա օգնության համար։ "
+
+#: myopac.checked.renew.fail2
+#, fuzzy
+msgid ""
+"Library policy prevents the renewal of this item at this time. Please see a "
+"librarian for further details."
+msgstr ""
+"PINES-ի քաղաքականությունը կանխարգելում է այս պահին այս նյութի թարմացումը։ "
+"Դիմեք գրադարանավարին հետագա օգնության համար։ "
+
+# =================================================================
+# MyOPAC Fines Page
+#. =================================================================
+#. MyOPAC Fines Page
+#. =================================================================
+#: myopac.fines.title
+msgid "Summary"
+msgstr "Ընդհանրացում"
+
+#: myopac.fines.owed
+msgid "Total Owed"
+msgstr "Վերցրած ընդհանուր պարտքը"
+
+#: myopac.fines.paid
+msgid "Total Paid"
+msgstr "Վճարված է ընդամենը"
+
+#: myopac.fines.balance
+msgid "Balance Owed"
+msgstr "Ընդհանուր պարտքի բալանսը"
+
+# Message displayed while search results are loading
+#: myopac.fines.status
+msgctxt "myopac.fines.status"
+msgid "Loading..."
+msgstr "Բեռնավորում..."
+
+#: myopac.fines.overdue
+msgid "Overdue Materials"
+msgstr "Ժամկետանց նյութեր"
+
+#: myopac.fines.checkout
+msgid "Checkout Date"
+msgstr "Դուրս տրման ամսաթիվ"
+
+#: myopac.fines.due
+msgctxt "myopac.fines.due"
+msgid "Due Date"
+msgstr "Վերադարձի ամսաթիվ"
+
+#: myopac.fines.returned
+msgid "Date Returned"
+msgstr "Իրական վերադարձի ամսաթիվ"
+
+#: myopac.fines.accruing
+msgid "(fines accruing)"
+msgstr "(կուտակային տուգանքներ)"
+
+#: myopac.fines.other
+msgid "Other Fees"
+msgstr "Այլ գումարներ"
+
+#: myopac.fines.time.start
+msgid "Transaction Start Time"
+msgstr "Տրանզակցիայի սկզբանվորման ժամ"
+
+#: myopac.fines.time.paid
+msgid "Last Payment Time"
+msgstr "Վերջին վճարման ժամ"
+
+#: myopac.fines.owed.initial
+msgid "Initial Amount Owed"
+msgstr "Սկզբնական պարտքի գումարը"
+
+#: myopac.fines.paid.amount
+msgid "Total Amount Paid"
+msgstr "Ընդհանուր վճարված գումար"
+
+#: myopac.fines.type
+msgid "Billing Type"
+msgstr "Հայցի տեսակ"
+
+# =================================================================
+# MyOPAC Holds Page
+#. =================================================================
+#. MyOPAC Holds Page
+#. =================================================================
+#: myopac.holds.formats
+msgid "Formats"
+msgstr "Ձևաչափեր"
+
+#: myopac.holds.location
+msgid "Pickup Location"
+msgstr "Վերցնելու վայր"
+
+#: myopac.holds.edit
+msgid "Edit"
+msgstr "Խմբագրել"
+
+#: myopac.holds.status.none
+msgid "You have no items on hold at this time"
+msgstr "Այս պահին դու չունես պահված նյութեր "
+
+#: myopac.holds.status.waiting
+msgid "Waiting for copy"
+msgstr "Սպասում է պատճեին"
+
+#: myopac.holds.status.intransit
+msgid "In Transit"
+msgstr "Փոխանցման մեջ"
+
+#: myopac.holds.status.available
+msgid "Ready for Pickup"
+msgstr "Վերցնելու համար պատրաստ է"
+
+#: myopac.holds.cancel
+msgctxt "myopac.holds.cancel"
+msgid "Cancel"
+msgstr "Չեղյալ անել"
+
+#: myopac.holds.verify
+msgid ""
+"If you wish to cancel the selected hold, click OK, otherwise click Cancel."
+msgstr ""
+"Եթե ցանկանում ես չեղյալ անել ընտրված պահումը, սեղմիր OK, հակառակ դեպքում "
+"սեղմիր Cancel:"
+
+#: myopac.holds.freeze_selected
+msgid "Suspend"
+msgstr ""
+
+#: myopac.holds.thaw_selected
+msgid "Activate"
+msgstr ""
+
+#: myopac.holds.thaw_date_selected
+msgid "Set Active Date"
+msgstr ""
+
+#: myopac.holds.cancel_selected
+msgctxt "myopac.holds.cancel_selected"
+msgid "Cancel"
+msgstr "Չեղյալ անել"
+
+#: myopac.holds.processing
+msgid "Processing holds... This may take a moment."
+msgstr "Պահումների իրականացում...Կտևի ինչ որ ժամանակ։"
+
+#: myopac.holds.actions
+msgid "Actions for selected holds"
+msgstr "Գործողություններ ընտրված պահումների համար"
+
+#: myopac.holds.cancel.confirm
+msgid "Are you sure you wish to cancel the selected holds?"
+msgstr "Վստա՞հ ես որ ուզում ես չեղյալ անել ընտրված պահումները։"
+
+#: myopac.holds.freeze.confirm
+#, fuzzy
+msgid ""
+"Are you sure you wish to suspend the selected holds? \n"
+"If an item has already been selected to fulfill the hold, it will not be "
+"suspended"
+msgstr ""
+"Վստա՞հ ես որ ուզում ես սառեցնել ընտրված պահումները։ Նկատի ունեցիր, որ եթե "
+"նյութը արդեն իսկ ընտրված է պահման նպատակով, այն չի սառեցվի։"
+
+#: myopac.holds.thaw.confirm
+#, fuzzy
+msgid "Are you sure you wish to activate the selected holds?"
+msgstr "Վստա՞հ ես որ ուզում ես չեղյալ անել ընտրված պահումները։"
+
+#: myopac.holds.thaw_date.confirm
+#, fuzzy
+msgid ""
+"Are you sure you wish to change the activate date for the selected holds?"
+msgstr ""
+"Վստա՞հ ես որ ուզում ես ընտրված պահումների համար փոխել ապասառեցման ամսաթիվը։"
+
+#: myopac.holds.freeze.select_thaw
+msgid ""
+"Select an automatic activation date. If no date is chosen, the holds will "
+"remain suspended until they are manually activated."
+msgstr ""
+
+#: opac.holds.freeze
+msgid "Suspend this hold"
+msgstr ""
+
+#: opac.holds.freeze.help
+#, fuzzy
+msgid ""
+"A suspended hold will retain its place in the queue, but will not be "
+"fulfilled until it has been activated."
+msgstr ""
+"'Սառեցվածը' կպահպանի իր տեղը հերթում, բայց չի կատարվի քանի դեռ չի "
+"ապասառեցվել։"
+
+#: opac.holds.freeze.thaw_date
+#, fuzzy
+msgid "Automatically activate hold on:"
+msgstr "Ավտոմատ ապասառեցրու պահումը"
+
+#: opac.holds.freeze.thaw_date.format
+msgid "YYYY-MM-DD"
+msgstr "ՏՏՏՏ-ԱԱ-ՕՕ"
+
+# =================================================================
+# MyOPAC Preferences Page
+#. =================================================================
+#. MyOPAC Preferences Page
+#. =================================================================
+#: myopac.prefs.title
+msgid "Preferences"
+msgstr "Նախապատվություններ"
+
+#: myopac.prefs.hits
+msgid "Search hits per page"
+msgstr "Հաշվիր հարվածները ըստ էջի"
+
+#: myopac.prefs.font
+msgid "Default Font Size"
+msgstr "Լռակյաց տառատեսակի չափ"
+
+#: myopac.prefs.font.regular
+msgid "Regular Font"
+msgstr "Սովորական տառատեսակ"
+
+#: myopac.prefs.font.large
+msgid "Large Font"
+msgstr "Լայն տառատեսակ"
+
+#: myopac.prefs.holds.notify
+msgid "Default Hold Notification Method"
+msgstr "Լռակյաց պահման հիշեցման մեթոդ"
+
+#: myopac.prefs.holds.both
+msgid "Use Phone and Email"
+msgstr "Օգտագործիր հեռախոս կամ էլ փոստ"
+
+#: myopac.prefs.holds.phone
+msgid "Use Phone Only"
+msgstr "Օգտագործիր միայն հեռախոս"
+
+#: myopac.prefs.holds.email
+msgid "Use Email Only"
+msgstr "Օգտագործիր միայն էլ փոստ"
+
+#: myopac.prefs.search.location
+msgid "Default Search Location"
+msgstr "Որոնման լռակյաց տեղաբաշխում"
+
+#: myopac.prefs.search.home
+msgid "Always search my home library by default."
+msgstr "Որպես լռակյաց միշտ որոնիր իմ տնային գրադարանում"
+
+#: myopac.prefs.search.range
+msgid "Default Search Range"
+msgstr "Որոնման լռակյաց տիրույթ"
+
+#: myopac.prefs.save
+msgid "Save Preference Changes"
+msgstr "Հիշիր նախապատվության փոփոխությունները"
+
+#: myopac.prefs.save.success
+msgid "Preferences successfully updated"
+msgstr "Նախապատվությունները հաջողությամբ թարմացվել են։"
+
+#: myopac.prefs.save.failed
+msgid "Preferences update failed!"
+msgstr "Նախապատվությունների թարմացումը տապալվեց։"
+
+#: myopac.prefs.help
+#, fuzzy
+msgid ""
+"This setting defines how you will be notified of holds that are ready to be "
+"picked up from the library. \n"
+"By default, holds will use the notification style you choose here. \n"
+"However, you will still have the option to change individual holds "
+"regardless of this setting."
+msgstr ""
+"Այս կարգաբերումները սահմանում են թե ինչպես կզգուշացվես պահումների մասին "
+"որոնք պատրաստ են վերցվելու գրադարանից։ Որպես լռակյաց, պահումները կօգտագործեն "
+"հիշեցումների այն ձևը, որը կընտրես այստեղ։ Համենայնդեպս, դու դեռ ունես "
+"ընտրության հնարավորություն` փոփոխելու անհատական պահումները։ "
+
+#: myopac.holds.unfrozen
+msgid "Active"
+msgstr ""
+
+#: myopac.holds.frozen.until
+msgid "Activate on..."
+msgstr ""
+
+# =================================================================
+# MyOPAC Summary page
+#. =================================================================
+#. MyOPAC Summary page
+#. =================================================================
+#: myopac.summary.expired
+#, fuzzy
+msgid ""
+"Your account expired on <span id='myopac.expired.date'/>! \n"
+"Please see a librarian to renew your account."
+msgstr ""
+"Քո հաշիվը ժամկետանց է դառնում <span id='myopac.expired.date'/>։ Դիմիր "
+"գրադարանավարին թարմացնելու քո հաշիվը։"
+
+#: myopac.summary.notes
+msgid "* Staff Notes *"
+msgstr "* Աշխատակազմի նշումներ *"
+
+#: myopac.summary.phone.day
+msgid "Day Phone"
+msgstr "Ցերեկային հեռախոս"
+
+#: myopac.summary.phone.evening
+msgid "Evening Phone"
+msgstr "Գիշերային հեռախոս"
+
+#: myopac.summary.phone.other
+msgid "Other Phone"
+msgstr "Այլ հեռախոս"
+
+#: myopac.summary.change
+msgid "Change"
+msgstr "Փոփոխություն"
+
+#: myopac.summary.username.enter
+msgid "Enter new username:"
+msgstr "Մուտք արա նոր օգտվողի անուն։"
+
+#: myopac.summary.password.text
+msgid "(not shown)"
+msgstr "(չի ցուցադրվում)"
+
+#: myopac.summary.password.current
+msgid "Enter current password:"
+msgstr "Մուտք արա ընթացիկ գաղտնաբառը։"
+
+#: myopac.summary.password.new
+msgid "Enter new password:"
+msgstr "Մուտք արա նոր գաղտնաբառը։"
+
+#: myopac.summary.password.reenter
+msgid "Re-enter new password:"
+msgstr "Նորից մուտք արա նոր գաղտնաբառը։"
+
+#: myopac.summary.email
+msgid "Email Address"
+msgstr "էլ փոստի հասցե"
+
+#: myopac.summary.email.new
+msgid "Enter new email address:"
+msgstr "Մուտք արա նոր էլ փոստի հասցե։"
+
+#: myopac.summary.id.primary
+msgid "Primary Identification"
+msgstr "Սկզբնական ճանաչում"
+
+#: myopac.summary.barcode
+msgid "Active Barcode"
+msgstr "Ակտիվ շտրիխ կոդ"
+
+#: myopac.summary.home
+msgid "Home Library"
+msgstr "Տնային գրադարան"
+
+#: myopac.summary.genesis
+msgid "Account Creation Date"
+msgstr "Հաշվի ստեղծման ամսաթիվ"
+
+#: myopac.summary.addresses
+msgid "Addresses"
+msgstr "Հասցեներ"
+
+#: myopac.summary.address.type
+msgid "Address Type"
+msgstr "Հասցեի տեսակ"
+
+#: myopac.summary.address.street
+msgid "Street"
+msgstr "Փողոց"
+
+#: myopac.summary.address.city
+msgid "City"
+msgstr "Քաղաք"
+
+#: myopac.summary.address.county
+msgid "County"
+msgstr "Համայնք"
+
+#: myopac.summary.address.state
+msgid "State"
+msgstr "Նահանգ"
+
+#: myopac.summary.address.zip
+msgid "Zip"
+msgstr "Զիպ"
+
+#: myopac.summary.username.error
+msgid "Please enter a username"
+msgstr "Մուտք արա օգտվողի անուն"
+
+#: myopac.summary.username.dup
+msgid ""
+"The requested username is not available. Please choose a different "
+"username."
+msgstr "Պահանջվող օգտվողi անունը մատչելի չէ։ Ընտրիր օգտվողի այլ անուն։"
+
+#: myopac.summary.username.success
+msgid "Username successfully updated"
+msgstr "Օգտվողի անունը հաջողությամբ թարմացվել է։"
+
+#: myopac.summary.username.failure
+msgid "Username update failed"
+msgstr "Օգտվողի անվան թարմացումը ձախողվեց։"
+
+#: myopac.summary.username.invalid
+#, fuzzy
+msgid "Username cannot contain spaces or have the same format as a barcode"
+msgstr "Օգտվողի անունը չի կարող պարունակել բացատներ։"
+
+#: myopac.summary.email.error
+msgid "Please enter a valid email address"
+msgstr "Մուտք արա իրական էլ փոստի հասցե"
+
+#: myopac.summary.email.success
+msgid "Email address successfully updated"
+msgstr "էլ փոստի հասցեն հաջողությամբ թարմացվել է։"
+
+#: myopac.summary.email.failed
+msgid "Email address update failed"
+msgstr "Էլ փոստի հասցեի թարմացումը չստացվեց։"
+
+#: myopac.summary.password.error
+msgid "Passwords are empty or do not match"
+msgstr "Գաղտնաբառերը դատարկ են կամ չեն համընկնում։ "
+
+#: myopac.summary.password.success
+msgctxt "myopac.summary.password.success"
+msgid "Password successfully updated"
+msgstr "Գաղտնաբառը հաջողությամբ թարմացվել է։"
+
+#: myopac.summary.password.failure
+msgid "Password update failed"
+msgstr "Գաղտնաբառի թարմացումը տապալվեց։"
+
+# =================================================================
+# Advanced Search Page
+#. =================================================================
+#. Advanced Search Page
+#. =================================================================
+#: opac.advanced.wizard.contains
+msgid "Selected field contains the following words"
+msgstr "Ընտրված դաշտը պարունակում է հետևյալ բառերը։"
+
+#: opac.advanced.wizard.nocontains
+msgid "Selected field does <u>not</u> contain the following words"
+msgstr "Ընտրված դաշտը <u>չի</u> պարունակում հետևյալ բառերը"
+
+#: opac.advanced.wizard.exact
+msgid "Selected field contains the <u>exact</u> phrase"
+msgstr "Ընտրված դաշտը <u>ճշգրտորեն</u> պարունակում է արտահայտություն"
+
+#: opac.advanced.refined.title
+msgid "Refined Advanced Search"
+msgstr "Մաքրված խորացված փնտրում"
+
+#: opac.advanced.refined.title_contains
+msgid "Title contains the following words"
+msgstr "Վերնագիրը պարունակում է հետևյալ բառերը"
+
+#: opac.advanced.refined.author_contains
+msgid "Author contains the following words"
+msgstr "Հեղինակը պարունակում է հետևյալ բառերը"
+
+#: opac.advanced.refined.subject_contains
+msgid "Subject contains the following words"
+msgstr "Խորագիրը պարունակում է հետևյալ բառերը"
+
+#: opac.advanced.refined.series_contains
+msgid "Series contains the following words"
+msgstr "Մատենաշարը պարունակում է հետևյալ բառերը"
+
+#: opac.advanced.refined.contains
+msgid "Contains"
+msgstr "Պարունակում է"
+
+#: opac.advanced.refined.nocontains
+msgid "Does not contain"
+msgstr "Չի պարունակում"
+
+#: opac.advanced.refined.exact
+msgid "Matches Exactly"
+msgstr "Ճշգրիտ համընկնում"
+
+#: opac.advanced.marc.warning
+msgid "For Librarians"
+msgstr "Գրադարանավարների համար"
+
+# ==========================================================
+# MARC expert search
+#: opac.advanced.marc.title
+msgctxt "opac.advanced.marc.title"
+msgid "MARC Expert Search"
+msgstr "MARC արհեստավարժ որոնում"
+
+#: opac.advanced.marc.tag
+msgid "MARC Tag"
+msgstr "MARC ցուցիչ"
+
+#: opac.advanced.marc.ind1
+msgid "Indicator 1"
+msgstr "Ցուցիչ 1"
+
+#: opac.advanced.marc.ind2
+msgid "Indicator 2"
+msgstr "Ցուցիչ 2"
+
+#: opac.advanced.marc.subfield
+msgid "Subfield"
+msgstr "Ենթադաշտ"
+
+#: opac.advanced.marc.value
+msgid "Value"
+msgstr "Արժեք"
+
+#: opac.advanced.marc.addrow
+msgid "Add a new row"
+msgstr "Ավելացրու նոր տող"
+
+#: opac.advanced.quick.title
+msgctxt "opac.advanced.quick.title"
+msgid "Quick Search"
+msgstr "Արագ փնտրում"
+
+#: opac.advanced.quick.isbn
+msgctxt "opac.advanced.quick.isbn"
+msgid "ISBN"
+msgstr "ISBN"
+
+#: opac.advanced.quick.issn
+msgid "ISSN"
+msgstr "ISSN"
+
+#: opac.advanced.quick.lccn
+msgid "LCCN"
+msgstr "LCCN"
+
+# title control number
+#. title control number
+#: opac.advanced.quick.tcn
+msgid "TCN"
+msgstr "TCN"
+
+#: opac.advanced.quick.barcode
+msgid "Item Barcode"
+msgstr "Նյութի շտրիխ կոդ"
+
+#: opac.advanced.quick.cn
+msgctxt "opac.advanced.quick.cn"
+msgid "Call Number"
+msgstr "Դասիչ"
+
+#: opac.advanced.copy_loc_filter
+msgid "Shelving Location"
+msgstr ""
+
+# ==========================================================
+# MARC expert search
+#. ==========================================================
+#. MARC expert search
+#. ==========================================================
+#: search.marc
+msgctxt "search.marc"
+msgid "MARC Expert Search"
+msgstr "MARC արհեստավարժ որոնում"
+
+#: search.marc.tag
+msgid "Tag:"
+msgstr "Ցուցիչ։"
+
+#: search.marc.subfield
+msgid "Subfield:"
+msgstr "Ենթադաշտ։"
+
+#: search.marc.value
+msgid "Value:"
+msgstr "Արժեք։"
+
+#: search.marc.add.row
+msgid "Add Row"
+msgstr "Ավելացրու տող"
+
+# ==========================================================
+# Status bar
+#. ==========================================================
+#. Status bar
+#. ==========================================================
+#: status.results
+msgid "Including results for"
+msgstr "Ներառելով արդյունքները համար"
+
+# ==========================================================
+# Tips
+#. ==========================================================
+#. Tips
+#. ==========================================================
+#: tips.label
+msgctxt "tips.label"
+msgid "Tip:"
+msgstr "Հնարք։"
+
+# =================================================================
+# More generic stuff
+#. =================================================================
+#. More generic stuff
+#. =================================================================
+#: opac.session_expiring
+msgid "Your login session will timeout in 1 minute unless there is activity."
+msgstr "Քո գրանցված սեսիան կլրանա մեկ րոպեից, եթե ակտիվություն չլինի։"
+
+#: opac.session_expired
+msgid "Your login session has expired"
+msgstr "Քո գրանցված սեսիան ավարտվեց"
+
+#: navigate.home
+msgid "Home"
+msgstr "Տուն"
+
+#: navigate.home.title
+msgid "Go to the Home page"
+msgstr "Գնա տնային էջ"
+
+#: opac.navigate.advanced
+msgctxt "opac.navigate.advanced"
+msgid "Advanced Search"
+msgstr "Խորացված փնտրում"
+
+#: opac.navigate.advanced.title
+msgid "Go to the Advanced Search Page"
+msgstr "Գնա խորացված որոնման էջ"
+
+#: navigate.myopac
+msgctxt "navigate.myopac"
+msgid "My Account"
+msgstr "Իմ հաշիվը"
+
+#: opac.navigate.myopac
+msgctxt "opac.navigate.myopac"
+msgid "My Account"
+msgstr "Իմ հաշիվը"
+
+#: navigate.myopac.title
+msgid "Go to My OPAC"
+msgstr "Գնա իմ ՀՕԱՔ"
+
+#: navigate.login
+msgid "Log in"
+msgstr "Գրանցվիր"
+
+#: navigate.login.title
+msgid "Log in for personalized features"
+msgstr "Գրանցվիր անհատականացված հնարավորությունների համար"
+
+#: navigate.logout
+msgctxt "navigate.logout"
+msgid "Log out"
+msgstr "Դուրս արի"
+
+#: navigate.logout.title
+msgctxt "navigate.logout.title"
+msgid "Log out"
+msgstr "Դուրս արի"
+
+#: opac.navigate.selectNewOrg
+msgid "Choose a different library"
+msgstr "Ընտրիր այլ գրադարան"
+
+#: opac.navigate.selectOrg
+msgctxt "opac.navigate.selectOrg"
+msgid "Choose a library to search"
+msgstr "Ընտրիր փնտրման համար գրադարանը"
+
+#: navigate.loggedinas
+msgid "You are logged in as "
+msgstr "Դու գրանցված ես որպես"
+
+#: navigate.loggedinas.title
+msgid "Logged in as..."
+msgstr "Գրանցված որպես..."
+
+#: navigate.titleGroupResults
+msgid "My Search Results"
+msgstr "Իմ փնտրման արդյունքները"
+
+#: navigate.titleResults
+msgid "My Title Results"
+msgstr "Իմ վերնագրի արդյունքները"
+
+#: navigate.title.details
+msgid "My Title Details"
+msgstr "Իմ վերնագրի մանրամասները"
+
+#: navigate.record.details
+msgid "Record Details"
+msgstr "Գրառման մանրամասներ"
+
+# =================================================================
+# Footer
+#. =================================================================
+#. Footer
+#. =================================================================
+#: footer.basic
+msgctxt "footer.basic"
+msgid "Basic Catalog (HTML only)"
+msgstr "Հիմնական քարտարան (միայն HTML)"
+
+#: footer.find.library
+msgid "Find a Library Near Me"
+msgstr "Գտիր ինձ մոտիկ գրադարան"
+
+#: footer.find.url
+msgid "http://www.georgialibraries.org/lib/directories/pineslibdir.html"
+msgstr "http://www.georgialibraries.org/lib/directories/pineslibdir.html"
+
+#: footer.help.url
+msgid "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help"
+msgstr "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help"
+
+#: footer.help
+msgid "Help"
+msgstr "Օգնություն"
+
+#: footer.library.url
+msgid "http://www.georgialibraries.org/public/pines.html"
+msgstr "http://www.georgialibraries.org/public/pines.html"
+
+#: footer.library.about
+msgid "About PINES"
+msgstr " PINES-ի մասին"
+
+#: footer.union.url
+msgid "http://www.galileo.usg.edu/"
+msgstr "http://www.galileo.usg.edu/"
+
+#: footer.union
+msgid "GALILEO"
+msgstr "GALILEO"
+
+#: footer.copyright
+#, fuzzy
+msgid "Copyright © 2006-2008 Georgia Public Library Service"
+msgstr ""
+"Հեղինակային իրավունք © 2006 Գեորգիա նահանգի հանրային գրադարանի "
+"ծառայություն"
+
+# Introduces the logo for the project
+#. Introduces the logo for the project
+#: footer.logo
+msgid "Powered by"
+msgstr "Ուժեղացված"
+
+# =================================================================
+# My OPAC
+#. =================================================================
+#. My OPAC
+#. =================================================================
+#: myopac.account
+msgid "Account Summary"
+msgstr "Հաշվի համառոտագրություն"
+
+#: myopac.checkouts
+msgid "Items Checked Out"
+msgstr "Դուրս տրված նյութեր"
+
+#: myopac.holds
+msgid "Items on Hold"
+msgstr "Պահված նյութեր"
+
+#: myopac.fines
+msgid "Fines"
+msgstr "Տուգանքներ"
+
+#: myopac.preferences
+msgid "Account Preferences"
+msgstr "Հաշվի նախապատվություններ"
+
+#: myopac.bookbags
+msgctxt "myopac.bookbags"
+msgid "My Bookbags"
+msgstr "Իմ գրքերի պայուսակը"
+
+# =================================================================
+# Sidebar
+#. =================================================================
+#. Sidebar
+#. =================================================================
+#: sidebar.relevantSubjects.headerLabel
+msgid "Relevant Subjects"
+msgstr "Համապատասխան խորագրեր"
+
+#: sidebar.relevantAuthors.headerLabel
+msgid "Relevant Authors"
+msgstr "Համապատասխան հեղինակներ"
+
+#: sidebar.relevantSeries.headerLabel
+msgid "Relevant Series"
+msgstr "Համապատասխան մատենաշարեր"
+
+#: sidebar.relevantReviews.headerLabel
+msgctxt "sidebar.relevantReviews.headerLabel"
+msgid "Reviews"
+msgstr "Գրախոսություններ"
+
+#: sidebar.quick.search
+msgctxt "sidebar.quick.search"
+msgid "Quick Search"
+msgstr "Արագ փնտրում"
+
+#: sidebar.copy.not.found
+msgid "No copy with the requested barcode was found"
+msgstr "Պահանջվող շտրիխ կոդով պատճեներ չեն գտնվել"
+
+# =================================================================
+# Search formats
+#. =================================================================
+#. Search formats
+#. =================================================================
+#: opac.search.books
+msgid "Books"
+msgstr "Գրքեր"
+
+#: opac.search.allFormats
+msgid "All Formats"
+msgstr "Բոլոր ձևաչափերը"
+
+#: opac.search.largePrint
+msgid "Large Print Books"
+msgstr "Մեծ տպագիր գրքեր"
+
+#: opac.search.audioBooks
+msgid "Audiobooks"
+msgstr "Ձայնագրքեր"
+
+#: opac.search.videoRecordings
+msgid "Video Recordings"
+msgstr "Տեսագրառումներ"
+
+#: opac.search.music
+msgid "Music"
+msgstr "Երաժշտություն"
+
+#: opac.search.electronic
+msgid "Electronic Resources"
+msgstr "Էլեկտրոնային պաշարներ"
+
+#: opac.search.nowSearching
+msgid "Now Searching"
+msgstr "Հիմա փնտրում է"
+
+# =================================================================
+# Page Titles
+#. =================================================================
+#. Page Titles
+#. =================================================================
+#: opac.title.home
+msgid "Evergreen Home"
+msgstr "Evergreen տուն"
+
+#: opac.title.mresult
+msgid "Evergreen Title Groups"
+msgstr "Evergreen վերնագրերի խումբ"
+
+#: opac.title.rresult
+msgid "Evergreen Titles"
+msgstr "Evergreen վերնագրեր"
+
+#: opac.title.myopac
+msgid "Evergreen My Account"
+msgstr "Evergreen իմ հաշիվ"
+
+#: opac.title.rdetail
+msgid "Evergreen Title Details"
+msgstr "Evergreen վերնագրի մանրամասներ"
+
+#: opac.title.advanced
+msgid "Evergreen Advanced Search"
+msgstr "Evergreen խորացված որոնում"
+
+#: opac.title.reqitems
+msgid "Evergreen Request Items"
+msgstr "Evergreen պատվիրված նյութեր"
+
+#: opac.title.cnbrowse
+msgid "Evergreen Call Number Browse"
+msgstr "Evergreen դասիչի դիտում"
+
+#: opac.holds.forMe
+msgid "Place this hold for myself"
+msgstr "Տեղադրիր այս պահումը իմ փոխարեն"
+
+#: opac.holds.xulRecipient
+msgid "Enter recipient barcode"
+msgstr "Մուտք արա ստացողի շտրիխ կոդը"
+
+#: opac.holds.recipient
+msgid "Recipient"
+msgstr "Ստացող"
+
+#: opac.holds.placeHold
+msgid "Place Hold"
+msgstr "Տեղադրիր պահումը"
+
+#: opac.holds.contactPhone
+msgid "Contact telephone number"
+msgstr "Կապի հեռախոսի համար"
+
+#: opac.holds.contactEmail
+msgid "Contact email address"
+msgstr "Կապի էլ փոստի հասցե"
+
+#: opac.holds.pickupLocation
+msgid "Pickup location"
+msgstr "Վերցնելու վայր"
+
+#: opac.holds.success
+msgid "Hold was successfully placed"
+msgstr "Պահումը հաջողությամբ տեղաբաշխված է"
+
+#: opac.holds.failure
+msgid "Hold was not successfully placed"
+msgstr "Պահումը անհաջող է տեղաբաշխվել"
+
+# =================================================================
+# Advanced
+#. =================================================================
+#. Advanced
+#. =================================================================
+#: advanced.search.title
+msgid "Search Input"
+msgstr "Փնտրման մուտք"
+
+#: advanced.add.row
+msgid "Add Search Row"
+msgstr "Ավելացրու որոնման տող"
+
+#: advanced.search.submit
+msgid "Submit Search"
+msgstr "Սկսիր փնտրումը"
+
+#: advanced.search.reset
+msgid "Reset Form"
+msgstr ""
+
+#: advanced.search.filters
+msgid "Search Filters"
+msgstr "Փնտրման զտիչներ"
+
+#: advanced.item.form
+msgid "Item Form"
+msgstr "Նյութի կաղապար"
+
+#: advanced.item.type
+msgid "Item Type"
+msgstr "Նյութի տեսակ"
+
+#: advanced.link
+msgid "Advanced"
+msgstr "Խորացված"
+
+#: advanced.basic.link
+msgid "Basic"
+msgstr "Հիմնական"
+
+#: advanced.literary.form
+msgid "Literary Form"
+msgstr "Գրական Կաղապար"
+
+#: advanced.non.fiction
+msgid "Non Fiction"
+msgstr "Ոչ գեղարվեստական"
+
+#: advanced.fiction
+msgid "Fiction"
+msgstr "Գեղարվեստական"
+
+#: advanced.language
+msgid "Language"
+msgstr "Լեզու"
+
+#: advanced.audience
+msgid "Audience"
+msgstr "Լսարան"
+
+#: advanced.adult
+msgid "Adult"
+msgstr "Մեծահասակ"
+
+#: advanced.juvenile
+msgid "Juvenile"
+msgstr "Պատանեկան"
+
+#: advanced.general
+msgid "General"
+msgstr "Ընդհանուր"
+
+#: advanced.sort.criteria
+msgid "Sort Criteria"
+msgstr "Տեսակավորման չափանիշ"
+
+#: advanced.search.library
+msgid "Search Library"
+msgstr "Որոնիր գրադարանը"
+
+#: advanced.relevance
+msgid "Relevance"
+msgstr "Համարժեք"
+
+#: advanced.pubdate
+msgid "Publication date"
+msgstr "Հրատարակման տարեթիվ"
+
+#: advanced.sort.asc
+msgid "Ascending / A to Z"
+msgstr "Աճող / Ա դեպի Ֆ"
+
+#: advanced.sort.desc
+msgid "Descending / Z to A"
+msgstr "Նվազող / Ֆ դեպի Ա"
+
+#: advanced.frbrize
+msgid "Group Formats and Editions"
+msgstr "Խմբային ձևաչափեր և հրատարակություններ"
+
+#: advanced.go
+msgid "Go"
+msgstr "Գնա"
+
+# =================================================================
+# Rdetail
+#. =================================================================
+#. Rdetail
+#. =================================================================
+#: rdetail.print
+msgid "print these details"
+msgstr "տպիր այս մանրամասները"
+
+#: rdetail.cn.barcode
+msgid "Barcode"
+msgstr "Շտրիխ կոդ"
+
+#: rdetail.cn.location
+msgid "Location"
+msgstr "Տեղաբաշխում"
+
+#: rdetail.cn.hold.age
+msgid "Age Hold Protection"
+msgstr "տարիքի պահման պաշտպանություն"
+
+#: rdetail.cn.genesis
+msgid "Create Date"
+msgstr "Ստեղծիր ամսաթիվ"
+
+#: rdetail.cn.holdable
+msgid "Holdable"
+msgstr "Պահվող"
+
+#: rdetail.cn.due
+msgctxt "rdetail.cn.due"
+msgid "Due Date"
+msgstr "Վերադարձի ամսաթիվ"
+
+#: rdetail.cn.more
+msgid "more info..."
+msgstr "ավելի տեղեկատվություն..."
+
+#: rdetail.cn.less
+msgid "less info"
+msgstr "պակաս տեղեկատվություն"
+
+#: rdetail.cn.hold
+msgctxt "rdetail.cn.hold"
+msgid "place hold"
+msgstr "տեղադրիր պահումը"
+
+#: rdetail.cn.disabled
+msgid "- Disabled -"
+msgstr "- Արգելափակված -"
+
+#: rdetail.cn.note
+msgid "Copy Note"
+msgstr "Նմուշի նշում"
+
+#: rdetail.cn.category
+msgid "Copy Category"
+msgstr "Նմուշի դաս"
+
+#: rdetail.cn.print
+msgid "Print Page"
+msgstr "Տպած էջ"
+
+#: rdetail.page.results
+msgid "First results page"
+msgstr "Առաջին արդյունքների էջ"
+
+# Result # &common.of; #
+#. Result # &common.of; #
+#: rdetail.result
+msgid "Result"
+msgstr "Արդյունք"
+
+#: rdetail.start
+msgid "Start"
+msgstr "Սկսիր"
+
+#: rdetail.page.previous
+msgid "Previous page"
+msgstr "Նախորդ էջ"
+
+#: rdetail.page.next
+msgid "Next page"
+msgstr "Հաջորդ էջ"
+
+#: rdetail.page.last
+msgid "Last results page"
+msgstr "Վերջին արդյունքների էջ"
+
+#: rdetail.end
+msgid "End"
+msgstr "Վերջ"
+
+#: rdetail.more
+msgid "More Actions..."
+msgstr "Ավելի գործողություններ..."
+
+#: rdetail.bookbag.add
+msgid "Add to bookbag"
+msgstr "Ավելացրու գրքի զամբյուղին"
+
+#: rdetail.bookbag.create
+msgid "Create a new bookbag"
+msgstr "Ստեղծիր գրքի նոր զամբյուղ"
+
+#: rdetail.record.deleted
+#, fuzzy
+msgid ""
+"This record has been deleted from the database. \n"
+"We recommend that you remove this title from any bookbags it may have been "
+"added to."
+msgstr ""
+"Այս գրառումը ջնջվել է շտեմարանից։ Խորհուրդ ենք տալիս հեռացնել այս վերնագիրը "
+"բոլոր գրքի զամբյուղներից, որոնցում այն կարող է ավելացված լինել։"
+
+#: rdetail.none
+msgid "(none)"
+msgstr "(ոչինչ)"
+
+#: rdetail.bookbag.add.success
+msgid "Item successfully added to bookbag"
+msgstr "Նյութը հաջողությամբ ավելացվել է գրքի զամբյուղին"
+
+#: rdetail.bookbag.name
+msgid "Enter the name of the new bookbag"
+msgstr "Մուտք արա նոր գրքի զամբյուղի անվանումը"
+
+#: rdetail.bookbag.create.success
+msgid "Bookbag successfully created"
+msgstr "Գրքի զամբյուղը հաջողությամբ ստեղծվել է"
+
+#: rdetail.detailMain.headerLabel
+msgid "Record Summary"
+msgstr "Գրառման համառոտագրություն"
+
+#: rdetail.detailMain.subjects
+msgid "Subjects"
+msgstr "Խորագրեր"
+
+#: rdetail.detailMain.abstract
+msgid "Abstract"
+msgstr "Համառոտագրություն"
+
+#: rdetail.detailMain.viewMarc
+msgid "View MARC"
+msgstr "Դիտիր MARC"
+
+#: rdetail.detailMain.hideMarc
+msgid "Return to title details"
+msgstr "Վերադարձիր վերնագրի մանրամասներին"
+
+#: rdetail.author.search
+msgid "Perform an author search"
+msgstr "Իրականցրու հեղինակի փնտրում"
+
+#: rdetail.copyInfo.headerLabel
+msgid "Copy Information"
+msgstr "Պատճենիր տեղեկատվությունը"
+
+#: rdetail.copyInfo.library
+msgctxt "rdetail.copyInfo.library"
+msgid "Library"
+msgstr "Գրադարան"
+
+#: rdetail.copyInfo.callnumber
+msgid "Callnumber"
+msgstr "Դասիչ"
+
+#: rdetail.copyInfo.local
+msgid "View Copy Information for this location only"
+msgstr "Դիտիր Պատճենիր տեղեկատվությունը այս տեղաբաշխման համար"
+
+#: rdetail.copyInfo.all
+msgid "View copy information for all libraries"
+msgstr "Դիտիր Պատճենիր տեղեկատվությունը բոլոր գրադարանների համար"
+
+#: rdetail.copyInfo.actions
+msgid "Actions"
+msgstr "Գործողություններ"
+
+#: rdetail.copyInfo.print
+msgid "Print Call Numbers for this library"
+msgstr "Տպիր դասիչները այս գրադարանի համար"
+
+#: rdetail.copyInfo.details
+msgid "details"
+msgstr "մանրամասներ"
+
+#: rdetail.copyInfo.browse
+msgid "browse"
+msgstr "դիտիր"
+
+#: rdetail.copyInfo.hold
+msgctxt "rdetail.copyInfo.hold"
+msgid "place hold"
+msgstr "տեղադրիր պահումը"
+
+#: rdetail.extras.summary
+msgid "Copy Summary"
+msgstr "Պատճենի համառոտագրություն"
+
+#: rdetail.extras.browser
+msgctxt "rdetail.extras.browser"
+msgid "Shelf Browser"
+msgstr "Դարակի դիտակ"
+
+#: rdetail.extras.reviews
+msgctxt "rdetail.extras.reviews"
+msgid "Reviews"
+msgstr "Գրախոսություններ"
+
+#: rdetail.extras.toc
+msgid "Table of Contents"
+msgstr "Բովանդակություն"
+
+#: rdetail.extras.excerpt
+msgid "Excerpt"
+msgstr "Մեջբերում"
+
+#: rdetail.extras.author.notes
+msgid "Author Notes"
+msgstr "Հեղինակի նշումներ"
+
+#: rdetail.extras.annotation
+msgid "Annotation"
+msgstr "Աննոտացիա"
+
+#: rdetail.extras.marc
+msgid "MARC Record"
+msgstr "MARC գրառում"
+
+#: rdetail.extras.call.null
+msgid "There are no call numbers for this item at this location."
+msgstr "Այս վայրում այս նյութի համար դասիչավորման համարներ չկան"
+
+#: rdetail.extras.call.local
+msgid "Local Call Numbers:"
+msgstr "Տեղային դասիչներ"
+
+#: rdetail.loading
+msgid "Loading copy infomation..."
+msgstr "Պատճենի տեղեկատվության բեռնավորում..."
+
+#: rdetail.noneAvailable
+msgid " * There are no copies in this location"
+msgstr " * Այս վայրում պատճեներ չկան"
+
+#: rdetail.summary.online
+msgid "Online Resources"
+msgstr "Առցանց պաշարներ"
+
+#: result.sort_by
+msgid "Sort Results by Relevance"
+msgstr "Տեսակավորիր արդյունքները ըստ կարևորության"
+
+#: result.sort_by.title
+msgid "Sort Results by Title"
+msgstr "Տեսակավորիր արդյունքները ըստ վերնագրի"
+
+#: result.sort_by.author
+msgid "Sort Results by Author"
+msgstr "Տեսակավորիր արդյունքները ըստ հեղինակի"
+
+#: result.sort_by.pubdate
+#, fuzzy
+msgid "Sort Results by Publication Date"
+msgstr "Տեսակավորիր արդյունքները ըստ հրատարակման տարեթվի"
+
+#: result.limit2avail
+msgid "Limit to Available"
+msgstr "Սահմանափակիր մատչելիներով"
+
+#: result.info.copies
+msgid "Available copies / Total copies"
+msgstr "Հասանելի պատճեներ / Ընդհանուր պատճեներ"
+
+#: result.info.no.items
+msgid "No items with the selected format were found in this location."
+msgstr "Այս վայրում ընտրված ձևաչափով նյութեր չեն գտնվել"
+
+#: result.info.format.items
+msgid "Listed below are all items in the catalog with the chosen format."
+msgstr "Ստորև թվարկվածները քարտարանի նյութերն են ըստ ընտրված ձևաչափի "
+
+#: result.info.show
+msgid "Show records for"
+msgstr "Ցույց տուր գրառումները "
+
+#: result.lowhits.few
+msgid "Few hits were returned for your search."
+msgstr "Քո որոնման համար շատ քիչ հարվածներ են վերադարձվել "
+
+#: result.lowhits.zero
+msgid "Zero hits were returned for your search."
+msgstr "Քո որոնման համար զերո արդյունք է վերադարձվել "
+
+#: result.lowhits.did.you.mean
+msgid "Maybe you meant:"
+msgstr "Միգուցե՞ դու նկատի ունես"
+
+#: result.lowhits.formats
+msgid "You will find more hits when searching all item formats:"
+msgstr "Դու կունենաս ավելի շատ հարվածներ երբ որոնես ըստ նյութի բոլոր ձևաչափերի։"
+
+#: result.lowhits.formats.search
+msgid "Search again with all formats?"
+msgstr "Որոնե՞լ նորից ըստ բոլոր ձևաչափերի"
+
+#: result.lowhits.related
+msgid "You may also like to try these related searches:"
+msgstr "Դու կարող ես նախընտրել նաև այս կապակցված փնտրումները։"
+
+#: result.lowhits.expand
+msgid "You may also wish to expand your search range to:"
+msgstr "Դու կարող ես ցանկանալ նաև ընդլայնել քո փնտրման տիրույթը։"
+
+#: result.lowhits.class
+msgid "You can try searching the same terms by:"
+msgstr "Դու կարող ես փորձել փնտրել նույն տերմինը։"
+
+#: result.lowhits.title
+msgid "title"
+msgstr "վերնագիր"
+
+#: result.lowhits.author
+msgid "author"
+msgstr "հեղինակ"
+
+#: result.lowhits.subject
+msgid "subject"
+msgstr "խորագիր"
+
+#: result.lowhits.series
+msgid "series"
+msgstr "մատենաշար"
+
+#: result.lowhits.keyword
+msgid "keyword"
+msgstr "վճռորոշ բառ"
+
+#: result.table.keyword
+msgid "View titles for this record"
+msgstr "Այս գրառման համար դիտիր վերնագրերը"
+
+#: result.table.author
+msgid "Perform an Author Search"
+msgstr "Իրականացրու որոնում ըստ Հեղինակի"
+
+#: result.googleBooks.browse
+msgid "Browse in Google Books Search"
+msgstr ""
+
+#: common.call.number.label
+msgid "Call Number:"
+msgstr "Դասիչ։"
+
+#: common.isbn.label
+msgid "ISBN:"
+msgstr "ISBN:"
+
+#: common.issn.label
+msgid "ISSN:"
+msgstr "ISSN:"
+
+#: common.copy.barcode.label
+msgid "Copy Barcode:"
+msgstr "Պատճենահանիր շտրիխ կոդը։"
+
+#: common.hold.place
+msgid "Place hold for my account"
+msgstr ""
+
+#: common.hold.check
+msgid "Checking for possibility of hold fulfillment..."
+msgstr "Պահման իրականացման համար ստուգվում է հնարավորությունը... "
+
+#: common.hold.create
+msgid "Create / Edit a Hold"
+msgstr "Ստեղծիր / Խմբագրիր պահումը"
+
+#: common.hold.update
+msgid "Update Hold"
+msgstr "Թարմացրու պահումը"
+
+#: common.hold.type.label
+msgid "Hold Type:"
+msgstr "Պահման տեսակ"
+
+#: common.hold.volume
+msgid "Volume Hold"
+msgstr "Հատորի պահում"
+
+#: common.hold.copy
+msgid "Copy Hold"
+msgstr "Պատճենի պահում"
+
+#: common.hold.advanced
+msgid "Advanced Hold Options"
+msgstr "Պահման խորացված ընտրանքներ"
+
+#: common.hold.delivery
+msgid "Please select a physical location where your hold can be delivered."
+msgstr "Ընտրեք այն ֆիզիկական տեղաբաշխումը, ուր կարելի է առաքել ձեր պահումը։"
+
+#: common.hold.exists
+msgid "A hold already exists on the requested item."
+msgstr "Պատվիրված նյութի վրա արդեն գոյություն ունի պահում։"
+
+#: common.hold.exists.override
+#, fuzzy
+msgid ""
+"A hold already exists on the requested \n"
+"item. Would you like to create the hold anyway?"
+msgstr ""
+"Պատվիրված նյութի վրա արդեն գոյություն ունի պահում։ Կուզենա՞ք ամեն դեպքում "
+"ստեղծել պահում։"
+
+#: common.hold.barred
+#, fuzzy
+msgid ""
+"PATRON BARRED. Please see any notes in the \n"
+"\"Staff Notes\" section of your \"My Account\" page or contact your local "
+"library."
+msgstr ""
+"ԸՆԹԵՐՑՈՂԸ ԱՐԳԵԼԱՓԱԿՎԱԾ Է։ Տես նշումները քո \"Իմ հաշվեհամար\" էջի "
+"\"Աշխատակազմի նշումներ\" բաժնում, կամ կապվիր քո տեղային գրադարանի հետ։։ "
+
+#: common.hold.item.invalid
+#, fuzzy
+msgid ""
+"This hold is no longer valid. It's likely that the \n"
+"target for the hold was deleted from the system. Please cancel this hold "
+"and \n"
+"place a new one."
+msgstr ""
+"Այ պահումը այլևս հավաստի չէ։ Հավանաբար պահման թիրախը համակարգից ջնջված է։ "
+"Չեղյալ արեք այս պահումը և իրականացրու նոր պահում։"
+
+#: common.hold.patron.invalid
+msgid "The patron barcode entered as the hold recipient is invalid."
+msgstr "Ընթերցողի շտրիխ կոդը մուտքագրված որպես ստացող հավաստի չէ։"
+
+# Was (??), perhaps change to a button or icon?
+#. Was (??), perhaps change to a button or icon?
+#: common.help
+msgid "(Help)"
+msgstr "(Օգնություն)"
+
+#: common.phone.format.help
+msgid ""
+"The phone number does not have the correct format. The expected format is "
+"XXX-YYY-ZZZZ"
+msgstr "Հեռախոսի համարը չունի ճիշտ ձևաչափ։ Սպասվող ձևաչափն է` XXX-YYY-ZZZZ"
+
+#: common.hold.failed
+#, fuzzy
+msgid ""
+"No items were found that could fulfill the requested holds. \n"
+"It's possible that choosing a different format will result in a successful "
+"hold. \n"
+"It is also possible that you have exceeded the number of allowable holds. \n"
+"For further information, please consult your local librarian."
+msgstr ""
+"Պահանջվող պահումներին բավարարող գրառումներ չկան։ Հնարավոր է, որ ուրիշ "
+"ձևաչափի ընտրությունը կհանգեցնի հաջող պահման։ Հնարավոր է նաև որ դու "
+"գերազանցել ես թույլատրելի պահումների քանակը։ Հետագա տեղեկատվության համար "
+"դիմիր քո տեղային գրադարանավարին։ "
+
+#: common.control.click
+msgid "(control-click to select multiple formats)"
+msgstr "(Բազմաձևաչափեր ընտրելու համար` ստուգիր-սեղմիր)"
+
+#: common.format.alternatives
+msgid "Acceptable Alternative Formats:"
+msgstr "Ընդունելի այլընտրանքային ձևաչափեր։"
+
+#: common.phone.format
+msgid "(XXX-YYY-ZZZZ)"
+msgstr "(XXX-YYY-ZZZZ)"
+
+#: common.phone.enable
+msgid "Enable phone notifications for this hold?"
+msgstr "Թույլատրե՞լ այս պահման համար հեռախոսային տեղեկացումներ։"
+
+#: common.email.enable
+msgid "Enable email notifications for this hold?"
+msgstr "Թույլատրե՞լ այս պահման համար էլ փոստով տեղեկացումներ։"
+
+#: common.email.none
+msgid "(Patron has no configured email address)"
+msgstr "(Ընթերցողը չի կարգաբերել էլ փոստի հասցեն)"
+
+#: common.email.set
+msgid ""
+"(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> "
+"for setting your email address)"
+msgstr ""
+"(Տես <a class='classic_link' id='holds.no_email.my_account'>Իմ հաշիվը</a> քո "
+"էլ փոստի հասցեն ստեղծելու համար)"
+
+#: common.keywords.label
+msgid "Keywords:"
+msgstr "Վճռորոշ բառեր։"
+
+#: common.physical.label
+msgid "Physical Description:"
+msgstr "Ֆիզիկական նկարագրություն։"
+
+#: common.series.label
+msgid "Series:"
+msgstr "Մատենաշար։"
+
+#: common.subject.label
+msgid "Subject:"
+msgstr "Խորագիր։"
+
+#: common.title.label
+msgid "Title:"
+msgstr "Վերնագիր։"
+
+#: common.author.label
+msgid "Author:"
+msgstr "Հեղինակ։"
+
+#: common.format.label
+msgid "Format:"
+msgstr "Ձևաչափ։"
+
+#: library.select
+msgid "Find results in"
+msgstr "Գտիր արդյունքները"
+
+#: library.select.label
+msgid "Choose a different library..."
+msgstr "Ընտրիր մեկ այլ գրադարան..."
+
+#: library.select.help
+msgctxt "library.select.help"
+msgid "Choose a library to search"
+msgstr "Ընտրիր փնտրման համար գրադարանը"
+
+#: login.username
+msgid "Enter your username or library barcode"
+msgstr "Մուտք արա օգտվողի անունը կամ շտրիխ կոդը"
+
+#: login.password.change
+msgid "Change Password"
+msgstr "Փոխիր գաղտնաբառը"
+
+#: login.first.time
+#, fuzzy
+msgid ""
+"This appears to be the first time you have logged in. \n"
+"You will need to change your password."
+msgstr ""
+"Կարծես թե դու առաջին անգամ ես մուտք գործում։ Անհրաժեշտ է փոխել գաղտնաբառը։"
+
+#: login.password.current.enter
+msgid "Enter your current password"
+msgstr "Մուտք արա ընթացիկ գաղտնաբառը։"
+
+#: login.password.new.enter
+msgid "Enter the new password"
+msgstr "Մուտք արա նոր գաղտնաբառը։"
+
+#: login.password.new.reenter
+msgid "Re-type the new password for verification"
+msgstr "Ստուգման համար կրկին մուտք արա նոր գաղտնաբառը։"
+
+#: login.password.update
+msgid "Update Password"
+msgstr "Թարմացրու գաղտնաբառը։"
+
+#: login.password.nomatch
+msgid "Passwords do not match"
+msgstr "Գաղտնաբառերը չեն համընկնում"
+
+#: login.password.success
+msgctxt "login.password.success"
+msgid "Password successfully updated"
+msgstr "Գաղտնաբառը հաջողությամբ թարմացվել է։"
+
+#: login.password.strength
+msgid "The password provided is not strong enough."
+msgstr "Ներկայացված գաղտնաբառը այնքան էլ ուժեղ չէ։"
+
+#: login.barcode.inactive
+msgid ""
+"The barcode used to login is marked as inactive. Please contact your local "
+"library."
+msgstr ""
+"Մուտք գործելու համար տրված շտրիխ կոդը նշված է որպես ոչ ակտիվ։ Կապվիր քո "
+"տեղային գրադարանի հետ։ "
+
+#: login.account.inactive
+msgid "This account has been deactivated. Please contact your local library."
+msgstr "Այս հաշիվը ապաակտիվացված է։ Կապվիր քո տեղային գրադարանի հետ։"
+
+#: login.failed
+#, fuzzy
+msgid ""
+"Login failed. The username or password provided was not valid. \n"
+"Ensure Caps-Lock is off and try again or contact your local library."
+msgstr ""
+"Գրանցումը տապալված է։ Օգտվողի անունը կամ գաղտնաբառը հավաստի չեն։ Ստուգիր որ "
+"Caps-Lock-ը անջատված է, և փորձիր նորից, կամ կապվիր տեղային գրադարանի հետ։"
+
+#: button.go
+msgid "Go!"
+msgstr "Գնա"
+
+# =================================================================
+# Slimpac Simple Search
+#. =================================================================
+#. Slimpac Simple Search
+#. =================================================================
+#: slimpac.start.title
+msgid "Simple Search"
+msgstr "Հասարակ փնտրում"
+
+#: slimpac.start.nowSearching
+msgid "Now searching: "
+msgstr "Հիմա որոնում է։"
+
+#: slimpac.start.dynamic
+msgid "Dynamic Catalog"
+msgstr "Դինամիկ քարտարան"
+
+# =================================================================
+# Slimpac Advanced Search
+#. =================================================================
+#. Slimpac Advanced Search
+#. =================================================================
+#: slimpac.advanced.language
+msgid "Item Language"
+msgstr "Նյութի լեզու"
+
+#: slimpac.advanced.create_date
+msgid "Record Creation Date"
+msgstr "Գրառման ստեղծման ամսաթիվ"
+
+#: slimpac.advanced.edit_date
+msgid "Record Edit Date"
+msgstr "Գրառման խմբագրման ամսաթիվ"
+
+#: opac.image_provided
+msgid "Image provided by"
+msgstr "Նկարը ապահովել է"
+
+#: vendor.name
+msgid "Amazon"
+msgstr "Ամազոն"
+
+#: vendor.base_link
+msgid "http://amazon.com/dp/"
+msgstr "http://amazon.com/dp/"
+
+#~ msgid " of at least "
+#~ msgstr "ամենաքիչը"
+
+#~ msgid "Share"
+#~ msgstr "Համատեղ"
+
+#~ msgid "Freeze"
+#~ msgstr "Սառեցրու"
+
+#~ msgid "Un-freeze"
+#~ msgstr "Ապասառեցրու"
+
+#~ msgid "Set Un-freeze date"
+#~ msgstr "Դիր ապասառեցման ամսաթիվը"
+
+#~ msgid "Are you sure you wish to un-freeze the selected holds?"
+#~ msgstr "Վստա՞հ ես որ ուզում ես ապասառեցնել ընտրված պահումները։"
+
+#~ msgid ""
+#~ "Select an 'Un-Freeze' date. This is the date at which the holds will become "
+#~ "active again. If no date is chosen, the holds will remain frozen until they "
+#~ "are manually un-frozen."
+#~ msgstr ""
+#~ "Ընտրիր Ապասառեցման ամսաթիվը։ Սա այն ամսաթիվն է, որից հետո պահումները նորից "
+#~ "ակտիվ կդառնան։ Եթե ամսաթիվ ընտրված չէ, պահումները կմնան սառեցված քանի դեռ "
+#~ "ձեռքով չեն ապասառեցվել։"
+
+#~ msgid "Freeze this hold"
+#~ msgstr "Սառեցրու այս պահումը"
+
+#~ msgid "Un-Frozen"
+#~ msgstr "Ապասառեցված է։"
+
+#~ msgid "Frozen Until"
+#~ msgstr "Սառեցված է մինչ"
+
+#~ msgid "Place hold for me"
+#~ msgstr "Իմ համար իրականացրու պահում"
+
+#~ msgid "Edit/Cancel"
+#~ msgstr "Խմբագրիր/Անտեսիր"
--- /dev/null
+# extracted from ../../Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-07-25 13:19-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@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"
+"X-Accelerator-Marker: &\n"
+
+#: staff.patron.barcode_entry.user_permission_editor
+msgid "User Permission Editor"
+msgstr ""
+
+#: staff.patron.barcode_entry.check_out
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron.barcode_entry.no_barcode
+msgid "No barcode entered."
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_retrieval_problem
+msgid ""
+"Problem retrieving %1$s. Please report this message: \n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.barcode_entry.barcode_not_found
+msgid "Barcode %1$s not found."
+msgstr ""
+
+#: staff.patron.barcode_entry.consent_from_patron
+msgid ""
+"Does patron %1$s, %2$s from %3$s (%4$s) consent to having their personal "
+"information shared with your library?"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_title
+msgid "Patron/Library Opt-In Confirmation"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_accept
+msgid "Accept"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_deny
+msgid "Deny"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_consent_confirm
+msgctxt "staff.patron.barcode_entry.patron_consent_confirm"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.barcode_entry.patron_display_error
+msgid "spawning patron display"
+msgstr ""
+
+#: staff.patron.barcode_entry.user_perm_display_error
+msgid "spawning user perm editor"
+msgstr ""
+
+#: staff.patron.bill_details.my_init.error
+msgid "bill_details.xul, my_init:"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voided_billings.alert
+msgid "All selected billings have already voided."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_title
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_yes
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_no
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message
+msgctxt "staff.patron.bill_details.handle_void.confirm_void_billing_confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.voiding_error
+msgctxt "staff.patron.bill_details.handle_void.voiding_error"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bill_details.handle_void.billings_voided
+msgctxt "staff.patron.bill_details.handle_void.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_history.retrieve_mbts_for_list.close_win_try_again
+msgid "Please close this window and try again."
+msgstr ""
+
+#: staff.patron.bill_history.my_init.current_bills
+msgid "Current Bills"
+msgstr ""
+
+#: staff.patron.bill_history.my_init.bill_history
+msgid "Bill History"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_plural
+msgid "Are you sure you would like to add a billing to bills %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.message_singular
+msgid "Are you sure you would like to add a billing to bill %1$s?"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.title
+msgid "Bill Patron"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_yes
+msgctxt "staff.patron.bill_history.handle_add.btn_yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.btn_no
+msgctxt "staff.patron.bill_history.handle_add.btn_no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bill_history.handle_add.confirm_message
+msgctxt "staff.patron.bill_history.handle_add.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bill_history.print_bills.print_error
+msgid "printing bills"
+msgstr ""
+
+#: staff.patron.bills.init_controller.money_summary_label
+msgid "Money Summary"
+msgstr ""
+
+#: staff.patron.bills.bill_payment_amount.credit_amount
+msgid "Patron only has %1$s in credit."
+msgstr ""
+
+#: staff.patron.bills.bill_change_amount.greedy
+msgid "Someone wanted more money than they deserved"
+msgstr ""
+
+#: staff.patron.bills.apply_payment.nothing_applied
+msgid "No payments or patron credit applied."
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment
+msgid "Please annotate this payment:"
+msgstr ""
+
+#: staff.patron.bills.pay.annotate_payment.title
+msgid "Annotate Payment"
+msgstr ""
+
+#: staff.patron.bills.pay.refund_exceeds_desk_payment
+msgid ""
+"%1$s\n"
+"\n"
+"Another way to \"zero\" this transaction is to use Add Billing and add a "
+"miscellaneous bill to counter the negative balance."
+msgstr ""
+
+#: staff.patron.bills.pay.payment_failed
+msgid "Bill payment likely failed"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.title
+msgctxt "staff.patron.bills.info_box.label_value.title"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.type
+msgid "Type"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.last_billing
+msgid "Last Billing:"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.add_billing
+msgid "Add Billing"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.refund
+msgid "Refund"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.void_all_billings
+msgid "Void All Billings"
+msgstr ""
+
+#: staff.patron.bills.info_box.label_value.full_details
+msgid "Full Details"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.all_voided
+msgid "All billings already voided on this bill."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.message
+msgctxt "staff.patron.bills.void_all_billings.void.message"
+msgid "Are you sure you would like to void $%1$s worth of line-item billings?"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.title
+msgctxt "staff.patron.bills.void_all_billings.void.title"
+msgid "Voiding Bills"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.yes
+msgctxt "staff.patron.bills.void_all_billings.void.yes"
+msgid "Yes"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.no
+msgctxt "staff.patron.bills.void_all_billings.void.no"
+msgid "No"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.void.confirm_message
+msgctxt "staff.patron.bills.void_all_billings.void.confirm_message"
+msgid "Check here to confirm this message"
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.error_voiding_bills
+msgctxt "staff.patron.bills.void_all_billings.error_voiding_bills"
+msgid "Error voiding bills."
+msgstr ""
+
+#: staff.patron.bills.void_all_billings.billings_voided
+msgctxt "staff.patron.bills.void_all_billings.billings_voided"
+msgid "Billings voided."
+msgstr ""
+
+#: staff.patron.bill_wizard.patron_bill_finish.billing_added
+msgid "Billing added."
+msgstr ""
+
+#: staff.patron.display.cmd_search_form.no_patron
+msgid "No Patron Selected"
+msgstr ""
+
+#: staff.patron.display.cmd_patron_edit.edit_search
+msgid "Editor would like to search for: %1$s"
+msgstr ""
+
+#: staff.patron.display.spawn_editor.editing_related_patron
+msgctxt "staff.patron.display.spawn_editor.editing_related_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.display.init.retrieving_patron
+msgid "Retrieving Patron..."
+msgstr ""
+
+#: staff.patron.display.init.retrieving
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.patron.display.init.network_request.alert_message
+msgid "Alert message: \"%1$s\"<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.inactive_card
+msgid "Patron account retrieved with an INACTIVE card.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_barred
+msgid "Patron account is BARRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_inactive
+msgid "Patron account is INACTIVE.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.network_request.account_expired
+msgid "Patron account is EXPIRED.<br/><br/>"
+msgstr ""
+
+#: staff.patron.display.init.holds_ready
+msgid "Holds available: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_title
+msgid "Alert"
+msgstr ""
+
+#: staff.patron.display.init.network_request.window_message
+msgid ""
+"Press a navigation button above (for example, Check Out) to clear this "
+"alert."
+msgstr ""
+
+#: staff.patron.display.init.network_request.dump_error_message
+msgid "Not re-displaying this alert message: %1$s"
+msgstr ""
+
+#: staff.patron.display.init.network_request.error_showing_alert
+msgid "Error showing patron alert and holds availability."
+msgstr ""
+
+#: staff.patron.display.render_search_form.patron_search
+msgid "Patron Search"
+msgstr ""
+
+#: staff.patron.display.tab_name
+msgid "Patron:"
+msgstr ""
+
+#: staff.patron.hold_notices.tooltiptext
+msgid "ID: %1$s Hold ID: %2$s Notifying Staff ID: %3$s"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification_record
+msgid "New Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.method
+msgid "Method"
+msgstr ""
+
+#: staff.patron.hold_notices.note
+msgctxt "staff.patron.hold_notices.note"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel
+msgctxt "staff.patron.hold_notices.cancel"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.hold_notices.cancel_accesskey
+msgctxt "staff.patron.hold_notices.cancel_accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record
+msgid "Add Notification Record"
+msgstr ""
+
+#: staff.patron.hold_notices.add_notif_record_accesskey
+msgctxt "staff.patron.hold_notices.add_notif_record_accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.hold_notices.new_notification.not_created
+msgid "The notification was not likely created."
+msgstr ""
+
+#: staff.patron.holds.init.hold_num_error
+msgid "Error retrieving details for hold #%1$s"
+msgstr ""
+
+#: staff.patron.holds.show_notifications.error_rendering_notifs
+msgid "Error rendering or retrieving hold notifications."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_hold_range
+msgid "Please choose a Hold Range:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.label
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_selection_depth.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.choose_library
+msgctxt "staff.patron.holds.holds_edit_selection_depth.choose_library"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.singular
+msgid ""
+"Are you sure you would like to change the Hold Range for hold %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_message.plural
+msgid ""
+"Are you sure you would like to change the Hold Range for holds %1$s to "
+"\"%2$s\"?;"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_selection_depth.modify_holds_title
+msgctxt "staff.patron.holds.holds_edit_selection_depth.modify_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_not_modified
+msgid "Holds not likely modified."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.new_pickup_lib.description
+msgid "Please choose a new Pickup Library:"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.done.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.label
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.choose_lib
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.choose_lib"
+msgid "Choose a Pick Up Library"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.singular
+msgid ""
+"Are you sure you would like to change the Pick Up Library for hold %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_message.plural
+msgid ""
+"Are you sure you would like to change the Pick Up Library for holds %1$s to "
+"%2$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title
+msgctxt "staff.patron.holds.holds_edit_pickup_lib.change_pickup_lib_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.new_phone_number
+msgid ""
+"Please enter a new phone number for hold notification (leave the field empty "
+"to disable phone notification):"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_phone_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.choose_phone_number
+msgid "Choose a Hold Notification Phone Number"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.singular
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for hold "
+"%1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.confirm_phone_number_change.plural
+msgid ""
+"Are you sure you would like to change the Notification Phone Number for "
+"holds %1$s to \"%2$s\"?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_phone_notify.modifying_holds_title
+msgctxt "staff.patron.holds.holds_edit_phone_notify.modifying_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.description
+msgid ""
+"Send email notifications (when appropriate)? The email address used is "
+"found in the hold recipient account."
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.label
+msgid "Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_email.accesskey
+msgid "E"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.label
+msgid "No Email"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_no_email.accesskey
+msgid "N"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.label
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey
+msgctxt "staff.patron.holds.holds_edit_email_notify.btn_cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.set_notifs
+msgid "Set Email Notification for Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.singular
+msgid "Are you sure you would like to enable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.enable_email.plural
+msgid ""
+"Are you sure you would like to enable email notification for holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.singular
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.singular"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.disable_email.plural
+msgctxt "staff.patron.holds.holds_edit_email_notify.disable_email.plural"
+msgid ""
+"Are you sure you would like to disable email notification for hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_edit_email_notify.mod_holds_title
+msgctxt "staff.patron.holds.holds_edit_email_notify.mod_holds_title"
+msgid "Modifying Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.singular
+msgid "Are you sure you would like to reset hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_message.plural
+msgid "Are you sure you would like to reset holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.reset_hold_title
+msgid "Resetting Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_retarget.holds_not_reset
+msgid "Holds not likely reset."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.singular
+msgid "Are you sure you would like to cancel hold %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_message.plural
+msgid "Are you sure you would like to cancel holds %1$s?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_hold_title
+msgid "Cancelling Holds"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes
+msgid "For barcodes %1$s, should the associated transits also be cancelled?"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.cancel_for_barcodes.title
+msgid "Cancelling Transits"
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_transits_not_cancelled
+msgid "Hold transits not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.holds_cancel.hold_not_cancelled
+msgid "Holds not likely cancelled."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.unknown_htype
+msgid ""
+"I do not understand the hold type of %1$s so I can not display the "
+"appropriate record in the catalog."
+msgstr ""
+
+#: staff.patron.holds.show_catalog.retrieving_title
+msgctxt "staff.patron.holds.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.holds.lib_menus.missing_library_list
+msgid "Missing library list."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_group_members.failure
+msgid "Failed to retrieve all the group members."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.tab_name
+msgid "Retrieving Patron.."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patron
+msgid "Failed to retrieve patron."
+msgstr ""
+
+#: staff.patron.info_group.retrieve_patron.failed_retrieving_patrons
+msgid "Failed to retrieve patrons."
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.register_clone.tab_name
+msgid "Register Patron Clone for Group"
+msgstr ""
+
+#: staff.patron.info_group.clone_patron.error_spawning_editors
+msgid "error spawning user editors"
+msgstr ""
+
+#: staff.patron.info_group.spwan_editor.editing_patron
+msgctxt "staff.patron.info_group.spwan_editor.editing_patron"
+msgid "Editing Related Patron"
+msgstr ""
+
+#: staff.patron.info_group.spwan_search
+msgid "spawn search"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message
+msgid ""
+"WARNING: If you remove the currently displayed patron, a NEW group will be "
+"displayed in this interface."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.warning_message_confirm
+msgid "Remove selected patrons from this group? %1$s"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.error_removing_patron
+msgid "error removing patron (ID=%1$s) from usergroup"
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_removed_from_group
+msgid "Patrons removed from group."
+msgstr ""
+
+#: staff.patron.info_group.remove_patron.patrons_not_removed_from_group
+msgid "Patron not removed from group."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.null_not_allowed
+msgid "null parameter not allowed"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.invalid_parameter
+msgid "Invalid parameter. Expected boolean."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.scan_patron_barcode
+msgid "Please scan a patron barcode:"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_new_usergroup
+msgid "Move patron %1$s into patron %2$s's usergroup..."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.label
+msgid "Move"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move.accesskey
+msgid "M"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.label
+msgctxt "staff.patron.info_group.link_patron.done.label"
+msgid "Done"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.done.accesskey
+msgctxt "staff.patron.info_group.link_patron.done.accesskey"
+msgid "D"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.move_patron_to_usergroup
+msgid "Move Patron into a Usergroup"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patron
+msgid "error linking patron (ID=%1$s)"
+msgstr ""
+
+#: staff.patron.info_group.link_patron.usergroups_updated
+msgid "User groups updated."
+msgstr ""
+
+#: staff.patron.info_group.link_patron.error_linking_patrons
+msgid "error linking patrons"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.label
+msgid "Add New Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.add_new_note.accesskey
+msgctxt "staff.patron.info_notes.render_notes.add_new_note.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.tooltiptext
+msgid "Note ID: %1$s Creator ID: %2$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.patron_visible
+msgid "Patron Visible"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pub.staff_only
+msgid "Staff Only"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_message
+msgid "Delete the note titled \"%1$s\" created on %2$s?"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.delete_note_title
+msgid "Delete Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn1.delete_note.label
+msgid "Delete This Note"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.note_deleted
+msgid "Note deleted."
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.pertaining_to
+msgid "Pertaining to"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.created_on
+msgid "created on"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.printing_note_num
+msgid "printing note #%1$s"
+msgstr ""
+
+#: staff.patron.info_notes.render_notes.btn2.print_note.label
+msgid "Print"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.label
+msgid "New Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.patron_visible.value
+msgid "Patron Visible?"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.title.value
+msgctxt "staff.patron.info_notes.new_note.title.value"
+msgid "Title"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note.value
+msgctxt "staff.patron.info_notes.new_note.note.value"
+msgid "Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.label
+msgctxt "staff.patron.info_notes.new_note.cancel.label"
+msgid "Cancel"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.cancel.accesskey
+msgctxt "staff.patron.info_notes.new_note.cancel.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.label
+msgctxt "staff.patron.info_notes.new_note.add.label"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add.accesskey
+msgctxt "staff.patron.info_notes.new_note.add.accesskey"
+msgid "A"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgctxt "staff.patron.info_notes.new_note.add_note_title"
+msgid "Add Note"
+msgstr ""
+
+#: staff.patron.info_notes.new_note.add_note_title
+msgid "Note added."
+msgstr ""
+
+#: staff.patron.info_notes.new_note.note_not_created
+msgid "The note was not likely created."
+msgstr ""
+
+#: staff.patron.info_stat_cats.retrieve_fleshed_patron.failed
+msgid "Failed to retrieve patron stat cats."
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.opac_visible
+msgid "OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.not_opac_visible
+msgid "Not OPAC Visible"
+msgstr ""
+
+#: staff.patron.info_stat_cats.render_stat_cats.rendering_exception
+msgid "rendering or retrieving stat cat"
+msgstr ""
+
+#: staff.patron.info_surveys.retrieve_surveys.failed
+msgid "Failed to retrieve all the survey responses."
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.required
+msgid "Required"
+msgstr ""
+
+#: staff.patron.info_surveys.render_surveys.not_required
+msgid "Not Required"
+msgstr ""
+
+#: staff.patron.items.show_noncats.14_days
+msgid "14 days"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_noncat
+msgid "Error showing NonCat #%1$s"
+msgstr ""
+
+#: staff.patron.items.show_noncats.err_showing_circulations
+msgid "Error showing NonCat circulations"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.list_is_busy
+msgid ""
+"This is list is busy retrieving or rendering rows for a prior action. Abort "
+"the prior action and proceed?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.renew_items_in_list
+msgid "Renew all the items in this list?"
+msgstr ""
+
+#: staff.patron.items.items_renew_all.items_not_renewed
+msgid "All items were not likely renewed (%1$s)"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renew_item_singular
+msgid "Are you sure you would like to renew items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewing
+msgid "Renewing %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.renewed
+msgid "%1$s renewed."
+msgstr ""
+
+#: staff.patron.items.items_renew.not_renewed
+msgid ""
+"%1%s not renewed.\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.err_in_renew_via_barcode
+msgid ""
+"Error in renew_via_barcode callback\n"
+"Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew_for_barcode
+msgid "Renew probably did not happen for barcode %1$s"
+msgstr ""
+
+#: staff.patron.items.items_renew.no_renew
+msgid "Renew probably did not happen."
+msgstr ""
+
+#: staff.patron.items.items_edit.invalid_date
+msgid "Invalid Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.need_later_date
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.singular
+msgid "Edit Due Date"
+msgstr ""
+
+#: staff.patron.items.items_edit.edit_due_date.plural
+msgid "Edit Due Dates"
+msgstr ""
+
+#: staff.patron.items.items_edit.new_due_date
+msgid "Enter a new due date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.dates_not_modified
+msgid "The due dates were not likely modified."
+msgstr ""
+
+#: staff.patron.items.items_edit.mark_barcode_lost
+msgid "Mark barcode lost = %1$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.item_barcode
+msgid ""
+"Item Barcode %1$s\n"
+"%2$s"
+msgstr ""
+
+#: staff.patron.items.items_edit.items_not_marked_lost
+msgid "The items were not likely marked lost."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.date_cannot_be_in_future
+msgid "Claims Returned Date cannot be in the future."
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.claimed_returned
+msgid "Claimed Returned"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.enter_returned_date
+msgid "Enter a claimed returned date for these items: %1$s"
+msgstr ""
+
+#: staff.patron.items.items_claimed_returned.not_marked_claimed_returned
+msgid "The items were not likely marked Claimed Returned."
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.singular
+msgid "Are you sure you would like to check in item %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.confirm_item_check_in.plural
+msgid "Are you sure you would like to check in items %1$s?"
+msgstr ""
+
+#: staff.patron.items.items_checkin.no_checkin
+msgid "Checkin probably did not happen."
+msgstr ""
+
+#: staff.patron.items.show_catalog.barcode_not_cataloged
+msgid "%1$s is not cataloged"
+msgstr ""
+
+#: staff.patron.items.show_catalog.retrieving_title
+msgctxt "staff.patron.items.show_catalog.retrieving_title"
+msgid "Retrieving title..."
+msgstr ""
+
+#: staff.patron.items.retrieve_row.callback_error
+msgid "Error in callback for FM_CIRC_DETAILS.authoritative in patron/items.js"
+msgstr ""
+
+#: staff.patron.items.retrieve_row.error_in_retrieve_row
+msgid "error in patron/items.js retrieve_row():"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row2
+msgid ""
+"2 Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.refresh.error_refreshing_row
+msgid ""
+"Error refreshing row in list\n"
+"circ_id = %1$s\n"
+"nparams = %2$s"
+msgstr ""
+
+#: staff.patron.items.retrieve.err_retrieving_circulations
+msgid "Error retrieving circulations."
+msgstr ""
+
+#: staff.patron.items.gen_list_append.error
+msgid "patron/items.js: error in gen_list_append"
+msgstr ""
+
+#: staff.patron.search_result.search.no_patrons_found
+msgid "No patrons found matching search criteria."
+msgstr ""
+
+#: staff.patron.search_result.search.capped_results
+msgid "Results capped at %1$s patrons."
+msgstr ""
+
+#: staff.patron.search_result.search.enter_search_terms
+msgid "Please enter some search terms."
+msgstr ""
+
+#: staff.patron.search_result.init.typeof_params
+msgid "typeof params.on_retrieve == %1$s"
+msgstr ""
+
+#: staff.patron.search_result.init.search_print
+msgid "patron search print"
+msgstr ""
+
+#: staff.patron.search_result.init.search_clipboard
+msgid "patron search clipboard"
+msgstr ""
+
+#: staff.patron.search_result.init.search_saving_columns
+msgid "patron search saving columns"
+msgstr ""
+
+#: staff.patron.summary.patron_bill.money
+msgid "$ %1$s"
+msgstr ""
+
+#: staff.patron.summary.retrieve.no_barcode
+msgid "summary: No barcode or ID"
+msgstr ""
+
+#: staff.patron.summary.patron_net_access
+msgid "Internet"
+msgstr ""
+
+#: staff.patron.summary.expires_on
+msgid "Expires on"
+msgstr ""
+
+#: staff.patron.ue.uEditInit.session_no_defined
+msgctxt "staff.patron.ue.uEditInit.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: staff.patron.ue.uEditSaveuser.error_creating_note
+msgid "Error creating patron guardian or parent note"
+msgstr ""
+
+#: staff.patron.ue.uEditShowSearch.search
+msgctxt "staff.patron.ue.uEditShowSearch.search"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
+
+#: staff.patron.user_edit.save_user.depth_required
+msgid "Depth is required on the %1$s permission."
+msgstr ""
+
+#: staff.patron.user_edit.save_user.user_modified_successfully
+msgid ""
+"User %1$s [%2$s] successfully modified.\n"
+"%3$s permissions and %4$s work locations updated."
+msgstr ""
+
+#: staff.patron.user_edit.display_perm.select_one
+msgid "-- Select One --"
+msgstr ""
+
+#: web.staff.patron.ue.session_no_defined
+msgctxt "web.staff.patron.ue.session_no_defined"
+msgid "User session is not defined"
+msgstr ""
+
+#: web.staff.patron.ue.uedit_show_search.search_would_be
+msgctxt "web.staff.patron.ue.uedit_show_search.search_would_be"
+msgid ""
+"Search would be:\n"
+"%1$s"
+msgstr ""
+++ /dev/null
-# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-12-13 11:26-0400\n"
-"PO-Revision-Date: 2007-12-14 12:40-0800\n"
-"Last-Translator: Tigran <tigran@flib.sci.am>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-# =================================================================
-# Some generic stuff
-# =================================================================
-#: lang.version
-msgid "remote v1"
-msgstr "հեռացրու v1"
-
-#: lang.description
-msgid "English"
-msgstr "Անգլերեն"
-
-#: lang.author
-msgid "PINES"
-msgstr "PINES"
-
-#: common.all
-msgid "All"
-msgstr "Լրիվ"
-
-#: common.currency
-msgid "$"
-msgstr "$"
-
-#: common.name
-msgid "Name"
-msgstr "Անուն"
-
-#: common.none
-msgid "None"
-msgstr "Ոչ մեկը"
-
-#: common.title
-msgid "Title"
-msgstr "Վերնագիր"
-
-#: common.author
-msgid "Author"
-msgstr "Հեղինակ"
-
-#: common.authors
-msgid "Authors"
-msgstr "Հեղինակներ"
-
-#: common.callnumber opac.advanced.quick.cn
-msgid "Call Number"
-msgstr "Դասիչ"
-
-#: common.edition
-msgid "Edition"
-msgstr "Հրատարակություն"
-
-#: common.subject
-msgid "Subject"
-msgstr "Խորագիր"
-
-#: common.series
-msgid "Series"
-msgstr "Մատենաշար"
-
-#: common.keyword
-msgid "Keyword"
-msgstr "Վճռորոշ բառ"
-
-#: common.type
-msgid "Search Type"
-msgstr "Փնտրման տեսակ"
-
-#: common.isbn opac.advanced.quick.isbn
-msgid "ISBN"
-msgstr "ISBN"
-
-#: common.format
-msgid "Format"
-msgstr "Ձևաչափ"
-
-# Message displayed while search results are loading
-#: common.loading myopac.fines.status
-msgid "Loading..."
-msgstr "Բեռնավորում..."
-
-#: common.login opac.login.login
-msgid "Login"
-msgstr "Գրանցում"
-
-#: common.logout
-msgid "Log Out"
-msgstr "Հեռանալ"
-
-#: common.physical
-msgid "Physical Description"
-msgstr "Ֆիզիկական նկարագրություն"
-
-#: common.pubdate
-msgid "Publication Date"
-msgstr "Հրատարակման ամսաթիվ"
-
-#: common.publisher
-msgid "Publisher"
-msgstr "Հրատարակիչ"
-
-#: common.results
-msgid "Results"
-msgstr "Արդյունքներ"
-
-#: common.select
-msgid "Select"
-msgstr "Ընտրել"
-
-#: common.status
-msgid "Status"
-msgstr "Կարգավիճակ"
-
-#: common.at
-msgid "at"
-msgstr "at"
-
-#: common.of
-msgid "of"
-msgstr "of"
-
-#: common.no
-msgid "No"
-msgstr "Ոչ"
-
-#: common.yes
-msgid "Yes"
-msgstr "Այո"
-
-#: common.cancel common.org.cancel myopac.holds.cancel
-#: myopac.holds.cancel_selected
-msgid "Cancel"
-msgstr "Չեղյալ անել"
-
-#: common.library rdetail.copyInfo.library
-msgid "Library"
-msgstr "Գրադարան"
-
-#: common.username
-msgid "Username"
-msgstr "Օգտվողի անուն"
-
-#: common.password
-msgid "Password"
-msgstr "Գաղտնաբառ"
-
-#: common.submit
-msgid "Submit"
-msgstr "Հաստատել"
-
-#: common.close
-msgid "close"
-msgstr "փակել"
-
-#: common.and
-msgid "and"
-msgstr "և"
-
-#: common.user_not_found
-msgid "User not found"
-msgstr "Օգտվողը չի գտնվել"
-
-#: opac.advanced.wizard.title opac.navigate.advanced
-msgid "Advanced Search"
-msgstr "Խորացված փնտրում"
-
-#: common.nowSearching
-msgid "Now searching "
-msgstr "Հիմա որոնում է"
-
-#: common.ofAtLeast
-msgid " of at least "
-msgstr "ամենաքիչը"
-
-#: common.relevancy
-msgid "Match Score: "
-msgstr "Հաշվի առ հաշիվը։"
-
-#: common.tips
-msgid "Tips:"
-msgstr "Հնարքներ։"
-
-#: common.tips.tip1
-msgid "Click on a folder icon in the sidebar to access related quick searches"
-msgstr ""
-"Սեղմիր կողային մասում առկա թղթապանակի պատկերիկի վրա առագ փնտրումը հասանելի "
-"դարձնելու համար"
-
-#: common.tips.tip2
-msgid ""
-"If you don't find what you want try expanding your search using the range "
-"selector at the right of the search bar"
-msgstr ""
-"Եթե չես գտնում այն ինչ որ պետք է քեզ, ապա ընդլայնիր որոնումը օգտագործելով "
-"փնտրման ցանկի աջ մասում եղած շղթայական ընտրիչը"
-
-#: common.org.openAll
-msgid "Expand All"
-msgstr "Ընդլայնիր բոլորը"
-
-#: common.org.closeAll
-msgid "Close All"
-msgstr "Փակիր բոլորը"
-
-#: common.org.loading
-msgid "Loading library selector..."
-msgstr "Գրադարանի ընտրիչի բեռնավորում..."
-
-# ==========================================================
-# Tips
-#: common.org.note tips.label
-msgid "Tip:"
-msgstr "Հնարք։"
-
-#: common.org.notetext
-msgid ""
-"Click on a location's name to select it. Click on the folder icons to "
-"expand a section."
-msgstr ""
-"Ընտրության համար սեղմիր տեղաբաշխման անվան վրա։ Սեղմիր թղթապանակի "
-"պատկերիկների վրա բաժինը ընդլայնելու համար։"
-
-# =================================================================
-# Footer
-#: opac.basic footer.basic
-msgid "Basic Catalog (HTML only)"
-msgstr "Հիմնական քարտարան (միայն HTML)"
-
-#: common.password_criteria
-msgid ""
-"The password must be at least 7 characters in length, \tcontain at least one "
-"letter (a-z/A-Z), \tand contain at least one number."
-msgstr ""
-"Գաղտնաբառը առնվազն պետք է լինի 7 նիշից ոչ պակաս, \tև պարունակի գոնե մեկ տառ "
-"(a-z/A-Z), \tև առնվազն մեկ թիվ։"
-
-#: common.a2z.title
-msgid "Title: A to Z"
-msgstr "Վերնագիր։ Ա մինչև Ֆ"
-
-#: common.z2a.title
-msgid "Title: Z to A"
-msgstr "Վերնագիր։ Ֆ մինչև Ա"
-
-#: common.a2z.author
-msgid "Author: A to Z"
-msgstr "Հեղինակ։ Ա մինչև Ֆ"
-
-#: common.z2a.author
-msgid "Author: Z to A"
-msgstr "Հեղինակ։ Ֆ մինչև Ա "
-
-#: common.new2old.pubdate
-msgid "Date: Newest to Oldest"
-msgstr "Ամսաթիվ։ թարմից դեպի հին"
-
-#: common.old2new.pubdate
-msgid "Date: Oldest to Newest"
-msgstr "Ամսաթիվ։ հնից դեպի թարմ"
-
-#: opac.style.reddish
-msgid "Reddish"
-msgstr "Կարմրավուն"
-
-#: holds.where_am_i
-msgid ""
-"PINES is a statewide system with both patrons and items \tassociated with "
-"over 250 libraries, holds lists are not as simple as \t'first come, first "
-"served' in PINES. A complex matrix combining \tconsideration of item "
-"ownership, patron home library, and item purchase \tdate determines "
-"priorities for holds; the list is dynamic, changing \twith every hold "
-"placed. Therefore, any indication of a place in the \tholds list would be "
-"inaccurate. The PINES holds system is designed to \tobtain a requested item "
-"in the fastest and most efficient way possible. \tYour PINES library will "
-"contact you when you hold items become \tavailable."
-msgstr ""
-"PINES դա նահանգային համակարգ է, ընթերցողներով և նյութերով \tփոխկապակցված "
-"ավելի քան 250 գրադարաններում, պահումների ցուցակները PINES-ում այդքան էլ պարզ "
-"չեն ինչպես\t'առաջին մուտք առաջին սպասարկված'։ Բարդ մատրիցան որը "
-"կոմբինացնում է \tնյութի պատկանելիության, ընթերցողի հիմնական գրադարանի, և "
-"նյութի պատվերի դիտարկումները \tորքան ամսաթիվը սահմանում է "
-"առաջնայնությունները պահումների համար. ցուցակը դինամիկ է, փոփոխվաղ "
-"\tյուրաքանչյուր տեղադրված պահման հետ։ Հետևաբար, տեղաբաշխման յուրաքանչյուր "
-"ցուցում \tպահման ցուցակում կլինի ոչ ճիշտ։ PINES-ի պահումների համակարգը "
-"նախագծված է \tպահանջվող նյութը հնարավորինս արագ և արդյունավետ կերպով "
-"ստանալու համար։ \tՁեր PINES գրադարանը կկապվի ձեր հետ երբ պահվող նյութերը "
-"կդառնան \tհասանելի։ "
-
-#: holds.advanced_options
-msgid ""
-"If you wish to broaden the scope of your hold to include other \tversions of "
-"this title, select the formats that would be acceptable. \tThe first "
-"available copy will be sent to you."
-msgstr ""
-"Եթե ցանկանում ես ընդլայնել քո պահումների տիրույթը ընդգրկելով \tայս վերնագրի "
-"այլ տարբերակներ, ընտրիր քեզ ընդունելի ձևաչափեր։ \tԱռաջին մատչելի օրինակը "
-"կառաքվի քեզ։ "
-
-# =================================================================
-# Events and Permissions
-# =================================================================
-#: ilsevent.0
-msgid "Operation Succeeded"
-msgstr "Հաջողված գործողություն"
-
-#: ilsevent.1000
-msgid "Login failed. The username or password entered was incorrect."
-msgstr "Գրանցումը տապալվեց։ մուտք արված պայմանաբառը կամ գաղտնաբառը սխալ են։"
-
-#: ilsevent.1001
-msgid "Login session has timed out or does not exist"
-msgstr "Գրանցման սեսիայի ժամանակը լրացել է կամ գոյություն չունի։"
-
-#: ilsevent.1002
-msgid "User was not found in the database"
-msgstr "Շտեմարանում օգտվողը չի գտնվել։"
-
-#: ilsevent.1200
-msgid "The given username already exists in the database"
-msgstr "Այս ընթերցողը շտեմարանում արդեն գոյություն ունի։"
-
-#: ilsevent.5000
-msgid "Permission Denied"
-msgstr "Թույլատվությունը արգելված է"
-
-#: ilsperm.CREATE_HOLD
-msgid "User is not allowed to create holds for other users at this location"
-msgstr ""
-"Օգտվողը իրավունք չունի այս վայրում ստեղծել պահումներ այլ օգտվողների համար"
-
-# =================================================================
-# common/pages
-# =================================================================
-#: common.cn.loading
-msgid "Loading Callnumber Page..."
-msgstr "Բեռնավորում է դասիչների էջը..."
-
-#: common.cn.browsing
-msgid "You are now browsing"
-msgstr "Դու հիմա դիտում ես"
-
-#: common.cn.previous
-msgid "<< Previous Page"
-msgstr "<< նախորդ էջ"
-
-#: common.cn.shelf rdetail.extras.browser
-msgid "Shelf Browser"
-msgstr "Դարակի դիտակ"
-
-#: common.cn.next
-msgid "Next Page >>"
-msgstr "Հաջորդ էջ >>"
-
-#: common.textsize.title
-msgid "Text Size: "
-msgstr "Տեքստի մեծություն։"
-
-#: common.textsize.regular
-msgid "Regular"
-msgstr "Սովորական"
-
-# Regular / Large
-#: common.textsize.separator
-msgid "/"
-msgstr "/"
-
-#: common.textsize.large
-msgid "Large"
-msgstr "Լայն"
-
-#: home.js.disabled
-msgid ""
-"JavaScript must be enabled in order for you to use the regular Evergreen "
-"Catalog. However, it seems JavaScript is either disabled or not supported by "
-"your browser. To use the regular Evergreen Catalog, enable JavaScript by "
-"changing your browser options, then <a style='color: blue; text-decoration: "
-"underline;' href='/'>try again</a>. <br/><br/>Alternatively, you can use the "
-"basic HTML-only catalog <a style='color: blue; text-decoration: underline;' "
-"href='/opac/extras/slimpac/start.html'>here</a>."
-msgstr ""
-"JavaScript-ը պետք է թույլատրված լինի որպեսզի կարողանաք օգտագործել Evergreen-"
-"ի քարտարանը։ Համենայնդեպս թվում է, որ JavaScript-ը կամ արգելափակված է, կամ "
-"քո դիտակի կողմից չի աջակցվում։ Որպեսզի օգտագործեք Evergreen-ի սովորական "
-"քարտարանը, թույլատրիր JavaScript-ը փոխելով քո դիտակի ընտրանքները, ապա <a "
-"style='color: blue; text-decoration: underline;' href='/'>try again</a>։ <br/"
-"><br/>Այլընտրանքորեն կարող ես օգտագործել հիմնական միայն-HTML քարտարանը՝ <a "
-"style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/"
-"start.html'>here</a>։"
-
-# =================================================================
-# MyOPAC bookbag page
-# =================================================================
-#: myopac.delete.bookbag
-msgid ""
-"This will remove the selected bookbag and all items contained within the "
-"bookbag. Are you sure you wish to continue?"
-msgstr ""
-"Սա կհեռացնի ընտրված գրքի զամբյուղը և այնտեղ առկա բոլոր նյութերը։ Վստա՞հ ես "
-"որ ուզում ես շարունակել։"
-
-#: myopac.no.bookbags
-msgid "You have not created any bookbags"
-msgstr "Ոչ մի պատվեր չես ստեղծել"
-
-#: myopac.bookbags.title myopac.bookbags
-msgid "My Bookbags"
-msgstr "Իմ գրքերի պայուսակը"
-
-#: myopac.bookbag.items
-msgid "# Items"
-msgstr "# Նյութեր"
-
-#: myopac.bookbag.shared
-msgid "Shared"
-msgstr "Համատեղ"
-
-#: myopac.bookbag.toggle
-msgid "Share / Hide"
-msgstr "Համատեղ / Թաքցնել"
-
-#: myopac.bookbag.delete
-msgid "Delete this bookbag?"
-msgstr "Ջնջե՞լ այս պատվերը"
-
-#: myopac.items
-msgid "Items"
-msgstr "Նյութեր"
-
-#: myopac.view
-msgid "(View)"
-msgstr "(Դիտել)"
-
-#: myopac.atom.feed
-msgid "ATOM Feed"
-msgstr "ATOM Feed"
-
-#: myopac.bookbag.hide
-msgid "Hide"
-msgstr "Թաքցնել"
-
-#: myopac.bookbag.share
-msgid "Share"
-msgstr "Համատեղ"
-
-#: myopac.delete
-msgid "Delete"
-msgstr "Ջնջել"
-
-#: myopac.bookbag.create
-msgid "Create a new Bookbag"
-msgstr "Ստեղծիր նոր պատվեր"
-
-#: myopac.bookbag.naming
-msgid "Enter the name of the new Bookbag: "
-msgstr "Մուտք արա նոր գրքի զամբյուղի անունը։"
-
-#: myopac.bookbag.share
-msgid "Share this Bookbag"
-msgstr "Համատեղիր այս պատվերը"
-
-#: myopac.bookbag.no.items
-msgid "The selected bookbag contains no items..."
-msgstr "Ընտրված պատվերը չի պարունակում ոչ մի նյութ..."
-
-#: myopac.bookbag.remove
-msgid "Remove this item?"
-msgstr "Հեռացնե՞լ այս նյութը"
-
-#: myopac.remove.link
-msgid "remove"
-msgstr "հեռացնել"
-
-#: myopac.publish.text
-msgid ""
-"Sharing a Bookbag means that the contents of the Bookbag will be visible to "
-"others. To see the public view of a shared Bookbag, click the \"View\" link "
-"in the \"Shared\" column of the Bookbag list at the top of this page."
-msgstr ""
-"Պատվերի համատեղում նշանակում է որ պատվերի բովանդակությունը տեսանելի է "
-"ուրիշներին։ Պատվերի հանրային տեսքը դիտելու համար սեղմիր \"Դիտել\" հղումը էջի "
-"վերին մասում գտնվող պատվերի ցուցակի \"Համատեղ\" սյունակում։"
-
-#: myopac.item.confirm
-msgid "Are you sure you wish to remove this bookbag item?"
-msgstr "Վստա՞հ ես որ ուզում ես հեռացնել պատվերի նյութը։"
-
-#: myopac.publish.confirm
-msgid ""
-"Sharing this bookbag will allow the contents of the bookback to be seen by "
-"others. Are you sure you wish to share this bookbag?"
-msgstr ""
-"Պատվերի համատեղումը թույլ կտա բոլորին տեսնելու բովանդակությունը։ Վստա՞հ ես "
-"որ ուզում ես համատեղել այս գրքի զամբյուղը։"
-
-#: myopac.unpublish.confirm
-msgid "Are you sure you wish to hide this bookbag?"
-msgstr "Վստա՞հ ես որ ուզում ես թաքցնել գրքի այս զամբյուղը։ "
-
-#: myopac.update.success
-msgid "The Bookbag was successfully updated."
-msgstr "Գրքի զամբյուղը հաջողությամբ թարմացված է։"
-
-#: myopac.updated.success
-msgid "Bookbag successfully updated"
-msgstr "Գրքի զամբյուղը հաջողությամբ թարմացվել է։"
-
-#: myopac.create.warning
-msgid ""
-"Warning: Adding items to a bookbag creates a link between you and the items "
-"in the database. The contents of the bookbag are NOT publicly viewable "
-"unless the bookbag is shared. However, if you prefer not to have any link "
-"between your patron record and a particular item or items, we suggest that "
-"you do not place said items in a bookbag or that you avoid using bookbags "
-"all together. Thank you."
-msgstr ""
-"Զգուշացում։ Գրքի զամբյուղում նյութի ավելացումը ստեղծում է կապ քո և շտեմարանի "
-"նյութերի միջև։ Գրքի զամբյուղի բովանդակությունը հանրորեն հասանելի չէ քանի դեռ "
-"այն չի դրվել համատեղ օգտագործման։ Համենայնդեպս, եթե նախընտրում ես չունենալ "
-"ոչ մի հղում ընթերցողի գրառման և որոշակի նյութի կամ նյութերի միջև, առաջարկում "
-"ենք չտեղադրել այդ նյութերը գրքի զամբյուղում կամ խուսափել բոլոր գրքի "
-"զամբյուղների միաժամանակյա օգտագործումը։ Շնորհակալություն։"
-
-#: myopac.describe.bookbags
-msgid "Bookbags are..."
-msgstr "Գրքի զամբյուղները ..."
-
-# =================================================================
-# MyOPAC Checked Page
-# =================================================================
-#: myopac.checked.out
-msgid "Total items out:"
-msgstr "Դուրս տրավծ նյութերի քանակ"
-
-#: myopac.checked.overdue
-msgid "Total items overdue:"
-msgstr "Ժամկետանց նյութերի քանակ"
-
-#: myopac.checked.renew
-msgid "Renew Selected Items"
-msgstr "Թարմացրու ընտրված նյութերը"
-
-#: myopac.checked.renewing
-msgid "Renewing..."
-msgstr "Թարմացվում է..."
-
-#: myopac.checked.renew.remaining
-msgid "Renewals Remaining"
-msgstr "Մնացող թարմացումներ"
-
-#: myopac.checked.noitems
-msgid "You have no items checked out at this time"
-msgstr "Այս պահին դու չունես դուրս տրված նյութեր "
-
-#: myopac.checked.other.circ
-msgid "Other Circulations"
-msgstr "Այլ տրումներ"
-
-#: myopac.checked.circ.lib
-msgid "Circulating Library"
-msgstr "Սպասարկող գրադարան"
-
-#: myopac.checked.item.type
-msgid "Circulation Type"
-msgstr "Սպասարկման տեսակ"
-
-#: myopac.checked.circ.time
-msgid "Please return by ..."
-msgstr "Խնդրվում է վերադառնալ..."
-
-#: myopac.checked.renew.success
-msgid "item(s) successfully renewed"
-msgstr "հաջողությամբ թարմացված նյութ(եր) "
-
-#: myopac.checked.renew.confirm
-msgid "Are you sure you wish to renew the selected item(s)?"
-msgstr "Արդյո՞ք վսատհ ես որ ցանկանում ես թարմացնել ընտրված նյութ(եր)ը։"
-
-#: myopac.checked.renew.fail
-msgid ""
-"The system is unable to renew the selected item at this time. This usually "
-"means the item is needed to fulfill a hold. Please see a librarian for "
-"further help."
-msgstr ""
-"Համակարգը ի վիճակի չէ այս պահին թարմացնելու ընտրված նյութը։ Սա սովորաբար "
-"նշանակում է որ նյութը հարկավոր է պահումը ավարտին հասցնելու համար։ Դիմեք "
-"գրադարանավարին հետագա օգնության համար։ "
-
-#: myopac.checked.renew.fail2
-msgid ""
-"PINES policy prevents the renewal of this item at this time. Please see a "
-"librarian for further details."
-msgstr ""
-"PINES-ի քաղաքականությունը կանխարգելում է այս պահին այս նյութի թարմացումը։ "
-"Դիմեք գրադարանավարին հետագա օգնության համար։ "
-
-# =================================================================
-# MyOPAC Fines Page
-# =================================================================
-#: myopac.fines.title
-msgid "Summary"
-msgstr "Ընդհանրացում"
-
-#: myopac.fines.owed
-msgid "Total Owed"
-msgstr "Վերցրած ընդհանուր պարտքը"
-
-#: myopac.fines.paid
-msgid "Total Paid"
-msgstr "Վճարված է ընդամենը"
-
-#: myopac.fines.balance
-msgid "Balance Owed"
-msgstr "Ընդհանուր պարտքի բալանսը"
-
-#: myopac.fines.overdue
-msgid "Overdue Materials"
-msgstr "Ժամկետանց նյութեր"
-
-#: myopac.fines.checkout
-msgid "Checkout Date"
-msgstr "Դուրս տրման ամսաթիվ"
-
-#: myopac.fines.due rdetail.cn.due
-msgid "Due Date"
-msgstr "Վերադարձի ամսաթիվ"
-
-#: myopac.fines.returned
-msgid "Date Returned"
-msgstr "Իրական վերադարձի ամսաթիվ"
-
-#: myopac.fines.accruing
-msgid "(fines accruing)"
-msgstr "(կուտակային տուգանքներ)"
-
-#: myopac.fines.other
-msgid "Other Fees"
-msgstr "Այլ գումարներ"
-
-#: myopac.fines.time.start
-msgid "Transaction Start Time"
-msgstr "Տրանզակցիայի սկզբանվորման ժամ"
-
-#: myopac.fines.time.paid
-msgid "Last Payment Time"
-msgstr "Վերջին վճարման ժամ"
-
-#: myopac.fines.owed.initial
-msgid "Initial Amount Owed"
-msgstr "Սկզբնական պարտքի գումարը"
-
-#: myopac.fines.paid.amount
-msgid "Total Amount Paid"
-msgstr "Ընդհանուր վճարված գումար"
-
-#: myopac.fines.type
-msgid "Billing Type"
-msgstr "Հայցի տեսակ"
-
-# =================================================================
-# MyOPAC Holds Page
-# =================================================================
-#: myopac.holds.formats
-msgid "Formats"
-msgstr "Ձևաչափեր"
-
-#: myopac.holds.location
-msgid "Pickup Location"
-msgstr "Վերցնելու վայր"
-
-#: myopac.holds.edit
-msgid "Edit"
-msgstr "Խմբագրել"
-
-#: myopac.holds.status.none
-msgid "You have no items on hold at this time"
-msgstr "Այս պահին դու չունես պահված նյութեր "
-
-#: myopac.holds.status.waiting
-msgid "Waiting for copy"
-msgstr "Սպասում է պատճեին"
-
-#: myopac.holds.status.intransit
-msgid "In Transit"
-msgstr "Փոխանցման մեջ"
-
-#: myopac.holds.status.available
-msgid "Ready for Pickup"
-msgstr "Վերցնելու համար պատրաստ է"
-
-#: myopac.holds.verify
-msgid ""
-"If you wish to cancel the selected hold, click OK, otherwise click Cancel."
-msgstr ""
-"Եթե ցանկանում ես չեղյալ անել ընտրված պահումը, սեղմիր OK, հակառակ դեպքում "
-"սեղմիր Cancel:"
-
-#: myopac.holds.freeze_selected
-msgid "Freeze"
-msgstr "Սառեցրու"
-
-#: myopac.holds.thaw_selected
-msgid "Un-freeze"
-msgstr "Ապասառեցրու"
-
-#: myopac.holds.thaw_date_selected
-msgid "Set Un-freeze date"
-msgstr "Դիր ապասառեցման ամսաթիվը"
-
-#: myopac.holds.processing
-msgid "Processing holds... This may take a moment."
-msgstr "Պահումների իրականացում...Կտևի ինչ որ ժամանակ։"
-
-#: myopac.holds.actions
-msgid "Actions for selected holds"
-msgstr "Գործողություններ ընտրված պահումների համար"
-
-#: myopac.holds.cancel.confirm
-msgid "Are you sure you wish to cancel the selected holds?"
-msgstr "Վստա՞հ ես որ ուզում ես չեղյալ անել ընտրված պահումները։"
-
-#: myopac.holds.freeze.confirm
-msgid ""
-"Are you sure you wish to freeze the selected holds? Note that if an item has "
-"already been selected to fulfill the hold, it will not be frozen"
-msgstr ""
-"Վստա՞հ ես որ ուզում ես սառեցնել ընտրված պահումները։ Նկատի ունեցիր, որ եթե "
-"նյութը արդեն իսկ ընտրված է պահման նպատակով, այն չի սառեցվի։"
-
-#: myopac.holds.thaw.confirm
-msgid "Are you sure you wish to un-freeze the selected holds?"
-msgstr "Վստա՞հ ես որ ուզում ես ապասառեցնել ընտրված պահումները։"
-
-#: myopac.holds.thaw_date.confirm
-msgid ""
-"Are you sure you wish to change the un-freeze date for the selected holds?"
-msgstr ""
-"Վստա՞հ ես որ ուզում ես ընտրված պահումների համար փոխել ապասառեցման ամսաթիվը։"
-
-#: myopac.holds.freeze.select_thaw
-msgid ""
-"Select an 'Un-Freeze' date. This is the date at which the holds will become "
-"active again. If no date is chosen, the holds will remain frozen until they "
-"are manually un-frozen."
-msgstr ""
-"Ընտրիր Ապասառեցման ամսաթիվը։ Սա այն ամսաթիվն է, որից հետո պահումները նորից "
-"ակտիվ կդառնան։ Եթե ամսաթիվ ընտրված չէ, պահումները կմնան սառեցված քանի դեռ "
-"ձեռքով չեն ապասառեցվել։"
-
-#: opac.holds.freeze
-msgid "Freeze this hold"
-msgstr "Սառեցրու այս պահումը"
-
-#: opac.holds.freeze.help
-msgid ""
-"A 'frozen' will retain its place in the queue, but will not be fulfilled "
-"until it has been unfrozen."
-msgstr ""
-"'Սառեցվածը' կպահպանի իր տեղը հերթում, բայց չի կատարվի քանի դեռ չի "
-"ապասառեցվել։"
-
-#: opac.holds.freeze.thaw_date
-msgid "Automatically un-freeze hold on:"
-msgstr "Ավտոմատ ապասառեցրու պահումը"
-
-#: opac.holds.freeze.thaw_date.format
-msgid "YYYY-MM-DD"
-msgstr "ՏՏՏՏ-ԱԱ-ՕՕ"
-
-# =================================================================
-# MyOPAC Preferences Page
-# =================================================================
-#: myopac.prefs.title
-msgid "Preferences"
-msgstr "Նախապատվություններ"
-
-#: myopac.prefs.hits
-msgid "Search hits per page"
-msgstr "Հաշվիր հարվածները ըստ էջի"
-
-#: myopac.prefs.font
-msgid "Default Font Size"
-msgstr "Լռակյաց տառատեսակի չափ"
-
-#: myopac.prefs.font.regular
-msgid "Regular Font"
-msgstr "Սովորական տառատեսակ"
-
-#: myopac.prefs.font.large
-msgid "Large Font"
-msgstr "Լայն տառատեսակ"
-
-#: myopac.prefs.holds.notify
-msgid "Default Hold Notification Method"
-msgstr "Լռակյաց պահման հիշեցման մեթոդ"
-
-#: myopac.prefs.holds.both
-msgid "Use Phone and Email"
-msgstr "Օգտագործիր հեռախոս կամ էլ փոստ"
-
-#: myopac.prefs.holds.phone
-msgid "Use Phone Only"
-msgstr "Օգտագործիր միայն հեռախոս"
-
-#: myopac.prefs.holds.email
-msgid "Use Email Only"
-msgstr "Օգտագործիր միայն էլ փոստ"
-
-#: myopac.prefs.search.location
-msgid "Default Search Location"
-msgstr "Որոնման լռակյաց տեղաբաշխում"
-
-#: myopac.prefs.search.home
-msgid "Always search my home library by default."
-msgstr "Որպես լռակյաց միշտ որոնիր իմ տնային գրադարանում"
-
-#: myopac.prefs.search.range
-msgid "Default Search Range"
-msgstr "Որոնման լռակյաց տիրույթ"
-
-#: myopac.prefs.save
-msgid "Save Preference Changes"
-msgstr "Հիշիր նախապատվության փոփոխությունները"
-
-#: myopac.prefs.save.success
-msgid "Preferences successfully updated"
-msgstr "Նախապատվությունները հաջողությամբ թարմացվել են։"
-
-#: myopac.prefs.save.failed
-msgid "Preferences update failed!"
-msgstr "Նախապատվությունների թարմացումը տապալվեց։"
-
-#: myopac.prefs.help
-msgid ""
-"This setting defines how you will be notified of holds that are ready to be "
-"picked up from the library. By default, holds will use the notification "
-"style you choose here. However, you will still have the option to change "
-"individual holds regardless of this setting."
-msgstr ""
-"Այս կարգաբերումները սահմանում են թե ինչպես կզգուշացվես պահումների մասին "
-"որոնք պատրաստ են վերցվելու գրադարանից։ Որպես լռակյաց, պահումները կօգտագործեն "
-"հիշեցումների այն ձևը, որը կընտրես այստեղ։ Համենայնդեպս, դու դեռ ունես "
-"ընտրության հնարավորություն` փոփոխելու անհատական պահումները։ "
-
-#: myopac.holds.unfrozen
-msgid "Un-Frozen"
-msgstr "Ապասառեցված է։"
-
-#: myopac.holds.frozen.until
-msgid "Frozen Until"
-msgstr "Սառեցված է մինչ"
-
-# =================================================================
-# MyOPAC Summary page
-# =================================================================
-#: myopac.summary.expired
-msgid ""
-"Your account expired on <span id='myopac.expired.date'/>! Please see a "
-"librarian to renew your account."
-msgstr ""
-"Քո հաշիվը ժամկետանց է դառնում <span id='myopac.expired.date'/>։ Դիմիր "
-"գրադարանավարին թարմացնելու քո հաշիվը։"
-
-#: myopac.summary.notes
-msgid "* Staff Notes *"
-msgstr "* Աշխատակազմի նշումներ *"
-
-#: myopac.summary.phone.day
-msgid "Day Phone"
-msgstr "Ցերեկային հեռախոս"
-
-#: myopac.summary.phone.evening
-msgid "Evening Phone"
-msgstr "Գիշերային հեռախոս"
-
-#: myopac.summary.phone.other
-msgid "Other Phone"
-msgstr "Այլ հեռախոս"
-
-#: myopac.summary.change
-msgid "Change"
-msgstr "Փոփոխություն"
-
-#: myopac.summary.username.enter
-msgid "Enter new username:"
-msgstr "Մուտք արա նոր օգտվողի անուն։"
-
-#: myopac.summary.password.text
-msgid "(not shown)"
-msgstr "(չի ցուցադրվում)"
-
-#: myopac.summary.password.current
-msgid "Enter current password:"
-msgstr "Մուտք արա ընթացիկ գաղտնաբառը։"
-
-#: myopac.summary.password.new
-msgid "Enter new password:"
-msgstr "Մուտք արա նոր գաղտնաբառը։"
-
-#: myopac.summary.password.reenter
-msgid "Re-enter new password:"
-msgstr "Նորից մուտք արա նոր գաղտնաբառը։"
-
-#: myopac.summary.email
-msgid "Email Address"
-msgstr "էլ փոստի հասցե"
-
-#: myopac.summary.email.new
-msgid "Enter new email address:"
-msgstr "Մուտք արա նոր էլ փոստի հասցե։"
-
-#: myopac.summary.id.primary
-msgid "Primary Identification"
-msgstr "Սկզբնական ճանաչում"
-
-#: myopac.summary.barcode
-msgid "Active Barcode"
-msgstr "Ակտիվ շտրիխ կոդ"
-
-#: myopac.summary.home
-msgid "Home Library"
-msgstr "Տնային գրադարան"
-
-#: myopac.summary.genesis
-msgid "Account Creation Date"
-msgstr "Հաշվի ստեղծման ամսաթիվ"
-
-#: myopac.summary.addresses
-msgid "Addresses"
-msgstr "Հասցեներ"
-
-#: myopac.summary.address.type
-msgid "Address Type"
-msgstr "Հասցեի տեսակ"
-
-#: myopac.summary.address.street
-msgid "Street"
-msgstr "Փողոց"
-
-#: myopac.summary.address.city
-msgid "City"
-msgstr "Քաղաք"
-
-#: myopac.summary.address.county
-msgid "County"
-msgstr "Համայնք"
-
-#: myopac.summary.address.state
-msgid "State"
-msgstr "Նահանգ"
-
-#: myopac.summary.address.zip
-msgid "Zip"
-msgstr "Զիպ"
-
-#: myopac.summary.username.error
-msgid "Please enter a username"
-msgstr "Մուտք արա օգտվողի անուն"
-
-#: myopac.summary.username.dup
-msgid ""
-"The requested username is not available. Please choose a different username."
-msgstr "Պահանջվող օգտվողi անունը մատչելի չէ։ Ընտրիր օգտվողի այլ անուն։"
-
-#: myopac.summary.username.success
-msgid "Username successfully updated"
-msgstr "Օգտվողի անունը հաջողությամբ թարմացվել է։"
-
-#: myopac.summary.username.failure
-msgid "Username update failed"
-msgstr "Օգտվողի անվան թարմացումը ձախողվեց։"
-
-#: myopac.summary.username.invalid
-#, fuzzy
-msgid "Username cannot contain spaces or have the same format as a barcode"
-msgstr "Օգտվողի անունը չի կարող պարունակել բացատներ։"
-
-#: myopac.summary.email.error
-msgid "Please enter a valid email address"
-msgstr "Մուտք արա իրական էլ փոստի հասցե"
-
-#: myopac.summary.email.success
-msgid "Email address successfully updated"
-msgstr "էլ փոստի հասցեն հաջողությամբ թարմացվել է։"
-
-#: myopac.summary.email.failed
-msgid "Email address update failed"
-msgstr "Էլ փոստի հասցեի թարմացումը չստացվեց։"
-
-#: myopac.summary.password.error
-msgid "Passwords are empty or do not match"
-msgstr "Գաղտնաբառերը դատարկ են կամ չեն համընկնում։ "
-
-#: myopac.summary.password.success login.password.success
-msgid "Password successfully updated"
-msgstr "Գաղտնաբառը հաջողությամբ թարմացվել է։"
-
-#: myopac.summary.password.failure
-msgid "Password update failed"
-msgstr "Գաղտնաբառի թարմացումը տապալվեց։"
-
-# =================================================================
-# Advanced Search Page
-# =================================================================
-#: opac.advanced.wizard.contains
-msgid "Selected field contains the following words"
-msgstr "Ընտրված դաշտը պարունակում է հետևյալ բառերը։"
-
-#: opac.advanced.wizard.nocontains
-msgid "Selected field does <u>not</u> contain the following words"
-msgstr "Ընտրված դաշտը <u>չի</u> պարունակում հետևյալ բառերը"
-
-#: opac.advanced.wizard.exact
-msgid "Selected field contains the <u>exact</u> phrase"
-msgstr "Ընտրված դաշտը <u>ճշգրտորեն</u> պարունակում է արտահայտություն"
-
-#: opac.advanced.refined.title
-msgid "Refined Advanced Search"
-msgstr "Մաքրված խորացված փնտրում"
-
-#: opac.advanced.refined.title_contains
-msgid "Title contains the following words"
-msgstr "Վերնագիրը պարունակում է հետևյալ բառերը"
-
-#: opac.advanced.refined.author_contains
-msgid "Author contains the following words"
-msgstr "Հեղինակը պարունակում է հետևյալ բառերը"
-
-#: opac.advanced.refined.subject_contains
-msgid "Subject contains the following words"
-msgstr "Խորագիրը պարունակում է հետևյալ բառերը"
-
-#: opac.advanced.refined.series_contains
-msgid "Series contains the following words"
-msgstr "Մատենաշարը պարունակում է հետևյալ բառերը"
-
-#: opac.advanced.refined.contains
-msgid "Contains"
-msgstr "Պարունակում է"
-
-#: opac.advanced.refined.nocontains
-msgid "Does not contain"
-msgstr "Չի պարունակում"
-
-#: opac.advanced.refined.exact
-msgid "Matches Exactly"
-msgstr "Ճշգրիտ համընկնում"
-
-#: opac.advanced.marc.warning
-msgid "For Librarians"
-msgstr "Գրադարանավարների համար"
-
-# ==========================================================
-# MARC expert search
-#: opac.advanced.marc.title search.marc
-msgid "MARC Expert Search"
-msgstr "MARC արհեստավարժ որոնում"
-
-#: opac.advanced.marc.tag
-msgid "MARC Tag"
-msgstr "MARC ցուցիչ"
-
-#: opac.advanced.marc.ind1
-msgid "Indicator 1"
-msgstr "Ցուցիչ 1"
-
-#: opac.advanced.marc.ind2
-msgid "Indicator 2"
-msgstr "Ցուցիչ 2"
-
-#: opac.advanced.marc.subfield
-msgid "Subfield"
-msgstr "Ենթադաշտ"
-
-#: opac.advanced.marc.value
-msgid "Value"
-msgstr "Արժեք"
-
-#: opac.advanced.marc.addrow
-msgid "Add a new row"
-msgstr "Ավելացրու նոր տող"
-
-#: opac.advanced.quick.title sidebar.quick.search
-msgid "Quick Search"
-msgstr "Արագ փնտրում"
-
-#: opac.advanced.quick.issn
-msgid "ISSN"
-msgstr "ISSN"
-
-#: opac.advanced.quick.lccn
-msgid "LCCN"
-msgstr "LCCN"
-
-# title control number
-#: opac.advanced.quick.tcn
-msgid "TCN"
-msgstr "TCN"
-
-#: opac.advanced.quick.barcode
-msgid "Item Barcode"
-msgstr "Նյութի շտրիխ կոդ"
-
-#: search.marc.tag
-msgid "Tag:"
-msgstr "Ցուցիչ։"
-
-#: search.marc.subfield
-msgid "Subfield:"
-msgstr "Ենթադաշտ։"
-
-#: search.marc.value
-msgid "Value:"
-msgstr "Արժեք։"
-
-#: search.marc.add.row
-msgid "Add Row"
-msgstr "Ավելացրու տող"
-
-# ==========================================================
-# Status bar
-# ==========================================================
-#: status.results
-msgid "Including results for"
-msgstr "Ներառելով արդյունքները համար"
-
-# =================================================================
-# More generic stuff
-# =================================================================
-#: opac.session_expiring
-msgid "Your login session will timeout in 1 minute unless there is activity."
-msgstr "Քո գրանցված սեսիան կլրանա մեկ րոպեից, եթե ակտիվություն չլինի։"
-
-#: opac.session_expired
-msgid "Your login session has expired"
-msgstr "Քո գրանցված սեսիան ավարտվեց"
-
-#: navigate.home
-msgid "Home"
-msgstr "Տուն"
-
-#: navigate.home.title
-msgid "Go to the Home page"
-msgstr "Գնա տնային էջ"
-
-#: opac.navigate.advanced.title
-msgid "Go to the Advanced Search Page"
-msgstr "Գնա խորացված որոնման էջ"
-
-#: navigate.myopac opac.navigate.myopac
-msgid "My Account"
-msgstr "Իմ հաշիվը"
-
-#: navigate.myopac.title
-msgid "Go to My OPAC"
-msgstr "Գնա իմ ՀՕԱՔ"
-
-#: navigate.login
-msgid "Log in"
-msgstr "Գրանցվիր"
-
-#: navigate.login.title
-msgid "Log in for personalized features"
-msgstr "Գրանցվիր անհատականացված հնարավորությունների համար"
-
-#: navigate.logout navigate.logout.title
-msgid "Log out"
-msgstr "Դուրս արի"
-
-#: opac.navigate.selectNewOrg
-msgid "Choose a different library"
-msgstr "Ընտրիր այլ գրադարան"
-
-#: opac.navigate.selectOrg library.select.help
-msgid "Choose a library to search"
-msgstr "Ընտրիր փնտրման համար գրադարանը"
-
-#: navigate.loggedinas
-msgid "You are logged in as "
-msgstr "Դու գրանցված ես որպես"
-
-#: navigate.loggedinas.title
-msgid "Logged in as..."
-msgstr "Գրանցված որպես..."
-
-#: navigate.titleGroupResults
-msgid "My Search Results"
-msgstr "Իմ փնտրման արդյունքները"
-
-#: navigate.titleResults
-msgid "My Title Results"
-msgstr "Իմ վերնագրի արդյունքները"
-
-#: navigate.title.details
-msgid "My Title Details"
-msgstr "Իմ վերնագրի մանրամասները"
-
-#: navigate.record.details
-msgid "Record Details"
-msgstr "Գրառման մանրամասներ"
-
-#: footer.find.library
-msgid "Find a Library Near Me"
-msgstr "Գտիր ինձ մոտիկ գրադարան"
-
-#: footer.find.url
-msgid "http://www.georgialibraries.org/lib/directories/pineslibdir.html"
-msgstr "http://www.georgialibraries.org/lib/directories/pineslibdir.html"
-
-#: footer.help.url
-msgid "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help"
-msgstr "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help"
-
-#: footer.help
-msgid "Help"
-msgstr "Օգնություն"
-
-#: footer.library.url
-msgid "http://www.georgialibraries.org/public/pines.html"
-msgstr "http://www.georgialibraries.org/public/pines.html"
-
-#: footer.library.about
-msgid "About PINES"
-msgstr " PINES-ի մասին"
-
-#: footer.union.url
-msgid "http://www.galileo.usg.edu/"
-msgstr "http://www.galileo.usg.edu/"
-
-#: footer.union
-msgid "GALILEO"
-msgstr "GALILEO"
-
-#: footer.copyright
-msgid "Copyright © 2006 Georgia Public Library Service"
-msgstr ""
-"Հեղինակային իրավունք © 2006 Գեորգիա նահանգի հանրային գրադարանի "
-"ծառայություն"
-
-# Introduces the logo for the project
-#: footer.logo
-msgid "Powered by"
-msgstr "Ուժեղացված"
-
-# =================================================================
-# My OPAC
-# =================================================================
-#: myopac.account
-msgid "Account Summary"
-msgstr "Հաշվի համառոտագրություն"
-
-#: myopac.checkouts
-msgid "Items Checked Out"
-msgstr "Դուրս տրված նյութեր"
-
-#: myopac.holds
-msgid "Items on Hold"
-msgstr "Պահված նյութեր"
-
-#: myopac.fines
-msgid "Fines"
-msgstr "Տուգանքներ"
-
-#: myopac.preferences
-msgid "Account Preferences"
-msgstr "Հաշվի նախապատվություններ"
-
-# =================================================================
-# Sidebar
-# =================================================================
-#: sidebar.relevantSubjects.headerLabel
-msgid "Relevant Subjects"
-msgstr "Համապատասխան խորագրեր"
-
-#: sidebar.relevantAuthors.headerLabel
-msgid "Relevant Authors"
-msgstr "Համապատասխան հեղինակներ"
-
-#: sidebar.relevantSeries.headerLabel
-msgid "Relevant Series"
-msgstr "Համապատասխան մատենաշարեր"
-
-#: sidebar.relevantReviews.headerLabel rdetail.extras.reviews
-msgid "Reviews"
-msgstr "Գրախոսություններ"
-
-#: sidebar.copy.not.found
-msgid "No copy with the requested barcode was found"
-msgstr "Պահանջվող շտրիխ կոդով պատճեներ չեն գտնվել"
-
-# =================================================================
-# Search formats
-# =================================================================
-#: opac.search.books
-msgid "Books"
-msgstr "Գրքեր"
-
-#: opac.search.allFormats
-msgid "All Formats"
-msgstr "Բոլոր ձևաչափերը"
-
-#: opac.search.largePrint
-msgid "Large Print Books"
-msgstr "Մեծ տպագիր գրքեր"
-
-#: opac.search.audioBooks
-msgid "Audiobooks"
-msgstr "Ձայնագրքեր"
-
-#: opac.search.videoRecordings
-msgid "Video Recordings"
-msgstr "Տեսագրառումներ"
-
-#: opac.search.music
-msgid "Music"
-msgstr "Երաժշտություն"
-
-#: opac.search.electronic
-msgid "Electronic Resources"
-msgstr "Էլեկտրոնային պաշարներ"
-
-#: opac.search.nowSearching
-msgid "Now Searching"
-msgstr "Հիմա փնտրում է"
-
-# =================================================================
-# Page Titles
-# =================================================================
-#: opac.title.home
-msgid "Evergreen Home"
-msgstr "Evergreen տուն"
-
-#: opac.title.mresult
-msgid "Evergreen Title Groups"
-msgstr "Evergreen վերնագրերի խումբ"
-
-#: opac.title.rresult
-msgid "Evergreen Titles"
-msgstr "Evergreen վերնագրեր"
-
-#: opac.title.myopac
-msgid "Evergreen My Account"
-msgstr "Evergreen իմ հաշիվ"
-
-#: opac.title.rdetail
-msgid "Evergreen Title Details"
-msgstr "Evergreen վերնագրի մանրամասներ"
-
-#: opac.title.advanced
-msgid "Evergreen Advanced Search"
-msgstr "Evergreen խորացված որոնում"
-
-#: opac.title.reqitems
-msgid "Evergreen Request Items"
-msgstr "Evergreen պատվիրված նյութեր"
-
-#: opac.title.cnbrowse
-msgid "Evergreen Call Number Browse"
-msgstr "Evergreen դասիչի դիտում"
-
-#: opac.holds.forMe
-msgid "Place this hold for myself"
-msgstr "Տեղադրիր այս պահումը իմ փոխարեն"
-
-#: opac.holds.xulRecipient
-msgid "Enter recipient barcode"
-msgstr "Մուտք արա ստացողի շտրիխ կոդը"
-
-#: opac.holds.recipient
-msgid "Recipient"
-msgstr "Ստացող"
-
-#: opac.holds.placeHold
-msgid "Place Hold"
-msgstr "Տեղադրիր պահումը"
-
-#: opac.holds.contactPhone
-msgid "Contact telephone number"
-msgstr "Կապի հեռախոսի համար"
-
-#: opac.holds.contactEmail
-msgid "Contact email address"
-msgstr "Կապի էլ փոստի հասցե"
-
-#: opac.holds.pickupLocation
-msgid "Pickup location"
-msgstr "Վերցնելու վայր"
-
-#: opac.holds.success
-msgid "Hold was successfully placed"
-msgstr "Պահումը հաջողությամբ տեղաբաշխված է"
-
-#: opac.holds.failure
-msgid "Hold was not successfully placed"
-msgstr "Պահումը անհաջող է տեղաբաշխվել"
-
-# =================================================================
-# Advanced
-# =================================================================
-#: advanced.search.title
-msgid "Search Input"
-msgstr "Փնտրման մուտք"
-
-#: advanced.add.row
-msgid "Add Search Row"
-msgstr "Ավելացրու որոնման տող"
-
-#: advanced.search.submit
-msgid "Submit Search"
-msgstr "Սկսիր փնտրումը"
-
-#: advanced.search.filters
-msgid "Search Filters"
-msgstr "Փնտրման զտիչներ"
-
-#: advanced.item.form
-msgid "Item Form"
-msgstr "Նյութի կաղապար"
-
-#: advanced.item.type
-msgid "Item Type"
-msgstr "Նյութի տեսակ"
-
-#: advanced.link
-msgid "Advanced"
-msgstr "Խորացված"
-
-#: advanced.basic.link
-msgid "Basic"
-msgstr "Հիմնական"
-
-#: advanced.literary.form
-msgid "Literary Form"
-msgstr "Գրական Կաղապար"
-
-#: advanced.non.fiction
-msgid "Non Fiction"
-msgstr "Ոչ գեղարվեստական"
-
-#: advanced.fiction
-msgid "Fiction"
-msgstr "Գեղարվեստական"
-
-#: advanced.language
-msgid "Language"
-msgstr "Լեզու"
-
-#: advanced.audience
-msgid "Audience"
-msgstr "Լսարան"
-
-#: advanced.adult
-msgid "Adult"
-msgstr "Մեծահասակ"
-
-#: advanced.juvenile
-msgid "Juvenile"
-msgstr "Պատանեկան"
-
-#: advanced.general
-msgid "General"
-msgstr "Ընդհանուր"
-
-#: advanced.sort.criteria
-msgid "Sort Criteria"
-msgstr "Տեսակավորման չափանիշ"
-
-#: advanced.search.library
-msgid "Search Library"
-msgstr "Որոնիր գրադարանը"
-
-#: advanced.relevance
-msgid "Relevance"
-msgstr "Համարժեք"
-
-#: advanced.pubdate
-msgid "Publication date"
-msgstr "Հրատարակման տարեթիվ"
-
-#: advanced.sort.asc
-msgid "Ascending / A to Z"
-msgstr "Աճող / Ա դեպի Ֆ"
-
-#: advanced.sort.desc
-msgid "Descending / Z to A"
-msgstr "Նվազող / Ֆ դեպի Ա"
-
-#: advanced.frbrize
-msgid "Group Formats and Editions"
-msgstr "Խմբային ձևաչափեր և հրատարակություններ"
-
-#: advanced.go
-msgid "Go"
-msgstr "Գնա"
-
-# =================================================================
-# Rdetail
-# =================================================================
-#: rdetail.print
-msgid "print these details"
-msgstr "տպիր այս մանրամասները"
-
-#: rdetail.cn.barcode
-msgid "Barcode"
-msgstr "Շտրիխ կոդ"
-
-#: rdetail.cn.location
-msgid "Location"
-msgstr "Տեղաբաշխում"
-
-#: rdetail.cn.hold.age
-msgid "Age Hold Protection"
-msgstr "տարիքի պահման պաշտպանություն"
-
-#: rdetail.cn.genesis
-msgid "Create Date"
-msgstr "Ստեղծիր ամսաթիվ"
-
-#: rdetail.cn.holdable
-msgid "Holdable"
-msgstr "Պահվող"
-
-#: rdetail.cn.more
-msgid "more info..."
-msgstr "ավելի տեղեկատվություն..."
-
-#: rdetail.cn.less
-msgid "less info"
-msgstr "պակաս տեղեկատվություն"
-
-#: rdetail.cn.hold rdetail.copyInfo.hold
-msgid "place hold"
-msgstr "տեղադրիր պահումը"
-
-#: rdetail.cn.disabled
-msgid "- Disabled -"
-msgstr "- Արգելափակված -"
-
-#: rdetail.cn.note
-msgid "Copy Note"
-msgstr "Նմուշի նշում"
-
-#: rdetail.cn.category
-msgid "Copy Category"
-msgstr "Նմուշի դաս"
-
-#: rdetail.cn.print
-msgid "Print Page"
-msgstr "Տպած էջ"
-
-#: rdetail.page.results
-msgid "First results page"
-msgstr "Առաջին արդյունքների էջ"
-
-# Result # &common.of; #
-#: rdetail.result
-msgid "Result"
-msgstr "Արդյունք"
-
-#: rdetail.start
-msgid "Start"
-msgstr "Սկսիր"
-
-#: rdetail.page.previous
-msgid "Previous page"
-msgstr "Նախորդ էջ"
-
-#: rdetail.page.next
-msgid "Next page"
-msgstr "Հաջորդ էջ"
-
-#: rdetail.page.last
-msgid "Last results page"
-msgstr "Վերջին արդյունքների էջ"
-
-#: rdetail.end
-msgid "End"
-msgstr "Վերջ"
-
-#: rdetail.more
-msgid "More Actions..."
-msgstr "Ավելի գործողություններ..."
-
-#: rdetail.bookbag.add
-msgid "Add to bookbag"
-msgstr "Ավելացրու գրքի զամբյուղին"
-
-#: rdetail.bookbag.create
-msgid "Create a new bookbag"
-msgstr "Ստեղծիր գրքի նոր զամբյուղ"
-
-#: rdetail.record.deleted
-msgid ""
-"This record has been deleted from the database. We recommend that you remove "
-"this title from any bookbags it may have been added to."
-msgstr ""
-"Այս գրառումը ջնջվել է շտեմարանից։ Խորհուրդ ենք տալիս հեռացնել այս վերնագիրը "
-"բոլոր գրքի զամբյուղներից, որոնցում այն կարող է ավելացված լինել։"
-
-#: rdetail.none
-msgid "(none)"
-msgstr "(ոչինչ)"
-
-#: rdetail.bookbag.add.success
-msgid "Item successfully added to bookbag"
-msgstr "Նյութը հաջողությամբ ավելացվել է գրքի զամբյուղին"
-
-#: rdetail.bookbag.name
-msgid "Enter the name of the new bookbag"
-msgstr "Մուտք արա նոր գրքի զամբյուղի անվանումը"
-
-#: rdetail.bookbag.create.success
-msgid "Bookbag successfully created"
-msgstr "Գրքի զամբյուղը հաջողությամբ ստեղծվել է"
-
-#: rdetail.detailMain.headerLabel
-msgid "Record Summary"
-msgstr "Գրառման համառոտագրություն"
-
-#: rdetail.detailMain.subjects
-msgid "Subjects"
-msgstr "Խորագրեր"
-
-#: rdetail.detailMain.abstract
-msgid "Abstract"
-msgstr "Համառոտագրություն"
-
-#: rdetail.detailMain.viewMarc
-msgid "View MARC"
-msgstr "Դիտիր MARC"
-
-#: rdetail.detailMain.hideMarc
-msgid "Return to title details"
-msgstr "Վերադարձիր վերնագրի մանրամասներին"
-
-#: rdetail.author.search
-msgid "Perform an author search"
-msgstr "Իրականցրու հեղինակի փնտրում"
-
-#: rdetail.copyInfo.headerLabel
-msgid "Copy Information"
-msgstr "Պատճենիր տեղեկատվությունը"
-
-#: rdetail.copyInfo.callnumber
-msgid "Callnumber"
-msgstr "Դասիչ"
-
-#: rdetail.copyInfo.local
-msgid "View Copy Information for this location only"
-msgstr "Դիտիր Պատճենիր տեղեկատվությունը այս տեղաբաշխման համար"
-
-#: rdetail.copyInfo.all
-msgid "View copy information for all libraries"
-msgstr "Դիտիր Պատճենիր տեղեկատվությունը բոլոր գրադարանների համար"
-
-#: rdetail.copyInfo.actions
-msgid "Actions"
-msgstr "Գործողություններ"
-
-#: rdetail.copyInfo.print
-msgid "Print Call Numbers for this library"
-msgstr "Տպիր դասիչները այս գրադարանի համար"
-
-#: rdetail.copyInfo.details
-msgid "details"
-msgstr "մանրամասներ"
-
-#: rdetail.copyInfo.browse
-msgid "browse"
-msgstr "դիտիր"
-
-#: rdetail.extras.summary
-msgid "Copy Summary"
-msgstr "Պատճենի համառոտագրություն"
-
-#: rdetail.extras.toc
-msgid "Table of Contents"
-msgstr "Բովանդակություն"
-
-#: rdetail.extras.excerpt
-msgid "Excerpt"
-msgstr "Մեջբերում"
-
-#: rdetail.extras.author.notes
-msgid "Author Notes"
-msgstr "Հեղինակի նշումներ"
-
-#: rdetail.extras.annotation
-msgid "Annotation"
-msgstr "Աննոտացիա"
-
-#: rdetail.extras.marc
-msgid "MARC Record"
-msgstr "MARC գրառում"
-
-#: rdetail.extras.call.null
-msgid "There are no call numbers for this item at this location."
-msgstr "Այս վայրում այս նյութի համար դասիչավորման համարներ չկան"
-
-#: rdetail.extras.call.local
-msgid "Local Call Numbers:"
-msgstr "Տեղային դասիչներ"
-
-#: rdetail.loading
-msgid "Loading copy infomation..."
-msgstr "Պատճենի տեղեկատվության բեռնավորում..."
-
-#: rdetail.noneAvailable
-msgid " * There are no copies in this location"
-msgstr " * Այս վայրում պատճեներ չկան"
-
-#: rdetail.summary.online
-msgid "Online Resources"
-msgstr "Առցանց պաշարներ"
-
-#: result.sort_by
-msgid "Sort Results by Relevance"
-msgstr "Տեսակավորիր արդյունքները ըստ կարևորության"
-
-#: result.sort_by.title
-msgid "Sort Results by Title"
-msgstr "Տեսակավորիր արդյունքները ըստ վերնագրի"
-
-#: result.sort_by.author
-msgid "Sort Results by Author"
-msgstr "Տեսակավորիր արդյունքները ըստ հեղինակի"
-
-#: result.sort_by.pubdate
-#, fuzzy
-msgid "Sort Results by Publication Date"
-msgstr "Տեսակավորիր արդյունքները ըստ հրատարակման տարեթվի"
-
-#: result.limit2avail
-msgid "Limit to Available"
-msgstr "Սահմանափակիր մատչելիներով"
-
-#: result.info.copies
-msgid "Available copies / Total copies"
-msgstr "Հասանելի պատճեներ / Ընդհանուր պատճեներ"
-
-#: result.info.no.items
-msgid "No items with the selected format were found in this location."
-msgstr "Այս վայրում ընտրված ձևաչափով նյութեր չեն գտնվել"
-
-#: result.info.format.items
-msgid "Listed below are all items in the catalog with the chosen format."
-msgstr "Ստորև թվարկվածները քարտարանի նյութերն են ըստ ընտրված ձևաչափի "
-
-#: result.info.show
-msgid "Show records for"
-msgstr "Ցույց տուր գրառումները "
-
-#: result.lowhits.few
-msgid "Few hits were returned for your search."
-msgstr "Քո որոնման համար շատ քիչ հարվածներ են վերադարձվել "
-
-#: result.lowhits.zero
-msgid "Zero hits were returned for your search."
-msgstr "Քո որոնման համար զերո արդյունք է վերադարձվել "
-
-#: result.lowhits.did.you.mean
-msgid "Maybe you meant:"
-msgstr "Միգուցե՞ դու նկատի ունես"
-
-#: result.lowhits.formats
-msgid "You will find more hits when searching all item formats:"
-msgstr ""
-"Դու կունենաս ավելի շատ հարվածներ երբ որոնես ըստ նյութի բոլոր ձևաչափերի։"
-
-#: result.lowhits.formats.search
-msgid "Search again with all formats?"
-msgstr "Որոնե՞լ նորից ըստ բոլոր ձևաչափերի"
-
-#: result.lowhits.related
-msgid "You may also like to try these related searches:"
-msgstr "Դու կարող ես նախընտրել նաև այս կապակցված փնտրումները։"
-
-#: result.lowhits.expand
-msgid "You may also wish to expand your search range to:"
-msgstr "Դու կարող ես ցանկանալ նաև ընդլայնել քո փնտրման տիրույթը։"
-
-#: result.lowhits.class
-msgid "You can try searching the same terms by:"
-msgstr "Դու կարող ես փորձել փնտրել նույն տերմինը։"
-
-#: result.lowhits.title
-msgid "title"
-msgstr "վերնագիր"
-
-#: result.lowhits.author
-msgid "author"
-msgstr "հեղինակ"
-
-#: result.lowhits.subject
-msgid "subject"
-msgstr "խորագիր"
-
-#: result.lowhits.series
-msgid "series"
-msgstr "մատենաշար"
-
-#: result.lowhits.keyword
-msgid "keyword"
-msgstr "վճռորոշ բառ"
-
-#: result.table.keyword
-msgid "View titles for this record"
-msgstr "Այս գրառման համար դիտիր վերնագրերը"
-
-#: result.table.author
-msgid "Perform an Author Search"
-msgstr "Իրականացրու որոնում ըստ Հեղինակի"
-
-#: common.call.number.label
-msgid "Call Number:"
-msgstr "Դասիչ։"
-
-#: common.isbn.label
-msgid "ISBN:"
-msgstr "ISBN:"
-
-#: common.issn.label
-msgid "ISSN:"
-msgstr "ISSN:"
-
-#: common.copy.barcode.label
-msgid "Copy Barcode:"
-msgstr "Պատճենահանիր շտրիխ կոդը։"
-
-#: common.hold.place
-msgid "Place hold for me"
-msgstr "Իմ համար իրականացրու պահում"
-
-#: common.hold.check
-msgid "Checking for possibility of hold fulfillment..."
-msgstr "Պահման իրականացման համար ստուգվում է հնարավորությունը... "
-
-#: common.hold.create
-msgid "Create / Edit a Hold"
-msgstr "Ստեղծիր / Խմբագրիր պահումը"
-
-#: common.hold.update
-msgid "Update Hold"
-msgstr "Թարմացրու պահումը"
-
-#: common.hold.type.label
-msgid "Hold Type:"
-msgstr "Պահման տեսակ"
-
-#: common.hold.volume
-msgid "Volume Hold"
-msgstr "Հատորի պահում"
-
-#: common.hold.copy
-msgid "Copy Hold"
-msgstr "Պատճենի պահում"
-
-#: common.hold.advanced
-msgid "Advanced Hold Options"
-msgstr "Պահման խորացված ընտրանքներ"
-
-#: common.hold.delivery
-msgid "Please select a physical location where your hold can be delivered."
-msgstr "Ընտրեք այն ֆիզիկական տեղաբաշխումը, ուր կարելի է առաքել ձեր պահումը։"
-
-#: common.hold.exists
-msgid "A hold already exists on the requested item."
-msgstr "Պատվիրված նյութի վրա արդեն գոյություն ունի պահում։"
-
-#: common.hold.exists.override
-msgid ""
-"A hold already exists on the requested item. Would you like to create the "
-"hold anyway?"
-msgstr ""
-"Պատվիրված նյութի վրա արդեն գոյություն ունի պահում։ Կուզենա՞ք ամեն դեպքում "
-"ստեղծել պահում։"
-
-#: common.hold.barred
-msgid ""
-"PATRON BARRED. Please see any notes in the \"Staff Notes\" section of your "
-"\"My Account\" page or contact your local library."
-msgstr ""
-"ԸՆԹԵՐՑՈՂԸ ԱՐԳԵԼԱՓԱԿՎԱԾ Է։ Տես նշումները քո \"Իմ հաշվեհամար\" էջի "
-"\"Աշխատակազմի նշումներ\" բաժնում, կամ կապվիր քո տեղային գրադարանի հետ։։ "
-
-#: common.hold.item.invalid
-msgid ""
-"This hold is no longer valid. It's likely that the target for the hold was "
-"deleted from the system. Please cancel this hold and place a new one."
-msgstr ""
-"Այ պահումը այլևս հավաստի չէ։ Հավանաբար պահման թիրախը համակարգից ջնջված է։ "
-"Չեղյալ արեք այս պահումը և իրականացրու նոր պահում։"
-
-#: common.hold.patron.invalid
-msgid "The patron barcode entered as the hold recipient is invalid."
-msgstr "Ընթերցողի շտրիխ կոդը մուտքագրված որպես ստացող հավաստի չէ։"
-
-# Was (??), perhaps change to a button or icon?
-#: common.help
-msgid "(Help)"
-msgstr "(Օգնություն)"
-
-#: common.phone.format.help
-msgid ""
-"The phone number does not have the correct format. The expected format is "
-"XXX-YYY-ZZZZ"
-msgstr "Հեռախոսի համարը չունի ճիշտ ձևաչափ։ Սպասվող ձևաչափն է` XXX-YYY-ZZZZ"
-
-#: common.hold.failed
-msgid ""
-"No items were found that could fulfill the requested holds. It's possible "
-"that choosing a different format will result in a successful hold. It is "
-"also possible that you have exceeded the number of allowable holds. For "
-"further information, please consult your local librarian."
-msgstr ""
-"Պահանջվող պահումներին բավարարող գրառումներ չկան։ Հնարավոր է, որ ուրիշ "
-"ձևաչափի ընտրությունը կհանգեցնի հաջող պահման։ Հնարավոր է նաև որ դու "
-"գերազանցել ես թույլատրելի պահումների քանակը։ Հետագա տեղեկատվության համար "
-"դիմիր քո տեղային գրադարանավարին։ "
-
-#: common.control.click
-msgid "(control-click to select multiple formats)"
-msgstr "(Բազմաձևաչափեր ընտրելու համար` ստուգիր-սեղմիր)"
-
-#: common.format.alternatives
-msgid "Acceptable Alternative Formats:"
-msgstr "Ընդունելի այլընտրանքային ձևաչափեր։"
-
-#: common.phone.format
-msgid "(XXX-YYY-ZZZZ)"
-msgstr "(XXX-YYY-ZZZZ)"
-
-#: common.phone.enable
-msgid "Enable phone notifications for this hold?"
-msgstr "Թույլատրե՞լ այս պահման համար հեռախոսային տեղեկացումներ։"
-
-#: common.email.enable
-msgid "Enable email notifications for this hold?"
-msgstr "Թույլատրե՞լ այս պահման համար էլ փոստով տեղեկացումներ։"
-
-#: common.email.none
-msgid "(Patron has no configured email address)"
-msgstr "(Ընթերցողը չի կարգաբերել էլ փոստի հասցեն)"
-
-#: common.email.set
-msgid ""
-"(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> "
-"for setting your email address)"
-msgstr ""
-"(Տես <a class='classic_link' id='holds.no_email.my_account'>Իմ հաշիվը</a> քո "
-"էլ փոստի հասցեն ստեղծելու համար)"
-
-#: common.keywords.label
-msgid "Keywords:"
-msgstr "Վճռորոշ բառեր։"
-
-#: common.physical.label
-msgid "Physical Description:"
-msgstr "Ֆիզիկական նկարագրություն։"
-
-#: common.series.label
-msgid "Series:"
-msgstr "Մատենաշար։"
-
-#: common.subject.label
-msgid "Subject:"
-msgstr "Խորագիր։"
-
-#: common.title.label
-msgid "Title:"
-msgstr "Վերնագիր։"
-
-#: common.author.label
-msgid "Author:"
-msgstr "Հեղինակ։"
-
-#: common.format.label
-msgid "Format:"
-msgstr "Ձևաչափ։"
-
-#: library.select
-msgid "Find results in"
-msgstr "Գտիր արդյունքները"
-
-#: library.select.label
-msgid "Choose a different library..."
-msgstr "Ընտրիր մեկ այլ գրադարան..."
-
-#: login.username
-msgid "Enter your username or library barcode"
-msgstr "Մուտք արա օգտվողի անունը կամ շտրիխ կոդը"
-
-#: login.password.change
-msgid "Change Password"
-msgstr "Փոխիր գաղտնաբառը"
-
-#: login.first.time
-msgid ""
-"This appears to be the first time you have logged in. You will need to "
-"change your password."
-msgstr ""
-"Կարծես թե դու առաջին անգամ ես մուտք գործում։ Անհրաժեշտ է փոխել գաղտնաբառը։"
-
-#: login.password.current.enter
-msgid "Enter your current password"
-msgstr "Մուտք արա ընթացիկ գաղտնաբառը։"
-
-#: login.password.new.enter
-msgid "Enter the new password"
-msgstr "Մուտք արա նոր գաղտնաբառը։"
-
-#: login.password.new.reenter
-msgid "Re-type the new password for verification"
-msgstr "Ստուգման համար կրկին մուտք արա նոր գաղտնաբառը։"
-
-#: login.password.update
-msgid "Update Password"
-msgstr "Թարմացրու գաղտնաբառը։"
-
-#: login.password.nomatch
-msgid "Passwords do not match"
-msgstr "Գաղտնաբառերը չեն համընկնում"
-
-#: login.password.strength
-msgid "The password provided is not strong enough."
-msgstr "Ներկայացված գաղտնաբառը այնքան էլ ուժեղ չէ։"
-
-#: login.barcode.inactive
-msgid ""
-"The barcode used to login is marked as inactive. Please contact your local "
-"library."
-msgstr ""
-"Մուտք գործելու համար տրված շտրիխ կոդը նշված է որպես ոչ ակտիվ։ Կապվիր քո "
-"տեղային գրադարանի հետ։ "
-
-#: login.account.inactive
-msgid "This account has been deactivated. Please contact your local library."
-msgstr "Այս հաշիվը ապաակտիվացված է։ Կապվիր քո տեղային գրադարանի հետ։"
-
-#: login.failed
-msgid ""
-"Login failed. The username or password provided was not valid. Ensure Caps-"
-"Lock is off and try again or contact your local library."
-msgstr ""
-"Գրանցումը տապալված է։ Օգտվողի անունը կամ գաղտնաբառը հավաստի չեն։ Ստուգիր որ "
-"Caps-Lock-ը անջատված է, և փորձիր նորից, կամ կապվիր տեղային գրադարանի հետ։"
-
-#: button.go
-msgid "Go!"
-msgstr "Գնա"
-
-# =================================================================
-# Slimpac Simple Search
-# =================================================================
-#: slimpac.start.title
-msgid "Simple Search"
-msgstr "Հասարակ փնտրում"
-
-#: slimpac.start.nowSearching
-msgid "Now searching: "
-msgstr "Հիմա որոնում է։"
-
-#: slimpac.start.dynamic
-msgid "Dynamic Catalog"
-msgstr "Դինամիկ քարտարան"
-
-# =================================================================
-# Slimpac Advanced Search
-# =================================================================
-#: slimpac.advanced.language
-msgid "Item Language"
-msgstr "Նյութի լեզու"
-
-#: slimpac.advanced.create_date
-msgid "Record Creation Date"
-msgstr "Գրառման ստեղծման ամսաթիվ"
-
-#: slimpac.advanced.edit_date
-msgid "Record Edit Date"
-msgstr "Գրառման խմբագրման ամսաթիվ"
-
-#: opac.image_provided
-msgid "Image provided by"
-msgstr "Նկարը ապահովել է"
-
-#: vendor.name
-msgid "Amazon"
-msgstr "Ամազոն"
-
-#: vendor.base_link
-msgid "http://amazon.com/dp/"
-msgstr "http://amazon.com/dp/"
-
-#~ msgid "Edit/Cancel"
-#~ msgstr "Խմբագրիր/Անտեսիր"
prompt "Database Driver [$DBDRVR] "
read X; if [ ! -z "$X" ]; then DBDRVR="$X"; fi;
- if [ "$DBDRVR" == "Pg" ]; then
- prompt "Bootstrapping Database Version (80 for 8.0.x, 81 for 8.1.x, 82 for 8.2.x) [$DBVER] "
- read X; if [ ! -z "$X" ]; then DBVER="$X"; fi;
- fi;
-
prompt "Database Host [$DBHOST] "
read X; if [ ! -z "$X" ]; then DBHOST="$X"; fi;
_write "DBNAME=\"$DBNAME\"";
_write "DBUSER=\"$DBUSER\"";
_write "DBPW=\"$DBPW\"";
- _write "DBVER=\"$DBVER\"";
_write "REPORTERDIR=\"$REPORTERDIR\"";
_write "ADMINDIR=\"$ADMINDIR\"";
DBPORT="5432";
DBNAME="evergreen";
DBUSER="postgres";
-DBVER="82";
DBPW="postgres";
WEBDIR=$WEBDIR TEMPLATEDIR=$TEMPLATEDIR ETCDIR=$ETCDIR REPORTERDIR=$REPORTERDIR\
OPENSRF_HEADERS=$OPENSRF_HEADERS OPENSRF_LIBS=$OPENSRF_LIBS OPENILSDIR=$OPENILSDIR EVERGREENDIR=$EVERGREENDIR \
CIRCRULESDIR=$CIRCRULESDIR CATALOGSCRIPTDIR=$CATALOGSCRIPTDIR CGIDIR=$CGIDIR \
- DBDRVR=$DBDRVR DBHOST=$DBHOST DBVER=$DBVER DATADIR=$DATADIR ADMINDIR=$ADMINDIR\
+ DBDRVR=$DBDRVR DBHOST=$DBHOST DATADIR=$DATADIR ADMINDIR=$ADMINDIR\
PENALTYRULESDIR=$PENALTYRULESDIR DBNAME=$DBNAME DBUSER=$DBUSER DBPW=$DBPW XSLDIR=$XSLDIR NEW_OPAC_URL=$NEW_OPAC_URL \
NEW_XUL_PACKAGE_NAME=$NEW_XUL_PACKAGE_NAME NEW_XUL_PACKAGE_LABEL=$NEW_XUL_PACKAGE_LABEL";