View Single Post
Old 07-16-2014, 05:26 PM   #2
waterwave
Junior Member
waterwave began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jul 2014
Device: evvse
example

Look at the table
Code:
sqlite3 /run/media/user/KOBOeReader/.kobo/KoboReader.sqlite '.dump Dictionary'
Code:
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE Dictionary (
        Suffix          TEXT,
        Name            TEXT,
        Installed       BOOL,
        Size            TEXT,
        LastModified    TEXT,
        IsSynced        BOOL,
        PRIMARY KEY(Suffix)
);
INSERT INTO "Dictionary" VALUES('-pt','Português','false','11628871','','true');
INSERT INTO "Dictionary" VALUES('-es','Español','false','6544221','','true');
INSERT INTO "Dictionary" VALUES('-en-ja','English - 日本語','false','7589659','','true');
INSERT INTO "Dictionary" VALUES('-fr','Français','false','6355837','','true');
INSERT INTO "Dictionary" VALUES('-en-it','English - Italiano','false','749416','','true');
INSERT INTO "Dictionary" VALUES('-nl','Nederlands','false','2405483','','true');
INSERT INTO "Dictionary" VALUES('-ja','日本語','false','6006033','','true');
INSERT INTO "Dictionary" VALUES('-en-fr','English - Français','false','1217803','','true');
INSERT INTO "Dictionary" VALUES('-it','Italiano','false','9800696','','true');
INSERT INTO "Dictionary" VALUES('-en-pt','English - Português','false','1440049','','true');
INSERT INTO "Dictionary" VALUES('-es-en','Español - English','false','1666763',NULL,'true');
INSERT INTO "Dictionary" VALUES('-pt-en','Português - English','false','3226343',NULL,'true');
INSERT INTO "Dictionary" VALUES('-fr-en','Français - English','false','1586132',NULL,'true');
INSERT INTO "Dictionary" VALUES('-it-en','Italiano - English','false','1019627',NULL,'true');
INSERT INTO "Dictionary" VALUES('-de-en','Deutsch - English','false','926221',NULL,'true');
INSERT INTO "Dictionary" VALUES('-de','Deutsch','false','7317565',NULL,'true');
INSERT INTO "Dictionary" VALUES('-en','English','false','7010221',NULL,'true');
INSERT INTO "Dictionary" VALUES('-en-de','English - Deutsch','false','708515',NULL,'true');
INSERT INTO "Dictionary" VALUES('-en-es','English - Español','false','1240125',NULL,'true');
COMMIT;
Here some Custom Dictionaries
https://www.mobileread.com/forums/sho...d.php?t=232883

copy it to KOBOeReader/.kobo/dict/

Filesize
Code:
ls -l
-rw-r--r-- 1 user users 1896723 16. Jul 22:32 dicthtml-en-se.zip
-rw-r--r-- 1 user users 2306666 16. Jul 22:32 dicthtml-se-en.zip
-rw-r--r-- 1 user users 1338975 16. Jul 22:31 dicthtml-se.zip
rename se to es for a free slot because swedish slot isn't variable

use sqlitebrowser for edit
https://img.bi/#/rTO4rf9!3p8Anuh7ZHo...80icoXljdDAs6V
waterwave is offline   Reply With Quote