Difference between revisions of "OpenLogos"

From Apertium
Jump to navigation Jump to search
m
Line 1: Line 1:

<pre>
<pre>
$ psql --user logos --password ESENSE
$ psql --user logos --password ESENSE
Line 16: Line 15:
ESENSE=# SELECT source_language_code,target_language_code,commentline FROM semtab_data WHERE source_language_code = '02' AND target_language_code = '04';
ESENSE=# SELECT source_language_code,target_language_code,commentline FROM semtab_data WHERE source_language_code = '02' AND target_language_code = '04';
</pre>
</pre>

==External links==

* [http://logos-os.dfki.de/Install_for_Ubuntu_9.X.html Installation instructions Ubuntu 9.0]


[[Category:Tools]]
[[Category:Tools]]

Revision as of 11:35, 14 January 2010

$ psql --user logos --password ESENSE

ESENSE=# SELECT * FROM language;
 language_code | short_form 
---------------+------------
 02            | EN
 01            | DE
 03            | FR
 04            | ES
 05            | IT
 06            | PT

ESENSE=# SELECT source_language_code,target_language_code,commentline FROM semtab_data;
ESENSE=# SELECT source_language_code,target_language_code,commentline FROM semtab_data WHERE source_language_code = '02' AND target_language_code = '04';

External links