About Koha
Koha version: | [% kohaVersion | html %] | ||
---|---|---|---|
OS version ('uname -a'): | [% osVersion | html %] | ||
Perl interpreter: | [% perlPath | html %] | ||
Perl version: | [% perlVersion | html %] | ||
Perl @INC: |
[% FOREACH perlIncPat IN perlIncPath %]
[% perlIncPat.perlinc | html %] [% END %] | ||
MySQL version: | [% mysqlVersion | html %] | ||
Apache version: | [% apacheVersion | html %] | ||
PSGI: | [% psgi_server | html %] | ||
Elasticsearch: | [% IF elasticsearch_fatal_config_error %][% elasticsearch_fatal_config_error | html %] | [% ELSE %] [% IF elasticsearch_status.running %][% ELSE %] |
[% END %]
Version:
[% elasticsearch_status.version | html %]
|
Nodes:
[% elasticsearch_status.nodes.join(' / ') | html %]
|
Status:
[% IF elasticsearch_status.running %]
running
|
Indices:
[% FOREACH index IN elasticsearch_status.indexes %]
[% index.index_name | html %] (count: |
[% END %]
Memcached: | [% IF memcached_running AND is_memcached_still_active AND where_is_memcached_config == 'config_only' %][% ELSE %] | [% END %] Servers: [% IF memcached_servers %][% memcached_servers | html %] [% ELSE %]undefined[% END %] | Namespace: [% IF memcached_namespace %][% memcached_namespace | html %] [% ELSE %]undefined[% END %] | Status: [% IF memcached_servers %] [% IF memcached_running and is_memcached_still_active %] running. [% ELSE %] not running. [% IF is_psgi %] Remember memcached needs to be started before Plack. [% END %] [% END %] [% ELSE %] unknown [% END %] | Config read from: [% SWITCH where_is_memcached_config %] [% CASE 'config_only' %] koha-conf.xml [% CASE 'ENV_only' %] ENV Note that the right place to define the memcached config is in your $KOHA_CONF file [% CASE 'both' %] ENV and koha-conf.xml Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV. [% CASE # nowhere %] Nowhere Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined. [% END %] [% IF effective_caching_method != 'Cache::Memcached::Fast::Safe' %] | Effective caching method: [% effective_caching_method | html %] [% END %] | |
Zebra version: | [% zebraVersion | html %] | ||
Zebra status: | [% IF (errZebraConnection == 10000) %]Zebra server seems not to be available. Is it started? | [% ELSIF (errZebraConnection) %]Error message from Zebra: [% ( errZebraConnection ) | html %] | [% ELSE %]Running | [% END %]
Message broker: | [% IF warnConnectBroker %]Using SQL polling | [% ELSE %]Using RabbitMQ | [% END %]|
Date and time: | [% current_date_and_time | $KohaDates with_hours => 1 %] | ||
Time zone: | Used: [% time_zone.actual | html %] [% IF time_zone.actual_bad_tz_fallback %] (This is a fallback value due to a bad configuration) [% END %] | Config: [% IF time_zone.config != '' %] [% time_zone.config | html %] [% ELSE %] Undefined [% END %] | Environment (TZ): [% IF time_zone.environment != '' %] [% time_zone.environment | html %] [% ELSE %] Undefined [% END %] |
[% ELSE %] | [% END %] [% ELSIF ( ro.upgrade ) %] [% IF ( ro.require ) %] | [% ELSE %] | [% END %] [% ELSE %] [% IF ( ro.name == '' ) %] | [% ELSIF ( ro.require ) %] | [% ELSE %] | [% END %] [% END %] [% IF ( ro.name ) %] [% ro.name | html %] ([% ro.reqversion | html %][% IF ro.maxversion %] - [% ro.maxversion | html %][% END %][% IF ro.excversion %][% FOR v IN ro.excversion %], ![% v | html %][% END %][% END %]) [% END %] | [% IF ( ro.name == '' ) %][% ELSIF ( ro.version ) %] | [% ro.version | html %] [% ELSE %] | Not Installed [% END %] | [% END %]
---|
Warning regarding current user
You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.
Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.
[% END %] [% IF has_ai_issues %]Data problems
Some of your tables have problems with their auto_increment values which may lead to data loss.
You should not ignore this warning.
The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.
To know how to avoid this problem see the related wiki page: DBMS auto increment fix
Problems found
[% IF ai_patrons %]Patrons
The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:
[% FOR p IN ai_patrons %][% p.borrowernumber | html %][% UNLESS loop.last %], [% END %][% END %]
[% END %] [% IF ai_biblios %]Bibliographic records
The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:
[% FOR b IN ai_biblios %][% b.biblionumber | html %][% UNLESS loop.last %], [% END %][% END %]
[% END %] [% IF ai_items %]Items
The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:
[% FOR i IN ai_items %][% i.itemnumber | html %][% UNLESS loop.last %], [% END %][% END %]
[% END %] [% IF ai_checkouts %]Checkouts
The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:
[% FOR c IN ai_checkouts %][% c.issue_id | html %][% UNLESS loop.last %], [% END %][% END %]
[% END %] [% IF ai_holds %]Holds
The following ids exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:
[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]
[% END %][% END %] [% IF warnRelationships %]
Patron relationship problems
[% IF bad_relationships_count %]Your database contained guarantee/guarantor pairs with no defined relationship. They have been set the value '_bad_data' in the [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] columns. Fix them manually by recreating those relationships, or have your system's administrator correct the values.
[% END %] [% IF wrong_relationships %]The following values have been used for guarantee/guarantor relationships, but do not exist in the 'borrowerRelationship' system preference:
-
[% FOR rel IN wrong_relationships %]
- [% rel.0 | html %] [% END %]
If the relationship is one you want, please add it to the 'borrowerRelationship' system preference, otherwise have your system's administrator correct the values in [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] in the database.
[% END %] [% END %] [% IF log4perl_errors %]Logging system does not behave correctly
[% FOR e IN log4perl_errors %] [% SWITCH e %] [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file. [% CASE 'cannot_read_config_file' %]The log4perl config file cannot be opened. [% CASE 'logfile_not_writable' %]One of the logfiles listed in the config file is not writable. [% CASE 'cannot_init_module' %]The Koha::Logger module cannot be initiated correctly (check the log file). [% CASE %]Unknown error '[% e | html %]'. [% END %] [% END %] [% END %] [% IF warnConnectBroker %]Impossible to connect to the message broker
There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.Maybe it is not installed and configured correctly?
Contact your system administrator. [% END %] [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size %]
Warnings regarding the system configuration
Warning | System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well. |
---|---|
Warning | System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff interface and the OPAC will be broken. |
Error | System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number or checkins for these patrons will fail. |
Warning | System preference 'AnonSuggestions' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly. |
Error | Some patrons have requested a privacy on returning item but the AnonymousPatron pref is not set correctly. Set it to a valid borrower number or checkins for these patrons will fail. |
Warning | System preference 'AnonSuggestions' set, but AnonymousPatron preference is not set correctly. Set it to a valid borrower number if you want that this feature works correctly. |
Warning | System preference 'KohaAdminEmailAddress' does not contain a valid email address. Emails will not be sent. |
Warning | System preference 'OpacHiddenItems' generates a warning and will produce unexpected behaviors: [% warnPrefOpacHiddenItems | html %] |
Warning | System preference '[% p.syspref | html %]' is '[% p.value | html %]', but the file '[% p.filename | html %]' does not exist. |
Warning | System preference '[% p.variable | html %]' must be '0' or '1', but is [% IF p.value.defined %]'[% p.value | html%]'[% ELSE %]NULL[% END %]. |
Warning | No active currency is defined. Please go to Administration > Currencies and exchange rates and mark one currency as active. |
Warning | System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] |
Warning | The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission. |
Warning | The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module. |
Warning | You are missing the <template_cache_dir> entry in your koha-conf.xml file. That will bring a performance boost to enable it. |
Warning | The ILL module is enabled, but there are no backends available. |
Warning | The ILL module is enabled, but no 'partner_code' defined in koha-conf.xml. Falling back to the hardcoded 'ILLLIBS'. |
Warning | The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use. |
Warning | The ILL module is enabled, but the configured 'partner_code' ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system. |
Warning | System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled. |
Warning | Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %] |
Warning | System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file. |
Warning |
[% FOR w IN warnHiddenBiblionumbers %]
Biblio framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %] [% END %] |
Deprecation warning | Elasticsearch version 5.x is not supported in Koha 20.11 and greater. Please upgrade your Elasticsearch cluster |
Warning | The <zebra_bib_index_mode> entry set to 'grs1', which is no longer supported. Please use DOM instead. To switch follow this page of wiki: Switching to dom indexing |
---|---|
Warning | The <zebra_auth_index_mode> entry set to 'grs1', which is no longer supported. Please use DOM instead. To switch follow this page of wiki: Switching to dom indexing |
Warning | The <use_zebra_facets> entry is missing in your configuration file. Falling back to legacy facet calculation. |
Warning | You are missing the <log4perl_conf> entry in your koha-conf.xml file. Please add it, pointing to the log4perl.conf file for your Koha instance. |
Warning | You are missing the <lockdir> entry in your koha-conf.xml file. Please add it, pointing to your Koha instance's lock dir. |
Warning | The configured <lockdir> entry in your koha-conf.xml file points to a non-writable directory ([% config_entry.lockdir | html %]). |
Warning | You are missing the <upload_path> entry in your koha-conf.xml file. Please add it, pointing to the configured file upload directory for your Koha instance. |
Warning | You are missing the <upload_path> entry in your koha-conf.xml file. Please add it, pointing to the configured file upload directory for your Koha instance. Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. |
Warning | You are missing the <tmp_path> entry in your koha-conf.xml file. Please add it, pointing to the configured temporary directory for your Koha instance. The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'. |
Warning | You are missing the <encryption_key> entry in your koha-conf.xml file. Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.) |
Warning | The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %] issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as [% unit.rule_value | html %]. |
---|
No warnings.
[% END %]Special thanks to the following organizations
- Horowhenua Library Trust, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)
- The Athens County Public Libraries, Ohio, USA (MARC sponsorship, documentation, template maintenance)
- EMN (Ecole des Mines de Nantes), France (Suggestions, Stats wizards and improved LDAP sponsorship)
- Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris), France (biblio frameworks, MARC authorities, OPAC basket, Serials sponsorship)
- SAN-Ouest Provence, France (Koha 3.0 enhancements to patrons and holds modules)
- The Crawford County Federated Library System, PA, USA (Koha 3.0 Zebra Integration sponsorship)
- The Geauga County Public Library, OH, USA (Koha 3.0 beta testing)
- The Near East University, Cyprus
- OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)
- famfamfam.com Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.
- Albany Senior High School, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)
Koha release teams
[% IF maintenance_team %]Koha [% short_version | html %] release team
[% IF development_version %]You are running a development version of Koha
[% ELSE %] [% INCLUDE team t=release_team v='release' %] [% END %]Current maintenance team
[% INCLUDE team t=maintenance_team v=short_version %]Koha development team
[% IF contributors.size %]-
[% FOREACH contributor IN contributors %]
- [% INCLUDE person p=contributor %][% INCLUDE contributions p=contributor %] [% END %]
Contributing companies and institutions
- Allen Ginsberg Library, USA
- Alingsås Public Library, Sweden
- American Numismatic Society, USA
- Arcadia Public Library, USA
- Athens County Public Libraries, USA
- BdP de la Meuse, France
- BibLibre, France
- Biblioteca Provincial Fr. Mamerto Esquiú (Provincia Franciscana de la Asunción), Argentina
- Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany
- Briar Cliff University, USA
- Brimbank City Council, Australia
- Brooklyn Law School Library, USA
- Bibliothèque Universitaire des Langues et Civilisations (BULAC), France
- ByWater Solutions, USA
- California College of the Arts, USA
- Camden County, USA
- Carnegie Stout Library, USA
- Calyx, Australia
- Catalyst IT, New Zealand
- Central Kansas Library System (CKLS), USA
- Centre collégial des services regroupés (CCSR), Canada
- Cheshire Libraries, United Kingdom
- Coeur d'Alene Public Library, USA
- Corpus Christi Public Libraries, USA
- C & P Bibliography Services, USA
- Dataly Tech, Greece
- Devinim, Turkey
- Do Space, USA
- DoverNet, USA
- doXulting
- Duchesne County Library, USA
- Escuela de Orientacion Lacaniana, Argentina
- Fenway Library Organization, USA
- Fargo Public Library, USA
- Farmington Public Library, USA
- FIT
- Foundations Bible College & Seminary, USA
- Goethe-Institut, Germany
- Gothenburg University Library, Sweden
- Halland County Library, Sweden
- Harrison Carmel Public Library, USA
- Hauraki District Libraries, New Zealand
- Higher Education Libraries of Massachusetts, USA
- Hochschule für Gesundheit (hsg), Germany
- Hotchkiss School, USA
- Katipo Communications, New Zealand
- KEEP SOLUTIONS, Portugal
- KohaAloha, New Zealand
- Koha-Suomi Oy, Finland
- LibLime, USA
- Library of the Józef Piłsudski Institute of America, USA
- Libriotech, Norway
- Los Gatos Public Library, USA
- Lund University Library, Sweden
- MassCat, USA
- Middletown Township Public Library, USA
- National Library of Finland, Finland
- Newcastle City Council, United Kingdom
- New Zealand Central Agencies Library, New Zealand
- New Zealand Ministry of Education Library, New Zealand
- North Central Regional Library (NCRL), USA
- Northeast Kansas Library System (NEKLS), USA
- OPUS
- Orex Digital, Spain
- Oslo Public Library, Norway
- Plano Independent School, USA
- Plant and Food Research Limited, New Zealand
- Prosentient Systems, Australia
- PTFS, Maryland, USA
- PTFS Europe Ltd, United Kingdom
- Rijksmuseum, Amsterdam, The Netherlands
- Rolling Hills Consolidated Libraries, USA
- Round Rock Public Library, USA
- SAN-Ouest Provence, France
- Sefton Council, United Kingdom
- software.coop, United Kingdom
- South-East Kansas Library System (SEKLS), USA
- South Taranaki District Council, New Zealand
- Stockholm University Library, Sweden
- SWITCH Library Consortium, USA
- Talking Tech, Global
- Tamil, France
- Theke Solutions, Argentina
- Tulong Aklatan, Philippines
- Uintah Library System, USA
- Universidad de El Salvador, El Salvador
- Universidad Empresarial Siglo 21, Argentina
- Universidad Nacional de Córdoba, Argentina
- Universidad ORT Uruguay
- Université d'Aix-Marseille, France
- Université de Lyon 3, France
- Université de Rennes 2, France
- Université de St Etienne, France
- University of the Arts London, United Kingdom
- Vaara-kirjastot, Finland
- Vanier College, Canada
- Vermont Organization of Koha Automated Libraries (VOKAL), USA
- Ville de Victoriaville, Canada
- Virginia Tech, USA
- Washoe County Library System, USA
- Xercode, Spain
Additional thanks to...
- Irma Birchall
- Rachel Hamilton-Williams (Kaitiaki from 2004 to present)
- Stephen Hedges (early Documentation Manager)
- Brooke Johnson
- Jo Ransom
- Nicholas Rosasco (Documentation Compiler)
- Regula Sebastiao
Koha
jQuery and jQueryUI
jQuery and jQueryUI are licensed under the MIT license
Bootstrap
Bootstrap code and Glyphicons Free licensed under the MIT license.
Bootstrap Icons
Bootstrap Icons licensed under the MIT license.
YUI
Famfamfam iconset
The Bridge Material Type Icon Set
- Bridge Material Type Icons Project
- The Bridge Material Type Icon Set is licensed under a Creative Commons Attribution-ShareAlike 2.5 License by the Bridge Consortium of Carleton College and St. Olaf College.
jQuery Bar Rating Plugin
jQuery Bar Rating Plugin v1.22 by Antenna.io is licensed under the MIT License.
Copyright © 2012-2016 Kazik Pietruszewski
jQuery insertAtCaret Plugin
jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the GPL License.
Copyright © 2003-2010 phpMyAdmin devel team
jQuery treetable Plugin
The jQuery treetable Plugin 3.1.0 is released under MIT license by Ludo van den Boom.
OpenJS Keyboard Shortcuts Library
The OpenJS keyboard shortcuts library by Binny V A is licensed under the BSD license.
jquery.dataTables.grouping.js
The jquery.dataTables.grouping.js plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.
jQuery Colvis plugin
The controls for column visiblity in DataTables by Allan Jardine is licensed under the BSD 3 and GPL v2 license.
jquery.multiple.select.js
The jQuery multiple select plugin by Zhixin Wen is licensed under the MIT license.
Javascript Diff Algorithm
The Javascript Diff Algorithm plugin by John Resig is licensed under the MIT License.
jQuery Validation Plugin
The jQuery Validation Plugin written and maintained by Jörn Zaefferer is licensed under the MIT License.
TinyMCE WYSIWYG editor
The TinyMCE WYSIWYG editor v5.9.2 by Tiny Technologies, Inc. is licensed under the LGPL v2.1.
Font Awesome
Font Awesome 4.7.0 by Dave Gandy is licensed under the SIL OFL 1.1 and the MIT License.
CodeMirror editing library
The CodeMirror editing library by Marijn Haverbeke is licensed under an MIT license.
FileSaver library
The FileSaver library by Eli Grey is licensed under an MIT license.
Require.js JS module system
The Require.js JS module system by The Dojo Foundation is licensed under an MIT license.
OAI xslt stylesheet
The included OAI.xslt file by the DSpace project is licensed under a BSD License.
OpenAPI 2.0 schema
The included api/swagger-v2-schema.json file is licensed under the Apache License, Version 2.0, by the OpenAPI Initiative (OAI).
Select2
The Select2 library is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License").
jquery.tablednd.js
The TableDnD plug-in for jQuery by Denis Howlett is licensed under the MIT License.
Leaflet
The Leaflet JavaScript library by Vladimir Agafonkinis licensed under the BSD License.
jquery.emojiarea.js
The Emojiarea plug-in for jQuery by DIY Co is licensed under the the Apache License, Version 2.0.
JSZip
The JSZip JavaScript library is licensed under both the MIT and GPLv3 Licenses.
D3.js
D3.js v3.5.17 is a JavaScript library for manipulating documents based on data. It is under the BSD 3-clause Licence
C3.js
C3.js v0.4.11 is a D3-based reusable chart library under the MIT licence
Font Face Observer
Font Face Observer is a JavaScript library by Bram Stein licensed under the BSD License.
Noto fonts
Noto by Google is a family of fonts licensed under the SIL Open Font License (OFL) v1.1.
HC Sticky
HC Sticky by Some Web Media is a JavaScript library that makes any element on your page visible while you scroll, licensed under the MIT license.
kjua
kjua by Lars Jung is a JavaScript library that generates QR codes, licensed under the MIT license.
Verovio
Verovio is developed by the Swiss RISM Office with the support of the Swiss National Science Foundation, licensed under the LGPL v3.0.
JavaScript Cookie
JavaScript Cookie is a "simple, lightweight JavaScript API for handling cookies," licensed under the MIT license.
Moment.js
Moment.js licensed under the MIT license.
Chocolat.js
Chocolat.js licensed under the GPL v3 license.
Enquire.js
Enquire.js licensed under the MIT license.
Translation
- العربية (Arabic) Version 3.2 to 3.4, 3.16 & 3.18 by KnowledgeWare Technologies; Versions 3.6 to 3.14 by Arabic Koha support team: Karam Qubsi, Kouider Bounama, Sham Bajaa, Ghofran Alshami, Chrestian Aboud, Fatema Salem and Duaa Bazzazi.
- አማርኛ (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)
- Armenian Tigran Zargaryan
- Български (Bulgarian) Radoslav Kolev
- euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga
- বাংলা (Bengali) Parthasarathi Mukhopadhyay
- 中文 (Chinese)
- Hrvatski (Croatian)
- čeština (Czech)
- Dænsk (Danish)
- Nederlands-Nederland (Dutch-The Netherlands) Ronald Wijlens, Saxion University
- Nederlands-België (Dutch-Belgium)
- English
- suomi, suomen kieli (Finnish) Pasi Korkalo
- Français (French) Kohala, Pascale Nalon (ENSMP), and many more
- Galego (Galician) Ignacio Javier
- Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron
- ελληνικά (Greek, Modern [1453- ]) Koha Hellenic Users' Group (Georgia Katsarou, Dimitris Antonakis, Eugenios Papadopoulos), Theodoros Theodoropoulos, Panoraia Gaitanou and Kiriaki Roditi
- עברית (Hebrew)
- हिन्दी (Hindi)
- Magyar (Hungarian)Agnes Imecs
- Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad
- Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland
- (Indonesian)
- Italiano (Italian) for 3.2: Zeno Tajoli, Pietro Gozzetti and Paolo Pozzan; for 3.4 and more: Zeno Tajoli, Stefano Bargioni, Paolo Bizzarri
- 日本語 (Japanese)
- 한국어 (Korean)
- ಕನ್ನಡ (kannaḍa)
- Latina (Latin)
- Lao Anousak Anthony Souphavanh
- Māori
- മലയാളം (Malayalam)
- فارسى (Persian)
- ଓଡ଼ିଆ (ōṛiyā)
- Polski (Polish)
- Português (Portuguese)
- Română (Romanian)
- Русский (Russian) Victor Titarchuk and Serhij Dubyk
- Español (Spanish) Bernardo González Kriegel, Héctor Castro and Tomás Cohen Arazi, with the help of the koha-es community.
- Svenska (Swedish)
- Tetun (Tetum) Karen Myers
- ภาษาไทย (Thai)
- Türkçe (Turkish) pre-3.8: Selma Aslan; for 3.8+, Suleyman Demirel University (Ugur Bulgan, Onur Erdem, Kemal Caner Bayrakci, and Alper Tutunsatar)
- اردو(Urdu) Ata ur Rehman
- Українська (Ukrainian) Victor Titarchuk and Serhij Dubyk
Koha history timeline
[% IF ! timeline_read_error %]Date | Description |
[% ro.date | html %] | [% ro.desc | html %] | [% END %]