Add Polish translation

This commit is contained in:
Moritz Bunkus 2012-04-24 23:43:54 +02:00
parent abcc50f2b4
commit c571e6608f
5 changed files with 9033 additions and 0 deletions

View File

@ -31,6 +31,9 @@ Coalson, Josh <j_coalson@yahoo.com>
Codari, Stefano <l.stickell@yahoo.it>
* Italian translation
Daniel <sir.daniel.k@gmail.com>
* Polish translation
DenB <denb10@free.fr>
* French translation

View File

@ -1,3 +1,7 @@
2012-04-24 Moritz Bunkus <moritz@bunkus.org>
* all: Added a translation to Polish by Daniel (see AUTHORS).
2012-04-16 Moritz Bunkus <moritz@bunkus.org>
* mkvextract: bug fix: Extraction of AVC/h.264 was completely

View File

@ -77,6 +77,7 @@ Page custom showExternalLinks
!insertmacro LANG_LOAD "Italian"
!insertmacro LANG_LOAD "Japanese"
!insertmacro LANG_LOAD "Lithuanian"
!insertmacro LANG_LOAD "Polish"
!insertmacro LANG_LOAD "Russian"
!insertmacro LANG_LOAD "Spanish"
!insertmacro LANG_LOAD "SimpChinese"
@ -252,6 +253,9 @@ Section "Program files" SEC01
SetOutPath "$INSTDIR\locale\nl\LC_MESSAGES"
File "/oname=mkvtoolnix.mo" "po\nl.mo"
File "/oname=wxstd.mo" "wxWidgets-po\nl\LC_MESSAGES\wxstd.mo"
SetOutPath "$INSTDIR\locale\pl\LC_MESSAGES"
File "/oname=mkvtoolnix.mo" "po\pl.mo"
File "/oname=wxstd.mo" "wxWidgets-po\pl\LC_MESSAGES\wxstd.mo"
SetOutPath "$INSTDIR\locale\ru\LC_MESSAGES"
File "/oname=mkvtoolnix.mo" "po\ru.mo"
File "/oname=wxstd.mo" "wxWidgets-po\ru\LC_MESSAGES\wxstd.mo"
@ -535,6 +539,10 @@ Section Uninstall
RMDir "$INSTDIR\locale\nl\LC_MESSAGES"
RMDir "$INSTDIR\locale\nl"
Delete "$INSTDIR\locale\pl\LC_MESSAGES\*.*"
RMDir "$INSTDIR\locale\pl\LC_MESSAGES"
RMDir "$INSTDIR\locale\pl"
Delete "$INSTDIR\locale\ru\LC_MESSAGES\*.*"
RMDir "$INSTDIR\locale\ru\LC_MESSAGES"
RMDir "$INSTDIR\locale\ru"

9017
po/pl.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -65,6 +65,7 @@ translation_c::initialize_available_translations() {
ms_available_translations.push_back(translation_c("ja_JP", "ja", "japanese", "Japanese", "日本語", true));
ms_available_translations.push_back(translation_c("lt_LT", "lt", "lithuanian", "Lithuanian", "Lietuvių", false));
ms_available_translations.push_back(translation_c("nl_NL", "nl", "dutch", "Dutch", "Nederlands", false));
ms_available_translations.push_back(translation_c("pl_PL", "pl", "polish", "Polish", "Język polski", false));
ms_available_translations.push_back(translation_c("ru_RU", "ru", "russian", "Russian", "Русский", false));
ms_available_translations.push_back(translation_c("tr_TR", "tr", "turkish", "Turkish", "Türkçe", false));
ms_available_translations.push_back(translation_c("uk_UA", "uk", "ukrainian", "Ukrainian", "Український", false));