Changeset 11

Show
Ignore:
Timestamp:
10/10/06 09:12:26 (2 years ago)
Author:
mjoc
Message:

Some debugging print statements removed (used to cause problems when
program launched not from the terminal).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gui/dictaddwin.py

    r1 r11  
    8686            ext == "dz" 
    8787         
    88         print "Format:", ext 
    89          
    9088        from installer import Installer 
    9189        installer = Installer(parent, parent.app.config) 
    9290        installer.install(self.filePath, ext) 
    9391         
    94         #try: 
    95         #    if ext in misc.dictFormats.values()[0:-1]: 
    96         #        print "Registering..." 
    97         #        parent.app.reg.registerDictionary(self.filePath,  
    98         #                 misc.dictFormats.keys()[misc.dictFormats.values().index(name)],  
    99         #                 parent.app.config.defaultEnc) 
    100         #    else: 
    101         #        print "Installing plugin..." 
    102         #        plugin.installPlugin(parent.app.config, self.filePath) 
    103         #except: 
    104         #    misc.printError() 
    105         #    parent.SetStatusText(_("Error: installation failed")) 
    106         #  
    10792        self.Destroy() 
    10893     
  • trunk/lib/gui/miscwin.py

    r1 r11  
    118118         grid.Add(b, 1, wxALIGN_CENTER_VERTICAL) 
    119119         EVT_BUTTON(self, rid, self.onRemove) 
    120          #print d 
    121120 
    122121      vbox.Add(grid, 0, wxALL, 10) 
  • trunk/lib/gui/prefswin.py

    r3 r11  
    5050      dictNames = [] 
    5151      for name, d in self.app.dictionaries.items(): 
    52           print name, d.getActive() 
    5352          if d.getActive(): 
    5453              dictNames.append(name) 
  • trunk/lib/gui/registerwin.py

    r1 r11  
    9999 
    100100   def onFileSelected(self, event): 
    101       print event.GetString() 
    102101      info = self.app.config.registers[event.GetString()] 
    103102 
     
    118117          return 
    119118 
    120       print "Name: %s, Pos: %s [%s]" % (item, pos, 
    121                                         self.app.config.registers[item][0]) 
    122119      self.fileList.Delete(pos) 
    123120      parent = self.GetParent() 
    124       print parent.menuDict.FindItem(item) 
    125121      parent.menuDict.Delete(parent.menuDict.FindItem(item)) 
    126122 
  • trunk/lib/installer.py

    r1 r11  
    335335                dirToCreate = os.path.join(pluginsPath, dirName) 
    336336                if not os.path.exists(dirToCreate): 
    337                     #print "Creating", dirToCreate 
    338337                    os.mkdir(dirToCreate) 
    339338            else: 
  • trunk/lib/logger.py

    r1 r11  
    7171 
    7272    print dateStr, typeStr, message 
    73     #try: 
    74     #    fd = open(_debugLogFile, 'a') 
    75     #    print >> fd, dateStr, typeStr, message 
    76     #    fd.close() 
    77     #except Exception, e: 
    78     #    print "LOGGER ERROR: Unable to write message" 
    7973     
  • trunk/lib/newplugin.py

    r1 r11  
    360360 
    361361    for dirName in pluginDirs: 
    362         #print dirName, 
    363362        plugin = _loadDictionaryPlugin(dirName) 
    364         #print plugin 
    365363        if plugin: 
    366             #nameList = _pluginNames(plugins) 
    367             #if plugin.getName() in nameList: 
    368             #    plugin.setName("%s (%d)" % (plugin.getName(), 
    369             #                                _nameMatches(plugin.getName(), 
    370             #                                             nameList))) 
    371364            plugins.append(plugin) 
    372365            dictionaries[plugin.getName()] = plugin 
  • trunk/po/fr.po

    r7 r11  
    22msgstr "" 
    33"Project-Id-Version: OpenDict 0.6.1\n" 
    4 "POT-Creation-Date: 2006-09-30 23:18+EEST\n" 
     4"POT-Creation-Date: 2006-10-10 09:11+EEST\n" 
    55"PO-Revision-Date: 2006-03-20 14:05+0300\n" 
    66"Last-Translator: MILLE.ca <pgauvin@cslaval.qc.ca>\n" 
     
    113113 
    114114#: ../lib/gui/dictaddwin.py:58 ../lib/gui/dicteditorwin.py:91 
    115 #: ../lib/gui/prefswin.py:149 
     115#: ../lib/gui/prefswin.py:148 
    116116msgid "OK" 
    117117msgstr "OK" 
     
    119119#: ../lib/gui/dictaddwin.py:61 ../lib/gui/dictconnwin.py:132 
    120120#: ../lib/gui/dicteditorwin.py:94 ../lib/gui/dicteditorwin.py:255 
    121 #: ../lib/gui/prefswin.py:152 
     121#: ../lib/gui/prefswin.py:151 
    122122msgid "Cancel" 
    123123msgstr "Annuler" 
     
    275275#: ../lib/gui/helpwin.py:68 ../lib/gui/helpwin.py:134 
    276276#: ../lib/gui/helpwin.py:195 ../lib/gui/miscwin.py:65 
    277 #: ../lib/gui/miscwin.py:125 ../lib/gui/pluginwin.py:91 
     277#: ../lib/gui/miscwin.py:124 ../lib/gui/pluginwin.py:91 
    278278#: ../lib/gui/registerwin.py:87 
    279279msgid "Close" 
     
    710710 
    711711#: ../lib/gui/mainwin.py:944 ../lib/gui/mainwin.py:1138 
    712 #: ../lib/gui/pluginwin.py:777 
     712#: ../lib/gui/pluginwin.py:774 
    713713msgid "Error" 
    714714msgstr "Erreur" 
     
    853853"Vous pouvez essayer de retirer ces repertoires maintenant." 
    854854 
    855 #: ../lib/gui/miscwin.py:143 ../lib/gui/pluginwin.py:649 
     855#: ../lib/gui/miscwin.py:142 ../lib/gui/pluginwin.py:646 
    856856msgid "Unable to remove" 
    857857msgstr "Incapable de retirer" 
    858858 
    859 #: ../lib/gui/miscwin.py:144 
     859#: ../lib/gui/miscwin.py:143 
    860860msgid "Unable to remove directory \"%s\": %s" 
    861861msgstr "Incapable de retirer repertoire \"%s\": %s" 
    862862 
    863 #: ../lib/gui/miscwin.py:152 
     863#: ../lib/gui/miscwin.py:151 
    864864msgid "Invalid Dictionaries" 
    865865msgstr "Dictionnaires invalides" 
     
    883883msgstr "Installer a partir du fichier..." 
    884884 
    885 #: ../lib/gui/pluginwin.py:212 
     885#: ../lib/gui/pluginwin.py:209 
    886886msgid "Update List" 
    887887msgstr "Mettre a jour la liste" 
    888888 
    889 #: ../lib/gui/pluginwin.py:219 
     889#: ../lib/gui/pluginwin.py:216 
    890890msgid "Install" 
    891891msgstr "Installer" 
    892892 
    893 #: ../lib/gui/pluginwin.py:231 
     893#: ../lib/gui/pluginwin.py:228 
    894894msgid "Name" 
    895895msgstr "Nom" 
    896896 
    897 #: ../lib/gui/pluginwin.py:232 
     897#: ../lib/gui/pluginwin.py:229 
    898898msgid "Size" 
    899899msgstr "Grandeur" 
    900900 
    901 #: ../lib/gui/pluginwin.py:278 
     901#: ../lib/gui/pluginwin.py:275 
    902902msgid "Information About Dictionary" 
    903903msgstr "Information a propos du dictionnaire" 
    904904 
    905 #: ../lib/gui/pluginwin.py:292 
     905#: ../lib/gui/pluginwin.py:289 
    906906msgid "Name: " 
    907907msgstr "Nom:" 
    908908 
    909 #: ../lib/gui/pluginwin.py:297 
     909#: ../lib/gui/pluginwin.py:294 
    910910msgid "Version: " 
    911911msgstr "Version:" 
    912912 
    913 #: ../lib/gui/pluginwin.py:302 
     913#: ../lib/gui/pluginwin.py:299 
    914914msgid "Maintainer: " 
    915915msgstr "Entretien:" 
    916916 
    917 #: ../lib/gui/pluginwin.py:520 
     917#: ../lib/gui/pluginwin.py:517 
    918918msgid "List updated" 
    919919msgstr "Liste mise-a-jour" 
    920920 
    921 #: ../lib/gui/pluginwin.py:521 
     921#: ../lib/gui/pluginwin.py:518 
    922922msgid "All your dictionaries are up to date." 
    923923msgstr "Tous vos dictionnares sont mis-a-jour." 
    924924 
    925 #: ../lib/gui/pluginwin.py:528 
     925#: ../lib/gui/pluginwin.py:525 
    926926msgid "Downloading List" 
    927927msgstr "Liste de telechargement" 
    928928 
    929 #: ../lib/gui/pluginwin.py:563 
     929#: ../lib/gui/pluginwin.py:560 
    930930#, fuzzy 
    931931msgid "Unable to download list from %s: %s" 
    932932msgstr "Incapable de telecharger la liste" 
    933933 
    934 #: ../lib/gui/pluginwin.py:571 
     934#: ../lib/gui/pluginwin.py:568 
    935935msgid "Unable to download list" 
    936936msgstr "Incapable de telecharger la liste" 
    937937 
    938 #: ../lib/gui/pluginwin.py:650 
     938#: ../lib/gui/pluginwin.py:647 
    939939#, fuzzy 
    940940msgid "Unable to remove dictionary \"%s\"" 
    941941msgstr "Incapable de retirer repertoire \"%s\": %s" 
    942942 
    943 #: ../lib/gui/pluginwin.py:691 
     943#: ../lib/gui/pluginwin.py:688 
    944944msgid "Downloading %s..." 
    945945msgstr "Telechargement %s..." 
    946946 
    947 #: ../lib/gui/pluginwin.py:748 
     947#: ../lib/gui/pluginwin.py:745 
    948948msgid "Unable to download" 
    949949msgstr "Incapable de telecharger" 
    950950 
    951 #: ../lib/gui/pluginwin.py:758 
     951#: ../lib/gui/pluginwin.py:755 
    952952msgid "File is damaged" 
    953953msgstr "Le fichier est endommage" 
    954954 
    955 #: ../lib/gui/pluginwin.py:759 
     955#: ../lib/gui/pluginwin.py:756 
    956956msgid "Downloaded file is damaged and cannot be installed. Please try again." 
    957957msgstr "" 
     
    959959"essayez a nouveau." 
    960960 
    961 #: ../lib/gui/pluginwin.py:778 
     961#: ../lib/gui/pluginwin.py:775 
    962962msgid "" 
    963963"Unable to remove old version of \"%s\". Error occured: \"<i>%s</i>\". New " 
     
    965965msgstr "" 
    966966 
    967 #: ../lib/gui/pluginwin.py:803 
     967#: ../lib/gui/pluginwin.py:800 
    968968msgid "Unable to install" 
    969969msgstr "Incapable d'installer" 
    970970 
    971 #: ../lib/gui/pluginwin.py:804 
     971#: ../lib/gui/pluginwin.py:801 
    972972#, fuzzy 
    973973msgid "Unable to install dictionary \"%s\"." 
     
    978978msgstr "Dictionnaire par defaut:" 
    979979 
    980 #: ../lib/gui/prefswin.py:69 
     980#: ../lib/gui/prefswin.py:68 
    981981msgid "Default encoding: " 
    982982msgstr "Encodage par defaut: " 
    983983 
    984 #: ../lib/gui/prefswin.py:80 
     984#: ../lib/gui/prefswin.py:79 
    985985msgid "Default DICT server: " 
    986986msgstr "Serveur de dictionnaire par defaut:" 
    987987 
    988 #: ../lib/gui/prefswin.py:86 
     988#: ../lib/gui/prefswin.py:85 
    989989msgid "Default DICT server port: " 
    990990msgstr "Port de serveur de dictionnaire par defaut:" 
    991991 
    992 #: ../lib/gui/prefswin.py:99 
     992#: ../lib/gui/prefswin.py:98 
    993993msgid "Pronunciation" 
    994994msgstr "" 
    995995 
    996 #: ../lib/gui/prefswin.py:107 
     996#: ../lib/gui/prefswin.py:106 
    997997msgid "System Command: " 
    998998msgstr "" 
    999999 
    1000 #: ../lib/gui/prefswin.py:115 
     1000#: ../lib/gui/prefswin.py:114 
    10011001#, fuzzy 
    10021002msgid "Default" 
    10031003msgstr "Port par defaut" 
    10041004 
    1005 #: ../lib/gui/prefswin.py:121 
     1005#: ../lib/gui/prefswin.py:120 
    10061006msgid "Pronounce original word" 
    10071007msgstr "" 
    10081008 
    1009 #: ../lib/gui/prefswin.py:123 
     1009#: ../lib/gui/prefswin.py:122 
    10101010#, fuzzy 
    10111011msgid "Pronounce translation" 
    10121012msgstr "Changer la traduction" 
    10131013 
    1014 #: ../lib/gui/prefswin.py:130 
     1014#: ../lib/gui/prefswin.py:129 
    10151015msgid "Save window size on exit" 
    10161016msgstr "Sauvegarder la grandeur de fenetre lorsque vous quittez" 
    10171017 
    1018 #: ../lib/gui/prefswin.py:134 
     1018#: ../lib/gui/prefswin.py:133 
    10191019msgid "Save window position on exit" 
    10201020msgstr "Sauvegarder la position de fenetre lorsque vous quittez" 
    10211021 
    1022 #: ../lib/gui/prefswin.py:138 
     1022#: ../lib/gui/prefswin.py:137 
    10231023msgid "Save sash position on exit" 
    10241024msgstr "Sauvegarder la position sash lorsque vous quittez" 
    10251025 
    1026 #: ../lib/gui/prefswin.py:143 
     1026#: ../lib/gui/prefswin.py:142 
    10271027msgid "Take words from the clipboard by default" 
    10281028msgstr "Prendre les mots a partir du presse-papier par defaut" 
    10291029 
    1030 #: ../lib/gui/registerwin.py:64 ../lib/gui/registerwin.py:104 
    1031 #: ../lib/gui/registerwin.py:150 
     1030#: ../lib/gui/registerwin.py:64 ../lib/gui/registerwin.py:103 
     1031#: ../lib/gui/registerwin.py:146 
    10321032msgid "Name: %s" 
    10331033msgstr "Nom: %s" 
    10341034 
    1035 #: ../lib/gui/registerwin.py:67 ../lib/gui/registerwin.py:105 
    1036 #: ../lib/gui/registerwin.py:151 
     1035#: ../lib/gui/registerwin.py:67 ../lib/gui/registerwin.py:104 
     1036#: ../lib/gui/registerwin.py:147 
    10371037msgid "Path: %s" 
    10381038msgstr "Chemin: %s" 
    10391039 
    1040 #: ../lib/gui/registerwin.py:70 ../lib/gui/registerwin.py:106 
    1041 #: ../lib/gui/registerwin.py:152 
     1040#: ../lib/gui/registerwin.py:70 ../lib/gui/registerwin.py:105 
     1041#: ../lib/gui/registerwin.py:148 
    10421042msgid "Format: %s" 
    10431043msgstr "Format: %s" 
    10441044 
    1045 #: ../lib/gui/registerwin.py:73 ../lib/gui/registerwin.py:107 
    1046 #: ../lib/gui/registerwin.py:153 
     1045#: ../lib/gui/registerwin.py:73 ../lib/gui/registerwin.py:106 
     1046#: ../lib/gui/registerwin.py:149 
    10471047msgid "Encoding: %s" 
    10481048msgstr "Encodage: %s" 
     
    10561056msgstr "Retirer l'element selectionne" 
    10571057 
    1058 #: ../lib/gui/registerwin.py:132 ../lib/gui/registerwin.py:139 
     1058#: ../lib/gui/registerwin.py:128 ../lib/gui/registerwin.py:135 
    10591059msgid "Error while deleting \"%s\"" 
    10601060msgstr "Erreur pendant la suppression\"%s\"" 
     
    11241124msgstr "Le fichier selectionne n'est pas un plugin OpenDict valide" 
    11251125 
    1126 #: ../lib/installer.py:294 ../lib/installer.py:377 
     1126#: ../lib/installer.py:294 ../lib/installer.py:376 
    11271127msgid "" 
    11281128"This dictionary already installed. If you want to upgrade it, please remove " 
     
    11481148msgstr "L'installation du dictionnaire a ete avortee." 
    11491149 
    1150 #: ../lib/installer.py:348 ../lib/installer.py:400 
     1150#: ../lib/installer.py:347 ../lib/installer.py:399 
    11511151msgid "" 
    11521152"Error while removing created directories after plugin installation failure. " 
     
    11571157"une erreur d'espace disque." 
    11581158 
    1159 #: ../lib/installer.py:352 
     1159#: ../lib/installer.py:351 
    11601160msgid "Unable to install plugin" 
    11611161msgstr "Incapable d'installer les plugins " 
    11621162 
    1163 #: ../lib/installer.py:369 
     1163#: ../lib/installer.py:368 
    11641164msgid "Compressed dictionary file is corrupted" 
    11651165msgstr "Le fichier compresse du dictionnaire est corrompu" 
    11661166 
    1167 #: ../lib/installer.py:404 
     1167#: ../lib/installer.py:403 
    11681168msgid "Unable to install dictionary" 
    11691169msgstr "Incapable d'installer le dictionnaire" 
  • trunk/po/lt.po

    r7 r11  
    22msgstr "" 
    33"Project-Id-Version: OpenDict 0.6.2\n" 
    4 "POT-Creation-Date: 2006-09-30 23:19+EEST\n" 
     4"POT-Creation-Date: 2006-10-10 09:11+EEST\n" 
    55"PO-Revision-Date: 2006-09-30 23:19+0300\n" 
    66"Last-Translator: Martynas Jocius <mjoc@akl.lt>\n" 
     
    1818msgstr "Paie�s�ingai baigta" 
    1919 
    20 #: ../lib/errortype.py:64 
    21 #: ../lib/misc.py:34 
     20#: ../lib/errortype.py:64 ../lib/misc.py:34 
    2221msgid "Not found" 
    2322msgstr "Nerasta" 
     
    2524#: ../lib/errortype.py:65 
    2625msgid "Word or phrase not found. Try less letters or fewer words." 
    27 msgstr "�dis arba fraz�ebuvo rasti. Bandykite �sti ma�iau raid�i�a �od�i�#: ../lib/errortype.py:73 
     26msgstr "" 
     27"�dis arba fraz�ebuvo rasti. Bandykite �sti ma�iau raid�i�a �od�i�#: ../lib/errortype.py:73 
    2828msgid "Internal error" 
    2929msgstr "Vidin�laida" 
    3030 
    3131#: ../lib/errortype.py:74 
    32 msgid "Internal error occured. Please send bug report to the dictionary's of current use authors. Thank you." 
    33 msgstr "�yko vidin�laida. Pra� i�sti klaidos prane� apie aktyvuoto �odyno klaid�o autoriams. D�jame." 
     32msgid "" 
     33"Internal error occured. Please send bug report to the dictionary's of " 
     34"current use authors. Thank you." 
     35msgstr "" 
     36"�yko vidin�laida. Pra� i�sti klaidos prane� apie aktyvuoto " 
     37"�odyno klaid�o autoriams. D�jame." 
    3438 
    3539#: ../lib/errortype.py:82 
     
    3842 
    3943#: ../lib/errortype.py:83 
    40 msgid "This dictionary uses Internet connection to translate words. Please connect to the Internet and try again." 
    41 msgstr "�s �odynas paie�atlieka Internete. Prisijunkite prie Interneto ir bandykite dar kart� 
    42  
    43 #: ../lib/errortype.py:92 
    44 #: ../lib/gui/dictconnwin.py:182 
     44msgid "" 
     45"This dictionary uses Internet connection to translate words. Please connect " 
     46"to the Internet and try again." 
     47msgstr "" 
     48"�s �odynas paie�atlieka Internete. Prisijunkite prie Interneto ir " 
     49"bandykite dar kart� 
     50 
     51#: ../lib/errortype.py:92 ../lib/gui/dictconnwin.py:182 
    4552#: ../lib/gui/dictconnwin.py:198 
    4653msgid "Connection Error" 
     
    4956#: ../lib/errortype.py:93 
    5057msgid "Could not connect to host. Check your Internet connection or try later." 
    51 msgstr "Nepavyko prisijungti. Patikrinkite Interneto ry�rba pabandykite v�au." 
     58msgstr "" 
     59"Nepavyko prisijungti. Patikrinkite Interneto ry�rba pabandykite v�au." 
    5260 
    5361#: ../lib/errortype.py:101 
     
    5563msgstr "Netinkama koduot� 
    5664#: ../lib/errortype.py:102 
    57 msgid "Selected encoding is not correct for this dictionary. Please select another from Edit > Character Encoding menu" 
    58 msgstr "Pasirinkta koduot�� tinkama � �odynui. Pasirinkite kit�oduot��niu Keisti > Teksto koduot� 
     65msgid "" 
     66"Selected encoding is not correct for this dictionary. Please select another " 
     67"from Edit > Character Encoding menu" 
     68msgstr "" 
     69"Pasirinkta koduot�� tinkama � �odynui. Pasirinkite kit�oduot��"meniu Keisti > Teksto koduot� 
    5970#: ../lib/errortype.py:111 
    6071msgid "OpenDict Bug" 
     
    6273 
    6374#: ../lib/errortype.py:112 
    64 msgid "Internal error occured. Please send bug report to OpenDict authors to prevent this error in the future. Thank you!" 
    65 msgstr "�yko vidin�laida. Kad tai nepasikartot�ityje, pra� i�sti prane� apie klaid�penDict autoriams. D�jame!" 
     75msgid "" 
     76"Internal error occured. Please send bug report to OpenDict authors to " 
     77"prevent this error in the future. Thank you!" 
     78msgstr "" 
     79"�yko vidin�laida. Kad tai nepasikartot�ityje, pra� i�sti " 
     80"prane� apie klaid�penDict autoriams. D�jame!" 
    6681 
    6782#: ../lib/errortype.py:120 
     
    85100"pagal pl�n�Pasirinkite i�ra�" 
    86101 
    87 #: ../lib/gui/dictaddwin.py:46 
    88 #: ../lib/gui/dictaddwin.py:47 
    89 #: ../lib/gui/dictaddwin.py:48 
    90 #: ../lib/gui/dictaddwin.py:49 
     102#: ../lib/gui/dictaddwin.py:46 ../lib/gui/dictaddwin.py:47 
     103#: ../lib/gui/dictaddwin.py:48 ../lib/gui/dictaddwin.py:49 
    91104msgid "\"%s\" dictionary format" 
    92105msgstr "�%s� �odyno formatas" 
    93106 
    94 #: ../lib/gui/dictaddwin.py:58 
    95 #: ../lib/gui/dicteditorwin.py:91 
    96 #: ../lib/gui/prefswin.py:149 
     107#: ../lib/gui/dictaddwin.py:58 ../lib/gui/dicteditorwin.py:91 
     108#: ../lib/gui/prefswin.py:148 
    97109msgid "OK" 
    98110msgstr "Gerai" 
    99111 
    100 #: ../lib/gui/dictaddwin.py:61 
    101 #: ../lib/gui/dictconnwin.py:132 
    102 #: ../lib/gui/dicteditorwin.py:94 
    103 #: ../lib/gui/dicteditorwin.py:255 
    104 #: ../lib/gui/prefswin.py:152 
     112#: ../lib/gui/dictaddwin.py:61 ../lib/gui/dictconnwin.py:132 
     113#: ../lib/gui/dicteditorwin.py:94 ../lib/gui/dicteditorwin.py:255 
     114#: ../lib/gui/prefswin.py:151 
    105115msgid "Cancel" 
    106116msgstr "At�ti" 
     
    141151msgstr "Prisijungti" 
    142152 
    143 #: ../lib/gui/dictconnwin.py:173 
    144 #: ../lib/gui/mainwin.py:685 
    145 #: ../lib/util.py:239 
     153#: ../lib/gui/dictconnwin.py:173 ../lib/gui/mainwin.py:685 ../lib/util.py:239 
    146154msgid "Done" 
    147155msgstr "Atlikta" 
     
    151159msgstr "Siun�mas duomen�i�a�.." 
    152160 
    153 #: ../lib/gui/dictconnwin.py:183 
    154 #: ../lib/gui/dictconnwin.py:199 
     161#: ../lib/gui/dictconnwin.py:183 ../lib/gui/dictconnwin.py:199 
    155162msgid "Unable to connect to server" 
    156163msgstr "Nepavyko prisijungti prie serverio" 
     
    160167msgstr "Jungiamasi..." 
    161168 
    162 #: ../lib/gui/dictconnwin.py:253 
    163 #: ../lib/util.py:218 
     169#: ../lib/gui/dictconnwin.py:253 ../lib/util.py:218 
    164170msgid "Connecting to %s..." 
    165171msgstr "Jungiamasi prie %s..." 
     
    180186msgstr "�dynas �%s� buvo pakeistas" 
    181187 
    182 #: ../lib/gui/dicteditorwin.py:249 
    183 #: ../lib/gui/dicteditorwin.py:337 
     188#: ../lib/gui/dicteditorwin.py:249 ../lib/gui/dicteditorwin.py:337 
    184189msgid "Save" 
    185190msgstr "I�goti" 
     
    207212msgid "Change translation" 
    208213msgstr "Keisti vertim� 
    209 #: ../lib/gui/dicteditorwin.py:329 
    210 #: ../lib/gui/miscwin.py:116 
     214#: ../lib/gui/dicteditorwin.py:329 ../lib/gui/miscwin.py:116 
    211215#: ../lib/gui/pluginwin.py:155 
    212216msgid "Remove" 
     
    234238msgstr "I�goti kitu vardu" 
    235239 
    236 #: ../lib/gui/dicteditorwin.py:351 
    237 #: ../lib/gui/mainwin.py:1373 
     240#: ../lib/gui/dicteditorwin.py:351 ../lib/gui/mainwin.py:1373 
    238241msgid "Word List" 
    239242msgstr "�d�i�a� 
     
    253256msgid "Open dictionary file" 
    254257msgstr "Atidaryti �odyno byl� 
    255 #: ../lib/gui/dicteditorwin.py:378 
    256 #: ../lib/gui/errorwin.py:82 
    257 #: ../lib/gui/helpwin.py:68 
    258 #: ../lib/gui/helpwin.py:134 
    259 #: ../lib/gui/helpwin.py:195 
    260 #: ../lib/gui/miscwin.py:65 
    261 #: ../lib/gui/miscwin.py:125 
    262 #: ../lib/gui/pluginwin.py:91 
     258#: ../lib/gui/dicteditorwin.py:378 ../lib/gui/errorwin.py:82 
     259#: ../lib/gui/helpwin.py:68 ../lib/gui/helpwin.py:134 
     260#: ../lib/gui/helpwin.py:195 ../lib/gui/miscwin.py:65 
     261#: ../lib/gui/miscwin.py:124 ../lib/gui/pluginwin.py:91 
    263262#: ../lib/gui/registerwin.py:87 
    264263msgid "Close" 
     
    294293msgstr "Be pavadinimo" 
    295294 
    296 #: ../lib/gui/dicteditorwin.py:588 
    297 #: ../lib/gui/dicteditorwin.py:645 
     295#: ../lib/gui/dicteditorwin.py:588 ../lib/gui/dicteditorwin.py:645 
    298296msgid "Exit confirmation" 
    299297msgstr "I�mo patvirtinimas" 
    300298 
    301 #: ../lib/gui/dicteditorwin.py:600 
    302 #: ../lib/gui/mainwin.py:1295 
     299#: ../lib/gui/dicteditorwin.py:600 ../lib/gui/mainwin.py:1295 
    303300#: ../lib/installer.py:60 
    304301msgid "Choose dictionary file" 
     
    340337msgstr "Pad�s" 
    341338 
    342 #: ../lib/gui/helpwin.py:192 
    343 #: ../lib/gui/helpwin.py:221 
     339#: ../lib/gui/helpwin.py:192 ../lib/gui/helpwin.py:221 
    344340msgid "Licence" 
    345341msgstr "Licencija" 
    346342 
    347 #: ../lib/gui/mainwin.py:92 
    348 #: ../lib/gui/mainwin.py:774 
     343#: ../lib/gui/mainwin.py:92 ../lib/gui/mainwin.py:774 
    349344#: ../lib/gui/mainwin.py:812 
    350345msgid "Stopped" 
    351346msgstr "Sustabdyta" 
    352347 
    353 #: ../lib/gui/mainwin.py:97 
    354 #: ../lib/gui/mainwin.py:779 
     348#: ../lib/gui/mainwin.py:97 ../lib/gui/mainwin.py:779 
    355349msgid "Encode Failed" 
    356350msgstr "Nepavyko i�uoti" 
     
    360354msgstr "Nepavyko u�koduoti teksto �%s� koduote �%s� �odynui �%s�." 
    361355 
    362 #: ../lib/gui/mainwin.py:106 
    363 #: ../lib/gui/mainwin.py:757 
     356#: ../lib/gui/mainwin.py:106 ../lib/gui/mainwin.py:757 
    364357#: ../lib/gui/mainwin.py:1357 
    365358msgid "Searching..." 
     
    532525 
    533526#: ../lib/gui/mainwin.py:358 
    534 msgid "Enter some text and press \"Look Up\" button or [ENTER] key on your keyboard" 
    535 msgstr "�eskite tekst�r spauskite mygtuk�Ie�i� arba [ENTER] klavi�avo klaviat� " 
     527msgid "" 
     528"Enter some text and press \"Look Up\" button or [ENTER] key on your keyboard" 
     529msgstr "" 
     530"�eskite tekst�r spauskite mygtuk�Ie�i� arba [ENTER] klavi�avo " 
     531"klaviat� " 
    536532 
    537533#: ../lib/gui/mainwin.py:364 
     
    575571"  <li>To install new dictionary from the Internet, select\n" 
    576572"    <i><b>Manage Dictionaries</b></i>\n" 
    577 "    from <i><b>Tools</b></i> menu and choose <i><b>Available</b></i> tab.</li>\n" 
    578 "  <li>To install new dictionary from file, select <i><b>Install Dictionary From File...</b></i>\n" 
     573"    from <i><b>Tools</b></i> menu and choose <i><b>Available</b></i> tab.</" 
     574"li>\n" 
     575"  <li>To install new dictionary from file, select <i><b>Install Dictionary " 
     576"From File...</b></i>\n" 
    579577"  from <i><b>Dictionaries</b></i> menu.\n" 
    580578"  </li>\n" 
     
    592590"<p><b>Trumpa naudojimo instrukcija:</b></p>\n" 
    593591"<ul>\n" 
    594 "  <li>Nor�mi prad� naudotis �odynu, pasirinkite tinkam��><b>�dynai</b></i>\n" 
     592"  <li>Nor�mi prad� naudotis �odynu, pasirinkite tinkam��"<i><b>�dynai</b></i>\n" 
    595593"    meniu.\n" 
    596594"  </li>\n" 
    597595"  <li>Nor�mi �egti nauj�odyn��terneto, pasirinkite\n" 
    598596"    <i><b>Tvarkyti �odynus</b></i>\n" 
    599 "    i�><b>�ankiai</b></i> meniu, tada pasirinkite <i><b>Galimi</b></i> kortel�/li>\n" 
    600 "  <li>Nor�mi �egti nauj�odyn��los, pasirinkite <i><b>�iegti �odyn��los...</b></i>\n" 
     597"    i�><b>�ankiai</b></i> meniu, tada pasirinkite <i><b>Galimi</b></i> " 
     598"kortel�/li>\n" 
     599"  <li>Nor�mi �egti nauj�odyn��los, pasirinkite <i><b>�iegti " 
     600"�odyn��los...</b></i>\n" 
    601601"  i�><b>�dynai</b></i> meniu.\n" 
    602602"  </li>\n" 
     
    606606 
    607607#: ../lib/gui/mainwin.py:649 
    608 msgid "Translation cannot be displayed using selected encoding %s. Please try another encoding from View > Character Encoding menu." 
    609 msgstr "Pasirinkta koduot�� tinkama � �odynui. Pasirinkite kit�oduot��niu Keisti > Teksto koduot� 
     608msgid "" 
     609"Translation cannot be displayed using selected encoding %s. Please try " 
     610"another encoding from View > Character Encoding menu." 
     611msgstr "" 
     612"Pasirinkta koduot�� tinkama � �odynui. Pasirinkite kit�oduot��"meniu Keisti > Teksto koduot� 
    610613#: ../lib/gui/mainwin.py:681 
    611614msgid "1 word matches" 
     
    621624 
    622625#: ../lib/gui/mainwin.py:731 
    623 msgid "No dictionary activated. Please select one from \"Dictionaries\" menu and try again." 
    624 msgstr "Neaktyvuotas joks �odynas. Pasirinkite �odyn��odynai� meniu ir bandykite dar kart� 
     626msgid "" 
     627"No dictionary activated. Please select one from \"Dictionaries\" menu and " 
     628"try again." 
     629msgstr "" 
     630"Neaktyvuotas joks �odynas. Pasirinkite �odyn��odynai� meniu ir " 
     631"bandykite dar kart� 
    625632 
    626633#: ../lib/gui/mainwin.py:734 
    627634msgid "No dictionaries installed" 
    628635msgstr "N� �egt�yn�: ../lib/gui/mainwin.py:735 
    629 msgid "There is no dictionaries installed. You can install one by selecting Tools > Manage Dictionaries > Available" 
    630 msgstr "N� �egt�yn�iegti galite i�niu pasirinkdami �ankiai > Tvarkyti �odynus > Galimi" 
     636msgid "" 
     637"There is no dictionaries installed. You can install one by selecting Tools > " 
     638"Manage Dictionaries > Available" 
     639msgstr "" 
     640"N� �egt�yn�iegti galite i�niu pasirinkdami �ankiai > " 
     641"Tvarkyti �odynus > Galimi" 
    631642 
    632643#: ../lib/gui/mainwin.py:748 
     
    634645msgstr "�eskite tekst�r bandykite dar kart� 
    635646#: ../lib/gui/mainwin.py:780 
    636 msgid "Unable to encode text \"%s\" in %s for \"%s\". That logically means the word definition does not exist in the dictionary." 
    637 msgstr "Nepavyko u�koduoti teksto �%s� koduote �%s�. Tai gali reik� jog ie�o �od�io �odyne visai n�." 
     647msgid "" 
     648"Unable to encode text \"%s\" in %s for \"%s\". That logically means the word " 
     649"definition does not exist in the dictionary." 
     650msgstr "" 
     651"Nepavyko u�koduoti teksto �%s� koduote �%s�. Tai gali reik� jog ie�o " 
     652"�od�io �odyne visai n�." 
    638653 
    639654#: ../lib/gui/mainwin.py:870 
     
    653668msgstr "I�pin� teksto n�" 
    654669 
    655 #: ../lib/gui/mainwin.py:944 
    656 #: ../lib/gui/mainwin.py:1138 
    657 #: ../lib/gui/pluginwin.py:777 
     670#: ../lib/gui/mainwin.py:944 ../lib/gui/mainwin.py:1138 
     671#: ../lib/gui/pluginwin.py:774 
    658672msgid "Error" 
    659673msgstr "Klaida" 
     
    685699#: ../lib/gui/mainwin.py:1085 
    686700msgid "You cannot use dictionary \"%s\" without accepting licence agreement" 
    687 msgstr "J�galite naudotis �odynu �%s�, jei nesutinkate su licencijos s�gomis" 
     701msgstr "" 
     702"J�galite naudotis �odynu �%s�, jei nesutinkate su licencijos s�gomis" 
    688703 
    689704#: ../lib/gui/mainwin.py:1099 
     
    693708#: ../lib/gui/mainwin.py:1100 
    694709msgid "" 
    695 "This is the first time you use this dictionary or it has been changed on disk since last indexing. Indexing is used to make search more efficient. The dictionary will be indexed now. It can take a few or more seconds.\n" 
     710"This is the first time you use this dictionary or it has been changed on " 
     711"disk since last indexing. Indexing is used to make search more efficient. " 
     712"The dictionary will be indexed now. It can take a few or more seconds.\n" 
    696713"\n" 
    697714"Press OK to continue..." 
    698715msgstr "" 
    699 "�s �odynas naudojamas pirm�art�rba buvo pakeistas po paskutinio indeksavimo. Indeksavimas naudojamas �od�i�e� �odyne pagreitinti. Dabar �odynas bus perindeksuotas. Tai gali u�trukti kelet�ekud�i� 
     716"�s �odynas naudojamas pirm�art�rba buvo pakeistas po paskutinio " 
     717"indeksavimo. Indeksavimas naudojamas �od�i�e� �odyne pagreitinti. " 
     718"Dabar �odynas bus perindeksuotas. Tai gali u�trukti kelet�ekud�i� 
    700719"\n" 
    701720"Nor�mi prat�i, spauskite �Gerai�..." 
     
    706725 
    707726#: ../lib/gui/mainwin.py:1118 
    708 msgid "Error occured while indexing file. This may be because of currently selected character encoding %s is not correct for this dictionary. Try selecting another encoding from View > Character Encoding menu" 
    709 msgstr "Indeksuojant �odyn�vyko klaida. Tai gal� �kti d�pasirinktos netinkamos � �odynui teksto koduot��%s�. Pabandykite pasirinkti kit�oduot��niu Per�i� Teksto koduot� 
     727msgid "" 
     728"Error occured while indexing file. This may be because of currently selected " 
     729"character encoding %s is not correct for this dictionary. Try selecting " 
     730"another encoding from View > Character Encoding menu" 
     731msgstr "" 
     732"Indeksuojant �odyn�vyko klaida. Tai gal� �kti d�pasirinktos " 
     733"netinkamos � �odynui teksto koduot��%s�. Pabandykite pasirinkti kit� 
     734"koduot��niu Per�i� Teksto koduot� 
    710735 
    711736#: ../lib/gui/mainwin.py:1139 
     
    774799#: ../lib/gui/miscwin.py:103 
    775800msgid "" 
    776 "You have directories that containt invalid dictionaries and cannot be loaded. \n" 
     801"You have directories that containt invalid dictionaries and cannot be " 
     802"loaded. \n" 
    777803"You can try to remove these directories right now." 
    778804msgstr "" 
     
    780806"Galite pabandyti tuojau pat pa�nti tuos katalogus." 
    781807 
    782 #: ../lib/gui/miscwin.py:143 
    783 #: ../lib/gui/pluginwin.py:649 
     808#: ../lib/gui/miscwin.py:142 ../lib/gui/pluginwin.py:646 
    784809msgid "Unable to remove" 
    785810msgstr "Nepavyko pa�nti" 
    786811 
    787 #: ../lib/gui/miscwin.py:144 
     812#: ../lib/gui/miscwin.py:143 
    788813msgid "Unable to remove directory \"%s\": %s" 
    789814msgstr "Nepavyko pa�nti katalogo �%s�: %s" 
    790815 
    791 #: ../lib/gui/miscwin.py:152 
     816#: ../lib/gui/miscwin.py:151 
    792817msgid "Invalid Dictionaries" 
    793818msgstr "Sugadinti �odynai" 
     
    811836msgstr "�iegti i�los..." 
    812837 
    813 #: ../lib/gui/pluginwin.py:212 
     838#: ../lib/gui/pluginwin.py:209 
    814839msgid "Update List" 
    815840msgstr "Atnaujinti s�� 
    816 #: ../lib/gui/pluginwin.py:219 
     841#: ../lib/gui/pluginwin.py:216 
    817842msgid "Install" 
    818843msgstr "�iegti" 
    819844 
    820 #: ../lib/gui/pluginwin.py:231 
     845#: ../lib/gui/pluginwin.py:228 
    821846msgid "Name" 
    822847msgstr "Pavadinimas" 
    823848 
    824 #: ../lib/gui/pluginwin.py:232 
     849#: ../lib/gui/pluginwin.py:229 
    825850msgid "Size" 
    826851msgstr "Dydis" 
    827852 
    828 #: ../lib/gui/pluginwin.py:278 
     853#: ../lib/gui/pluginwin.py:275 
    829854msgid "Information About Dictionary" 
    830855msgstr "Informacija apie �odyn� 
    831 #: ../lib/gui/pluginwin.py:292 
     856#: ../lib/gui/pluginwin.py:289 
    832857msgid "Name: " 
    833858msgstr "Pavadinimas:" 
    834859 
    835 #: ../lib/gui/pluginwin.py:297 
     860#: ../lib/gui/pluginwin.py:294 
    836861msgid "Version: " 
    837862msgstr "Versija:" 
    838863 
    839 #: ../lib/gui/pluginwin.py:302 
     864#: ../lib/gui/pluginwin.py:299 
    840865msgid "Maintainer: " 
    841866msgstr "Pri�i�jas:" 
    842867 
    843 #: ../lib/gui/pluginwin.py:520 
     868#: ../lib/gui/pluginwin.py:517 
    844869msgid "List updated" 
    845870msgstr "S��atnaujintas" 
    846871 
    847 #: ../lib/gui/pluginwin.py:521 
     872#: ../lib/gui/pluginwin.py:518 
    848873msgid "All your dictionaries are up to date." 
    849874msgstr "J�urimi �odynai yra patys naujausi." 
    850875 
    851 #: ../lib/gui/pluginwin.py:528 
     876#: ../lib/gui/pluginwin.py:525 
    852877msgid "Downloading List" 
    853878msgstr "Parsiun�mas s�� 
    854879 
    855 #: ../lib/gui/pluginwin.py:563 
     880#: ../lib/gui/pluginwin.py:560 
    856881msgid "Unable to download list from %s: %s" 
    857882msgstr "Nepavyko parsi��odyn�a��: %s" 
    858883 
    859 #: ../lib/gui/pluginwin.py:571 
     884#: ../lib/gui/pluginwin.py:568 
    860885msgid "Unable to download list" 
    861886msgstr "Nepavyko parsi�s�� 
    862 #: ../lib/gui/pluginwin.py:650 
     887#: ../lib/gui/pluginwin.py:647 
    863888msgid "Unable to remove dictionary \"%s\"" 
    864889msgstr "Nepavyko pa�nti �odyno �%s�" 
    865890 
    866 #: ../lib/gui/pluginwin.py:691 
     891#: ../lib/gui/pluginwin.py:688 
    867892msgid "Downloading %s..." 
    868893msgstr "Parsiun�mas %s..." 
    869894 
    870 #: ../lib/gui/pluginwin.py:748 
     895#: ../lib/gui/pluginwin.py:745 
    871896msgid "Unable to download" 
    872897msgstr "Nepavyko parsi� 
    873898 
    874 #: ../lib/gui/pluginwin.py:758 
     899#: ../lib/gui/pluginwin.py:755 
    875900msgid "File is damaged" 
    876901msgstr "Byla yra sugadinta" 
    877902 
    878 #: ../lib/gui/pluginwin.py:759 
     903#: ../lib/gui/pluginwin.py:756 
    879904msgid "Downloaded file is damaged and cannot be installed. Please try again." 
    880 msgstr "Parsi�byla yra sugadinta ir negali b�diegta. Bandykite dar kart� 
    881  
    882 #: ../lib/gui/pluginwin.py:778 
    883 msgid "Unable to remove old version of \"%s\". Error occured: \"<i>%s</i>\". New version cannot be installed without removing old one." 
    884 msgstr "Nepavyko i�ti senos �%s� versijos. �yko klaida: �<i>%s</i>�. Nauja versija negali b�nstaliuota tol, kol nebus i�ta sena." 
    885  
    886 #: ../lib/gui/pluginwin.py:803 
     905msgstr "" 
     906"Parsi�byla yra sugadinta ir negali b�diegta. Bandykite dar kart� 
     907 
     908#: ../lib/gui/pluginwin.py:775 
     909msgid "" 
     910"Unable to remove old version of \"%s\". Error occured: \"<i>%s</i>\". New " 
     911"version cannot be installed without removing old one." 
     912msgstr "" 
     913"Nepavyko i�ti senos �%s� versijos. �yko klaida: �<i>%s</i>�. Nauja " 
     914"versija negali b�nstaliuota tol, kol nebus i�ta sena." 
     915 
     916#: ../lib/gui/pluginwin.py:800 
    887917msgid "Unable to install" 
    888918msgstr "Nepavyko �egti" 
    889919 
    890 #: ../lib/gui/pluginwin.py:804 
     920#: ../lib/gui/pluginwin.py:801 
    891921msgid "Unable to install dictionary \"%s\"." 
    892922msgstr "Nepavyko �egti �odyno �%s�." 
     
    896926msgstr "Numatytas �odynas:" 
    897927 
    898 #: ../lib/gui/prefswin.py:69 
     928#: ../lib/gui/prefswin.py:68 
    899929msgid "Default encoding: " 
    900930msgstr "Numatyta koduot�" 
    901931 
    902 #: ../lib/gui/prefswin.py:80 
     932#: ../lib/gui/prefswin.py:79 
    903933msgid "Default DICT server: " 
    904934msgstr "Numatytas DICT serveris:" 
    905935 
    906 #: ../lib/gui/prefswin.py:86 
     936#: ../lib/gui/prefswin.py:85 
    907937msgid "Default DICT server port: " 
    908938msgstr "Numatytas DICT serverio prievadas:" 
    909939 
    910 #: ../lib/gui/prefswin.py:99 
     940#: ../lib/gui/prefswin.py:98 
    911941msgid "Pronunciation" 
    912942msgstr "Tarimas" 
    913943 
    914 #: ../lib/gui/prefswin.py:107 
     944#: ../lib/gui/prefswin.py:106 
    915945msgid "System Command: " 
    916946msgstr "Sistemos komanda: " 
    917947 
    918 #: ../lib/gui/prefswin.py:115 
     948#: ../lib/gui/prefswin.py:114 
    919949msgid "Default" 
    920950msgstr "Numatyta" 
    921951 
    922 #: ../lib/gui/prefswin.py:121 
     952#: ../lib/gui/prefswin.py:120 
    923953msgid "Pronounce original word" 
    924954msgstr "I�ti original�� 
    925 #: ../lib/gui/prefswin.py:123 
     955#: ../lib/gui/prefswin.py:122 
    926956msgid "Pronounce translation" 
    927957msgstr "I�ti vertim� 
    928 #: ../lib/gui/prefswin.py:130 
     958#: ../lib/gui/prefswin.py:129 
    929959msgid "Save window size on exit" 
    930960msgstr "I�ant i�goti lango dyd� 
    931 #: ../lib/gui/prefswin.py:134 
     961#: ../lib/gui/prefswin.py:133 
    932962msgid "Save window position on exit" 
    933963msgstr "I�ant i�goti lango pozicij� 
    934 #: ../lib/gui/prefswin.py:138 
     964#: ../lib/gui/prefswin.py:137 
    935965msgid "Save sash position on exit" 
    936966msgstr "I�ant i�goti skyriklio pozicij� 
    937 #: ../lib/gui/prefswin.py:143 
     967#: ../lib/gui/prefswin.py:142 
    938968msgid "Take words from the clipboard by default" 
    939969msgstr "Visada imti �od�ius i�karpin� 
    940970 
    941 #: ../lib/gui/registerwin.py:64 
    942 #: ../lib/gui/registerwin.py:104 
    943 #: ../lib/gui/registerwin.py:150 
     971#: ../lib/gui/registerwin.py:64 ../lib/gui/registerwin.py:103 
     972#: ../lib/gui/registerwin.py:146 
    944973msgid "Name: %s" 
    945974msgstr "Pavadinimas: %s" 
    946975 
    947 #: ../lib/gui/registerwin.py:67 
    948 #: ../lib/gui/registerwin.py:105 
    949 #: ../lib/gui/registerwin.py:151 
     976#: ../lib/gui/registerwin.py:67 ../lib/gui/registerwin.py:104 
     977#: ../lib/gui/registerwin.py:147 
    950978msgid "Path: %s" 
    951979msgstr "Kelias: %s" 
    952980 
    953 #: ../lib/gui/registerwin.py:70 
    954 #: ../lib/gui/registerwin.py:106 
    955 #: ../lib/gui/registerwin.py:152 
     981#: ../lib/gui/registerwin.py:70 ../lib/gui/registerwin.py:105 
     982#: ../lib/gui/registerwin.py:148 
    956983msgid "Format: %s" 
    957984msgstr "Formatas: %s" 
    958985 
    959 #: ../lib/gui/registerwin.py:73 
    960 #: ../lib/gui/registerwin.py:107 
    961 #: ../lib/gui/registerwin.py:153 
     986#: ../lib/gui/registerwin.py:73 ../lib/gui/registerwin.py:106 
     987#: ../lib/gui/registerwin.py:149 
    962988msgid "Encoding: %s" 
    963989msgstr "Koduot�%s" 
     
    971997msgstr "Pa�nti pa�ym�" 
    972998 
    973 #: ../lib/gui/registerwin.py:132 
    974 #: ../lib/gui/registerwin.py:139 
     999#: ../lib/gui/registerwin.py:128 ../lib/gui/registerwin.py:135 
    9751000msgid "Error while deleting \"%s\"" 
    9761001msgstr "Klaida pa�nant �%s�" 
     
    9841009msgstr "Byla �%s� n� tinkama programai OpenDict" 
    9851010 
    986 #: ../lib/installer.py:107 
    987 #: ../lib/installer.py:109 
     1011#: ../lib/installer.py:107 ../lib/installer.py:109 
    9881012msgid "Installation failed" 
    9891013msgstr "Nepavyko �egti" 
    9901014 
    991 #: ../lib/installer.py:121 
    992 #: ../lib/installer.py:307 
    993 #: ../lib/installer.py:315 
     1015#: ../lib/installer.py:121 ../lib/installer.py:307 ../lib/installer.py:315 
    9941016msgid "Installation Error" 
    9951017msgstr "Diegimo klaida" 
    9961018 
    997 #: ../lib/installer.py:123 
    998 #: ../lib/installer.py:127 
     1019#: ../lib/installer.py:123 ../lib/installer.py:127 
    9991020msgid "Error: Installation failed" 
    10001021msgstr "Klaida: nepavyko �egti" 
     
    10051026 
    10061027#: ../lib/installer.py:132 
    1007 msgid "Dictionary successfully installed. You can choose it from \"Dictionaries\" menu now." 
    1008 msgstr "�dynas s�ingai �egtas. Dabar j�alite pasirinkti i�odynai� meniu." 
    1009  
    1010 #: ../lib/installer.py:142 
    1011 #: ../lib/installer.py:217 
     1028msgid "" 
     1029"Dictionary successfully installed. You can choose it from \"Dictionaries\" " 
     1030"menu now." 
     1031msgstr "" 
     1032"�dynas s�ingai �egtas. Dabar j�alite pasirinkti i�odynai� meniu." 
     1033 
     1034#: ../lib/installer.py:142 ../lib/installer.py:217 
    10121035msgid "File %s does not exist" 
    10131036msgstr "Byla %s neegzistuoja" 
    10141037 
    1015 #: ../lib/installer.py:145 
    1016 #: ../lib/installer.py:221 
     1038#: ../lib/installer.py:145 ../lib/installer.py:221 
    10171039msgid "%s is not a file" 
    10181040msgstr "%s n� byla" 
     
    10421064msgstr "Nurodyta byla n� teisingas OpenDict �iepis" 
    10431065 
    1044 #: ..