Subversion Repositories navi

Rev

Rev 251 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#!/usr/bin/env python
#    This file is part of Tsim Apiak.
#
#    Tsim Apiak is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public Licence as published by
#    the Free Software Foundation, either version 3 of the Licence, or
#    (at your option) any later version.
#
#    In addition to this, you must also comply with clause 4 of the
#    Apache Licence, version 2.0, concerning attribution. Where there
#    is a contradiction between the two licences, the GPL
#    takes preference.
#
#    Tsim Apiak is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with Tsim Apiak.  If not, see <http://www.gnu.org/licenses/>.

from tsimapiak import translate
import sys

for line in sys.stdin:
    try:
        line = line.decode("utf-8")
    except:
        line = line.decode("iso-8859-1")
    translated = []
    for word in translate.translatesent(line, "en"):
        translated.append(word["translated"])
    translated = " | ".join(translated)
    print translated