mirror of
https://bitbucket.org/smil3y/kde-l10n.git
synced 2025-02-24 02:52:53 +00:00
16 lines
338 B
Python
16 lines
338 B
Python
# -*- coding: utf-8 -*-
|
|
import os,sys
|
|
import time
|
|
import Lokalize
|
|
import Editor
|
|
|
|
def lookup():
|
|
if not Editor.isValid(): return
|
|
|
|
word=Editor.selectionInTarget()
|
|
if not word: word=Editor.selectionInSource()
|
|
if not word: return
|
|
|
|
os.system("kfmclient newTab 'http://multitran.ru/c/m.exe?l1=1&l2=2&s=%s'" % word)
|
|
|
|
lookup()
|