Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-12-06 Thread Stephan Witt
Am 21.11.2022 um 19:00 schrieb Jürgen Spitzmüller : > > Am Montag, dem 21.11.2022 um 18:53 +0100 schrieb Stephan Witt: >> Not easy, this would require to rewrite the spell check chunk split >> algorithm. >> >> ATM the complete paragraph is passed to the Apple spell checker at >> once. >>

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-21 Thread Jürgen Spitzmüller
Am Montag, dem 21.11.2022 um 18:53 +0100 schrieb Stephan Witt: > Not easy, this would require to rewrite the spell check chunk split > algorithm. > > ATM the complete paragraph is passed to the Apple spell checker at > once. > Obviously it won’t mark the unlearned word as misspelled in this >

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-20 Thread Jürgen Spitzmüller
Am Sonntag, dem 20.11.2022 um 12:34 +0100 schrieb Stephan Witt: > Yes, it never worked before. > > If unlearnWord is called it has an effect for learned words only. > > There is no call interface to unlearn a word in main dictionary. I see. But wouldn't it be possible to use an

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-20 Thread Stephan Witt
t all. >> IMO it's the right thing to skip the option to add words to the >> exclude word list then. > > But don't you disable the removal from Apple's personal dictionary > (AppleSpellChecker::remove) with this as well? Didn't this work before > the patch? Yes, it never w

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-20 Thread Jürgen Spitzmüller
Am Sonntag, dem 20.11.2022 um 12:01 +0100 schrieb Jürgen Spitzmüller: > It works for me with Hunspell (note that the lists are only saved > upon > LyX closure). > > What I find odd, though, is the naming in the menu. When I click on a > word that is in the main dictionary, e.g.

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-20 Thread Jürgen Spitzmüller
checkers in paragraph check mode (Apple) aren’t using the > exclude word list at all. > IMO it's the right thing to skip the option to add words to the > exclude word list then. But don't you disable the removal from Apple's personal dictionary (AppleSpellChecker::remove) with this as wel

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-15 Thread Stephan Witt
testing, but I've been using >> this patch for a while now and haven't noticed any extra lag in spell >> checking. >> >> >> >> — Isaac Oscar Gariano​ >> From: Stephan Witt >> Sent: Monday, 16 May 2022 2:07 AM >> To: Isaac Oscar Gariano >&

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-11-04 Thread Stephan Witt
do. >> >> I should probably do some performance testing, but I've been using >> this patch for a while now and haven't noticed any extra lag in spell >> checking. >> >> >> >> — Isaac Oscar Gariano​ >> From: Stephan Witt >>

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-10-25 Thread Jürgen Spitzmüller
; I should probably do some performance testing, but I've been using > this patch for a while now and haven't noticed any extra lag in spell > checking. > > > > — Isaac Oscar Gariano​ > From: Stephan Witt > Sent: Monday, 16 May 2022 2:07 AM > To: Isaac Oscar Gariano

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-05-30 Thread Isaac Oscar Gariano
extra lag in spell checking. — Isaac Oscar Gariano​ From: Stephan Witt Sent: Monday, 16 May 2022 2:07 AM To: Isaac Oscar Gariano Cc: lyx-devel@lists.lyx.org Subject: Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-05-15 Thread Jean-Marc Lasgouttes
Le 26/04/2022 à 09:27, Isaac Oscar Gariano a écrit : I've made the "Remove from personal dictionary" function/context menu item work for words that haven't been previously added, but instead are in the system-wide dictionary. Dear Isaac, Thanks for the patch. Unfortunately, I ju

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-05-15 Thread Jürgen Spitzmüller
Am Sonntag, dem 15.05.2022 um 15:58 +0200 schrieb Jean-Marc Lasgouttes: > Le 26/04/2022 à 09:27, Isaac Oscar Gariano a écrit : > > I've made the "Remove from personal dictionary" function/context > > menu > > item work for words that haven't bee

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-05-15 Thread Stephan Witt
Am 26.04.2022 um 09:27 schrieb Isaac Oscar Gariano : > > I've made the "Remove from personal dictionary" function/context menu item > work for words that haven't been previously added, but instead are in the > system-wide dictionary. > I've modified the behaviour so th

Re: [PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-05-15 Thread Jean-Marc Lasgouttes
Le 26/04/2022 à 09:27, Isaac Oscar Gariano a écrit : I've made the "Remove from personal dictionary" function/context menu item work for words that haven't been previously added, but instead are in the system-wide dictionary. Juergen, Did you have time to look at this patch? J

[PATCH] Allow removing words from the personal dictionary, that weren't previously added

2022-04-26 Thread Isaac Oscar Gariano
I've made the "Remove from personal dictionary" function/context menu item work for words that haven't been previously added, but instead are in the system-wide dictionary. I've modified the behaviour so that it will cause the word to be marked as incorrectly spelt, regardless

Re: [LyX/master] Add diagnostic messages for enchant spell checker dictionary requests

2014-11-19 Thread Georg Baum
Stephan Witt wrote: Yes, it didn't work. I had to remove the const keyword to get it to compile. Yesterday I couldn't figure it out. Yes, this is the standard way to catch exceptions (unless you work with libraries that ignore the standards and define their own thing, like the Microsoft

Re: [LyX/master] Add diagnostic messages for enchant spell checker dictionary requests

2014-11-19 Thread Georg Baum
Stephan Witt wrote: > Yes, it didn't work. I had to remove the const keyword to get it to > compile. Yesterday I couldn't figure it out. Yes, this is the standard way to catch exceptions (unless you work with libraries that ignore the standards and define their own thing, like the Microsoft

Re: [LyX/master] Add diagnostic messages for enchant spell checker dictionary requests

2014-11-18 Thread Georg Baum
Stephan Witt wrote: catch (const enchant::Exception e) { // FIXME error handling? + // unfortunately the message of enchant::Exception is unreachable Why? Does e.what() not work? Georg

Re: [LyX/master] Add diagnostic messages for enchant spell checker dictionary requests

2014-11-18 Thread Stephan Witt
Am 18.11.2014 um 18:42 schrieb Georg Baum georg.b...@post.rwth-aachen.de: Stephan Witt wrote: catch (const enchant::Exception e) { // FIXME error handling? +// unfortunately the message of enchant::Exception is unreachable Why? Does e.what() not work? Yes, it didn't work.

Re: [LyX/master] Add diagnostic messages for enchant spell checker dictionary requests

2014-11-18 Thread Georg Baum
Stephan Witt wrote: > catch (const enchant::Exception & e) { > // FIXME error handling? > + // unfortunately the message of enchant::Exception is unreachable Why? Does e.what() not work? Georg

Re: [LyX/master] Add diagnostic messages for enchant spell checker dictionary requests

2014-11-18 Thread Stephan Witt
Am 18.11.2014 um 18:42 schrieb Georg Baum : > Stephan Witt wrote: > >> catch (const enchant::Exception & e) { >> // FIXME error handling? >> +// unfortunately the message of enchant::Exception is > unreachable > > Why? Does e.what() not work? Yes,

Re: #7043: Add to personal dictionary appears to do nothing

2011-07-31 Thread Stephan Witt
Am 31.07.2011 um 04:30 schrieb LyX Ticket Tracker: #7043: Add to personal dictionary appears to do nothing -+-- Reporter: quietbritishjim | Owner: lasgouttes Type: defect | Status: new

Re: #7043: "Add to personal dictionary" appears to do nothing

2011-07-31 Thread Stephan Witt
Am 31.07.2011 um 04:30 schrieb LyX Ticket Tracker: > #7043: "Add to personal dictionary" appears to do nothing > -+-- > Reporter: quietbritishjim | Owner: lasgouttes > Type: defect

Re: #7043: Add to personal dictionary appears to do nothing

2010-12-07 Thread Stephan Witt
Am 07.12.2010 um 09:26 schrieb LyX Ticket Tracker: #7043: Add to personal dictionary appears to do nothing -+-- Reporter: quietbritishjim | Owner: lasgouttes Type: defect | Status: new

Re: #7043: Add to personal dictionary appears to do nothing

2010-12-07 Thread Jürgen Spitzmüller
Stephan Witt wrote: I have to admit that I'm not sure about the rules (again). Where can I look them up? In our collective memory ;-) I'd say this ticket should be changed to resolved with fixed. But who should do that? The person who fixed it or the person who verified it? Anybody. If you

Re: #7043: Add to personal dictionary appears to do nothing

2010-12-07 Thread Richard Heck
On 12/07/2010 04:38 AM, Jürgen Spitzmüller wrote: Stephan Witt wrote: I have to admit that I'm not sure about the rules (again). Where can I look them up? In our collective memory ;-) I'd say this ticket should be changed to resolved with fixed. But who should do that? The person who fixed

Re: #7043: Add to personal dictionary appears to do nothing

2010-12-07 Thread Stephan Witt
Am 07.12.2010 um 14:53 schrieb LyX Ticket Tracker: #7043: Add to personal dictionary appears to do nothing -+-- Reporter: quietbritishjim | Owner: lasgouttes Type: defect | Status: new

Re: #7043: Add to personal dictionary appears to do nothing

2010-12-07 Thread Pavel Sanda
Stephan Witt wrote: I would prefer the following rule: the ticket reporter verifies the state after getting the notification that it's fixed. But I understand that sometimes the reporter looses the interest in the ticket... the reporters are mostly the people who have no clue about our

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-12-07 Thread Stephan Witt
Am 07.12.2010 um 09:26 schrieb LyX Ticket Tracker: > #7043: "Add to personal dictionary" appears to do nothing > -+-- > Reporter: quietbritishjim | Owner: lasgouttes > Type: defect

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-12-07 Thread Jürgen Spitzmüller
Stephan Witt wrote: > I have to admit that I'm not sure about the rules (again). > Where can I look them up? In our collective memory ;-) > I'd say this ticket should be changed to resolved with fixed. > But who should do that? The person who fixed it or the person who verified > it? Anybody.

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-12-07 Thread Richard Heck
On 12/07/2010 04:38 AM, Jürgen Spitzmüller wrote: Stephan Witt wrote: I have to admit that I'm not sure about the rules (again). Where can I look them up? In our collective memory ;-) I'd say this ticket should be changed to resolved with fixed. But who should do that? The person who fixed

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-12-07 Thread Stephan Witt
Am 07.12.2010 um 14:53 schrieb LyX Ticket Tracker: > #7043: "Add to personal dictionary" appears to do nothing > -+-- > Reporter: quietbritishjim | Owner: lasgouttes > Type: defect

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-12-07 Thread Pavel Sanda
Stephan Witt wrote: > I would prefer the following rule: > the ticket reporter verifies the state after getting the notification that > it's fixed. > But I understand that sometimes the reporter looses the interest in the > ticket... the reporters are mostly the people who have no clue about

Re: #7043: Add to personal dictionary appears to do nothing

2010-11-26 Thread Jürgen Spitzmüller
Stephan Witt wrote: Stephan Witt wrote: How to proceed? The options I see: 1) leave it as it is. Add to personal dictionary with all backends and remove only for apples native spell checker. This is fine with me. How would you rate the idea to manipulate aspell's personal word

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-11-26 Thread Jürgen Spitzmüller
Stephan Witt wrote: > > Stephan Witt wrote: > >> How to proceed? The options I see: > >> 1) leave it as it is. Add to personal dictionary with all backends > >> and remove only for apples native spell checker. > > > > > > > > This is fin

Re: #7043: Add to personal dictionary appears to do nothing

2010-11-23 Thread Stephan Witt
Am 19.11.2010 um 08:49 schrieb Stephan Witt: Am 19.11.2010 um 07:20 schrieb LyX Ticket Tracker: #7043: Add to personal dictionary appears to do nothing -+-- Reporter: quietbritishjim | Owner: lasgouttes

Re: #7043: Add to personal dictionary appears to do nothing

2010-11-23 Thread Jürgen Spitzmüller
Stephan Witt wrote: How to proceed? The options I see: 1) leave it as it is. Add to personal dictionary with all backends and remove only for apples native spell checker. This is fine with me. 2) act like enchant and manage the personal word list in LyX, at least for aspell and hunspell

Re: #7043: Add to personal dictionary appears to do nothing

2010-11-23 Thread Pavel Sanda
must have taken quite a time, it would be good to archive it either in trac or somewhere in our tre as a comment or file How to proceed? The options I see: 1) leave it as it is. Add to personal dictionary with all backends and remove only for apples native spell checker. 2) act like

Re: #7043: Add to personal dictionary appears to do nothing

2010-11-23 Thread Stephan Witt
Am 23.11.2010 um 18:46 schrieb Jürgen Spitzmüller: Stephan Witt wrote: How to proceed? The options I see: 1) leave it as it is. Add to personal dictionary with all backends and remove only for apples native spell checker. This is fine with me. How would you rate the idea to manipulate

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-11-23 Thread Stephan Witt
Am 19.11.2010 um 08:49 schrieb Stephan Witt: > Am 19.11.2010 um 07:20 schrieb LyX Ticket Tracker: > >> #7043: "Add to personal dictionary" appears to do nothing >> -+-- >> Reporte

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-11-23 Thread Jürgen Spitzmüller
Stephan Witt wrote: > How to proceed? The options I see: > 1) leave it as it is. Add to personal dictionary with all backends > and remove only for apples native spell checker. This is fine with me. > 2) act like enchant and manage the personal word list in LyX, > at l

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-11-23 Thread Pavel Sanda
ist available after restart. > 3) There is no persistent state for personal word lists. this research must have taken quite a time, it would be good to archive it either in trac or somewhere in our tre as a comment or file > How to proceed? The options I see: > 1) leave it as it is. Add

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-11-23 Thread Stephan Witt
Am 23.11.2010 um 18:46 schrieb Jürgen Spitzmüller: > Stephan Witt wrote: >> How to proceed? The options I see: >> 1) leave it as it is. Add to personal dictionary with all backends >> and remove only for apples native spell checker. > > This is fine with me.

Re: #7043: Add to personal dictionary appears to do nothing

2010-11-18 Thread Stephan Witt
Am 19.11.2010 um 07:20 schrieb LyX Ticket Tracker: #7043: Add to personal dictionary appears to do nothing -+-- Reporter: quietbritishjim | Owner: lasgouttes Type: defect | Status: new

Re: #7043: "Add to personal dictionary" appears to do nothing

2010-11-18 Thread Stephan Witt
Am 19.11.2010 um 07:20 schrieb LyX Ticket Tracker: > #7043: "Add to personal dictionary" appears to do nothing > -+-- > Reporter: quietbritishjim | Owner: lasgouttes > Type: defect

How to remove a learned word from personal dictionary

2010-07-13 Thread Stephan Witt
Now, I've added the native spell checker interface for mac os x, I find it strange to support only adding words in LyX. It seems like the spell checker infrastructure doesn't support removing of words from personal dictionary. But this is possible with aspell at least, AFAICS. The cool feature

How to remove a learned word from personal dictionary

2010-07-13 Thread Stephan Witt
Now, I've added the native spell checker interface for mac os x, I find it strange to support only adding words in LyX. It seems like the spell checker infrastructure doesn't support removing of words from personal dictionary. But this is possible with aspell at least, AFAICS. The cool feature

Re: downloading dutch dictionary failed

2008-02-07 Thread Jürgen Spitzmüller
Edwin Leuven wrote: jürgen, what about branch? put it in. Jürgen

Re: downloading dutch dictionary failed

2008-02-07 Thread Edwin Leuven
Uwe Stöhr wrote: i suspect something like the attached is needed... Your patch is obviously correct. Please put it in. jürgen, what about branch?

Re: downloading dutch dictionary failed

2008-02-07 Thread Jürgen Spitzmüller
Edwin Leuven wrote: > jürgen, what about branch? put it in. Jürgen

Re: downloading dutch dictionary failed

2008-02-07 Thread Edwin Leuven
Uwe Stöhr wrote: > i suspect something like the attached is needed... Your patch is obviously correct. Please put it in. jürgen, what about branch?

downloading dutch dictionary failed

2008-02-06 Thread Edwin Leuven
i suspect something like the attached is needed... Index: Win32/packaging/installer/components/dicts.nsh === --- Win32/packaging/installer/components/dicts.nsh (revision 22808) +++ Win32/packaging/installer/components/dicts.nsh

Re: downloading dutch dictionary failed

2008-02-06 Thread Uwe Stöhr
i suspect something like the attached is needed... Your patch is obviously correct. Please put it in. regards Uwe

downloading dutch dictionary failed

2008-02-06 Thread Edwin Leuven
i suspect something like the attached is needed... Index: Win32/packaging/installer/components/dicts.nsh === --- Win32/packaging/installer/components/dicts.nsh (revision 22808) +++ Win32/packaging/installer/components/dicts.nsh

Re: downloading dutch dictionary failed

2008-02-06 Thread Uwe Stöhr
> i suspect something like the attached is needed... Your patch is obviously correct. Please put it in. regards Uwe

dictionary

2007-06-06 Thread Filippo Ottone
hello, i try to install lyx 1.5 but it' impossible to download aspell dictionary(english or italian). i tried to install them before or after lyx installation but they don't work Filippo

Re: dictionary

2007-06-06 Thread Pavel Sanda
i try to install lyx 1.5 but it' impossible to download aspell dictionary(english or italian). i tried to install them before or after lyx installation but they don't work if you are on win arch maybe this can help you http://www.mail-archive.com/[EMAIL PROTECTED]/msg56072.html pavel

dictionary

2007-06-06 Thread Filippo Ottone
hello, i try to install lyx 1.5 but it' impossible to download aspell dictionary(english or italian). i tried to install them before or after lyx installation but they don't work Filippo

Re: dictionary

2007-06-06 Thread Pavel Sanda
> i try to install lyx 1.5 but it' impossible to download aspell > dictionary(english or italian). i tried to install them before or after lyx > installation but they don't work if you are on win arch maybe this can help you http://www.mail-archive.com/[EMAIL PROTECTED]/msg56072.html pavel

Re: Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-25 Thread Helge Hafting
Jean-Marc Lasgouttes wrote: Helge == Helge Hafting [EMAIL PROTECTED] writes: Helge For most languages, aspell seems to use the correct dictionary. Helge But not when I spellcheck norwegian text. When the document Helge language is Norsk, aspell will use the dictionary for Helge

Re: Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-25 Thread Jean-Marc Lasgouttes
Helge == Helge Hafting [EMAIL PROTECTED] writes: Helge You found it. I tested this with aspell - nb_NO is correct, Helge no_NO gives me nynorsk spelling instead. The correct code for Helge nynorsk is nn_NO, don't know why it does that for no_NO. I guess it picks one at random... JMarc

Re: Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-25 Thread Helge Hafting
Jean-Marc Lasgouttes wrote: "Helge" == Helge Hafting <[EMAIL PROTECTED]> writes: Helge> For most languages, aspell seems to use the correct dictionary. Helge> But not when I spellcheck norwegian text. When the document Helge> language is "Norsk&qu

Re: Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-25 Thread Jean-Marc Lasgouttes
> "Helge" == Helge Hafting <[EMAIL PROTECTED]> writes: Helge> You found it. I tested this with aspell - nb_NO is correct, Helge> no_NO gives me "nynorsk" spelling instead. The correct code for Helge> "nynorsk" is nn_NO, don't know why it does that for no_NO. I guess it picks one at random...

Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-22 Thread Helge Hafting
For most languages, aspell seems to use the correct dictionary. But not when I spellcheck norwegian text. When the document language is Norsk, aspell will use the dictionary for Nynorsk instead. This is useless, as nynorsk is a rather different variety of the norwegian language. Ispell

Re: Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-22 Thread Jean-Marc Lasgouttes
Helge == Helge Hafting [EMAIL PROTECTED] writes: Helge For most languages, aspell seems to use the correct dictionary. Helge But not when I spellcheck norwegian text. When the document Helge language is Norsk, aspell will use the dictionary for Helge Nynorsk instead. Helge This is useless

Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-22 Thread Helge Hafting
For most languages, aspell seems to use the correct dictionary. But not when I spellcheck norwegian text. When the document language is "Norsk", aspell will use the dictionary for "Nynorsk" instead. This is useless, as "nynorsk" is a rather different vari

Re: Bug: 2850 Aspell spellchecks with the wrong dictionary :-(

2006-09-22 Thread Jean-Marc Lasgouttes
>>>>> "Helge" == Helge Hafting <[EMAIL PROTECTED]> writes: Helge> For most languages, aspell seems to use the correct dictionary. Helge> But not when I spellcheck norwegian text. When the document Helge> language is "Norsk", aspell will use t

Aspell dictionary issues

2006-09-10 Thread Uwe Stöhr
I have some annotations to the Aspell6 dictionaries for Windows: - When I uninstall Aspell Data the folder C:\Aspell\lib is not deleted. I expected that this as also removed when Aspell is uninstalled. - A collegue of mine informed me that there is now also an arabic Aspell dictionary

Aspell dictionary issues

2006-09-10 Thread Uwe Stöhr
I have some annotations to the Aspell6 dictionaries for Windows: - When I uninstall Aspell Data the folder C:\Aspell\lib is not deleted. I expected that this as also removed when Aspell is uninstalled. - A collegue of mine informed me that there is now also an arabic Aspell dictionary

New italian dictionary for ispell

1999-09-29 Thread claudio
A new italian dictionary for ispell is at ftp://ftp.pluto.linux.it/pub/pluto/ildp/apps/ispell/ Claudio -- Visit my home page http://www.geocities.com/Paris/Lights/8645/ --- Do you want really WRITE your document ?? Just use LyX

New italian dictionary for ispell

1999-09-29 Thread claudio
A new italian dictionary for ispell is at ftp://ftp.pluto.linux.it/pub/pluto/ildp/apps/ispell/ Claudio -- Visit my home page http://www.geocities.com/Paris/Lights/8645/ --- Do you want really WRITE your document ?? Just use LyX