From 6e433842bf82f147d4a0404544f8b0e72da6693c Mon Sep 17 00:00:00 2001 From: Gianluca Pernigotto Date: Tue, 19 Dec 2023 17:14:24 +0100 Subject: [PATCH 1/3] fix Cannot set locale to zh_CH --- CHANGELOG | 3 ++- debian/changelog | 3 ++- .../{zh_CN => zh_CH}/LC_MESSAGES/videomass.mo | Bin 29325 -> 29325 bytes .../{zh_CN => zh_CH}/LC_MESSAGES/videomass.po | 4 ++-- videomass/vdms_sys/app_const.py | 2 +- videomass/vdms_sys/msg_info.py | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) rename videomass/locale/{zh_CN => zh_CH}/LC_MESSAGES/videomass.mo (99%) rename videomass/locale/{zh_CN => zh_CH}/LC_MESSAGES/videomass.po (99%) diff --git a/CHANGELOG b/CHANGELOG index 8f4e70f0..91f34c2e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,7 +7,7 @@ License: GPL3 Change Log: +------------------------------------+ -Sun, 17 Dec 2023 V.5.0.3c3 +Tue, 19 Dec 2023 V.5.0.3c4 * [YouTube Downloader] New feature: subtitles editor, see #240 * [YouTube Downloader] Improved UI layout. @@ -20,6 +20,7 @@ Sun, 17 Dec 2023 V.5.0.3c3 opening by clicking the menu bar when the yt-dlp module is not loaded. * Update fr_FR translation, thanks to Philaug. * Update es_ES, es_CU, es_MX translations, thanks to katnatek. + * Try to fix zh_CH (Chinese - Simplified) locale error #253 +------------------------------------+ Tue, 20 Jun 2023 V.5.0.2 diff --git a/debian/changelog b/debian/changelog index f51d0090..92e4764a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,8 +11,9 @@ videomass (5.0.3-1) UNRELEASED; urgency=medium opening by clicking the menu bar when the yt-dlp module is not loaded. * Update fr_FR translation, thanks to Philaug. * Update es_ES, es_CU, es_MX translations, thanks to katnatek. + * Try to fix zh_CH (Chinese - Simplified) locale error #253 - -- Gianluca Pernigotto Sun, 17 Dec 2023 17:00:00 +0200 + -- Gianluca Pernigotto Tue, 19 Dec 2023 17:00:00 +0200 videomass (5.0.2-1) UNRELEASED; urgency=medium diff --git a/videomass/locale/zh_CN/LC_MESSAGES/videomass.mo b/videomass/locale/zh_CH/LC_MESSAGES/videomass.mo similarity index 99% rename from videomass/locale/zh_CN/LC_MESSAGES/videomass.mo rename to videomass/locale/zh_CH/LC_MESSAGES/videomass.mo index c7028f0422ce49b28f24db84cc40794c8bc6a5dc..71c1965ee7793132a871550ea1f31cc3a270218e 100644 GIT binary patch delta 35 rcmeBu%Gmpqaf7WVpP`Yip{0VMnU$%9wt?YfZ_jK-kImaXuW0}P&hQIs delta 35 rcmeBu%Gmpqaf7WVpMklqp@o8>ft9hTwt>-PZ_jK-zs=h{uW0}P&an$> diff --git a/videomass/locale/zh_CN/LC_MESSAGES/videomass.po b/videomass/locale/zh_CH/LC_MESSAGES/videomass.po similarity index 99% rename from videomass/locale/zh_CN/LC_MESSAGES/videomass.po rename to videomass/locale/zh_CH/LC_MESSAGES/videomass.po index 156355c1..71b93b37 100644 --- a/videomass/locale/zh_CN/LC_MESSAGES/videomass.po +++ b/videomass/locale/zh_CH/LC_MESSAGES/videomass.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: Videomass 5.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-07-18 10:29+0200\n" -"PO-Revision-Date: 2023-07-18 10:35+0200\n" +"PO-Revision-Date: 2023-12-19 16:58+0100\n" "Last-Translator: MaiJZ https://github.com/maijz128\n" "Language-Team: simplified Chinese (CN)\n" -"Language: zh_CN\n" +"Language: zh_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/videomass/vdms_sys/app_const.py b/videomass/vdms_sys/app_const.py index 74393561..06cbad3b 100644 --- a/videomass/vdms_sys/app_const.py +++ b/videomass/vdms_sys/app_const.py @@ -20,7 +20,7 @@ # languages you want to support supLang = { "Default": (wx.LANGUAGE_DEFAULT, ("System default language")), - "zh_CN": (wx.LANGUAGE_CHINESE_SIMPLIFIED, ("Chinese (simplified)")), + "zh_CH": (wx.LANGUAGE_CHINESE_SIMPLIFIED, ("Chinese (simplified)")), "nl_NL": (wx.LANGUAGE_DUTCH, ("Dutch")), "en_US": (wx.LANGUAGE_ENGLISH_US, ("English (United States)")), "fr_FR": (wx.LANGUAGE_FRENCH, ("French")), diff --git a/videomass/vdms_sys/msg_info.py b/videomass/vdms_sys/msg_info.py index 3177a169..73f75c66 100644 --- a/videomass/vdms_sys/msg_info.py +++ b/videomass/vdms_sys/msg_info.py @@ -36,7 +36,7 @@ def current_release(): """ release_name = 'Videomass' program_name = 'videomass' - version = '5.0.3c3' + version = '5.0.3c4' release = 'Not released' copyr = '2013-2023' website = 'http://jeanslack.github.io/Videomass/' From 0d442d7e53e5a5e8671fbecc82267320ac993248 Mon Sep 17 00:00:00 2001 From: Gianluca Pernigotto Date: Tue, 19 Dec 2023 17:23:16 +0100 Subject: [PATCH 2/3] fix Cannot set locale to zh_CN --- CHANGELOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 91f34c2e..51866a3d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -20,7 +20,7 @@ Tue, 19 Dec 2023 V.5.0.3c4 opening by clicking the menu bar when the yt-dlp module is not loaded. * Update fr_FR translation, thanks to Philaug. * Update es_ES, es_CU, es_MX translations, thanks to katnatek. - * Try to fix zh_CH (Chinese - Simplified) locale error #253 + * Try to fix zh_CN (Chinese - Simplified) to zh_CH, see #253 +------------------------------------+ Tue, 20 Jun 2023 V.5.0.2 From e4ee0d5aa110df2f5c2d15bc427102d03f1dc59e Mon Sep 17 00:00:00 2001 From: Gianluca Pernigotto Date: Tue, 19 Dec 2023 17:23:42 +0100 Subject: [PATCH 3/3] fix Cannot set locale to zh_CN --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 92e4764a..db65054d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,7 +11,7 @@ videomass (5.0.3-1) UNRELEASED; urgency=medium opening by clicking the menu bar when the yt-dlp module is not loaded. * Update fr_FR translation, thanks to Philaug. * Update es_ES, es_CU, es_MX translations, thanks to katnatek. - * Try to fix zh_CH (Chinese - Simplified) locale error #253 + * Try to fix zh_CN (Chinese - Simplified) to zh_CH, see #253 -- Gianluca Pernigotto Tue, 19 Dec 2023 17:00:00 +0200