You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openoffice.apache.org by "Marco A.G.Pinto" <ma...@mail.telepac.pt> on 2014/02/14 01:06:51 UTC

Proofing Tool GUI 2.3 released - 14.Feb.2014

Hello!

I have released V2.3 of my tool [1].

My main goal in this version was to optimise the code to the limit. 
Unfortunately, only the "Advanced Find" became three times faster (x86 
tested - x64 should be much faster) and I also fixed a bug there.

All other improvements were to make it more user friendly.

I had access to a dictionary with near 600 000 words and I was trying to 
optimise the code, but I noticed that what removes speed is the code 
that adds the words to the listboxgadget.

I tried to load the 600'000 words into a dynamic array and it only took 
a couple of seconds.

After some posts in the PureBasic forum I was advised about how I should 
proceed: I must only show a certain number of entries in the 
listboxgadget and manage the scroll bar myself.

This implementation will take several weeks of coding or maybe months 
since I only have the idea and I still don't know how to code it.

In V3.0 I expect to have this working and, if all goes well, it will 
work extremely fast in all OSes.

Also, I want to implement the Hyphenation. Does anyone know how it 
works, so that I can implement it? Maybe there is documentation somewhere?


[1]: http://marcoagpinto.cidadevirtual.pt/proofingtoolgui.html


Thanks!

Kind regards,
      >Marco A.G.Pinto
        -----------------------



-- 

Re: Requesting a new snapshot for the Lithuanian (lt) translation update for OpenOffice 4.1.0

Posted by Andrea Pescetti <pe...@apache.org>.
Aivaras Stepukonis wrote:
> When you write "reopen," do you mean changing the status of the bug? I
> am given only two options under status: "unconfirmed" and "resolved" .
> Where should I look for "reopen"?

You see the REOPENED status when an issue is RESOLVED; due to a typo in 
a commit message, this issue did not appear to have been resolved. Fixed 
now. The issue is properly assigned to jsc for the next import: 
https://issues.apache.org/ooo/show_bug.cgi?id=124087

Regards,
   Andrea.

---------------------------------------------------------------------
To unsubscribe, e-mail: l10n-unsubscribe@openoffice.apache.org
For additional commands, e-mail: l10n-help@openoffice.apache.org


Re: Requesting a new snapshot for the Lithuanian (lt) translation update for OpenOffice 4.1.0

Posted by Aivaras Stepukonis <as...@gmail.com>.
Thank you for pointing out that list of issues, I will sift through it 
as soon as I find a spare moment.

When you write "reopen," do you mean changing the status of the bug? I 
am given only two options under status: "unconfirmed" and "resolved" . 
Where should I look for "reopen"?

Best regards,

Aivaras

2014.02.14 23:21, Andrea Pescetti rašė:
> Aivaras Stepukonis wrote:
>> Unfortunately, after careful inspection I found several spelling and
>> grammar errors which I left inadvertently by failing to locate some
>> terms and their variations in the translation.
>
> No problem, just set 
> https://issues.apache.org/ooo/show_bug.cgi?id=124087 to "reopened" so 
> that we can immediately spot it.
>
> By the way, 
> https://issues.apache.org/ooo/buglist.cgi?quicksearch=lithuanian shows 
> many issues that you may want to have a look at (seeing if they are 
> still current and setting them to CONFIRMED if they still apply, to 
> RESOLVED-OBSOLETE if they don't apply any longer and so on).
>
> Regards,
> Andrea.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: l10n-unsubscribe@openoffice.apache.org
> For additional commands, e-mail: l10n-help@openoffice.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: l10n-unsubscribe@openoffice.apache.org
For additional commands, e-mail: l10n-help@openoffice.apache.org


Re: Requesting a new snapshot for the Lithuanian (lt) translation update for OpenOffice 4.1.0

Posted by Andrea Pescetti <pe...@apache.org>.
Aivaras Stepukonis wrote:
> Unfortunately, after careful inspection I found several spelling and
> grammar errors which I left inadvertently by failing to locate some
> terms and their variations in the translation.

No problem, just set 
https://issues.apache.org/ooo/show_bug.cgi?id=124087 to "reopened" so 
that we can immediately spot it.

By the way, 
https://issues.apache.org/ooo/buglist.cgi?quicksearch=lithuanian shows 
many issues that you may want to have a look at (seeing if they are 
still current and setting them to CONFIRMED if they still apply, to 
RESOLVED-OBSOLETE if they don't apply any longer and so on).

Regards,
   Andrea.

---------------------------------------------------------------------
To unsubscribe, e-mail: l10n-unsubscribe@openoffice.apache.org
For additional commands, e-mail: l10n-help@openoffice.apache.org


Requesting a new snapshot for the Lithuanian (lt) translation update for OpenOffice 4.1.0

Posted by Aivaras Stepukonis <as...@gmail.com>.
First of all, a big thanks for the latest snapshot (r1560760).

Unfortunately, after careful inspection I found several spelling and 
grammar errors which I left inadvertently by failing to locate some 
terms and their variations in the translation. The errors are quite 
prominent in the UI and would detract from the professional look of the 
software, otherwise I would leave the fixes for the next major update cycle.

I have updated the PO files on Pootle and am hoping I new snapshot can 
be built before AOO 4.1.0 officially rolls out.

Please, accept my apologies for the inconvenience.

Best regards,

Aivaras

---------------------------------------------------------------------
To unsubscribe, e-mail: l10n-unsubscribe@openoffice.apache.org
For additional commands, e-mail: l10n-help@openoffice.apache.org


Re: Proofing Tool GUI 2.3 released - 14.Feb.2014

Posted by "Marco A.G.Pinto" <ma...@mail.telepac.pt>.
Thanks, my dear friend Andrea!

:-P :-P ;-) :-)


On 14/02/2014 13:35, Andrea Pescetti wrote:
> On 14/02/2014 Marco A.G.Pinto wrote:
>> Also, I want to implement the Hyphenation. Does anyone know how it
>> works, so that I can implement it? Maybe there is documentation 
>> somewhere?
>
> The tool is called Hyphen and is part of Hunspell. So I think you 
> should start from
> http://sourceforge.net/projects/hunspell/files/Hyphen/
>
> The syntax of auxiliary files is very, very obscure! Most of the times 
> the hyphenation patterns are not created, but they are converted from 
> the ones available for TeX.
>
> The Italian package
> http://extensions.openoffice.org/project/dict-it
> should contain README files with links to the TeX sources.
>
> Regards,
>   Andrea.

-- 

Re: Proofing Tool GUI 2.3 released - 14.Feb.2014

Posted by "Marco A.G.Pinto" <ma...@mail.telepac.pt>.
Thanks, my dear friend Andrea!

:-P :-P ;-) :-)


On 14/02/2014 13:35, Andrea Pescetti wrote:
> On 14/02/2014 Marco A.G.Pinto wrote:
>> Also, I want to implement the Hyphenation. Does anyone know how it
>> works, so that I can implement it? Maybe there is documentation 
>> somewhere?
>
> The tool is called Hyphen and is part of Hunspell. So I think you 
> should start from
> http://sourceforge.net/projects/hunspell/files/Hyphen/
>
> The syntax of auxiliary files is very, very obscure! Most of the times 
> the hyphenation patterns are not created, but they are converted from 
> the ones available for TeX.
>
> The Italian package
> http://extensions.openoffice.org/project/dict-it
> should contain README files with links to the TeX sources.
>
> Regards,
>   Andrea.

-- 

Re: Proofing Tool GUI 2.3 released - 14.Feb.2014

Posted by Andrea Pescetti <pe...@apache.org>.
On 14/02/2014 Marco A.G.Pinto wrote:
> Also, I want to implement the Hyphenation. Does anyone know how it
> works, so that I can implement it? Maybe there is documentation somewhere?

The tool is called Hyphen and is part of Hunspell. So I think you should 
start from
http://sourceforge.net/projects/hunspell/files/Hyphen/

The syntax of auxiliary files is very, very obscure! Most of the times 
the hyphenation patterns are not created, but they are converted from 
the ones available for TeX.

The Italian package
http://extensions.openoffice.org/project/dict-it
should contain README files with links to the TeX sources.

Regards,
   Andrea.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@openoffice.apache.org
For additional commands, e-mail: dev-help@openoffice.apache.org


Re: Proofing Tool GUI 2.3 released - 14.Feb.2014

Posted by Andrea Pescetti <pe...@apache.org>.
On 14/02/2014 Marco A.G.Pinto wrote:
> Also, I want to implement the Hyphenation. Does anyone know how it
> works, so that I can implement it? Maybe there is documentation somewhere?

The tool is called Hyphen and is part of Hunspell. So I think you should 
start from
http://sourceforge.net/projects/hunspell/files/Hyphen/

The syntax of auxiliary files is very, very obscure! Most of the times 
the hyphenation patterns are not created, but they are converted from 
the ones available for TeX.

The Italian package
http://extensions.openoffice.org/project/dict-it
should contain README files with links to the TeX sources.

Regards,
   Andrea.

---------------------------------------------------------------------
To unsubscribe, e-mail: l10n-unsubscribe@openoffice.apache.org
For additional commands, e-mail: l10n-help@openoffice.apache.org