enamigi / yagf

Automatically exported from code.google.com/p/yagf
0 stars 0 forks source link

Ukrainian language is not shown in the list #26

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I've installed 0.9.2-1ppa1~precise1 on Ubuntu 12.04 from the PPA and it doesn't 
have Ukrainian in the language list. While I see it in the source code and have 
installed tesseract-ocr-ukr.

Original issue reported on code.google.com by xintx.ua@gmail.com on 24 Oct 2012 at 10:16

GoogleCodeExporter commented 9 years ago
And even when using cuneiform for recognizing, there is no ukrainian language 
in a list.

Original comment by kov...@gmail.com on 13 Mar 2013 at 8:06

GoogleCodeExporter commented 9 years ago
Hey, is there any updates planning ? We need ukrainian in YAGF. Please...

Original comment by kov...@gmail.com on 13 Jul 2013 at 3:42

GoogleCodeExporter commented 9 years ago
you can change settings.cpp function getLangPair:

bool Settings::getLangPair(QString &full, QString &abbr)
{
    QMap<QString, QString> * map;
    if (selectedEngine == UseCuneiform)
        map = &cuMap;
    if (selectedEngine == UseTesseract)
        map = &tesMap;
    if (lpi >= map->count())
        return false;
    full = map->keys().at(lpi);
    abbr = map->value(full);
    lpi++;
    return true;
}     

Original comment by stet...@gmail.com on 3 Nov 2013 at 4:02

GoogleCodeExporter commented 9 years ago
Cannot reproduce this. Ukrainian shows up both under cuneiform and tesseract.

Original comment by andrei.b...@gmail.com on 8 Feb 2014 at 3:02

GoogleCodeExporter commented 9 years ago
Here is my proof on screenshot: 
http://piccy.info/view3/5889357/e44bd510a3da61c5f73ce1529062a2c5/orig/ . There 
is no Ukrainian in list. YAGF v.9.2. Can't check in 9.2.1 because there are no 
deb-packages.

Original comment by kov...@gmail.com on 8 Feb 2014 at 5:46