How to fix aspell (bn-BD) invalid strings compiling issue
When I tried to re-create aspell-bn
(bn-BD) i.e. of Bengali(BD) language spellchecker with help of this link for aspell6 by compiling like the following
$ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/aspell co aspell-lang
$ cd aspell-lang
$ ./pre bn u-beng
$ cd bn
$ ./proc create
This creates configure script and Makefile.pre and finally copying the word list file to working directory and named it as bn.wl Word list file which contains list of words separated by new lines. And then
$ ./configure
$ make
(/usr/sbin/prezip-bin -d < bn.cwl | /usr/sbin/aspell --lang=bn create master ./bn.rws)
But when I run "make", it prints many error messages and warnings like the following 2 types (The Unicode code points U+09CE and U+FEFF are unsupported), though according to u-beng.txt U+09CE is clearly within the defined range.
Warning: The string "হৃৎযন্ত্র" is invalid. The Unicode code point U+09CE is unsupported. Skipping string.
Warning: The string "ক্ল্যারিজ" is invalid. The Unicode code point U+FEFF is unsupported. Skipping string.
After all of these, I do get a bn.rws file but it does not include all the words listed in bn.wl.
I am using parabola-arch x86-64
And pacman -Qi aspell
returns
Name : aspell
Version : 0.60.6.1-5
Description : A spell checker designed to eventually replace Ispell
Architecture : x86_64
URL : http://aspell.net/
Licenses : LGPL
Groups : None
Provides : None
Depends On : gcc-libs ncurses
Optional Deps : perl: to import old dictionaries [installed]
If you can help me correct my mistakes then please. I am also including the error.log.
I guess I need to do something with the u-beng.txt in the aspell-lang/maps folder or in the u-beng.cset & u-beng.cmap but I am not sure.
P.S. Bengali_(Unicode_block)
And Official Unicode Consortium code chart for Bengali.
And a pull request.
dictionary language aspell
add a comment |
When I tried to re-create aspell-bn
(bn-BD) i.e. of Bengali(BD) language spellchecker with help of this link for aspell6 by compiling like the following
$ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/aspell co aspell-lang
$ cd aspell-lang
$ ./pre bn u-beng
$ cd bn
$ ./proc create
This creates configure script and Makefile.pre and finally copying the word list file to working directory and named it as bn.wl Word list file which contains list of words separated by new lines. And then
$ ./configure
$ make
(/usr/sbin/prezip-bin -d < bn.cwl | /usr/sbin/aspell --lang=bn create master ./bn.rws)
But when I run "make", it prints many error messages and warnings like the following 2 types (The Unicode code points U+09CE and U+FEFF are unsupported), though according to u-beng.txt U+09CE is clearly within the defined range.
Warning: The string "হৃৎযন্ত্র" is invalid. The Unicode code point U+09CE is unsupported. Skipping string.
Warning: The string "ক্ল্যারিজ" is invalid. The Unicode code point U+FEFF is unsupported. Skipping string.
After all of these, I do get a bn.rws file but it does not include all the words listed in bn.wl.
I am using parabola-arch x86-64
And pacman -Qi aspell
returns
Name : aspell
Version : 0.60.6.1-5
Description : A spell checker designed to eventually replace Ispell
Architecture : x86_64
URL : http://aspell.net/
Licenses : LGPL
Groups : None
Provides : None
Depends On : gcc-libs ncurses
Optional Deps : perl: to import old dictionaries [installed]
If you can help me correct my mistakes then please. I am also including the error.log.
I guess I need to do something with the u-beng.txt in the aspell-lang/maps folder or in the u-beng.cset & u-beng.cmap but I am not sure.
P.S. Bengali_(Unicode_block)
And Official Unicode Consortium code chart for Bengali.
And a pull request.
dictionary language aspell
add a comment |
When I tried to re-create aspell-bn
(bn-BD) i.e. of Bengali(BD) language spellchecker with help of this link for aspell6 by compiling like the following
$ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/aspell co aspell-lang
$ cd aspell-lang
$ ./pre bn u-beng
$ cd bn
$ ./proc create
This creates configure script and Makefile.pre and finally copying the word list file to working directory and named it as bn.wl Word list file which contains list of words separated by new lines. And then
$ ./configure
$ make
(/usr/sbin/prezip-bin -d < bn.cwl | /usr/sbin/aspell --lang=bn create master ./bn.rws)
But when I run "make", it prints many error messages and warnings like the following 2 types (The Unicode code points U+09CE and U+FEFF are unsupported), though according to u-beng.txt U+09CE is clearly within the defined range.
Warning: The string "হৃৎযন্ত্র" is invalid. The Unicode code point U+09CE is unsupported. Skipping string.
Warning: The string "ক্ল্যারিজ" is invalid. The Unicode code point U+FEFF is unsupported. Skipping string.
After all of these, I do get a bn.rws file but it does not include all the words listed in bn.wl.
I am using parabola-arch x86-64
And pacman -Qi aspell
returns
Name : aspell
Version : 0.60.6.1-5
Description : A spell checker designed to eventually replace Ispell
Architecture : x86_64
URL : http://aspell.net/
Licenses : LGPL
Groups : None
Provides : None
Depends On : gcc-libs ncurses
Optional Deps : perl: to import old dictionaries [installed]
If you can help me correct my mistakes then please. I am also including the error.log.
I guess I need to do something with the u-beng.txt in the aspell-lang/maps folder or in the u-beng.cset & u-beng.cmap but I am not sure.
P.S. Bengali_(Unicode_block)
And Official Unicode Consortium code chart for Bengali.
And a pull request.
dictionary language aspell
When I tried to re-create aspell-bn
(bn-BD) i.e. of Bengali(BD) language spellchecker with help of this link for aspell6 by compiling like the following
$ cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/aspell co aspell-lang
$ cd aspell-lang
$ ./pre bn u-beng
$ cd bn
$ ./proc create
This creates configure script and Makefile.pre and finally copying the word list file to working directory and named it as bn.wl Word list file which contains list of words separated by new lines. And then
$ ./configure
$ make
(/usr/sbin/prezip-bin -d < bn.cwl | /usr/sbin/aspell --lang=bn create master ./bn.rws)
But when I run "make", it prints many error messages and warnings like the following 2 types (The Unicode code points U+09CE and U+FEFF are unsupported), though according to u-beng.txt U+09CE is clearly within the defined range.
Warning: The string "হৃৎযন্ত্র" is invalid. The Unicode code point U+09CE is unsupported. Skipping string.
Warning: The string "ক্ল্যারিজ" is invalid. The Unicode code point U+FEFF is unsupported. Skipping string.
After all of these, I do get a bn.rws file but it does not include all the words listed in bn.wl.
I am using parabola-arch x86-64
And pacman -Qi aspell
returns
Name : aspell
Version : 0.60.6.1-5
Description : A spell checker designed to eventually replace Ispell
Architecture : x86_64
URL : http://aspell.net/
Licenses : LGPL
Groups : None
Provides : None
Depends On : gcc-libs ncurses
Optional Deps : perl: to import old dictionaries [installed]
If you can help me correct my mistakes then please. I am also including the error.log.
I guess I need to do something with the u-beng.txt in the aspell-lang/maps folder or in the u-beng.cset & u-beng.cmap but I am not sure.
P.S. Bengali_(Unicode_block)
And Official Unicode Consortium code chart for Bengali.
And a pull request.
dictionary language aspell
dictionary language aspell
edited Jan 23 at 5:56
Pavel Sayekat
asked Mar 27 '18 at 14:01
Pavel SayekatPavel Sayekat
200211
200211
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f433846%2fhow-to-fix-aspell-bn-bd-invalid-strings-compiling-issue%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f433846%2fhow-to-fix-aspell-bn-bd-invalid-strings-compiling-issue%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown