Samuel Murray (Groenkloof | 16 Apr 2008 11:35
Picon

Off-topic: Translators wanted for opensource


G'day everyone

I noticed that this project is quite active on Source Forge, and for 
that reason I'd like to tell you about our translation project.  I'm 
also hoping that some of you might be able to help us with translations 
or ideas.

The project is called Decathlon because we want to encourage people who 
feel passionate about their language to translate up to ten or more 
opensource programs into their languages in 2008.  This year, we limit 
our selection of translated programs to applications aimed at end-users, 
and preferably programs that run on multiple platforms.

All translations are done in our web-based translations system, Pootle. 
  The value of Pootle is that a team of translators can work together on 
a single file.  Pootle also has quality checking features, to ensure 
that translations don't break the software they are used in.   Pootle 
requires the Gettext PO format, but we can convert certain other formats 
to and from PO.

More information about the Decathlon project can be found here:
http://translate.sourceforge.net/wiki/decathlon/mainpage

Our Pootle server is here:
http://pootle.locamotion.org/

I look forward to hearing from anyone who is interested.  You are 
welcome to pass this e-mail on to anyone you think may be interested.

(Continue reading)

Vadim Zeitlin | 25 Apr 2008 00:20
Favicon

Re: Fcc

On Mon, 12 Nov 2007 18:07:11 +0200 Nerijus Baliunas <nerijus <at> users.sourceforge.net> wrote:

[better late than never...]

NB> If I enter or browse some folder in Fcc and send the message, it gets
NB> correctly saved in that folder, but I cannot press Enter or choose "Create
NB> a new recipient entry" and move Fcc down in composer window, it says
NB> "No matches for 'some folder'".

 Should be fixed now. There is still no expansion for folder names but at
least they're not handled as addresses any more. And expansion is not very
difficult to implement if it's really useful...

VZ

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
Vadim Zeitlin | 25 Apr 2008 00:25
Favicon

Re: message takes very long time to display

On Tue, 11 Dec 2007 17:04:36 +0200 Nerijus Baliunas <nerijus <at> users.sourceforge.net> wrote:

NB> attached.

 Just tried it and it seems relatively speedy to me (there is some delay
but <1 second I'd say). How long is "very long"? Does it still happen? And
if it does with wx trunk then I guess we have a string algorithm somewhere
which uses direct string access and so is O(N^2) now instead of O(N)... In
this case it would be really useful if you could run M under debugger and
break into it to check where exactly is it looping.

 Thanks,
VZ

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
Vadim Zeitlin | 25 Apr 2008 00:54
Favicon

Re: M with wx 2.8.4

On Wed, 29 Aug 2007 19:08:21 +0300 Nerijus Baliunas <nerijus <at> users.sourceforge.net> wrote:

NB> a warning and error:

 I've fixed both (and a few others introduced since then...), thanks,
VZ

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
Nerijus Baliunas | 28 Apr 2008 14:14
Picon

Re: message takes very long time to display

On Fri, 25 Apr 2008 00:25:21 +0200 Vadim Zeitlin <vadim <at> wxwindows.org> wrote:

VZ>  Just tried it and it seems relatively speedy to me (there is some delay
VZ> but <1 second I'd say). How long is "very long"? Does it still happen?

Wanted to try with latest wx and M svn:
lots of warnings:
/a/M/M/include/MailFolder.h:47: warning: type attributes ignored after type is already defined
/a/M/M/include/MailFolder.h:48: warning: type attributes ignored after type is already defined
/a/M/M/include/Message.h:28: warning: type attributes ignored after type is already defined
/a/M/M/include/gui/wxMDialogs.h:28: warning: type attributes ignored after type is already defined
/a/M/M/include/gui/wxMDialogs.h:29: warning: type attributes ignored after type is already defined

error:
.src/mail/SendMessageCC.cpp: In function 'long int write_stream_output(void*, char*)':
.src/mail/SendMessageCC.cpp:1922: error: request for member 'data' in
'wxString::From8BitData(const char*)().wxString::ToUTF8()', which is of non-class type 'const char*'
make[1]: *** [mail/SendMessageCC.o] Error 1

gcc-4.1.2

Regards,
Nerijus

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
(Continue reading)

Nerijus Baliunas | 29 Apr 2008 16:43
Picon

Re: message takes very long time to display

On Mon, 28 Apr 2008 15:14:14 +0300 Nerijus Baliunas <nerijus <at> users.sourceforge.net> wrote:

NB> .src/mail/SendMessageCC.cpp: In function 'long int write_stream_output(void*, char*)':
NB> .src/mail/SendMessageCC.cpp:1922: error: request for member 'data' in
'wxString::From8BitData(const char*)().wxString::ToUTF8()', which is of non-class type 'const char*'

I silenced it by:
--- SendMessageCC.cpp	(revision 7434)
+++ SendMessageCC.cpp	(working copy)
 <at>  <at>  -1919,7 +1919,7  <at>  <at> 
 static long write_stream_output(void *stream, char *string)
 {
    ostream *o = (ostream *)stream;
-   *o << wxString::From8BitData(string).ToUTF8().data();
+   *o << wxString::From8BitData(string).ToUTF8();
    if ( o->fail() )
       return NIL;

is it ok?

Regards,
Nerijus

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
Reinert, Jörg | 23 Apr 2008 12:32

Mahagony on an USB Flash Pen

To whom it may concerns,

the Mahagony concept seems very powerfull, flexible in use and good practicable for any user.  I'm
searching a programm that runs from an USB Flash Pen without installing in the OS.  I'm imaging a mail
program that has just to be copieed on the pen.  For any OS a separat Program would be OK, when the mail data are
accessable from the different programs.  The target is to have all the mails in the poket and regardless of
the running computer and it's OS I'm able to get my mails from the internet server.  Is that possible with Mahagony?

Thank you for an answer in advance.
Jörg Reinert
mailto:fam.reinert <at> web.de

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

Gmane