Skip to content

Commit

Permalink
Merge pull request KenT2#167 from KenT2/polish_translation
Browse files Browse the repository at this point in the history
fixed polish translation
  • Loading branch information
heniotierra authored Feb 6, 2019
2 parents 819735f + a1b89de commit d6c1bbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-02-05 15:37+0100\n"
"PO-Revision-Date: 2019-02-05 16:04+0100\n"
"PO-Revision-Date: 2019-02-05 22:07-0300\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 1.8.11\n"
"Last-Translator: \n"
"X-Generator: Poedit 1.8.7.1\n"
"Last-Translator: Hẽnio Tierra <[email protected]>\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"Language: pl\n"
Expand Down Expand Up @@ -140,9 +140,7 @@ msgstr "Informacja o Ścieżce"

#: tboplayer.py:1253
msgid "Options"
msgstr ""
"youtube-dl nie znajduje się na ścieżce skonfigurowanej w Opcjach, proszę "
"sprawdź konfigurację"
msgstr "Opcje"

#: tboplayer.py:1257 tboplayer.py:1258 tboplayer.py:1414
msgid "Help"
Expand All @@ -166,7 +164,7 @@ msgstr "Czyść Listę"

#: tboplayer.py:1295
msgid "Stop"
msgstr "Stop"
msgstr "Zatrzymać"

#: tboplayer.py:1299
msgid "Previous"
Expand Down
5 changes: 3 additions & 2 deletions tboplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@

try:
gettext.translation('tboplayer', localedir=sys.path[0] + '/locale', languages=[options.lang]).install()
except:
except Exception, e:
print e
_ = lambda x:x


Expand Down Expand Up @@ -1982,7 +1983,7 @@ def save_options(self):
config.set('config','find_lyrics',self.find_lyrics_var.get())
config.set('config','autolyrics_coords',self.autolyrics_coords_var)
config.set('config','lang',self.lang_var.get())
config.set('config','subtitles_lang',self.lang_var.get())
config.set('config','subtitles_lang',self.subtitles_lang_var.get())
config.set('config','ytdl_update',self.ytdl_update_var.get())


Expand Down

0 comments on commit d6c1bbf

Please sign in to comment.