![]() |
#76 |
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
|
Instructions on how to install a custom dictionary on your Kobo can be found in the README of the GitHub repo: https://github.com/pettarin/penelope
|
![]() |
![]() |
![]() |
#77 | |
Member
![]() Posts: 14
Karma: 10
Join Date: Apr 2011
Location: Slovenia
Device: Sony PRS 600, Kobo Aura H2O
|
Quote:
So, if you want to have your own dictionary never choose update Kobo.... ![]() |
|
![]() |
![]() |
Advert | |
|
![]() |
#78 |
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
|
I updated the README, adding a note about the firmware updates and suggesting to keep a copy of the custom dictionaries somewhere else, thank you.
|
![]() |
![]() |
![]() |
#79 |
Junior Member
![]() Posts: 8
Karma: 10
Join Date: Mar 2015
Device: Kobo Glo
|
I have used Penelope to convert a stardict dictionary English - Vietnamese for Kobo (attachment). However, when I use this dictionary on Kobo Glo (3.3.0), the font for Vietnamese seems not to be right. I think I need to change font of dictionary in Kobo but I don't know how to do it. Does anyone know how to change font of dictionary?
|
![]() |
![]() |
![]() |
#80 |
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
|
As far as I know, there is no way to embed a font inside a Kobo dictionary, for the reader/app to use it when displaying the dictionary definition.
Hence, all you have is the default "Kobo" font: if it does not have glyphs for certain (or even all) Vietnamese characters, you are out of luck. (Maybe custom firmwares do have the possibility of changing the dictionary font --- I do not know for sure, try searching the Kobo Developer part of this forum.) I have tried reaching the Kobo devs several times, asking them for the dictionary format documentation and official support for custom dictionaries, but with zero results. === Is the dictionary linked above still usable? Would you like me to list it in the index in the first post? |
![]() |
![]() |
Advert | |
|
![]() |
#81 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 81
Karma: 5414
Join Date: Mar 2013
Location: CK, Poland
Device: Kobo Glo, H2O
|
One question? Can Penelope convert stardict dictionary with synonym *.syn file?
|
![]() |
![]() |
![]() |
#82 |
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
|
Yes, it can convert them, but I guess what you meant was "Is Penelope taking into account the .syn file inside a StarDict dictionary?", to which the answer is no.
I acknowledge this could be a nice feature, but I have never come across to one such dictionary (legally available for free). Do you have a link? BTW, the code of Penelope is on GitHub under the terms of the MIT license ( https://github.com/pettarin/penelope ): unfortunately I do not have time to work on it, but anyone willing to implement new features, write documentation, etc. is welcome to join the project. |
![]() |
![]() |
![]() |
#83 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 81
Karma: 5414
Join Date: Mar 2013
Location: CK, Poland
Device: Kobo Glo, H2O
|
Well, I don't have yet a dictionary with .syn file but I was going to make one. Or at least try to make as I found a base file to work on.
Another thing I forgot to ask (and asked for it already a year back or so). Is it possible to merge two dictionaries (english-english and english-polish) to create something like english-english-polish dictionary? It would work in a way that after english definition for a word there would be polish translation of it (of course only if there would be a translation for the word in eng-pol dictionary). And another. Let's say that I have two or three different polish dictionaries and I want to join them into one. Is it possible? Sadly, as I don't know Python I can't help with work on Penelope. |
![]() |
![]() |
![]() |
#84 | ||
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
|
Quote:
Quote:
Code:
$ python penelope.py -p "bar,foo,zam" -f pl -t pl --output-kobo The above will create a separate dictionary entry for each dictionary entry in any input dictionary: Dict 1: "word" => "definition of word in dictionary 1" Dict 2: "word" => "definition of word in dictionary 2" Dict 3: "word" => "definition of word in dictionary 3" Merged dictionary will have three entries for "word": "word" => "definition of word in dictionary 1" "word" => "definition of word in dictionary 2" "word" => "definition of word in dictionary 3" If you want to merge the definitions: Merged dictionary: "word" => "definition of word in dictionary 1 | definition of word in dictionary 2 | definition of word in dictionary 3" you must write a custom parser for that; for example, you can adapt this one: https://github.com/pettarin/penelope...ster_parser.py and use the --parser option: Code:
$ python penelope.py -p "bar,foo,zam" -f pl -t pl --parser customparser.py --output-kobo Last edited by AlPe; 03-19-2015 at 06:53 AM. |
||
![]() |
![]() |
![]() |
#85 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 81
Karma: 5414
Join Date: Mar 2013
Location: CK, Poland
Device: Kobo Glo, H2O
|
Ok, this is nice
![]() So first option would be great if I would like to merge for example dictionary and encyclopedia, second one for merging two different polish dictionaries |
![]() |
![]() |
![]() |
#86 | |
Zealot
![]() ![]() ![]() ![]() ![]() ![]() Posts: 128
Karma: 500
Join Date: Aug 2011
Device: kindle, boox
|
Quote:
If you want an example of a functional stardict with syn i can send it to you. |
|
![]() |
![]() |
![]() |
#87 |
Digital Amanuensis
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 727
Karma: 1446357
Join Date: Dec 2011
Location: Turin, Italy
Device: Several eReaders and tablets
|
Good. Next week I will be traveling, so I will have some "spare" time to spend on the merging / synonyms thing.
Sure, a StarDict with .syn file will save me some time to build an example. If you do not mind, you can send it to me via email (or dropbox/gdrive/etc link): my email is here: http://www.albertopettarin.it/contact.html or PM. |
![]() |
![]() |
![]() |
#88 | |
Zealot
![]() ![]() ![]() ![]() ![]() ![]() Posts: 128
Karma: 500
Join Date: Aug 2011
Device: kindle, boox
|
Quote:
![]() |
|
![]() |
![]() |
![]() |
#89 |
I need a chapter break
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,042
Karma: 56058267
Join Date: Mar 2015
Location: Israel
Device: Kobo Glo
|
Hi
Can somebody please help my convert dictionary english-hebrew for kobo. there an [ERORR]. "File en_he.ifo not found or withe worng format.Aborting" thanks. Oren english-hebrew.rar Last edited by oren64; 03-26-2015 at 07:15 AM. |
![]() |
![]() |
![]() |
#90 |
Member
![]() Posts: 22
Karma: 10
Join Date: Sep 2014
Location: Netherlands
Device: Kobo Glo
|
Hi orren64,
I've converted the file. I got a few errors, so I'm not sure if this works. Please report back if it works. Then Alberto can add it to the list. Kind regards, Ruud |
![]() |
![]() |
![]() |
Tags |
kobo dictionaries |
Thread Tools | Search this Thread |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
New custom English dictionaries | ShellShock | Kobo Developer's Corner | 166 | 09-22-2020 02:48 PM |
Kobo desktop loading dictionaries | brudigia | Kobo Reader | 1 | 07-16-2014 12:55 PM |
Touch building custom dictionaries, especially Japanese-English | tshering | Kobo Reader | 0 | 07-12-2012 06:00 PM |
Custom dictionaries for 350/650? | 1drey | Sony Reader | 5 | 12-28-2010 12:49 PM |
non-English dictionaries in eReader on iPod Touch? | ficbot | Reading and Management | 1 | 10-11-2008 09:04 AM |