Skip to content

Commit

Permalink
Merge pull request #371 from jeanslack/ru_lang_update
Browse files Browse the repository at this point in the history
Russian language update
  • Loading branch information
jeanslack authored Jan 18, 2025
2 parents 5ec21ad + 5bf42b2 commit 592bba8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ License: GPL3
Change Log:

+------------------------------------+
Wed, 15 Jan 2025 V.5.0.25
Sat, 18 Jan 2025 V.5.0.25

* Checking the output directories before running processes.
* Requires minimum Python version 3.9.0 .
Expand All @@ -19,6 +19,9 @@ Wed, 15 Jan 2025 V.5.0.25
using the Python interpreter (interactive mode).
* Updated copyleft year.
* Updated Italian translation (thanks to @bovirus).
* Updated Russian translation (thanks to ChourS)
* [AV Conversions] Fixed disabling widgets and tooltips when selecting
`No Audio` and `Copy` on the audio encoder radiobox.

+------------------------------------+
Wed, 30 Oct 2024 V.5.0.21
Expand Down
5 changes: 4 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ videomass (5.0.25-1) UNRELEASED; urgency=medium
using the Python interpreter (interactive mode).
* Updated copyleft year.
* Updated Italian translation (thanks to @bovirus).
* Updated Russian translation (thanks to ChourS)
* [AV Conversions] Fixed disabling widgets and tooltips when selecting
`No Audio` and `Copy` on the audio encoder radiobox.

-- Gianluca Pernigotto <[email protected]> Wed, 15 Jan 2025 09:00:00 +0200
-- Gianluca Pernigotto <[email protected]> Sat, 18 Jan 2025 15:00:00 +0200

videomass (5.0.21-1) UNRELEASED; urgency=medium

Expand Down
12 changes: 6 additions & 6 deletions videomass/data/locale/ru_RU/LC_MESSAGES/videomass.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ msgstr ""
"Project-Id-Version: Videomass 5.0.20\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-01-14 17:11+0100\n"
"PO-Revision-Date: 2024-09-04 13:13+0300\n"
"PO-Revision-Date: 2025-01-18 00:00+0300\n"
"Last-Translator: Chour <[email protected]>\n"
"Language: ru_RU\n"
"Language-Team: Chour <[email protected]>\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: ru_RU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.16.0\n"
"X-Generator: Poedit 3.5\n"

#: ../../gui_app.py:121
msgid "To suppress this message on startup, please install yt-dlp or disable it from the preferences."
Expand Down Expand Up @@ -2839,13 +2840,13 @@ msgstr ""

#: ../../vdms_panels/concatenate.py:125
msgid "Videomass Documentation:"
msgstr ""
msgstr "Документация Videomass:"

#: ../../vdms_panels/concatenate.py:136
#: ../../vdms_panels/sequence_to_video.py:208
#: ../../vdms_panels/video_to_sequence.py:181
msgid "Official FFmpeg documentation:"
msgstr ""
msgstr "Официальная документация FFmpeg:"

#: ../../vdms_panels/concatenate.py:253
msgid ""
Expand Down Expand Up @@ -6809,4 +6810,3 @@ msgstr "URL-адреса содержат видеоканалы. Вы увер

#~ msgid "For more information, visit the official FFmpeg documentation:"
#~ msgstr "Для получения дополнительной информации посетите официальную документацию FFmpeg:"

10 changes: 6 additions & 4 deletions videomass/vdms_panels/audio_encoders/acodecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Author: Gianluca Pernigotto <[email protected]>
Copyleft - 2025 Gianluca Pernigotto <[email protected]>
license: GPL3
Rev: Apr.08.2024
Rev: Jan.18.2025
Code checker: flake8, pylint
This file is part of Videomass.
Expand Down Expand Up @@ -581,13 +581,15 @@ def _param(enablenormalization, enablebuttonparameters):
self.opt["AudioCodec"] = ["", ""]

elif audiocodec == "Copy":
self.normalize_default()
self.rdbx_normalize.SetSelection(0)
self.on_normalize(self)
_param(False, False)
amap = f'-c:a:{self.opt["AudioMap"][1]}'
self.opt["AudioCodec"] = [amap, v]

elif audiocodec == _("No Audio"):
self.normalize_default()
elif audiocodec == "No Audio":
self.rdbx_normalize.SetSelection(0)
self.on_normalize(self)
self.opt["AudioCodec"] = ["", v]
_param(False, False)
# break
Expand Down

0 comments on commit 592bba8

Please sign in to comment.