Add locales for ar, cs, es, it, pt_BR, tr, zh_TW
[kohadocs.git] / en / locales / zh_TW / LC_MESSAGES / 16_cron_jobs.po
diff --git a/en/locales/zh_TW/LC_MESSAGES/16_cron_jobs.po b/en/locales/zh_TW/LC_MESSAGES/16_cron_jobs.po
new file mode 100644 (file)
index 0000000..1558c89
--- /dev/null
@@ -0,0 +1,1102 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2017, Koha Community
+# This file is distributed under the same license as the Koha Manual
+# package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Koha Manual 17.11\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-10-25 12:27-0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.3.4\n"
+
+#: ../../source/16_cron_jobs.rst:5 ../../source/16_cron_jobs.rst:26
+msgid "Cron Jobs"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:7
+msgid ""
+"A cron job is a Linux command for scheduling a command or script on your "
+"server to complete repetitive tasks automatically. Scripts executed as a "
+"cron job are typically used to modify files or databases; however, they "
+"can perform other tasks that do not modify data on the server, like "
+"sending out email notifications. Koha has many cron jobs in place that "
+"you can enable (search engine indexing, overdue notice generation, data "
+"cleanup and more), this chapter will explain those for you."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:16
+msgid "Crontab example"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:18
+msgid "An example of a Koha crontab can be found in misc/cronjobs/crontab.example"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:20
+msgid ""
+"The example includes sample boilerplate cronjob entries for the most "
+"commonly-used cronjobs."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:28
+msgid ""
+"The locations below assume a dev install which puts the crons in misc/, "
+"if you have a standard install you may want to look in bin/ for these "
+"files if you cannot find them in misc/"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:35
+msgid "Backup"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:38
+msgid "Daily Backup"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:40
+msgid "Script path: misc/cronjobs/backup.sh"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:42
+msgid "Does: Creates a daily backup of the Koha database."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:44 ../../source/16_cron_jobs.rst:166
+#: ../../source/16_cron_jobs.rst:181
+msgid "Frequency suggestion: daily"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:49
+msgid "Search"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:54
+msgid "Sitemap"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:56
+msgid "Script path: misc/cronjobs/sitemap.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:58
+msgid ""
+"Does: Processes all biblio records from a Koha instance and generates "
+"sitemap files complying with the protocol as described on "
+"http://sitemaps.org. The goal of this script is to be able to provide to "
+"search engines direct access to biblio records. It avoids leaving search "
+"engines browsing Koha's OPAC which would generate a lot of site traffic "
+"and server workload."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:64
+msgid ""
+"**Note** A file named sitemapindex.xml is generated. It contains "
+"references to multiple sitemap files. Each file contains at most 50,000 "
+"URLs and is named sitemapXXXX.xml."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:69
+msgid ""
+"The files must be stored on the Koha OPAC's root directory. In the same "
+"directory a robots.txt file with the following contents is required:"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:73
+msgid "``Sitemap: sitemapindex.xml User-agent: * Disallow: /cgi-bin/``"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:80
+msgid "Rebuild Index"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:82
+msgid "Script path: misc/migration\\_tools/rebuild\\_zebra.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:84
+msgid "Does: Updates Zebra indexes with recently changed data."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:86
+msgid "Required by: Zebra"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:88
+msgid ""
+"Frequency suggestion: every x minutes, (between 5-15 minutes) depending "
+"on performance needs"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:94
+msgid "Circulation"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:99
+msgid "Holds Queue"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:101
+msgid "Script path: misc/cronjobs/holds/build\\_holds\\_queue.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:103
+msgid "Does: Updates holds queue report"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:105
+msgid "Required by: :ref:`Holds Queue Report <holds-queue-label>`"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:107
+msgid "Frequency suggestion: every 1-4 hours"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:109
+msgid "Description:"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:111
+msgid ""
+"A script that should be run periodically if your library system allows "
+"borrowers to place on-shelf holds. This script decides which library "
+"should be responsible for fulfilling a given hold request."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:115
+msgid ""
+"It's behavior is controlled by the system preferences "
+":ref:`StaticHoldsQueueWeight "
+"<staticholdsqueueweight,-holdsqueueskipclosed"
+"-&-randomizeholdsqueueweight-label>` and :ref:`RandomizeHoldsQueueWeight "
+"<staticholdsqueueweight,-holdsqueueskipclosed"
+"-&-randomizeholdsqueueweight-label>`."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:119
+msgid ""
+"If you do not want all of your libraries to participate in the on-shelf "
+"holds fulfillment process, you should list the the libraries that "
+"\\*do\\* participate in the process here by inputting all the "
+"participating library's branchcodes, separated by commas ( e.g. "
+"\"MPL,CPL,SPL,BML\" etc. )."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:125
+msgid ""
+"By default, the holds queue will be generated such that the system will "
+"first attempt to hold fulfillment using items already at the pickup "
+"library if possible. If there are no items available at the pickup "
+"library to fill a hold, build\\_holds\\_queue.pl will then use the list "
+"of libraries defined in StaticHoldsQueueWeight. If "
+"RandomizeHoldsQueueWeight is disabled ( which it is by default ), the "
+"script will assign fulfillment requests in the order the branches are "
+"placed in the StaticHoldsQueueWeight system preference."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:134
+msgid ""
+"For example, if your system has three libraries, of varying sizes ( "
+"small, medium and large ) and you want the burden of holds fulfillment to"
+" be on larger libraries before smaller libraries, you would want "
+"StaticHoldsQueueWeight to look something like \"LRG,MED,SML\"."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:140
+msgid ""
+"If you want the burden of holds fulfillment to be spread out equally "
+"throughout your library system, simply enable RandomizeHoldsQueueWeight. "
+"When this system preference is enabled, the order in which libraries will"
+" be requested to fulfill an on-shelf hold will be randomized each time "
+"the list is regenerated."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:146
+msgid ""
+"Leaving StaticHoldsQueueWeight empty is contraindicated at this time. "
+"Doing so will cause the build\\_holds\\_queue script to ignore "
+"RandomizeHoldsQueueWeight, causing the script to request hold fulfillment"
+" not randomly, but by alphabetical order."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:154
+msgid "Expired Holds"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:156
+msgid "Script path: misc/cronjobs/holds/cancel\\_expired\\_holds.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:158
+msgid ""
+"Does: By default, this cron job will only automatically cancel holds "
+"where the user has set an expiration date. If the library is using the "
+":ref:`ExpireReservesMaxPickUpDelay` and "
+":ref:`ExpireReservesMaxPickUpDelayCharge` preferences then this script "
+"will also cancel holds that have been sitting on the hold shelf for too "
+"long and will (if the library does) charge the patron for not picking up "
+"the hold."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:171
+msgid "Unsuspend Holds"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:173
+msgid "Script path: misc/cronjobs/holds/auto\\_unsuspend\\_holds.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:175
+msgid ""
+"Does: This script checks to find holds that should no longer be suspended"
+" and removes the suspension if the :ref:`AutoResumeSuspendedHolds` "
+"preference is set to 'allow'. This puts the patron back in to the queue "
+"where they were when the hold was suspended."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:186
+msgid "Fines"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:188
+msgid "Script path: misc/cronjobs/fines.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:190
+msgid "Does: Calculates and posts fines to patron accounts."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:192
+msgid "Required by: :ref:`finesMode` system preference"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:194 ../../source/16_cron_jobs.rst:223
+#: ../../source/16_cron_jobs.rst:243 ../../source/16_cron_jobs.rst:279
+#: ../../source/16_cron_jobs.rst:308 ../../source/16_cron_jobs.rst:348
+#: ../../source/16_cron_jobs.rst:407 ../../source/16_cron_jobs.rst:424
+#: ../../source/16_cron_jobs.rst:458 ../../source/16_cron_jobs.rst:481
+#: ../../source/16_cron_jobs.rst:496 ../../source/16_cron_jobs.rst:629
+#: ../../source/16_cron_jobs.rst:642 ../../source/16_cron_jobs.rst:718
+msgid "Frequency suggestion: nightly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:199
+msgid "Static Fines"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:201
+msgid "Script path: misc/cronjobs/staticfines.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:203
+msgid "Does: this script calculates and charges overdue fines to patron accounts"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:205
+msgid ""
+"**Note** If the Koha System Preference 'finesMode' is set to "
+"'production', the fines are charged to the patron accounts. If set to "
+"'test', the fines are calculated but not applied."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:209
+msgid "**Note** Fines won't be applied on a holiday."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:215
+msgid "Long Overdues"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:217
+msgid "Script path: misc/cronjobs/longoverdue.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:219
+msgid ""
+"Does: allows one to specify delays for changing items to different lost "
+"statuses, and optionally charge for them using the replacement price "
+"listed on the item record."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:225 ../../source/16_cron_jobs.rst:252
+#: ../../source/16_cron_jobs.rst:409 ../../source/16_cron_jobs.rst:426
+#: ../../source/16_cron_jobs.rst:543 ../../source/16_cron_jobs.rst:558
+#: ../../source/16_cron_jobs.rst:582 ../../source/16_cron_jobs.rst:619
+msgid "**Note**"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:227
+msgid ""
+"Staff can control some of the parameters for the longoverdue cron job "
+"with the :ref:`DefaultLongOverdueLostValue <defaultlongoverduelostvalue"
+"-&-defaultlongoverduedays-label>` and "
+":ref:`DefaultLongOverdueChargeValue` preferences."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:236
+msgid "Track Total Checkouts"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:238
+msgid "Script path: misc/cronjobs/update\\_totalissues.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:240
+msgid ""
+"Does: updates the biblioitems.totalissues field in the database with the "
+"latest tally of checkouts based on historical issue statistics."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:245
+msgid "**Warning**"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:247
+msgid ""
+"If the time on your database server does not match the time on your Koha "
+"server you will need to take that into account, and probably use the "
+"--since argument instead of the --interval argument for incremental "
+"updating."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:254
+msgid ""
+"This cronjob can be used if there is a performance concern. Otherwise, "
+"use the UpdateTotalIssuesOnCirc System Preference."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:260
+msgid "Generate Patron File for Offline Circulation"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:262
+msgid "Script path: misc/cronjobs/create\\_koc\\_db.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:264
+msgid ""
+"Does: Generates the borrowers.db file for use with the :ref:`Koha Offline"
+" Circulation <offline-circ-tool-for-windows-label>` tool"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:267
+msgid "Frequency suggestion: weekly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:272
+msgid "Automatic renewal"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:274
+msgid "Script path: misc/cronjobs/automatic\\_renewals.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:276
+msgid ""
+"Does: Will automatically renew items if you're allowing automatic renewal"
+" with your :ref:`circulation and fine rules <circulation-and-fine-rules-"
+"label>`."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:284
+msgid "Patrons"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:289
+msgid "Batch Delete Patrons"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:291
+msgid "Script path: misc/cronjobs/delete\\_patrons.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:293
+msgid ""
+"Does: Deletes patron records in batch based on date not borrowed since, "
+"expired before, last seen, category code, or library branch."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:299
+msgid "Unverified Registrations"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:301
+msgid "Script path: misc/cronjobs/delete\\_expired\\_opac\\_registrations.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:303
+msgid ""
+"Does: Deletes patron registrations that were submitted via the OPAC but "
+"not reviewed by the library within the number of days entered in the "
+":ref:`PatronSelfRegistrationExpireTemporaryAccountsDelay` preference."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:313
+msgid "Unconfirmed Registrations"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:315
+msgid "Script path: misc/cronjobs/delete\\_unverified\\_opac\\_registrations.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:317
+msgid ""
+"Does: Deletes patron self registrations that were submitted via the OPAC "
+"but not confirmed via email within 24 hours. This is only necessary if "
+"you are requiring patrons to confirm their registrations via email with "
+"the :ref:`PatronSelfRegistrationVerifyByEmail` preference."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:324 ../../source/16_cron_jobs.rst:526
+#: ../../source/16_cron_jobs.rst:673
+msgid "Frequency suggestion: hourly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:329
+msgid "Anonymize Patron Data"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:331
+msgid "Script path: misc/cronjobs/batch\\_anonymise.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:333
+msgid ""
+"Does: Used to anonymize patron data. This will remove borrowernumbers "
+"from circulation history so that the stats are kept, but the patron "
+"information is removed for privacy reasons."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:340
+msgid "Update Child to Adult Patron Type"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:342
+msgid "Script path: misc/cronjobs/j2a.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:344
+msgid ""
+"Does: Convert juvenile/child patrons from juvenile patron category and "
+"category code to corresponding adult patron category and category code "
+"when they reach the upper age limit defined in the Patron Categories."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:350
+msgid "**DESCRIPTION**"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:352
+msgid ""
+"This script is designed to update patrons from juvenile to adult patron "
+"types, remove the guarantor, and update their category codes "
+"appropriately when they reach the upper age limit defined in the Patron "
+"Categories."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:357
+msgid "**USAGE EXAMPLES**"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:359
+msgid "\"juv2adult.pl\""
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:361
+msgid ""
+"\"juv2adult.pl\" -b=<branchcode> -f=<categorycode> -t=<categorycode> "
+"(Processes a single branch, and updates the patron categories from "
+"category to category)"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:365
+msgid ""
+"\"juv2adult.pl\" -f=<categorycode> -t=<categorycode> -v -n (Processes all"
+" branches, shows all messages, and reports the patrons who would be "
+"affected. Takes no action on the database)"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:372
+msgid "Notices"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:377
+msgid "Message Queue"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:379
+msgid "Script path: misc/cronjobs/process\\_message\\_queue.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:381
+msgid ""
+"Does: processes the message queue to send the check out, check in and "
+"hold filled emails and SMS message to users and sends outgoing emails to "
+"patrons. requires :ref:`EnhancedMessagingPreferences` to be on"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:387
+msgid "Frequency suggestion: 1-4 hours"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:389 ../../source/16_cron_jobs.rst:686
+msgid "**Important**"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:391
+msgid ""
+"Item due and Advanced due notices are controlled by the "
+":ref:`advance\\_notices cron <advanced-notice-label>`."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:397
+msgid "Advanced Notice"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:399
+msgid "Script path: misc/cronjobs/advance\\_notices.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:401
+msgid ""
+"Does: prepares \"pre-due\" notices and \"item due\" notices for patrons "
+"who request them prepares notices for patrons for items just due or "
+"coming due soon. requires :ref:`EnhancedMessagingPreferences` to be on"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:411
+msgid ""
+"This script does not actually send the notices. It queues them in the "
+":ref:`message queue <message-queue-label>` for later"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:417
+msgid "Overdue Notice"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:419
+msgid "Script path: misc/cronjobs/overdue\\_notices.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:421
+msgid ""
+"Does: prepares messages to alert patrons of overdue messages (both via "
+"email and print)"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:428
+msgid ""
+"This script does not actually send the notices. It queues them in the "
+":ref:`message queue <message-queue-label>` for later or generates the "
+"HTML for later printing"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:432
+msgid "**See also**"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:434
+msgid ""
+"The misc/cronjobs/advance\\_notices.pl program allows you to send "
+"messages to patrons in advance of their items becoming due, or to alert "
+"them of items that have just become due."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:441
+msgid "Print Overdues"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:443
+msgid "Script path: misc/cronjobs/printoverdues.sh"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:445
+msgid "Does: generates PDF files from HTML files in directories and prints them"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:450
+msgid "Print Hold Notices"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:452
+msgid "Script path: misc/cronjobs/gather\\_print\\_notices.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:454
+msgid ""
+"Does: looks through the message queue for hold notices that didn't go "
+"through because the patron didn't have an email address and generates a "
+"print notice"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:463
+msgid "Talking Tech"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:465
+msgid ""
+"To learn more about setting up this third party product view the `Talking"
+" Tech Appendix <#talkingtechappendix>`__."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:471
+msgid "Sending Notices File"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:473
+msgid "Script path: misc/cronjobs/thirdparty/TalkingTech\\_itiva\\_outbound.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:475
+msgid ""
+"Does: Script to generate Spec C outbound notifications file for Talking "
+"Tech i-tiva phone notification system."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:478 ../../source/16_cron_jobs.rst:493
+msgid "Required by: :ref:`TalkingTechItivaPhoneNotification`"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:486
+msgid "Receiving Notices File"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:488
+msgid "Script path: misc/cronjobs/thirdparty/TalkingTech\\_itiva\\_inbound.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:490
+msgid ""
+"Does: Script to process received Results files for Talking Tech i-tiva "
+"phone notification system."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:501
+msgid "Notify Patrons of Expiration"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:503
+msgid "Script path: misc/cronjobs/membership\\_expiry.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:505
+msgid ""
+"Does: Sends messages to warn patrons of their card expiration to the "
+":ref:`messaage queue <message-queue-label>` cron."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:508
+msgid "Requires: :ref:`MembershipExpiryDaysNotice`"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:510
+msgid "Frequency: nightly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:515
+msgid "In Processing/Book Cart"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:517
+msgid "Script path: misc/cronjobs/cart\\_to\\_shelf.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:519
+msgid ""
+"Does: Updates all items with a location of CART to the item's permanent "
+"location."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:522
+msgid ""
+"Required by: :ref:`NewItemsDefaultLocation`, "
+":ref:`InProcessingToShelvingCart`, & :ref:`ReturnToShelvingCart` system "
+"preferences"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:531
+msgid "Catalog"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:536
+msgid "Import Webservice Batch"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:538
+msgid "Script path: misc/cronjobs/import\\_webservice\\_batch.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:540
+msgid ""
+"Does: A cron job for processing import bach queues of type 'webservice'. "
+"Batches can also be processed through the UI."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:545 ../../source/16_cron_jobs.rst:560
+msgid "This script is used for OCLC Connexion"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:550
+msgid "Connexion Import Daemon"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:552
+msgid "Script path: misc/bin/connexion\\_import\\_daemon.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:554
+msgid ""
+"Does: A daemon that listens for OCLC Connexion requests and is compliant "
+"with OCLC Gateway specification. It takes requests with MARC XML and "
+"import batch parameters from a configuration file and forwards it to "
+"svc/import_bib"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:565
+msgid "Batch Item Deletion"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:567
+msgid "Script path: misc/cronjobs/delete\\_items.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:569
+msgid ""
+"Does: A batch item deletion tool, which generates a query against the "
+"items database and deletes the items matching the criteria specified in "
+"the command line arguments."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:576
+msgid "Check URL Quick"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:578
+msgid "Script path: misc/cronjobs/check-url-quick.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:580
+msgid "Does: Check URLs from biblio records."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:584
+msgid "This script replaces the check-url.pl script"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:589
+msgid "Check URLs"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:591
+msgid "Script path: misc/cronjobs/check-url.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:593
+msgid ""
+"Does: checks URLs in 856$u field. Script output can now be formatted in "
+"CSV or HTML. The HTML version links directly to MARC biblio record "
+"editor."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:597
+msgid "Frequency suggestion: monthly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:599
+msgid "Learn more: http://wiki.koha-community.org/wiki/Check-url_enhancements"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:604
+msgid "Delete Records via Leader"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:606
+msgid "Script path: misc/cronjobs/delete\\_records\\_via\\_leader.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:608
+msgid ""
+"Does: Attempt to delete any MARC records where the leader character 5 "
+"equals 'd'"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:613
+msgid "Update Authorities"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:615
+msgid "Script path: misc/cronjobs/merge\\_authorities.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:617
+msgid "Does: Updates biblio data with changes to authorities records"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:621
+msgid ""
+"The name of this script is misleading. This script does not merge "
+"authorities together it instead merges authority data with linked bib "
+"records. Edits to authority records will be applied to bibliographic "
+"records that use that authority when this script is run."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:627
+msgid "Required by: `dontmerge <#dontmerge>`__ system preference"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:634
+msgid "Serials Update"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:636
+msgid "Script path: misc/cronjobs/serialsUpdate.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:638
+msgid ""
+"Does: checks if there is a \"late\" issue on active subscriptions, and if"
+" there is, the script will set it as late, and add the next one as "
+"expected."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:647
+msgid "Automatic item update"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:649
+msgid "Script path: misc/cronjobs/automatic\\_item\\_modification\\_by\\_age.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:651
+msgid ""
+"Does: updates items based on the list of rules set forth in the "
+":ref:`Automatic item modifications by age` tool"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:654
+msgid "Required by: :ref:`Automatic item modifications by age`"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:656
+msgid "Frequency suggestions: nightly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:661
+msgid "OPAC"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:666
+msgid "RSS Feeds"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:668
+msgid "Script path: misc/cronjobs/rss/rss.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:670
+msgid ""
+"Does: Produces an RSS XML document for any SQL query (not used for search"
+" results RSS feed). :ref:`Learn more <custom-rss-feeds-label>`."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:678
+msgid "Authorities Browser"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:680
+msgid "Script path: misc/cronjobs/build\\_browser\\_and\\_cloud.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:682
+msgid "Does: Generate content for authorities browse in OPAC"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:684
+msgid "Required by: :ref:`OpacBrowser` system preference"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:688
+msgid "This preference and cron job should only be used on French systems."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:693
+msgid "Subject/Author Clouds"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:695
+msgid "Script path: misc/cronjobs/cloud-kw.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:697
+msgid ""
+"Does: Generates HTML keywords clouds from Koha Zebra indexes. "
+"misc/cronjobs/cloud-sample.conf has a sample of how this script operates."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:701
+msgid ""
+"Frequency: This is the type of script you can run once a month or so, the"
+" content generated isn't going to change very much over time."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:707
+msgid "System Administration"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:712
+msgid "Services Throttle"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:714
+msgid "Script path: misc/cronjobs/services\\_throttle.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:716
+msgid "Does: resets the xISBN services throttle"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:723
+msgid "Clean up Database"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:725
+msgid "Script path: misc/cronjobs/cleanup\\_database.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:727
+msgid ""
+"Does: Truncates the sessions table, cleans out old zebraqueue entries, "
+"action logs and staged MARC files."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:733
+msgid "Share Usage Stats"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:735
+msgid "Script path: misc/cronjobs/share\\_usage\\_with\\_koha\\_community.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:737
+msgid ""
+"Does: If you're sharing information via the :ref:`UsageStats` feature "
+"this will send your info to the `Hea website <http://hea.koha-"
+"community.org/>`__."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:741
+msgid "Frequency: monthly"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:746
+msgid "Acquisitions"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:751
+msgid "Clean up old suggestions"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:753
+msgid "Script path: misc/cronjobs/purge\\_suggestions.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:755
+msgid ""
+"Does: Removes old (defined by you) suggestions from the suggestion "
+"management area."
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:761
+msgid "Email suggestions to process"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:763
+msgid "Script path: misc/cronjobs/notice\\_unprocessed\\_suggestions.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:765
+msgid ""
+"Does: Generates a notice to the fund owner that there are suggestions in "
+"need of processing"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:771
+msgid "EDI Message Processing"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:773
+msgid "Script path: misc/cronjobs/edi\\_cron.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:775
+msgid "Does: Sends and received EDI messages"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:777
+msgid "Frequency: Every 15 minutes"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:782
+msgid "Remove Temporary EDI Files"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:784
+msgid "Script path: misc/cronjobs/remove\\_temporary\\_edifiles.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:786
+msgid "Does: removes temporary EDI files that are older than 5 days"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:793
+msgid "Reports"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:796
+msgid "Run Report"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:798
+msgid "Script path: misc/cronjobs/runreport.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:800
+msgid "Does: run pre-existing saved reports"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:803
+msgid "Deprecated scripts"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:805
+msgid "These should not be run without modification:"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:807
+msgid "Script path: misc/cronjobs/update\\_items.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:809
+msgid "Script path:misc/cronjobs/smsoverdues.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:811
+msgid "Script path:misc/cronjobs/notifyMailsOp.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:813
+msgid "Script path:misc/cronjobs/reservefix.pl"
+msgstr ""
+
+#: ../../source/16_cron_jobs.rst:815
+msgid "Script path:misc/cronjobs/zebraqueue\\_start.pl"
+msgstr ""
+