mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
disable the visualization of glosses in the App until we have a complete database
This commit is contained in:
@@ -365,13 +365,13 @@ public class Translator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String getInflectionTable(String lemma) {
|
public String getInflectionTable(String lemma) {
|
||||||
SQLiteDatabase db = mDBManager.getReadableDatabase();
|
|
||||||
Cursor crs = db.rawQuery("select def from defs where fun=?1", new String[] { lemma });
|
|
||||||
String def = "";
|
String def = "";
|
||||||
|
/* SQLiteDatabase db = mDBManager.getReadableDatabase();
|
||||||
|
Cursor crs = db.rawQuery("select def from defs where fun=?1", new String[] { lemma });
|
||||||
if (crs.moveToNext()) {
|
if (crs.moveToNext()) {
|
||||||
def = escapeHtml(crs.getString(0));
|
def = escapeHtml(crs.getString(0));
|
||||||
}
|
}
|
||||||
crs.close();
|
crs.close();*/
|
||||||
|
|
||||||
Concr targetLang = getTargetConcr();
|
Concr targetLang = getTargetConcr();
|
||||||
String cat = getGrammar().getFunctionType(lemma).getCategory();
|
String cat = getGrammar().getFunctionType(lemma).getCategory();
|
||||||
|
|||||||
Reference in New Issue
Block a user