Dear community, · In opac and intranet pages there are a lnik which change language in which we want to correct ( <http://opac.flib.sci.am/cgi-bin/koha/opac-changelanguage.pl?language=hy-Armn> Հայերէն) a letter but can't find where that file is stored which contain that word. · Best Regards, · Arayik.
The link text comes from the database table language_descriptions. For example, the following SQL query should show the text you need to change: select * from language_descriptions where subtag='hy' and lang='hy'; And this will update it: update language_descriptions set description='XXX' where subtag='hy' and lang='hy'; Just replace the XXX with the correct HTML entities for the text you want. Note that the same text is used in the advanced search language filter dropdown. -- Ystävällisin terveisin Pasi Kallinen ICT-asiantuntija p. 0400-139747 pasi.kallinen@pttk.fi Pohjois-Karjalan Tietotekniikkakeskus Oy - www.pttk.fi ________________________________________ From: koha-bounces@lists.katipo.co.nz [koha-bounces@lists.katipo.co.nz] on behalf of Araik Manukyan [araik@flib.sci.am] Sent: Thursday, March 20, 2014 07:40 To: koha@lists.katipo.co.nz Subject: [Koha] language link Dear community, · In opac and intranet pages there are a lnik which change language in which we want to correct ( <http://opac.flib.sci.am/cgi-bin/koha/opac-changelanguage.pl?language=hy-Armn> Հայերէն) a letter but can't find where that file is stored which contain that word. · Best Regards, · Arayik. _______________________________________________ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
Hi, which letter do you want to correct? (perhaps հայերեն instead of Հայերեն ?) Regards, Bernardo -- Bernardo Gonzalez Kriegel bgkriegel@gmail.com On Thu, Mar 20, 2014 at 2:40 AM, Araik Manukyan <araik@flib.sci.am> wrote:
Dear community,
· In opac and intranet pages there are a lnik which change language in which we want to correct ( < http://opac.flib.sci.am/cgi-bin/koha/opac-changelanguage.pl?language=hy-Armn> Հայերէն) a letter but can't find where that file is stored which contain that word.
· Best Regards,
· Arayik.
_______________________________________________ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
participants (3)
-
Araik Manukyan -
Bernardo Gonzalez Kriegel -
Kallinen Pasi