-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from jeanslack/ru_lang_update
Russian language update
- Loading branch information
Showing
4 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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." | ||
|
@@ -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 "" | ||
|
@@ -6809,4 +6810,3 @@ msgstr "URL-адреса содержат видеоканалы. Вы увер | |
|
||
#~ msgid "For more information, visit the official FFmpeg documentation:" | ||
#~ msgstr "Для получения дополнительной информации посетите официальную документацию FFmpeg:" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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 | ||
|