From viool at webmail.co.za Sat Oct 7 07:03:21 2006 From: viool at webmail.co.za (F Wolff) Date: Sat, 07 Oct 2006 15:03:21 +0200 Subject: [elinks-dev] Afrikaans translation Message-ID: <1160226201.6072.1.camel@skoot.translate.org.za> Hi list I did an incomplete Afrikaans translation of ELinks. 780 of the 816 messages are translated. I'm submitting it now so that it doesn't get lost, but I don't have a lot of time right now to complete it. I hope to do so soon, though. I would appreciate it if this can be commited. Please CC me on replies or any issues related to the Afrikaans translation. Friedel --- a/configure.in +++ b/configure.in @@ -1157,7 +1157,7 @@ dnl ==================================== dnl Gettext grey zone. Beware. dnl =================================================================== -ALL_LINGUAS="be bg ca cs da de el es et fi fr gl hr hu id is it lt nl nb pl pt pt_BR ro ru sk sr sv tr uk" +ALL_LINGUAS="af be bg ca cs da de el es et fi fr gl hr hu id is it lt nl nb pl pt pt_BR ro ru sk sr sv tr uk" AM_GNU_GETTEXT diff --git a/src/intl/gettext/libintl.c b/src/intl/gettext/libintl.c index 0db88b2..4e9409e 100644 --- a/src/intl/gettext/libintl.c +++ b/src/intl/gettext/libintl.c @@ -27,6 +27,7 @@ struct language languages[] = { {N_("System"), "system"}, {N_("English"), "en"}, + {N_("Afrikaans"), "af"}, {N_("Belarusian"), "be"}, {N_("Brazilian Portuguese"), "pt-BR"}, {N_("Bulgarian"), "bg"}, -------------- next part -------------- A non-text attachment was scrubbed... Name: af.po Type: text/x-gettext-translation Size: 201830 bytes Desc: not available Url : http://linuxfromscratch.org/pipermail/elinks-dev/attachments/20061007/028deb46/attachment.bin From kzak at redhat.com Wed Oct 11 02:36:27 2006 From: kzak at redhat.com (Karel Zak) Date: Wed, 11 Oct 2006 10:36:27 +0200 Subject: [elinks-dev] [patch]: proxy bugfix Message-ID: <20061011083627.GA3244@petra.dvoda.cz> Hi folks, the latest stable elinks version crashes on: HTTP_PROXY=8080:proxy.ucv.cl elinks http://wwww.google.cl you can try it with gdb and you will see that download->conn is NULL. I think unstable version has same problem (I didn't test it, but the code looks same...) Karel --- elinks-0.11.1/src/session/task.c.kzak 2006-10-11 09:26:28.000000000 +0200 +++ elinks-0.11.1/src/session/task.c 2006-10-11 09:27:29.000000000 +0200 @@ -538,7 +538,8 @@ } if (is_in_result_state(download->state) && download->state != S_OK) { - print_error_dialog(ses, download->state, download->conn->uri, + print_error_dialog(ses, download->state, + download->conn ? download->conn->uri : NULL, download->pri); if (d == DO_MOVE_ABORT) reload(ses, CACHE_MODE_NORMAL); } -- Karel Zak From zas at norz.org Wed Oct 11 06:39:49 2006 From: zas at norz.org (Laurent MONIN) Date: Wed, 11 Oct 2006 14:39:49 +0200 Subject: [elinks-dev] Afrikaans translation In-Reply-To: <1160226201.6072.1.camel@skoot.translate.org.za> References: <1160226201.6072.1.camel@skoot.translate.org.za> Message-ID: <452CE615.8070909@norz.org> F Wolff wrote: > Hi list > > I did an incomplete Afrikaans translation of ELinks. 780 of the 816 > messages are translated. I'm submitting it now so that it doesn't get > lost, but I don't have a lot of time right now to complete it. I hope to > do so soon, though. I would appreciate it if this can be commited. > > Please CC me on replies or any issues related to the Afrikaans > translation. > > Friedel > > Hi, thanks for submitting that new translation. You may improve it by running "make check-po PO=af" and follow messages indicating missing or conflicting accelerator keys. af.po: Checked 129 entries, found 26 accelerator conflicts. Your initial patch was committed to current GIT repository. Please check AUTHORS file for correctness of your entry. Regards, Zas From zas at norz.org Thu Oct 12 03:05:40 2006 From: zas at norz.org (Laurent MONIN) Date: Thu, 12 Oct 2006 11:05:40 +0200 Subject: [elinks-dev] [patch]: proxy bugfix In-Reply-To: <20061011083627.GA3244@petra.dvoda.cz> References: <20061011083627.GA3244@petra.dvoda.cz> Message-ID: <452E0564.5040403@norz.org> Karel Zak wrote: > Hi folks, > > the latest stable elinks version crashes on: > > HTTP_PROXY=8080:proxy.ucv.cl elinks http://wwww.google.cl > > you can try it with gdb and you will see that download->conn is NULL. > I think unstable version has same problem (I didn't test it, but the > code looks same...) > > Karel > > > --- elinks-0.11.1/src/session/task.c.kzak 2006-10-11 09:26:28.000000000 +0200 > +++ elinks-0.11.1/src/session/task.c 2006-10-11 09:27:29.000000000 +0200 > @@ -538,7 +538,8 @@ > } > > if (is_in_result_state(download->state) && download->state != S_OK) { > - print_error_dialog(ses, download->state, download->conn->uri, > + print_error_dialog(ses, download->state, > + download->conn ? download->conn->uri : NULL, > download->pri); > if (d == DO_MOVE_ABORT) reload(ses, CACHE_MODE_NORMAL); > } > > Hi Karel, your fix was committed to GIT tree. Thank you. -- Zas From witekfl at poczta.onet.pl Thu Oct 19 07:28:02 2006 From: witekfl at poczta.onet.pl (Witold Filipczyk) Date: Thu, 19 Oct 2006 15:28:02 +0200 Subject: [elinks-dev] Re: [patch] additional functionality for Python backend In-Reply-To: <18550.1159099474@poultrygeist.com> References: <18550.1159099474@poultrygeist.com> Message-ID: <20061019132802.GA12062@pldmachine> Applied. If you have any enhancements, feel free to send it here. -- Witek From kon at iki.fi Sat Oct 21 06:11:43 2006 From: kon at iki.fi (Kalle Olavi Niemitalo) Date: Sat, 21 Oct 2006 15:11:43 +0300 Subject: [elinks-dev] [elinks-web patch 1/2] Remove a spurious bracket and format with AsciiDoc 7.1.2. Message-ID: <87y7r950n4.fsf@Astalo.kon.iki.fi> A non-text attachment was scrubbed... Name: not available Type: text/x-patch Size: 5090 bytes Desc: not available Url : http://linuxfromscratch.org/pipermail/elinks-dev/attachments/20061021/2217905b/attachment.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 188 bytes Desc: not available Url : http://linuxfromscratch.org/pipermail/elinks-dev/attachments/20061021/2217905b/attachment-0001.bin From kon at iki.fi Sat Oct 21 06:13:16 2006 From: kon at iki.fi (Kalle Olavi Niemitalo) Date: Sat, 21 Oct 2006 15:13:16 +0300 Subject: [elinks-dev] [elinks-web patch 2/2] The elinks-bugs mailing list is out of order. Message-ID: <87vemd50kj.fsf@Astalo.kon.iki.fi> A non-text attachment was scrubbed... Name: not available Type: text/x-patch Size: 3862 bytes Desc: not available Url : http://linuxfromscratch.org/pipermail/elinks-dev/attachments/20061021/5937bdeb/attachment.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 188 bytes Desc: not available Url : http://linuxfromscratch.org/pipermail/elinks-dev/attachments/20061021/5937bdeb/attachment-0001.bin