Bugzilla – Attachment 117642 Details for
Bug 22824
Replace YAML::Syck with YAML::XS
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22824: Fix yes/no vs 1/0
Bug-22824-Fix-yesno-vs-10.patch (text/plain), 131.85 KB, created by
Martin Renvoize (ashimema)
on 2021-03-04 09:19:39 UTC
(
hide
)
Description:
Bug 22824: Fix yes/no vs 1/0
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-03-04 09:19:39 UTC
Size:
131.85 KB
patch
obsolete
>From d1b961eeb9ddda8fc785ca711cad60b0c7b11bc8 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 11 Feb 2021 12:12:03 +0100 >Subject: [PATCH] Bug 22824: Fix yes/no vs 1/0 > >Patch generated with: > perl -p -i -e 's# no: # 0: #' **/*.pref > perl -p -i -e 's# yes: # 1: #' **/*.pref > >no must be 0 and yes must be 1! > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > .../modules/admin/preferences/accounting.pref | 20 +- > .../admin/preferences/acquisitions.pref | 16 +- > .../en/modules/admin/preferences/admin.pref | 64 +-- > .../admin/preferences/authorities.pref | 28 +- > .../admin/preferences/cataloguing.pref | 64 +-- > .../admin/preferences/circulation.pref | 436 +++++++++--------- > .../admin/preferences/enhanced_content.pref | 156 +++---- > .../modules/admin/preferences/i18n_l10n.pref | 8 +- > .../en/modules/admin/preferences/opac.pref | 278 +++++------ > .../en/modules/admin/preferences/patrons.pref | 92 ++-- > .../modules/admin/preferences/searching.pref | 82 ++-- > .../en/modules/admin/preferences/serials.pref | 20 +- > .../admin/preferences/staff_interface.pref | 48 +- > .../admin/preferences/web_services.pref | 42 +- > 14 files changed, 677 insertions(+), 677 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref >index 6dcb0c9b9e..b23880179b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref >@@ -3,35 +3,35 @@ Accounting: > - > - pref: AccountAutoReconcile > choices: >- yes: "Do" >- no: "Don't" >+ 1: "Do" >+ 0: "Don't" > - reconcile patron balances automatically on each transaction adding debits or credits. > - > - pref: FinePaymentAutoPopup > choices: >- yes: "Do" >- no: "Don't" >+ 1: "Do" >+ 0: "Don't" > - automatically display a print dialog for a payment receipt when making a payment. > - > - pref: RoundFinesAtPayment > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - round fines to the nearest cent when collecting payments. Enabling this preference allows paying fines of partial cents which may not be visible in the interface. > Features: > - > - pref: UseCashRegisters > default: no > choices: >- yes: "Use" >- no: "Don't use" >+ 1: "Use" >+ 0: "Don't use" > - " cash registers with the accounting system to track payments." > - > - pref: EnablePointOfSale > default: no > choices: >- yes: "Enable" >- no: "Disable" >+ 1: "Enable" >+ 0: "Disable" > - ' the point of sale feature to allow anonymous transactions with the accounting system. (Requires <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=UseCashRegisters">UseCashRegisters</a>)' > - > - pref: AutoCreditNumber >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref >index 1885d4cc1a..7d6a3c3bc4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/acquisitions.pref >@@ -42,8 +42,8 @@ Acquisitions: > - > - pref: AcqWarnOnDuplicateInvoice > choices: >- yes: Warn >- no: "Do not warn" >+ 1: Warn >+ 0: "Do not warn" > - when the librarian tries to create an invoice with a duplicate number. > - > - "Upon receiving items, update their subfields if they were created when placing an order (e.g. o=5|a=\"foo bar\"):" >@@ -54,8 +54,8 @@ Acquisitions: > - > - pref: AcqEnableFiles > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - enable the ability to upload and attach arbitrary files to invoices. > - > - Set the mapping values for a new order line created from a MARC record in a staged file. >@@ -75,8 +75,8 @@ Acquisitions: > - pref: ClaimsBccCopy > default: no > choices: >- yes: Send >- no: Don't send >+ 1: Send >+ 0: Don't send > - blind copy (BCC) to logged in user when sending serial or acquisitions claims notices. > - > - Keep accepted or rejected purchase suggestions for a period of >@@ -97,8 +97,8 @@ Acquisitions: > - pref: UseACQFrameworkForBiblioRecords > default: no > choices: >- yes: "Use" >- no: "Don't use" >+ 1: "Use" >+ 0: "Don't use" > - " the framework 'ACQ' for bibliographic records fields." > - > - "Choose email address that new purchase suggestions will be sent to: " >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref >index ff475a5ddb..3327a3ce1c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref >@@ -39,8 +39,8 @@ Administration: > - pref: noItemTypeImages > default: 0 > choices: >- yes: "No" >- no: "Yes" >+ 1: "No" >+ 0: "Yes" > - > - "Default separator for columns in an exported CSV file: " > - pref: CSVDelimiter >@@ -56,26 +56,26 @@ Administration: > - "Allow staff and patrons to create and view saved lists of books: " > - pref: virtualshelves > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - > - "Default view when editing circulation rules: " > - pref: DefaultToLoggedInLibraryCircRules > choices: >- yes: "The logged-in library" >- no: "All libraries" >+ 1: "The logged-in library" >+ 0: "All libraries" > - > - "Default view when editing notices and slips: " > - pref: DefaultToLoggedInLibraryNoticesSlips > choices: >- yes: "The logged-in library" >- no: "All libraries" >+ 1: "The logged-in library" >+ 0: "All libraries" > - > - "Default view when editing overdue notice/status triggers: " > - pref: DefaultToLoggedInLibraryOverdueTriggers > choices: >- yes: "The logged-in library" >- no: "All libraries" >+ 1: "The logged-in library" >+ 0: "All libraries" > Login options: > - > - "Inactivity timeout in seconds to automatically log out users: " >@@ -87,16 +87,16 @@ Administration: > - pref: AutoLocation > default: 0 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - <a href="/cgi-bin/koha/admin/branches.pl">Link to library administration</a> > - > - "Enable check for change in remote IP address for session security: " > - pref: SessionRestrictionByIP > default: 1 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - (Disable only when remote IP address changes frequently.) > # PostgreSQL is supported by CGI::Session but not by Koha. > - >@@ -113,38 +113,38 @@ Administration: > - pref: IndependentBranches > default: 0 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - "<p class='text-danger'><strong>Warning:</strong> Changing this system preference will radically alter the behavior of Koha. Changing preference on a production system is highly discouraged.</p>" > - > - "Prevent staff (but not superlibrarians) from viewing and approving/denying patron modification requests for patrons belonging to other libraries: " > - pref: IndependentBranchesPatronModifications > default: 0 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - > - "Prevent staff (but not superlibrarians) from transfering items to other libraries: " > - pref: IndependentBranchesTransfers > default: 0 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > CAS authentication: > - > - "Use CAS for login authentication: " > - pref: casAuthentication > default: 0 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - > - "Logout of CAS when logging out of Koha: " > - pref: casLogout > default: 0 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - > - "URL of the CAS Authentication Server: " > - pref: casServerUrl >@@ -162,8 +162,8 @@ Administration: > - "Use Google OpenID Connect login: " > - pref: GoogleOpenIDConnect > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > - You will need to select OAuth2 when creating an app in the Google cloud console, and set the web origin to your_opac_url and the redirect url to your_opac_url/cgi-bin/koha/svc/auth/googleopenidconnect . > - > - "Google OAuth2 Client ID: " >@@ -178,8 +178,8 @@ Administration: > - > - pref: GoogleOpenIDConnectAutoRegister > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons logging in with Google Open ID to automatically register. > - > - "Use this category code when automatically registering a Google Open ID patron: " >@@ -195,8 +195,8 @@ Administration: > - pref: UsageStats > default: 2 > choices: >- yes: "Yes" >- no: "No" >+ 1: "Yes" >+ 0: "No" > 2: "No, let me think about it" > - "." > - "<br>Website where usage statistics are published: <a href=\"https://hea.koha-community.org\">Hea Koha community website</a>." >@@ -435,8 +435,8 @@ Administration: > - > - pref: UsageStatsLibrariesInfo > choices: >- yes: "Share" >- no: "Don't share" >+ 1: "Share" >+ 0: "Don't share" > - "libraries information (name, URL, country)." > - <br><strong>NOTE:</strong> This value has no effect if the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=UsageStats">UsageStats</a> system preference is set to "No" (don't share). > - >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/authorities.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/authorities.pref >index 7e3d58b4a3..80e8ee1292 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/authorities.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/authorities.pref >@@ -4,8 +4,8 @@ Authorities: > - pref: AuthDisplayHierarchy > default: no > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - broader term/narrower term hierarchies when viewing authorities. > - > - Use the following text to edit how authority records control indicators of attached bibliographic fields (and possibly subfield $2).<br> >@@ -19,16 +19,16 @@ Authorities: > - pref: BiblioAddsAuthorities > default: no > choices: >- yes: allow >- no: "don't allow" >+ 1: allow >+ 0: "don't allow" > - them to automatically create new authority records if needed, rather than having to reference existing authorities. > - > - When editing records, > - pref: AutoCreateAuthorities > default: yes > choices: >- yes: generate >- no: "don't generate" >+ 1: generate >+ 0: "don't generate" > - authority records that are missing (<a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=BiblioAddsAuthorities">BiblioAddsAuthorities</a> must be set to "allow" for this to have any effect). > - > - When modifying an authority record, do not update attached bibliographic records if the number exceeds >@@ -46,8 +46,8 @@ Authorities: > - pref: UseAuthoritiesForTracings > default: yes > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - authority record numbers instead of text strings for searches from subject tracings. > - > - "Use the following text for the contents of UNIMARC authority field 100 position 08-35 (fixed length data elements). Do NOT include the date (position 00-07):" >@@ -83,20 +83,20 @@ Authorities: > - pref: LinkerRelink > default: yes > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - relink headings that have previously been linked to authority records. > - > - pref: LinkerKeepStale > default: no > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - keep existing links to authority records for headings where the linker is unable to find a match. > - > - pref: CatalogModuleRelink > default: no > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - automatically relink headings that have previously been linked when saving records in the cataloging module. >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref >index af14d0a6ec..bee04d5922 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref >@@ -9,21 +9,21 @@ Cataloging: > - > - pref: advancedMARCeditor > choices: >- yes: "Don't display" >- no: Display >+ 1: "Don't display" >+ 0: Display > - descriptions of fields and subfields in the MARC editor. > - > - pref: EasyAnalyticalRecords > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - "easy ways to create analytical record relationships." > - > - pref: EnableAdvancedCatalogingEditor > default: 0 > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - the advanced cataloging editor. > - "<br/> <strong>NOTE:</strong>" > - Currently does not include support for UNIMARC or NORMARC fixed fields. >@@ -40,8 +40,8 @@ Cataloging: > - When using the quick spine label printer, > - pref: SpineLabelAutoPrint > choices: >- yes: do >- no: "don't" >+ 1: do >+ 0: "don't" > - automatically pop up a print dialog. > - > - "Include the following fields on a quick-printed spine label:" >@@ -51,8 +51,8 @@ Cataloging: > - > - pref: SpineLabelShowPrintOnBibDetails > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - buttons on the bibliographic details page to print item spine labels. > - > Record structure: >@@ -76,8 +76,8 @@ Cataloging: > - Use the item type of the > - pref: item-level_itypes > choices: >- yes: specific item >- no: bibliographic record >+ 1: specific item >+ 0: bibliographic record > - as the authoritative item type (for determining circulation and fines rules, for displaying an item type icon on either opac detail or results page, etc). > - > - Map the MARC subfields >@@ -102,8 +102,8 @@ Cataloging: > - > - pref: z3950NormalizeAuthor > choices: >- yes: Copy >- no: "Don't copy" >+ 1: Copy >+ 0: "Don't copy" > - authors from the UNIMARC > - pref: z3950AuthorAuthFields > class: multi >@@ -121,8 +121,8 @@ Cataloging: > - When a new item is added, > - pref: PrefillItem > choices: >- yes: the new item is prefilled with last created item values. >- no: the new item is not prefilled with last created item values. >+ 1: the new item is prefilled with last created item values. >+ 0: the new item is not prefilled with last created item values. > - > - "Define a list of subfields to use when prefilling items (separated by space):" > - pref: SubfieldsToUseWhenPrefill >@@ -171,8 +171,8 @@ Cataloging: > - > - pref: UseControlNumber > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - record control number ($w subfields) and control number (001) for linking of bibliographic records. > - > - Use >@@ -185,8 +185,8 @@ Cataloging: > - > - pref: hide_marc > choices: >- yes: "Don't display" >- no: Display >+ 1: "Don't display" >+ 0: Display > - MARC tag numbers, subfield codes and indicators in MARC views. > - > - pref: LabelMARCView >@@ -211,8 +211,8 @@ Cataloging: > - > - pref: OpacSuppression > choices: >- yes: Hide >- no: "Don't hide" >+ 1: Hide >+ 0: "Don't hide" > - bibliographic records marked as suppressed from OPAC search results. > - <br />Restrict the suppression to IP addresses outside of the IP range > - pref: OpacSuppressionByIPRange >@@ -221,8 +221,8 @@ Cataloging: > - <br />Redirect the opac detail page for suppressed records to > - pref: OpacSuppressionRedirect > choices: >- yes: "an explanatory page ('This record is blocked')." >- no: "the 404 error page ('Not found')." >+ 1: "an explanatory page ('This record is blocked')." >+ 0: "the 404 error page ('Not found')." > - "<br />Display the following message on the redirect page for suppressed bibliographic records:" > - pref: OpacSuppressionMessage > type: textarea >@@ -230,8 +230,8 @@ Cataloging: > - > - pref: SeparateHoldings > choices: >- yes: Separate >- no: "Don't separate" >+ 1: Separate >+ 0: "Don't separate" > - "items display into two tabs, where the first tab contains items whose" > - pref: SeparateHoldingsBranch > choices: >@@ -248,8 +248,8 @@ Cataloging: > - > - pref: AcquisitionDetails > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - acquisition details on the bibliographic record detail page. > - > - "Show the following fields for deleted records after a merge:" >@@ -265,8 +265,8 @@ Cataloging: > - When matching on ISBN with the record import tool, > - pref: AggressiveMatchOnISBN > choices: >- yes: "do" >- no: "don't" >+ 1: "do" >+ 0: "don't" > - attempt to match aggressively by trying all variations of the ISBNs in the imported record as a phrase in the ISBN fields of already cataloged records. > - > - Display the MARC field/subfields >@@ -276,8 +276,8 @@ Cataloging: > - When matching on ISSN with the record import tool, > - pref: AggressiveMatchOnISSN > choices: >- yes: "do" >- no: "don't" >+ 1: "do" >+ 0: "don't" > - attempt to match aggressively by trying all variations of the ISSNs in the imported record as a phrase in the ISSN fields of already cataloged records. > > Exporting: >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >index ab68c75687..accf490d9b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >@@ -3,27 +3,27 @@ Circulation: > - > - pref: CircSidebar > choices: >- yes: Activate >- no: Deactivate >+ 1: Activate >+ 0: Deactivate > - the navigation sidebar on all circulation pages. > - > - pref: CircConfirmItemParts > choices: >- yes: "Require" >- no: "Don't require" >+ 1: "Require" >+ 0: "Don't require" > - staff to confirm that all parts of an item are present at checkin/checkout. > - > - pref: AutoSwitchPatron > choices: >- yes: "Enable" >- no: "Don't enable" >+ 1: "Enable" >+ 0: "Don't enable" > - the automatic redirection to another patron when a patron barcode is scanned instead of a book. > - This should not be enabled if you have overlapping patron and book barcodes. > - > - pref: PatronAutoComplete > choices: >- yes: Try >- no: "Don't try" >+ 1: Try >+ 0: "Don't try" > - to guess the patron being entered while typing a patron search for circulation or patron search. > - Only returns the first 10 results at a time. > - >@@ -39,8 +39,8 @@ Circulation: > - > - pref: itemBarcodeFallbackSearch > choices: >- yes: "Enable" >- no: "Don't enable" >+ 1: "Enable" >+ 0: "Don't enable" > - the automatic use of a keyword catalog search if the phrase entered as a barcode on the checkout page does not turn up any results during an item barcode search. > - > - Sort previous checkouts on the circulation page from >@@ -60,14 +60,14 @@ Circulation: > - > - pref: SpecifyDueDate > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to specify a due date for a checkout. > - > - pref: SpecifyReturnDate > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to specify a return date for a check in. > - > - Set the default start date for the Holds to pull list to >@@ -77,8 +77,8 @@ Circulation: > - > - pref: AllowAllMessageDeletion > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to delete messages added from other libraries. > - > - Show the >@@ -88,32 +88,32 @@ Circulation: > - > - pref: FineNotifyAtCheckin > choices: >- yes: Notify >- no: "Don't notify" >+ 1: Notify >+ 0: "Don't notify" > - librarians of overdue fines on the items they are checking in. > - > - pref: WaitingNotifyAtCheckin > choices: >- yes: Notify >- no: "Don't notify" >+ 1: Notify >+ 0: "Don't notify" > - librarians of waiting holds for the patron whose items they are checking in. > - > - pref: FilterBeforeOverdueReport > choices: >- yes: Require >- no: "Don't require" >+ 1: Require >+ 0: "Don't require" > - staff to choose which checkouts to show before running the overdues report. > - > - pref: DisplayClearScreenButton > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - a button to clear the current patron from the screen on the circulation screen. > - > - pref: RecordLocalUseOnReturn > choices: >- yes: Record >- no: "Don't record" >+ 1: Record >+ 0: "Don't record" > - local use when an unissued item is checked in. > - > - When an empty barcode field is submitted in circulation >@@ -131,14 +131,14 @@ Circulation: > - > - pref: UpdateTotalIssuesOnCirc > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - update a bibliographic record's total checkouts count whenever an item is checked out (WARNING! This increases server load significantly; if performance is a concern, use the update_totalissues.pl cron job to update the total checkouts count). > - > - pref: ExportCircHistory > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - the export patron checkout history options. > - > - "The following fields should be excluded from the patron checkout history CSV or MARC (ISO 2709) export:" >@@ -147,108 +147,108 @@ Circulation: > - > - pref: AllowOfflineCirculation > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - "offline circulation on regular circulation computers. (<strong>NOTE:</strong> This system preference does not affect the Firefox add-on or the desktop application)." > - > - pref: ShowAllCheckins > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - all items in the "Checked-in items" list, even items that were not checked out. > - > - pref: AllowCheckoutNotes > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to submit notes about checked out items. > - > - pref: UseCirculationDesks > choices: >- yes: "Use" >- no: "Don't use" >+ 1: "Use" >+ 0: "Don't use" > - circulation desks with circulation. > > Checkout policy: > - > - pref: OnSiteCheckoutAutoCheck > choices: >- yes: Enable >- no: Don't enable >+ 1: Enable >+ 0: Don't enable > - on-site checkout by default if last checkout was an on-site one. > - > - pref: AutoReturnCheckedOutItems > choices: >- yes: Don't >- no: Do >+ 1: Don't >+ 0: Do > - require librarians to manually confirm a checkout where the item is already checked out to another patron. > - > - pref: AllowTooManyOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to override and check out items when the patron has reached the maximum number of allowed checkouts. > - > - pref: AutoRemoveOverduesRestrictions > choices: >- yes: "Do" >- no: "Don't" >+ 1: "Do" >+ 0: "Don't" > - allow OVERDUES restrictions triggered by sent notices to be cleared automatically when all overdue items are returned by a patron. > - > - pref: AllowNotForLoanOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to override and check out items that are marked as not for loan. > - > - pref: AllowRenewalLimitOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to manually override renewal blocks and renew a checkout when it would go over the renewal limit or be premature for the "No renewal before" setting in the circulation policy or has been scheduled for automatic renewal. > - > - pref: AllowRenewalOnHoldOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to renew items that are on hold by manually specifying a due date. > - > - pref: AllowItemsOnHoldCheckoutSIP > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - checkouts of items reserved to someone else via SIP checkout messages. > - If allowed do not generate RESERVE_WAITING and RESERVED warning. > - This allows self checkouts for those items. If using the holds queue items with pending holds will be marked as "unavailable" if this set to "Don't allow". > - > - pref: AllowItemsOnHoldCheckoutSCO > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - checkouts of items reserved to someone else in the SCO module. If allowed do not generate RESERVE_WAITING and RESERVED warning. This allows self checkouts for those items. > - > - pref: AllFinesNeedOverride > choices: >- yes: Require >- no: "Don't require" >+ 1: Require >+ 0: "Don't require" > - staff to manually override all fines, even fines less than set in the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=noissuescharge">noissuescharge</a> system preference. > - > - pref: AllowFineOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to manually override and check out items to patrons who have more in fines than set in the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=noissuescharge">noissuescharge</a> system preference. > - > - pref: AutomaticItemReturn > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - automatically transfer items to their home library when they are checked in. > - > - pref: UseBranchTransferLimits > choices: >- yes: Enforce >- no: "Don't enforce" >+ 1: Enforce >+ 0: "Don't enforce" > - library transfer limits based on > - pref: BranchTransferLimitsType > choices: >@@ -258,8 +258,8 @@ Circulation: > - > - pref: UseTransportCostMatrix > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - the transport cost matrix for calculating optimal holds filling between libraries. > - > - Use the checkout and fines rules of >@@ -316,14 +316,14 @@ Circulation: > - > - pref: RenewalSendNotice > choices: >- yes: Send >- no: "Don't send" >+ 1: Send >+ 0: "Don't send" > - "a renewal notice according to patron's messaging preferences for 'Item checkout'." > - > - pref: UnseenRenewals > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - renewals to be recorded as "unseen" by the library, and count against the patrons unseen renewals limit. > - > - Prevent patrons from making holds on the OPAC if they owe more than >@@ -338,8 +338,8 @@ Circulation: > - > - pref: IssuingInProcess > choices: >- yes: "Don't prevent" >- no: "Prevent" >+ 1: "Don't prevent" >+ 0: "Prevent" > - patrons from checking out an item whose rental charge would take them over the limit. > - > - "Restrict patrons with the following target audience values from checking out inappropriate materials:" >@@ -348,8 +348,8 @@ Circulation: > - > - pref: AgeRestrictionOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to check out an item with age restriction. > - > - Prevent patrons from checking out items if they have more than >@@ -369,26 +369,26 @@ Circulation: > - > - pref: RentalsInNoissuesCharge > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - rental charges when summing up charges for limit set in the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=noissuescharge">noissuescharge</a> system preference. > - > - pref: ManInvInNoissuesCharge > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - custom debit type charges when summing up charges for limit set in the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=noissuescharge">noissuescharge</a> system preference. > - > - pref: HoldsInNoissuesCharge > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - hold charges when summing up charges for limit set in the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=noissuescharge">noissuescharge</a> system preference. > - > - pref: ReturnBeforeExpiry > choices: >- yes: Require >- no: "Don't require" >+ 1: Require >+ 0: "Don't require" > - "patrons to return items before their accounts expire (by restricting due dates to before the patron's expiration date)." > - > - "Send all notices as a BCC to this email address:" >@@ -396,8 +396,8 @@ Circulation: > - > - pref: OverdueNoticeCalendar > choices: >- yes: "Use calendar" >- no: "Ignore calendar" >+ 1: "Use calendar" >+ 0: "Ignore calendar" > - "when working out the period for overdue notices." > - > - Include up to >@@ -415,8 +415,8 @@ Circulation: > - "When checking out an item with rental fees, " > - pref: RentalFeesCheckoutConfirmation > choices: >- yes: ask >- no: "don't ask" >+ 1: ask >+ 0: "don't ask" > - "for confirmation." > - > - By default, set the LOST value of an item to >@@ -455,8 +455,8 @@ Circulation: > - "When checking out an item, " > - pref: RecordStaffUserOnCheckout > choices: >- yes: "record" >- no: "don't record" >+ 1: "record" >+ 0: "don't record" > - "the user who checked out the item." > - > - "Mark items as returned when flagged as lost " >@@ -473,34 +473,34 @@ Circulation: > - > - pref: AllowMultipleIssuesOnABiblio > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "patrons to check out multiple items from the same record. (<strong>NOTE:</strong> This will only affect records without a subscription attached.)" > - > - pref: OnSiteCheckouts > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - the on-site checkouts feature. > - > - pref: OnSiteCheckoutsForce > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - the on-site checkout for all cases (even if a patron is debarred, etc.). > - > - pref: ConsiderOnSiteCheckoutsAsNormalCheckouts > choices: >- yes: Consider >- no: "Don't consider" >+ 1: Consider >+ 0: "Don't consider" > - on-site checkouts as normal checkouts. > - If enabled, on-site checkouts will count toward the checkout limit for regular checkouts. The on-site limit will still apply for on-site checkouts. > - If disabled, both values will be checked separately. > - > - pref: SwitchOnSiteCheckouts > choices: >- yes: Switch >- no: "Don't switch" >+ 1: Switch >+ 0: "Don't switch" > - on-site checkouts to normal checkouts when checked out. > - > - When a patron's checked out item is overdue, >@@ -514,29 +514,29 @@ Circulation: > - If a patron is restricted, > - pref: RestrictionBlockRenewing > choices: >- yes: block >- no: allow >+ 1: block >+ 0: allow > - renewing of items. > - > - If a patron owes more than the value of <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACFineNoRenewals">OPACFineNoRenewals</a>, > - pref: OPACFineNoRenewalsBlockAutoRenew > choices: >- yes: block >- no: allow >+ 1: block >+ 0: allow > - their auto-renewals. > - > - If a patron pays off all fines on an overdue item that is accruing fines, > - pref: RenewAccruingItemWhenPaid > choices: >- yes: renew >- no: "don't renew" >+ 1: renew >+ 0: "don't renew" > - the item automatically. If the system preference <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RenewalPeriodBase">RenewalPeriodBase</a> is set to "due date", renewed items may still be overdue. > - > - If a patron pays off all fines on an overdue item that is accruing fines in the OPAC via a payment plugin, > - pref: RenewAccruingItemInOpac > choices: >- yes: renew >- no: "don't renew" >+ 1: renew >+ 0: "don't renew" > - the item automatically. If the system preference <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RenewalPeriodBase">RenewalPeriodBase</a> is set to "due date", renewed items may still be overdue. > - > - pref: ItemsDeniedRenewal >@@ -554,8 +554,8 @@ Circulation: > - > - pref: TrapHoldsOnOrder > choices: >- yes: Trap >- no: "Don't trap" >+ 1: Trap >+ 0: "Don't trap" > - items that are not for loan but holdable ( notforloan < 0 ) to fill holds. > - > - Never trap items with 'not for loan' values of >@@ -566,46 +566,46 @@ Circulation: > - > - pref: HoldsAutoFill > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - automatically fill holds instead of asking the librarian. > - > - pref: HoldsNeedProcessingSIP > choices: >- yes: "Don't fulfill" >- no: Fulfill >+ 1: "Don't fulfill" >+ 0: Fulfill > - holds automatically if matching item is returned via SIP protocol. > - > - pref: HoldsAutoFillPrintSlip > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - automatically display the hold slip dialog for auto-filled holds. > - > - pref: BlockReturnOfWithdrawnItems > choices: >- yes: Block >- no: "Don't block" >+ 1: Block >+ 0: "Don't block" > - returning of items that have been withdrawn. > - > - pref: BlockReturnOfLostItems > choices: >- yes: Block >- no: "Don't block" >+ 1: Block >+ 0: "Don't block" > - returning of items that have been lost. > - > - pref: CalculateFinesOnReturn > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - calculate and update overdue charges when an item is returned. > - "<br /><strong>NOTE:</strong> If you are doing hourly loans then you should have this on." > - '<br /><strong>NOTE:</strong> This system preference requires <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=FinesMode">FinesMode</a> to be set to "Calculate and charge."' > - > - pref: CalculateFinesOnBackdate > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - calculate and update overdue charges when an item is returned with a backdated return date. > - > - pref: UpdateItemLocationOnCheckin >@@ -635,27 +635,27 @@ Circulation: > - > - pref: CumulativeRestrictionPeriods > choices: >- yes: Cumulate >- no: "Don't cumulate" >+ 1: Cumulate >+ 0: "Don't cumulate" > - the restriction periods. > - > - pref: HidePersonalPatronDetailOnCirculation > choices: >- yes: "Hide" >- no: "Don't hide" >+ 1: "Hide" >+ 0: "Don't hide" > - "a patron's phone number, email address, street address and city on the circulation page." > - > - pref: TransfersBlockCirc > choices: >- yes: "Block" >- no: "Don't block" >+ 1: "Block" >+ 0: "Don't block" > - staff from continuing to checkin items when a transfer is triggered. > - > - pref: StoreLastBorrower > default: 0 > choices: >- yes: Store >- no: "Don't store" >+ 1: Store >+ 0: "Don't store" > - 'the last patron to return an item. This setting is independent of the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=opacreadinghistory">opacreadinghistory</a> and <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AnonymousPatron">AnonymousPatron</a> system preferences.' > Holds policy: > - >@@ -677,38 +677,38 @@ Circulation: > - > - pref: AllowHoldItemTypeSelection > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - hold fulfillment to be limited by item type. > - > - pref: AllowRenewalIfOtherItemsAvailable > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - a patron to renew an item with unfilled holds if other available items can fill that hold. > - > - pref: AllowHoldPolicyOverride > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to override hold policies when placing holds. > - > - pref: AllowHoldsOnDamagedItems > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - hold requests to be placed on and filled by damaged items. > - > - pref: AllowHoldDateInFuture > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - hold requests to be placed that do not enter the waiting list until a certain future date. > - > - pref: OPACAllowHoldDateInFuture > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to place holds that don't enter the waiting list until a certain future date. (<a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AllowHoldDateInFuture">AllowHoldDateInFuture</a> must also be enabled). > - > - Confirm future hold requests (starting no later than >@@ -730,8 +730,8 @@ Circulation: > - > - pref: ExpireReservesMaxPickUpDelay > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - 'holds to expire automatically if they have not been picked by within the time period specified in the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ReservesMaxPickUpDelay">ReservesMaxPickUpDelay</a> system preference.<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/holds/cancel_expired_holds.pl</code> cronjob. Ask your system administrator to schedule it.' > - > - If using <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=ExpireReservesMaxPickUpDelay">ExpireReservesMaxPickUpDelay</a>, charge a patron who allows their waiting hold to expire a fee of >@@ -746,31 +746,31 @@ Circulation: > - when they are > - pref: HoldsQueueSkipClosed > choices: >- yes: open >- no: open or closed >+ 1: open >+ 0: open or closed > - pref: RandomizeHoldsQueueWeight > choices: >- yes: in random order. >- no: in that order. >+ 1: in random order. >+ 0: in that order. > - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/holds/build_holds_queue.pl</code> cronjob. Ask your system administrator to schedule it." > - > - > - pref: canreservefromotherbranches > choices: >- yes: Allow >- no: "Don't allow (with independentbranches)" >+ 1: Allow >+ 0: "Don't allow (with independentbranches)" > - a user from one library to place a hold on an item from another library > - > - pref: OPACAllowUserToChooseBranch > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - a user to choose the library to pick up a hold from. > - > - pref: ReservesNeedReturns > choices: >- yes: "Don't automatically" >- no: Automatically >+ 1: "Don't automatically" >+ 0: Automatically > - mark a hold as found and waiting when a hold is placed on a specific item and that item is already checked in. > - > - Patrons can only have >@@ -780,57 +780,57 @@ Circulation: > - > - pref: emailLibrarianWhenHoldIsPlaced > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - "sending an email to the Koha administrator email address whenever a hold request is placed." > - > - pref: DisplayMultiPlaceHold > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - "the ability to place holds on multiple bibliographic records from the search results" > - > - pref: TransferWhenCancelAllWaitingHolds > choices: >- yes: Transfer >- no: "Don't transfer" >+ 1: Transfer >+ 0: "Don't transfer" > - items when cancelling all waiting holds. > - > - pref: AutoResumeSuspendedHolds > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "suspended holds to be automatically resumed by a set date." > - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/holds/auto_unsuspend_holds.pl</code> cronjob. Ask your system administrator to schedule it." > - > - pref: SuspendHoldsIntranet > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - holds to be suspended from the staff interface. > - > - pref: SuspendHoldsOpac > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - holds to be suspended from the OPAC. > - > - pref: ExpireReservesOnHolidays > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - expired holds to be canceled on days the library is closed. > - > - pref: ExcludeHolidaysFromMaxPickUpDelay > choices: >- yes: Use the calendar >- no: Ignore the calendar >+ 1: Use the calendar >+ 0: Ignore the calendar > - when calculating the period for a hold's max pickup delay. > - > - pref: decreaseLoanHighHolds > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - the reduction of loan period to > - pref: decreaseLoanHighHoldsDuration > class: integer >@@ -853,14 +853,14 @@ Circulation: > - > - pref: AllowHoldsOnPatronsPossessions > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - a patron to place a hold on a record where the patron already has one or more items attached to that record checked out. > - > - pref: LocalHoldsPriority > choices: >- yes: Give >- no: "Don't give" >+ 1: Give >+ 0: "Don't give" > - priority for filling holds to patrons whose > - pref: LocalHoldsPriorityPatronControl > choices: >@@ -874,8 +874,8 @@ Circulation: > - > - pref: OPACHoldsIfAvailableAtPickup > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - to pickup holds at libraries where the item is available. > - > - 'Patron categories not affected by <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACHoldsIfAvailableAtPickup">OPACHoldsIfAvailableAtPickup</a>:' >@@ -899,8 +899,8 @@ Circulation: > - pref: ILLModule > default: 0 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - the interlibrary loans module (master switch). > - > - "Adding text will enable the copyright clearance stage in request creation. The text you enter will be the text displayed." >@@ -916,22 +916,22 @@ Circulation: > - pref: ILLModuleUnmediated > default: 0 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - unmediated interlibrary loan requests. If enabled and the ILL backend supports it, the newly created requests are immediately requested by backend. > - > - pref: CirculateILL > default: 0 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - the circulation of ILL requested items. > - > - pref: ILLCheckAvailability > default: 0 > choices: >- yes: Check >- no: "Don't check" >+ 1: Check >+ 0: "Don't check" > - external sources for availability during the request process. > - > - "ILL statuses that are considered finished and should not be displayed in the ILL module: " >@@ -979,14 +979,14 @@ Circulation: > - > - pref: FinesIncludeGracePeriod > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - the grace period when calculating the fine for an overdue item. > - > - pref: WhenLostForgiveFine > choices: >- yes: Forgive >- no: "Don't forgive" >+ 1: Forgive >+ 0: "Don't forgive" > - the fines on an item when it is marked as lost. > - > - "Don't refund lost fees if a lost item is checked in more than" >@@ -996,8 +996,8 @@ Circulation: > - > - pref: WhenLostChargeReplacementFee > choices: >- yes: Charge >- no: "Don't charge" >+ 1: Charge >+ 0: "Don't charge" > - the replacement price when a patron loses an item. > - > - Charge a hold fee >@@ -1009,8 +1009,8 @@ Circulation: > - > - pref: useDefaultReplacementCost > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - the default replacement cost defined for the item type. > - > - "Text to be recorded in the column 'note', table 'accountlines' when the processing fee (defined for the item type) is applied:" >@@ -1027,8 +1027,8 @@ Circulation: > - > - pref: SelfCheckInModule > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - "the standalone self check-in module (available at: /cgi-bin/koha/sci/sci-main.pl)." > - > - "Reset the current self check-in screen after" >@@ -1069,21 +1069,21 @@ Circulation: > - > - pref: ShowPatronImageInWebBasedSelfCheck > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "the patron's picture (if one has been added) when they use the web-based self checkout." > - > - pref: WebBasedSelfCheck > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - "the web-based self checkout system (available at: /cgi-bin/koha/sco/sco-main.pl)." > - > - Have patrons log into the web-based self checkout system with their > - pref: SelfCheckoutByLogin > choices: >- yes: username and password >- no: cardnumber >+ 1: username and password >+ 0: cardnumber > - "." > - > - "Time out the current patron's web-based self checkout system login after" >@@ -1093,8 +1093,8 @@ Circulation: > - > - pref: SCOAllowCheckin > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to return items through web-based self checkout system. > - > - "Include the following HTML in the Help page of the web-based self checkout system:" >@@ -1105,8 +1105,8 @@ Circulation: > - > - pref: AutoSelfCheckAllowed > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "the web-based self checkout system to automatically log in with this staff login" > - pref: AutoSelfCheckID > - and this password >@@ -1117,8 +1117,8 @@ Circulation: > - > - pref: SelfCheckReceiptPrompt > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "the print receipt popup dialog when self checkout is finished." > - > - "Allow access to the self check from the following IP addresses:" >@@ -1129,15 +1129,15 @@ Circulation: > - > - pref: UseCourseReserves > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - "course reserves." > Batch checkout: > - > - pref: BatchCheckouts > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "batch checkouts." > - > - "Patron categories allowed to checkout in a batch:" >@@ -1147,22 +1147,22 @@ Circulation: > - > - pref: HouseboundModule > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "the housebound module." > Stock rotation module: > - > - pref: StockRotation > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "the stock rotation module." > Article requests: > - > - pref: ArticleRequests > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - patrons to place article requests. > - > - pref: ArticleRequestsLinkControl >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/enhanced_content.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/enhanced_content.pref >index 27309ca6e1..2e25114a35 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/enhanced_content.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/enhanced_content.pref >@@ -6,8 +6,8 @@ Enhanced content: > - pref: AdlibrisCoversEnabled > default: 0 > choices: >- no: "Don't show" >- yes: "Show" >+ 0: "Don't show" >+ 1: "Show" > - cover images in OPAC results and detail listing from Swedish retailer <a href="https://www.adlibris.com/se">Adlibris</a>. > - > - "Use base URL: " >@@ -22,15 +22,15 @@ Enhanced content: > - pref: FRBRizeEditions > default: 0 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - other editions of an item on the staff interface (if found by one of the services below). > - > - pref: OPACFRBRizeEditions > default: 0 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - other editions of an item on the OPAC. > Amazon: > - >@@ -53,22 +53,22 @@ Enhanced content: > - pref: AmazonCoverImages > default: 1 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - cover images from Amazon on search results and item detail pages on the staff interface. > - > - pref: OPACAmazonCoverImages > default: 1 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - cover images from Amazon on search results and item detail pages on the OPAC. > Babelthèque: > - > - pref: Babeltheque > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - include information (such as reviews and citations) from Babelthèque in item detail pages on the OPAC. > - > - "Use this URL for the Babelthèque javascript file: " >@@ -84,8 +84,8 @@ Enhanced content: > - > - pref: BakerTaylorEnabled > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - Baker and Taylor links and cover images to the OPAC and staff interface. This requires that you have entered in a username and password (which can be seen in image links). > - > - 'Baker and Taylor "My Library Bookstore" links should be accessed at <code>https://' >@@ -104,8 +104,8 @@ Enhanced content: > - > - pref: NovelistSelectEnabled > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - Novelist Select content to the OPAC (requires that you have entered in a user profile and password, which can be seen in image links). > - > - Display Novelist Select content >@@ -132,8 +132,8 @@ Enhanced content: > - > - pref: NovelistSelectStaffEnabled > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - Novelist Select content to the staff interface (requires that you have entered in a user profile and password, which can be seen in image links). > - > - Display Novelist Select staff interface content >@@ -147,35 +147,35 @@ Enhanced content: > - > - pref: GoogleJackets > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - cover images from Google Books to search results and item detail pages on the OPAC. > Open Library: > - > - pref: OpenLibraryCovers > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - cover images from Open Library to search results and item detail pages on the OPAC. > - > - pref: OpenLibrarySearch > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - search results from Open Library on the OPAC. > Library Thing: > # Awkward syntax below, due to quoting conflicts > - > - pref: ThingISBN > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - the ThingISBN service to show other editions of a title (when either <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=FRBRizeEditions">FRBRizeEditions</a> or <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACFRBRizeEditions">OPACFRBRizeEditions</a> is on). This is separate from Library Thing for Libraries. > - > - pref: LibraryThingForLibrariesEnabled > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "reviews, similar items, and tags from Library Thing for Libraries on item detail pages on the OPAC. If you've enabled this, you need to " > - <a href="https://www.librarything.com/forlibraries/">sign up</a>, then enter in your ID below. > - >@@ -186,14 +186,14 @@ Enhanced content: > - Show Library Thing for Libraries content > - pref: LibraryThingForLibrariesTabbedView > choices: >- yes: in tabs. >- no: in line with the bibliographic information. >+ 1: in tabs. >+ 0: in line with the bibliographic information. > Syndetics: > - > - pref: SyndeticsEnabled > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - content from Syndetics. Note that this requires that you have signed up for the service and entered in your client code below. > - > - Use the client code >@@ -202,8 +202,8 @@ Enhanced content: > - > - pref: SyndeticsCoverImages > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - cover images from Syndetics on search results and item detail pages on the OPAC in a > - pref: SyndeticsCoverImageSize > choices: >@@ -213,63 +213,63 @@ Enhanced content: > - > - pref: SyndeticsAuthorNotes > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - notes about the author of a title from Syndetics on item detail pages on the OPAC. > - > - pref: SyndeticsAwards > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - information from Syndetics about the awards a title has won on item detail pages on the OPAC. > - > - pref: SyndeticsEditions > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - information about other editions of a title from Syndetics on item detail pages on the OPAC (when <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACFRBRizeEditions">OPACFRBRizeEditions</a> is on). > - > - pref: SyndeticsExcerpt > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - excerpts from of a title from Syndetics on item detail pages on the OPAC. > - > - pref: SyndeticsReviews > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - reviews of a title from Syndetics on item detail pages on the OPAC. > - > - pref: SyndeticsSeries > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "information on other books in a title's series from Syndetics on item detail pages on the OPAC." > - > - pref: SyndeticsSummary > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - a summary of a title from Syndetics on item detail pages on the OPAC. > - > - pref: SyndeticsTOC > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - the table of contents of a title from Syndetics on item detail pages on the OPAC. > Tagging: > - > - pref: TagsEnabled > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons and staff to put tags on items. > - > - pref: TagsModeration > choices: >- yes: Require >- no: "Don't require" >+ 1: Require >+ 0: "Don't require" > - that tags submitted by patrons be reviewed by a staff member before being shown. > - > - Show >@@ -279,8 +279,8 @@ Enhanced content: > - > - pref: TagsInputOnList > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to input tags on search results on the OPAC. > - > - Show >@@ -290,8 +290,8 @@ Enhanced content: > - > - pref: TagsInputOnDetail > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to input tags on item detail pages on the OPAC. > - > - Allow tags in the dictionary of the ispell executable >@@ -302,31 +302,31 @@ Enhanced content: > - > - pref: LocalCoverImages > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - local cover images on staff interface search and details pages. > - > - pref: OPACLocalCoverImages > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - local cover images on OPAC search and details pages. > - > - pref: AllowMultipleCovers > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - multiple images to be attached to each bibliographic record and item. > - > - pref: CustomCoverImages > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - "custom remote URL images in the staff interface.<br/>" > - pref: OPACCustomCoverImages > choices: >- yes: Display >- no: "Don't display" >+ 1: Display >+ 0: "Don't display" > - "custom remote URL images at the OPAC.<br/>" > - "Using the following URL:" > - pref: CustomCoverImagesURL >@@ -350,8 +350,8 @@ Enhanced content: > - > - pref: HTML5MediaYouTube > choices: >- yes: "Embed" >- no: "Don't embed" >+ 1: "Embed" >+ 0: "Don't embed" > - YouTube links as videos. > OverDrive: > - >@@ -375,8 +375,8 @@ Enhanced content: > - > - pref: OverDriveCirculation > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - users to access their OverDrive circulation history, and circulate items.<br /> > - Overdrive uses the patron's > - pref: OverDriveUsername >@@ -387,8 +387,8 @@ Enhanced content: > - A password is > - pref: OverDrivePasswordRequired > choices: >- yes: Required >- no: Not required >+ 1: Required >+ 0: Not required > - for user access to OverDrive. <br /> > - If you enable access you must have a SIP connection registered with > - OverDrive for patron authentication against Koha >@@ -408,14 +408,14 @@ Enhanced content: > - > - pref: OpacCoce > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - a Coce image cache service in the OPAC. > - > - pref: IntranetCoce > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - a Coce image cache service in the staff interface. > - > - Coce server URL >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/i18n_l10n.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/i18n_l10n.pref >index 08bf31333c..9a34a176cc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/i18n_l10n.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/i18n_l10n.pref >@@ -39,8 +39,8 @@ I18N/L10N: > - pref: opaclanguagesdisplay > default: 0 > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to change the language they see on the OPAC. > - > - "Enable the following languages on the OPAC:" >@@ -65,7 +65,7 @@ I18N/L10N: > - > - pref: TranslateNotices > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - notices to be translated. > - If set, notices will be translatable from the "Notices and slips" interface. The language used to send a notice to a patron will be the one defined for the patron. >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >index 25db7ab70d..df88ce6a31 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref >@@ -3,8 +3,8 @@ OPAC: > - > - pref: OPACUserSummary > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "a summary of a logged in patron's checkouts, overdues, holds and charges on the OPAC start page." > - > - For search results in the OPAC, show the item's >@@ -38,15 +38,15 @@ OPAC: > - > - pref: OpacPublic > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "Koha OPAC as public. Private OPAC requires authentication before accessing the OPAC. " > - 'Note: This does not affect the public API, see the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=RESTPublicAnonymousRequests">RESTPublicAnonymousRequests</a> to control the API.' > - > - pref: HighlightOwnItemsOnOPAC > choices: >- yes: Emphasize >- no: "Don't emphasize" >+ 1: Emphasize >+ 0: "Don't emphasize" > - "results from the " > - pref: HighlightOwnItemsOnOPACWhich > choices: >@@ -64,8 +64,8 @@ OPAC: > - > - pref: OpacMaintenance > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "a warning that the OPAC is under maintenance, instead of the OPAC itself. Note: this shows the same warning as when the database needs to be upgraded, but unconditionally." > - > - 'Show the following HTML when <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpacMaintenance">OpacMaintenance</a> is enabled:' >@@ -88,14 +88,14 @@ OPAC: > - When patrons click on a link to another website from your OPAC (like Amazon or OCLC), > - pref: OPACURLOpenInNewWindow > choices: >- yes: do >- no: "don't" >+ 1: do >+ 0: "don't" > - open the website in a new window. > - > - pref: hidelostitems > choices: >- yes: "Don't show" >- no: Show >+ 1: "Don't show" >+ 0: Show > - lost items on search and detail pages. > - > - 'Display lists in the OPAC using XSLT stylesheet at: ' >@@ -117,27 +117,27 @@ OPAC: > - pref: OpacNoItemTypeImages > default: 0 > choices: >- yes: "No" >- no: "Yes" >+ 1: "No" >+ 0: "Yes" > - > - pref: DisplayOPACiconsXSLT > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - the format, audience, and material type icons and descriptions in XSLT MARC21 results and detail pages in the OPAC. > - > - pref: COinSinOPACResults > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - "COinS / OpenURL / Z39.88 in OPAC search results. <br/>Warning: Enabling this feature will slow OPAC search response times." > - "<br/>If you want to display a link to an OpenURL resolver, look at the following system preferences:" > - '<br/><a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpenURLResolverURL">OpenURLResolverURL</a>, <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACShowOpenURL">OPACShowOpenURL</a>, <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACOpenURLItemTypes">OPACOpenURLItemTypes</a>, <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpenURLText">OpenURLText</a>, <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OpenURLImageLocation">OpenURLImageLocation</a>' > - > - pref: OPACShowUnusedAuthorities > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - unused authorities in the OPAC authority browser. > - > - pref: OPACShowHoldQueueDetails >@@ -151,8 +151,8 @@ OPAC: > - pref: OPACShowCheckoutName > default: 0 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - the name of the patron that has an item checked out on item detail pages on the OPAC. > - > - Display the >@@ -176,35 +176,35 @@ OPAC: > - pref: OPACShowMusicalInscripts > default: 0 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - musical inscripts on the OPAC record details page. > - > - pref: OPACPlayMusicalInscripts > default: 0,'','If displayed musical inscripts, play midi conversion for items on the OPAC record details page.' > choices: >- yes: Play >- no: "Don't play" >+ 1: Play >+ 0: "Don't play" > - MIDI representation of musical inscripts on the OPAC record details page. > - > - pref: OpacKohaUrl > default: 0 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "'Powered by Koha' text on OPAC footer." > - > - pref: OpacShowRecentComments > default: 0 > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - a link to recent comments in the OPAC masthead. > - > - pref: OpacHighlightedWords > choices: >- yes: Highlight >- no: "Don't highlight" >+ 1: Highlight >+ 0: "Don't highlight" > - "words the patron searched for in their search results and detail pages. To prevent certain words from ever being highlighted, enter a list of stopwords here:" > - pref: NotHighlightedWords > class: multi >@@ -281,8 +281,8 @@ OPAC: > - > - pref: OpacAddMastheadLibraryPulldown > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - a library select pulldown menu on the OPAC masthead. > - > - 'Display this HTML when no results are found for a search in the OPAC:' >@@ -316,8 +316,8 @@ OPAC: > - > - pref: OpacSeparateHoldings > choices: >- yes: Separate >- no: Don't separate >+ 1: Separate >+ 0: Don't separate > - "items display into two tabs, where the first tab contains items whose" > - pref: OpacSeparateHoldingsBranch > choices: >@@ -334,8 +334,8 @@ OPAC: > - > - pref: OpacSuggestionManagedBy > choices: >- yes: Show >- no: Don't show >+ 1: Show >+ 0: Don't show > - "the name of the staff member who managed a suggestion in OPAC." > - > - Display up to >@@ -354,16 +354,16 @@ OPAC: > - > - pref: OPACReportProblem > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to submit problem reports for OPAC pages to the library or Koha administrator. > - "<br/>" > - '<strong>NOTE:</strong> You must have <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=KohaAdminEmailAddress">KohaAdminEmailAddress</a> enabled.' > - > - pref: opacuserlogin > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to log in to their accounts on the OPAC. > - > - Show >@@ -377,78 +377,78 @@ OPAC: > - > - pref: OpacPasswordChange > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to change their own password on the OPAC. Note that this must be off to use LDAP authentication. > - > - "Library patrons are " > - pref: OpacResetPassword > default: 1 > choices: >- yes: "allowed" >- no: "not allowed" >+ 1: "allowed" >+ 0: "not allowed" > - " to recover their password via e-mail in the OPAC." > - > - pref: OPACpatronimages > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - patron images on the patron information page in the OPAC. > - > - pref: OPACDetailQRCode > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - the option to show a QR Code on the OPAC bibliographic detail page. > - > - pref: OPACFinesTab > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to access the charges tab on their account page on the OPAC. > - > - pref: OpacBrowser > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "patrons to browse subject authorities on the OPAC." > - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/build_browser_and_cloud.pl</code> cronjob. Ask your system administrator to schedule it." > - > - pref: OpacCloud > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "a subject cloud on the OPAC." > - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/build_browser_and_cloud.pl</code> cronjob. Ask your system administrator to schedule it." > - > - pref: OpacAuthorities > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to search your authority records. > - > - pref: opacbookbag > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to store items in a temporary "Cart" on the OPAC. > - > - pref: OpacTopissue > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to access a list of the most checked out items on the OPAC. Note that this is somewhat experimental, and should be avoided if your collection has a large number of items. > - > - pref: suggestion > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to make purchase suggestions on the OPAC. > - > - pref: OPACComments > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to make comments on items on the OPAC. > - > - Show >@@ -464,14 +464,14 @@ OPAC: > - > - pref: ShowReviewerPhoto > choices: >- yes: Show >- no: Hide >+ 1: Show >+ 0: Hide > - reviewer's avatar beside comments in OPAC. The avatar will be searched on <a href="https://www.libravatar.org" target="_blank">Libravatar</a> using the patron's e-mail address. > - > - pref: RequestOnOpac > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to place holds on items from the OPAC. > - > - Display >@@ -492,8 +492,8 @@ OPAC: > - pref: OpacBrowseResults > default: 1 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - browsing and paging search results from the OPAC detail page. > - > - Show quote of the day in the >@@ -506,29 +506,29 @@ OPAC: > - pref: OPACPopupAuthorsSearch > default: 0 > choices: >- yes: Display >- no: Don't display >+ 1: Display >+ 0: Don't display > - the list of authors/subjects in a popup for a combined search on OPAC detail pages. > - > - pref: OpacHoldNotes > default: 0 > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to add a note when placing a hold. > - > - pref: OPACAcquisitionDetails > default: 0 > choices: >- yes: Display >- no: Don't display >+ 1: Display >+ 0: Don't display > - the acquisition details on OPAC detail pages. > - > - pref: OpacNewsLibrarySelect > default: 0 > choices: >- yes: Display >- no: Don't display >+ 1: Display >+ 0: Don't display > - a library selection list for news items in the OPAC. > - > - "Use the following as the OPAC ISBD template:" >@@ -540,8 +540,8 @@ OPAC: > - pref: OpacBrowseSearch > default: 0 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "interface for browsing all holdings (Elasticsearch only)." > OpenURL: > - >@@ -563,8 +563,8 @@ OPAC: > - > - pref: OPACShowOpenURL > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - 'display of OpenURL link in OPAC search results and detail page.' > - > - 'List of item type codes (separated by spaces) for those you want to show the OpenURL link:' >@@ -574,14 +574,14 @@ OPAC: > - > - pref: SearchMyLibraryFirst > choices: >- yes: Limit >- no: "Don't limit" >+ 1: Limit >+ 0: "Don't limit" > - "patrons' searches to the library they are registered at." > - > - pref: OpacRenewalAllowed > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to renew their own books on the OPAC. > - > - Use >@@ -601,14 +601,14 @@ OPAC: > - > - pref: OPACFineNoRenewalsIncludeCredits > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - outstanding/unapplied credits when applying the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACFineNoRenewals">OPACFineNoRenewals</a> rule to patrons. > - > - pref: OPACViewOthersSuggestions > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - purchase suggestions from other patrons on the OPAC. > - > - "Fields that should be mandatory for patron purchase suggestions:" >@@ -655,21 +655,21 @@ OPAC: > - pref: OpacAllowPublicListCreation > default: 1 > choices: >- no: "Don't allow" >- yes: Allow >+ 0: "Don't allow" >+ 1: Allow > - "OPAC users to create public lists." > - > - pref: OpacAllowSharingPrivateLists > default: 0 > choices: >- no: "Don't allow" >- yes: Allow >+ 0: "Don't allow" >+ 1: Allow > - "OPAC users to share private lists with other patrons." > - > - pref: BlockExpiredPatronOpacActions > choices: >- yes: "Block" >- no: "Don't block" >+ 1: "Block" >+ 0: "Don't block" > - expired patrons from OPAC actions such as placing a hold or renewing. Note that the setting for a patron category takes priority over this system preference. > - > - Limit patrons to >@@ -688,48 +688,48 @@ OPAC: > - > - pref: AnonSuggestions > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - 'patrons that aren''t logged in to make purchase suggestions. Suggestions are connected to the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AnonymousPatron">AnonymousPatron</a> system preference.' > - > - pref: opacreadinghistory > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to see what books they have checked out in the past. > - > - pref: OPACHoldsHistory > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to see the list of their past holds. > - > - pref: EnableOpacSearchHistory > default: 0 > choices: >- yes: Keep >- no: "Don't keep" >+ 1: Keep >+ 0: "Don't keep" > - patron search history in the OPAC. > - > - pref: OPACPrivacy > default: 0 > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - 'patrons to choose their own privacy settings for their checkout history. This requires <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=opacreadinghistory">opacreadinghistory</a> and <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=AnonymousPatron">AnonymousPatron</a> system preferences.' > - > - pref: AllowPatronToSetCheckoutsVisibilityForGuarantor > default: 0 > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "patrons to choose their own privacy settings for showing the patron's checkouts to the patron's guarantor." > - > - pref: AllowPatronToSetFinesVisibilityForGuarantor > default: 0 > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "patrons to choose their own privacy settings for showing the patron's fines to the patron's guarantor." > - > - Use borrowernumber >@@ -742,7 +742,7 @@ OPAC: > choices: > anonymous: "Track anonymously" > track: "Track" >- no: "Don't track" >+ 0: "Don't track" > - "links that patrons click on." > Restricted page: > - >@@ -764,44 +764,44 @@ OPAC: > - > - pref: OPACShelfBrowser > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "a shelf browser on item details pages, allowing patrons to see what's near that item on the shelf. Note that this uses up a fairly large amount of resources on your server, and should be avoided if your collection has a large number of items." > - > - pref: ShelfBrowserUsesLocation > default: 1 > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - "the item location when finding items for the shelf browser." > - > - pref: ShelfBrowserUsesHomeBranch > default: 1 > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - "the item home library when finding items for the shelf browser." > - > - pref: ShelfBrowserUsesCcode > default: 0 > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - "the item collection code when finding items for the shelf browser." > > Self registration and modification: > - > - pref: PatronSelfRegistration > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "library patrons to register for an account via the OPAC." > - "<br><strong>NOTE:</strong> This needs <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=PatronSelfRegistrationDefaultCategory'>PatronSelfRegistrationDefaultCategory</a> to be set to a valid patron category code." > - > - pref: PatronSelfRegistrationVerifyByEmail > choices: >- yes: Require >- no: "Don't require" >+ 1: Require >+ 0: "Don't require" > - "that a self-registering patron verify themselves via email." > - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/cleanup_database.pl</code> cronjob. Ask your system administrator to schedule it." > - >@@ -841,8 +841,8 @@ OPAC: > - > - pref: PatronSelfRegistrationEmailMustBeUnique > choices: >- yes: "Consider" >- no: "Don't consider" >+ 1: "Consider" >+ 0: "Don't consider" > - "patron's email (borrowers.email) as unique on self registering. An email won't be accepted if it already exists in the database." > - > - "Enable the self registration for the following libraries:" >@@ -852,20 +852,20 @@ OPAC: > - > - pref: PatronSelfRegistrationPrefillForm > choices: >- yes: "Display and prefill" >- no: "Don't display and prefill" >+ 1: "Display and prefill" >+ 0: "Don't display and prefill" > - "password and login form after a patron has self registered." > - > - pref: PatronSelfRegistrationConfirmEmail > choices: >- yes: Require >- no: "Don't require" >+ 1: Require >+ 0: "Don't require" > - patrons to confirm their email address by entering it twice. > - > - pref: OPACPatronDetails > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - patrons to notify the library of changes to their contact information from the OPAC. > > Advanced search options: >@@ -894,14 +894,14 @@ OPAC: > - pref: EnablePayPalOpacPayments > default: 1 > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "patrons to make payments from the OPAC via PayPal in" > - pref: PayPalSandboxMode > default: 1 > choices: >- yes: "sandbox" >- no: "production" >+ 1: "sandbox" >+ 0: "production" > - "mode." > - "<br/><strong>Warning</strong>: this functionality has been deprecated in favor of using payment plugins that can implement different payment services." > - >@@ -936,6 +936,6 @@ OPAC: > - > - pref: OPACShibOnly > choices: >- yes: "Don't allow" >- no: Allow >+ 1: "Don't allow" >+ 0: Allow > - patrons to login by means other than Shibboleth. >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref >index dab7dd74d8..0792cba7c7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref >@@ -18,14 +18,14 @@ Patrons: > - > - pref: ExtendedPatronAttributes > choices: >- yes: Enable >- no: "Don't enable" >+ 1: Enable >+ 0: "Don't enable" > - searching, editing and display of custom attributes on patrons. > - > - pref: intranetreadinghistory > choices: >- yes: "Allow" >- no: "Don't allow" >+ 1: "Allow" >+ 0: "Don't allow" > - "staff to access a patron's checkout and hold history (checkout history is still stored, regardless of staff being allowed access or not)." > - > - The late fine for all checkouts will only go up to >@@ -36,8 +36,8 @@ Patrons: > - > - pref: patronimages > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - images to be uploaded and shown for patrons on the staff interface. > - > - By default, show >@@ -58,47 +58,47 @@ Patrons: > - > - pref: EnableBorrowerFiles > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - enable the ability to upload and attach arbitrary files to a borrower record. > - > - pref: useDischarge > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - librarians to discharge borrowers and borrowers to request a discharge. > - > - pref: FeeOnChangePatronCategory > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - charge a fee when a patron changes to a category with an enrollment fee. > - > - pref: TrackLastPatronActivity > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - track last patron activity. > - Every time a patron will connect, the borrowers.lastseen will be updated with the current time. > - > - pref: AutoApprovePatronProfileSettings > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "automatic approval of patron detail changes from the OPAC." > - Requires <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OPACPatronDetails">OPACPatronDetails</a> to be activated. > - > - pref: ProtectSuperlibrarianPrivileges > choices: >- yes: Allow only superlibrarians >- no: Allow all permitted users >+ 1: Allow only superlibrarians >+ 0: Allow all permitted users > - "to access/change superlibrarian privileges." > - "<br><strong>NOTE:</strong> A permitted user needs to have the 'permissions' flag (if no superlibrarian)." > - > - pref: AllowPatronToControlAutorenewal > choices: >- yes: Allow patrons >- no: Allow only staff >+ 1: Allow patrons >+ 0: Allow only staff > - "to allow/disallow auto-renewal for account. If allowed a patron will be able to update their own account to allow/disallow auto-renewal." > Membership expiry: > - >@@ -123,29 +123,29 @@ Patrons: > - > - pref: EnhancedMessagingPreferences > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - "staff to manage which notices patrons will receive and when they will receive them." > - '<br><strong>NOTE:</strong> This only applies to courtesy notices. To manage if patrons have also access to these settings, use <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=EnhancedMessagingPreferencesOPAC">EnhancedMessagingPreferencesOPAC</a>.' > - "<br><strong>NOTE:</strong> This system preference requires the <code>misc/cronjobs/process_message_queue.pl</code> and the <code>misc/cronjobs/advance_notices.pl</code> cronjob. Ask your system administrator to schedule them." > - > - pref: EnhancedMessagingPreferencesOPAC > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "patron messaging setting on the OPAC." > - '<br><strong>NOTE:</strong> <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=EnhancedMessagingPreferences">EnhancedMessagingPreferences</a> must be enabled.' > - > - pref: AutoEmailOpacUser > choices: >- yes: Send >- no: "Don't send" >+ 1: Send >+ 0: "Don't send" > - an email to newly created patrons with their account details. > - > - pref: UseEmailReceipts > choices: >- yes: Send >- no: "Don't send" >+ 1: Send >+ 0: "Don't send" > - email receipts to patrons for payments and writeoffs. > - > - "Use" >@@ -161,15 +161,15 @@ Patrons: > - > - pref: TalkingTechItivaPhoneNotification > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - patron phone notifications using Talking Tech i-tiva (overdues, predues and holds notices currently supported). > - <br/><i class="fa fa-exclamation-triangle"></i> If <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=TalkingTechItivaPhoneNotification">TalkingTechItivaPhoneNotification</a> is enabled, <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=PhoneNotification">PhoneNotification</a> should be disabled. > - > - pref: PhoneNotification > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - patron phone notifications generation. A plugin will be required to process the phone notifications. > - <br/><i class="fa fa-exclamation-triangle"></i> If <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=PhoneNotification">PhoneNotification</a> is enabled, <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=TalkingTechItivaPhoneNotification">TalkingTechItivaPhoneNotification</a> should be disabled. > - >@@ -188,8 +188,8 @@ Patrons: > - > - pref: FallbackToSMSIfNoEmail > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - sending purchase suggestion messages by SMS if no patron email is defined. > Patron forms: > - >@@ -212,8 +212,8 @@ Patrons: > - > - pref: autoMemberNum > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - default the card number field on the patron addition screen to the next available card number (for example, if the largest currently used card number is 26345000012941, then this field will default to 26345000012942). > - '<strong>NOTE:</strong> If <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=autoMemberNum">autoMemberNum</a> is enabled, the system preference <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=BorrowerMandatoryField">BorrowerMandatoryField</a> must not contain the field <code>cardnumber</code>.' > - >@@ -224,8 +224,8 @@ Patrons: > - > - pref: uppercasesurnames > choices: >- yes: Do >- no: "Don't" >+ 1: Do >+ 0: "Don't" > - store and display surnames in upper case. > - > - "The following <a href='http://schema.koha-community.org/__VERSION__/tables/borrowers.html' target='blank'>database columns</a>:" >@@ -302,14 +302,14 @@ Patrons: > - > - pref: AllowStaffToSetCheckoutsVisibilityForGuarantor > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to set the ability for a patron's checkouts to be viewed by linked patrons in the OPAC. > - > - pref: AllowStaffToSetFinesVisibilityForGuarantor > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to set the ability for a patron's fines to be viewed by linked patrons in the OPAC. > Privacy: > - >@@ -343,8 +343,8 @@ Patrons: > - > - pref: RequireStrongPassword > choices: >- yes: "Require" >- no: "Don't require" >+ 1: "Require" >+ 0: "Don't require" > - a strong password for staff and patrons > - (must contain at least one digit, one lowercase and one uppercase). > - >@@ -355,8 +355,8 @@ Patrons: > - > - pref: Pseudonymization > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "pseudonymization to comply with GDPR for personal information." > - "Patrons and transactions will be copied to a separate table for statistics purpose." > - "<br/>Use the following fields for patrons:" >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref >index 013301d55d..04a77f8085 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref >@@ -5,29 +5,29 @@ Searching: > - pref: QueryAutoTruncate > type: boolean > choices: >- yes: automatically. >- no: only if * is added. >+ 1: automatically. >+ 0: only if * is added. > - "<br />(The * character would be used like so: <cite>Har*</cite> or <cite>*logging</cite>.)" > - > - pref: QueryFuzzy > type: boolean > choices: >- yes: Try >- no: "Don't try" >+ 1: Try >+ 0: "Don't try" > - to match similarly spelled words in a search (for example, a search for <cite>flang</cite> would also match <cite>flange</cite> and <cite>fang</cite>; Currently only affects Zebra searches. Any Elasticsearch term can be made fuzzy by adding a ~ directly after the term.). > - > - pref: QueryStemming > type: boolean > choices: >- yes: Try >- no: "Don't try" >+ 1: Try >+ 0: "Don't try" > - to match words of the same base in a search (for example, a search for <cite>enabling</cite> would also match <cite>enable</cite> and <cite>enabled</cite>; REQUIRES ZEBRA). > - > - pref: QueryWeightFields > type: boolean > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - ranking of search results by relevance (REQUIRES ZEBRA). > - > - pref: QueryRegexEscapeOptions >@@ -41,50 +41,50 @@ Searching: > - pref: TraceCompleteSubfields > default: 0 > choices: >- yes: Force >- no: "Don't force" >+ 1: Force >+ 0: "Don't force" > - subject tracings in the OPAC and staff interface to search only for complete-subfield matches. > - > - pref: TraceSubjectSubdivisions > default: 0 > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - subdivisions for searches generated by clicking on subject tracings. > - > - pref: UseICUStyleQuotes > default: 0 > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - 'ICU style quotes ({}) when tracing subjects. The default is to use standard quotes ("").' > - > - pref: IncludeSeeFromInSearches > default: 0 > choices: >- yes: Include >- no: "Don't include" >+ 1: Include >+ 0: "Don't include" > - "<em>see from</em> (non-preferred form) headings in bibliographic searches. Please note: you will need to reindex your bibliographic database when changing this preference." > - > - pref: EnableSearchHistory > default: 0 > choices: >- yes: Keep >- no: "Don't keep" >+ 1: Keep >+ 0: "Don't keep" > - patron search history in the staff interface. > - > - pref: BrowseResultSelection > default: 0 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "browsing search results from the bibliographic record detail page in staff interface." > - > - pref: ElasticsearchCrossFields > default: 0 > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "the cross_fields option for Elasticsearch searches, supported in Elasticsearch 6.X and above." > - "See documentation at https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-multi-match-query.html#type-cross-fields" > Search form: >@@ -92,7 +92,7 @@ Searching: > - pref : LoadSearchHistoryToTheFirstLoggedUser > default: 0 > choices: >- yes: "Add" >+ 1: "Add" > no : "Don't add" > - search history of the unlogged user to the next patron logging in. > - >@@ -112,24 +112,24 @@ Searching: > - pref: expandedSearchOption > type: boolean > choices: >- yes: show >- no: "don't show" >+ 1: show >+ 0: "don't show" > - '"More options" on the OPAC and staff interface advanced search pages.' > - > - By default, > - pref: OPACNumbersPreferPhrase > type: boolean > choices: >- yes: use >- no: "don't use" >+ 1: use >+ 0: "don't use" > - 'the operator "phr" in the callnumber and standard number OPAC searches.' > - > - By default, > - pref: IntranetNumbersPreferPhrase > type: boolean > choices: >- yes: use >- no: "don't use" >+ 1: use >+ 0: "don't use" > - 'the operator "phr" in the callnumber and standard number staff interface searches.' > Results display: > - >@@ -137,16 +137,16 @@ Searching: > type: boolean > default: no > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - results per page dropdown on staff interface search results. > - > - pref: OPACnumSearchResultsDropdown > type: boolean > default: no > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - results per page dropdown on OPAC search results. > - > - By default, sort search results in the staff interface by >@@ -172,8 +172,8 @@ Searching: > type: boolean > default: no > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - facet counts. The relevance of these numbers highly depends on the value of the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=maxRecordsForFacets">maxRecordsForFacets</a> preference. Applies to OPAC and staff interface. > - > - By default, show >@@ -241,8 +241,8 @@ Searching: > - pref: OPACItemsResultsDisplay > type: boolean > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - "an item's library, location and call number in OPAC search results." > - > - Truncate facets length to >@@ -257,14 +257,14 @@ Searching: > - When searching on the ISBN index, > - pref: SearchWithISBNVariations > choices: >- yes: "search" >- no: "don't search" >+ 1: "search" >+ 0: "don't search" > - on all variations of the ISBN. > - > - pref: BiblioItemtypeInfo > choices: >- yes: "Display" >- no: "Don't display" >+ 1: "Display" >+ 0: "Don't display" > - ' Koha record level itemtype info on detail and result pages in the OPAC and staff interface. This info also displays if the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=item-level_itypes">item-level_itypes</a> system preference is set to bibliographic record.' > Did you mean/spell checking: > - >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref >index 9cfa5ad6fa..f6e818827c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref >@@ -10,20 +10,20 @@ Serials: > - > - pref: RenewSerialAddsSuggestion > choices: >- yes: Add >- no: "Don't add" >+ 1: Add >+ 0: "Don't add" > - a suggestion for a bibliographic record when its attached serial is renewed. > - > - pref: RoutingSerials > choices: >- yes: Use >- no: "Don't use" >+ 1: Use >+ 0: "Don't use" > - the routing list feature in the serials module. > - > - pref: RoutingListAddReserves > choices: >- yes: Place >- no: "Don't place" >+ 1: Place >+ 0: "Don't place" > - received serials on hold if they are on a routing list. > - > - "Include the following note on all routing lists:" >@@ -53,12 +53,12 @@ Serials: > - > - pref: makePreviousSerialAvailable > choices: >- yes: Make >- no: Don't make >+ 1: Make >+ 0: Don't make > - previous serial automatically available when receiving a new serial issue. The previous issue can also be set to another item type when receiving a new one. Please note that the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=item-level_itypes">item-level_itypes</a> system preference must be set to specific item. > - > - pref: PreserveSerialNotes > choices: >- yes: Do >- no: Don't >+ 1: Do >+ 0: Don't > - prefill the notes from the last 'Arrived' serial when generating the next 'Expected' issue. >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref >index 12fc8cdfa5..a2b25e5168 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/staff_interface.pref >@@ -85,8 +85,8 @@ Staff interface: > - > - pref: DisplayIconsXSLT > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - the format, audience, and material type icons and descriptions in XSLT MARC21 results and detail pages in the staff interface. > - > - 'Display the URI in the 856u field as an image on: ' >@@ -124,67 +124,67 @@ Staff interface: > - > - pref: viewMARC > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to view records in plain MARC form on the staff interface. > - > - pref: viewLabeledMARC > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to view records in labeled MARC form on the staff interface. > - > - pref: viewISBD > choices: >- yes: Allow >- no: "Don't allow" >+ 1: Allow >+ 0: "Don't allow" > - staff to view records in ISBD form on the staff interface. > - > - pref: HidePatronName > choices: >- no: Show >- yes: "Don't show" >+ 0: Show >+ 1: "Don't show" > - the names of patrons that have items checked out or on hold on detail pages or the "Place Hold" screen. > - > - pref: showLastPatron > choices: >- no: "Don't show" >- yes: Show >+ 0: "Don't show" >+ 1: Show > - a link to the last searched patron in the staff interface. > - > - pref: intranetbookbag > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - the cart option in the staff interface. > - > - pref: StaffDetailItemSelection > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - item selection in record detail page. > - > - pref: UseWYSIWYGinSystemPreferences > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - WYSIWYG editor when editing certain HTML system preferences. > - > - pref: AudioAlerts > choices: >- yes: "Enable" >- no: "Don't enable" >+ 1: "Enable" >+ 0: "Don't enable" > - audio alerts for events defined in the <a href="/cgi-bin/koha/admin/audio_alerts.pl">audio alerts</a> section of administration. > - > - pref: IntranetCatalogSearchPulldown > choices: >- yes: Show >- no: "Don't show" >+ 1: Show >+ 0: "Don't show" > - a search field pulldown for 'Search the catalog' boxes. > Authentication: > - > - pref: staffShibOnly > choices: >- yes: "Don't allow" >- no: Allow >+ 1: "Don't allow" >+ 0: Allow > - staff to login by means other than shibboleth. >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref >index b9326baaa7..0a045bb180 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref >@@ -9,8 +9,8 @@ Web services: > - > - pref: RESTBasicAuth > choices: >- yes: Enable >- no: "Disable" >+ 1: Enable >+ 0: "Disable" > - '<a href="https://www.w3.org/Protocols/HTTP/1.0/spec.html#BasicAA" target="_blank">Basic authentication</a> for the REST API.' > - > - "Set the default number of results returned by the REST API endpoints to" >@@ -20,27 +20,27 @@ Web services: > - > - pref: RESTOAuth2ClientCredentials > choices: >- yes: Enable >- no: "Disable" >+ 1: Enable >+ 0: "Disable" > - "the OAuth2 client credentials grant for the REST API. Requires Net::OAuth2::AuthorizationServer installed. [EXPERIMENTAL]" > - > - pref: RESTPublicAnonymousRequests > choices: >- yes: "Enable" >- no: "Disable" >+ 1: "Enable" >+ 0: "Disable" > - anonymous access to public routes (that don't require authenticated access) > - > - pref: RESTPublicAPI > choices: >- yes: Enable >- no: "Disable" >+ 1: Enable >+ 0: "Disable" > - "the /public namespace of the API." > OAI-PMH: > - > - pref: OAI-PMH > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "Koha's" > - '<a href="http://www.openarchives.org/pmh/">OAI-PMH</a> server. (available at: /cgi-bin/koha/oai.pl?verb=Identify)' > - >@@ -62,14 +62,14 @@ Web services: > - > - pref: "OAI-PMH:AutoUpdateSets" > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - automatic update of OAI-PMH sets when a bibliographic or item record is created or updated. > - > - pref: "OAI-PMH:AutoUpdateSetsEmbedItemData" > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - embedding of item data when automatically updating OAI-PMH sets. > - <br><strong>NOTE:</strong> This needs <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=OAI-PMH:AutoUpdateSets">OAI-PMH:AutoUpdateSets</a> syspref to be enabled. > - >@@ -78,14 +78,14 @@ Web services: > choices: > persistent: will never be emptied or truncated (persistent) > transient: might be emptied or truncated at some point (transient) >- no: will never have any data in it (no) >+ 0: will never have any data in it (no) > - "." > ILS-DI: > - > - pref: ILS-DI > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - "ILS-DI services for OPAC users (available at: /cgi-bin/koha/ilsdi.pl)" > - > - Allow IP addresses >@@ -96,8 +96,8 @@ Web services: > - > - pref: Mana > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > 2: No, let me think about > - submissions to Mana KB. Mana centralizes information between other Koha installations to facilitate the creation of new subscriptions, vendors, reports, etc. You can search, share, import, and comment on the content of Mana. The information shared with Mana KB is shared under the <a href="https://creativecommons.org/choose/zero/">CC-0 license</a> > - >@@ -120,7 +120,7 @@ Web services: > - > - pref: IdRef > choices: >- yes: Enable >- no: Disable >+ 1: Enable >+ 0: Disable > - the IdRef web service from the OPAC detail page. IdRef allows requests for authorities from the Sudoc database. > - Please note that this feature is available only for UNIMARC. >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22824
:
116722
|
116723
|
116724
|
116725
|
116726
|
116727
|
116728
|
116729
|
116730
|
116731
|
116732
|
116733
|
116734
|
116735
|
116736
|
116741
|
116742
|
116743
|
116744
|
116745
|
116746
|
116747
|
116748
|
116749
|
116750
|
116751
|
116752
|
116753
|
116754
|
116755
|
116756
|
116881
|
116882
|
116883
|
116884
|
117037
|
117039
|
117040
|
117041
|
117042
|
117043
|
117044
|
117045
|
117046
|
117047
|
117048
|
117049
|
117050
|
117051
|
117052
|
117053
|
117054
|
117055
|
117056
|
117057
|
117058
|
117636
|
117637
|
117638
|
117639
|
117640
|
117641
| 117642 |
117643
|
117644
|
117645
|
117646
|
117647
|
117648
|
117649
|
117650
|
117651
|
117652
|
117653
|
117664
|
117666