diff --git a/CHANGELOG b/CHANGELOG index 91b49ce6a..230abdc55 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,7 +7,7 @@ License: GPL3 Change Log: +------------------------------------+ -Wed, 17 July 2024 V.5.0.18 +Thue, 18 July 2024 V.5.0.18 * Created new gettext utilities. * Italian translation completed thanks to @bovirus . @@ -28,6 +28,10 @@ Wed, 17 July 2024 V.5.0.18 installed. * Fixed `app_const` not listing the es_CU locale code language. * Improved build using pyinstaller.py wrap script . + * Added support for Arabic (Saudi Arabia), Czech (Czechia), German (Germany), + Hungarian (Hungary) translations. + * Update Localization_Guidelines at: + +------------------------------------+ Wed, 03 July 2024 V.5.0.16 diff --git a/README.md b/README.md index 165d7ee4c..2ee9c1429 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,7 @@ written in [Python3](https://www.python.org/) using the * [Videomass on PyPi](https://pypi.org/project/videomass/) * [Development](https://github.com/jeanslack/Videomass) * [Downloads](https://github.com/jeanslack/Videomass/releases) + +# Help translate the program into other languages +DISCLAIMER: By sending a translation you agree to publish your work under the GPL3 license! +- [Localization_Guidelines](https://jeanslack.github.io/Videomass/Pages/Localization_Guidelines) diff --git a/debian/changelog b/debian/changelog index 7cbb1c8a9..6215f7ff4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -19,8 +19,12 @@ videomass (5.0.18-1) UNRELEASED; urgency=medium installed. * Fixed `app_const` not listing the es_CU locale code language. * Improved build using pyinstaller.py wrap script . + * Added support for Arabic (Saudi Arabia), Czech (Czechia), German (Germany), + Hungarian (Hungary) translations. + * Update Localization_Guidelines at: + - -- Gianluca Pernigotto Wed, 17 Jul 2024 1:00:00 +0200 + -- Gianluca Pernigotto Thu, 18 Jul 2024 00:00:00 +0200 videomass (5.0.16-1) UNRELEASED; urgency=medium diff --git a/docs/localization_guidelines.md b/docs/localization_guidelines.md deleted file mode 100644 index 1eb8f3803..000000000 --- a/docs/localization_guidelines.md +++ /dev/null @@ -1,16 +0,0 @@ -# Help to translate videomass to other languages ------------------ - -The localization guidelines can be found on the -[Translate Videomass Offline](https://jeanslack.github.io/Videomass/Pages/Localization_Guidelines.html) -web page. - -To update an already translated language, please visit -[Updates an existing translation](https://jeanslack.github.io/Videomass/Pages/Localization_Guidelines.html#updates-an-existing-translation) -page. - -To start with a new translation language, please visit -[Start with a new translation](https://jeanslack.github.io/Videomass/Pages/Localization_Guidelines.html#start-with-a-new-translation ) -page. - - diff --git a/docs/pyinstaller_setup.md b/docs/pyinstaller_setup.md deleted file mode 100644 index 43a5ce482..000000000 --- a/docs/pyinstaller_setup.md +++ /dev/null @@ -1,85 +0,0 @@ ------------------ -# Make Videomass bundle with pyinstaller on macOS - ------------------ - -One of the tools to easily install everything that is missing on MacOS is -[homebrew](https://brew.sh/) tool. However, homebrew uses the "Command Line Tools" -installed on your machine. By default, OS X does not ship with this tool, and you -need to manually install it. One way to install it is to install Xcode, and it -will install these commands as well. But, Xcode is heavy (in filesize), and -unless you are a developer, you won’t have any need for it. Well, you can do it -by just installing the command line tools only: -``` -xcode-select --install -``` -Install homebrew! -``` -$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" -``` -### Python3 installation -``` -$ brew install python3 -``` - -### FFmpeg Installation - -There are different ways to get FFmpeg, we consider only two here. - -- By homebrew (the simply and secure way): -> Before installing FFmpeg you could take a look at this interesting explanation -of its homebrew compilation options: - -search for the options you want to enable on homebrew: - - -Otherwise, get this command for enable all options: -``` -brew install ffmpeg --with-chromaprint --with-fdk-aac --with-fontconfig --with-freetype --with-frei0r --with-game-music-emu --with-libass --with-libbluray --with-libbs2b --with-libcaca --with-libgsm --with-libmodplug --with-librsvg --with-libsoxr --with-libssh --with-libvidstab --with-libvorbis --with-libvpx --with-opencore-amr --with-openh264 --with-openjpeg --with-openssl --with-opus --with-rtmpdump --with-rubberband --with-sdl2 --with-snappy --with-speex --with-tesseract --with-theora --with-tools --with-two-lame --with-wavpack --with-webp --with-x265 --with-xz --with-zeromq --with-zimg -``` -- By download the precompiled static binary files: - -Go at this page , download -your prefered file, then extract the archive. Inside the 'bin' folder you find -the ffmpeg, ffprobe and ffplay binaries already to use with the terminal app or -by Videomass. Now, you can copy and paste all the `bin` folder to -`/Videomass3/MAcOsxSetup/FFMPEG_BIN/`, or you can set the path later on Videomass. - -Also, If you want to get separately the ffmpeg, ffprobe and ffplay installers -statically compiled and ready to install, you can download them at the following site: - - - - - -Note, however, that they may have limitations for reasons related to distribution -(such as lack of AAC support) - -### Create a virtual environment -To build a Videomass.app I suggest you create a virtual environment, Exhaustive -guides to doing this are as follows: -- -- -- - -- Make sure you have pip, then install required dependencies: - - `python -m pip install --user wxPython` - - - `python -m pip install --user PyPubSub` - - - `python -m pip install --user requests` - - - `python -m pip install --user youtube-dl` - - - `python -m pip install --user yt-dlp` - -- Download the [Videomass](https://github.com/jeanslack/Videomass) TAR or ZIP -sources and extract the archive. - -- Make sure you have installed pyinstaller `python3 -m pip install --user pyinstaller` - -- Open root directory of the Videomass sources that you just extracted -from the archive e.g. `$ cd Videomass` - -- Run `$ python3 develop/tools/pyinstaller_setup.py -h` script and choose the -building option you want: diff --git a/videomass/data/locale/README b/videomass/data/locale/README index 2cb83a7ab..c80d0abc8 100644 --- a/videomass/data/locale/README +++ b/videomass/data/locale/README @@ -2,13 +2,10 @@ NOTE FOR VOLUNTARY TRANSLATORS: -If you are interested in translating any language or adding a new translation, -please see `localization_guidelines.md` on - -web page, thanks. - -IMPORTANT! Before translate, update in place the videomass.po strings: -Open PoEdit and go to menu bar -> Catalog -> Update from POT file... -The videomass.pot file is located next to this README file. +If you are interested in translating any language or adding a new translation language, +please visit +web page. + +thanks. =================================================== diff --git a/videomass/data/locale/ar_SA/LC_MESSAGES/videomass.po b/videomass/data/locale/ar_SA/LC_MESSAGES/videomass.po new file mode 100644 index 000000000..7e63fa7f6 --- /dev/null +++ b/videomass/data/locale/ar_SA/LC_MESSAGES/videomass.po @@ -0,0 +1,4366 @@ +# Arabic (Saudi Arabia) translations for PROJECT. +# Copyright (C) 2024 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" +"PO-Revision-Date: 2024-07-17 16:34+0200\n" +"Last-Translator: FULL NAME \n" +"Language: ar_SA\n" +"Language-Team: ar_SA \n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=0 && n%100<=2 ? 4 : 5);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.10.3\n" + +#: ../../gui_app.py:121 +msgid "To suppress this message on startup, please install yt-dlp or disable it from the preferences." +msgstr "" + +#: ../../gui_app.py:133 ../../gui_app.py:141 +#: ../../vdms_dialogs/filter_colorcorrection.py:343 +#: ../../vdms_dialogs/filter_colorcorrection.py:383 +#: ../../vdms_dialogs/filter_colorcorrection.py:390 +#: ../../vdms_dialogs/filter_crop.py:417 ../../vdms_dialogs/filter_scale.py:287 +#: ../../vdms_dialogs/filter_scale.py:394 ../../vdms_dialogs/filter_stab.py:473 +#: ../../vdms_dialogs/filter_stab.py:483 ../../vdms_dialogs/filter_stab.py:494 +#: ../../vdms_dialogs/filter_transpose.py:182 +#: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 +#: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 +#: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 +#: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 +#: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 +#: ../../vdms_panels/audio_encoders/acodecs.py:509 +#: ../../vdms_panels/audio_encoders/acodecs.py:797 +#: ../../vdms_panels/concatenate.py:197 +#: ../../vdms_panels/long_processing_task.py:60 +#: ../../vdms_panels/presets_manager.py:426 +#: ../../vdms_panels/presets_manager.py:490 +#: ../../vdms_panels/presets_manager.py:560 +#: ../../vdms_panels/presets_manager.py:599 +#: ../../vdms_panels/presets_manager.py:619 +#: ../../vdms_panels/presets_manager.py:657 +#: ../../vdms_panels/presets_manager.py:701 +#: ../../vdms_panels/presets_manager.py:714 +#: ../../vdms_panels/presets_manager.py:721 +#: ../../vdms_panels/presets_manager.py:756 +#: ../../vdms_panels/presets_manager.py:785 +#: ../../vdms_panels/presets_manager.py:791 +#: ../../vdms_panels/sequence_to_video.py:465 +#: ../../vdms_panels/sequence_to_video.py:471 +#: ../../vdms_panels/sequence_to_video.py:559 +#: ../../vdms_panels/sequence_to_video.py:569 +#: ../../vdms_panels/sequence_to_video.py:586 +#: ../../vdms_panels/sequence_to_video.py:594 +#: ../../vdms_panels/sequence_to_video.py:600 +#: ../../vdms_panels/sequence_to_video.py:641 +#: ../../vdms_panels/sequence_to_video.py:687 +#: ../../vdms_panels/video_to_sequence.py:514 +#: ../../vdms_panels/video_to_sequence.py:585 +#: ../../vdms_threads/ffplay_file.py:43 +#: ../../vdms_utils/presets_manager_utils.py:86 +#: ../../vdms_utils/presets_manager_utils.py:95 +#: ../../vdms_utils/queue_utils.py:68 ../../vdms_utils/queue_utils.py:82 +#: ../../vdms_utils/queue_utils.py:95 ../../vdms_ytdlp/youtubedl_ui.py:386 +#: ../../vdms_ytdlp/youtubedl_ui.py:426 +msgid "Videomass - Error!" +msgstr "" + +#: ../../gui_app.py:230 +msgid "" +"Unexpected error while deleting file contents:\n" +"\n" +"{0}" +msgstr "" + +#: ../../vdms_dialogs/about_dialog.py:52 +msgid "Cross-platform graphical user interface for FFmpeg and yt-dlp.\n" +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:224 +msgid "Videomass supports mono and stereo audio channels. If you are not sure set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:228 +msgid "The audio Rate (or sample-rate) is the sound sampling frequency and is measured in Hertz. The higher the frequency, the more true it will be to the sound source and the more the file will increase in size. For audio CD playback, set a sampling frequency of 44100 kHz. If you are not sure, set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:237 +msgid "The audio bitrate affects the file compression and thus the quality of listening. The higher the value, the higher the quality." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:241 +msgid "Bit depth is the number of bits of information in each sample, and it directly corresponds to the resolution of each sample. Bit depth is only meaningful in reference to a PCM digital signal. Non-PCM formats, such as lossy compression formats, do not have associated bit depths." +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:74 ../../vdms_dialogs/queuedlg.py:120 +msgid "When finished, once the operations have been completed successfully:" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:80 ../../vdms_dialogs/queuedlg.py:126 +msgid "Trash the source files" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:84 ../../vdms_dialogs/queuedlg.py:130 +msgid "Clear the File List" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:91 ../../vdms_dialogs/queuedlg.py:142 +#: ../../vdms_main/main_frame.py:1272 +msgid "Run" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:97 +msgid "Videomass - Batch Mode" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:47 +msgid "FFmpeg encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:48 +msgid "supported encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:50 +msgid "FFmpeg decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:51 +msgid "supported decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:77 +#: ../../vdms_panels/av_conversions.py:293 +msgid "Video" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:87 +#: ../../vdms_panels/av_conversions.py:305 +msgid "Audio" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:97 +msgid "Subtitle" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:114 +#: ../../vdms_dialogs/ffmpeg_codecs.py:123 +#: ../../vdms_dialogs/ffmpeg_codecs.py:132 +#: ../../vdms_dialogs/ffmpeg_formats.py:112 +#: ../../vdms_dialogs/ffmpeg_formats.py:115 +#: ../../vdms_dialogs/ffmpeg_formats.py:118 +msgid "description" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:72 +msgid "Informations" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:83 +msgid "Flags settings" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:93 +msgid "Flags enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:103 +msgid "Flags disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:116 +msgid "FFmpeg configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:124 +msgid "flags" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:125 ../../vdms_dialogs/ffmpeg_conf.py:129 +#: ../../vdms_dialogs/ffmpeg_conf.py:133 +msgid "options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:128 ../../vdms_dialogs/ffmpeg_conf.py:132 +msgid "status" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:167 +msgid "FFprobe ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:175 +msgid "FFplay ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:205 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:608 +msgid "Enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:216 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:612 +msgid "Disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:71 +msgid "Demuxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:82 +msgid "Muxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:93 +msgid "Demuxing/Muxing support" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:104 +msgid "FFmpeg file formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:111 +#: ../../vdms_dialogs/ffmpeg_formats.py:114 +#: ../../vdms_dialogs/ffmpeg_formats.py:117 +msgid "supported formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:46 +msgid "" +"Contextual help based on the argument entered in the additional text field.\n" +"Each argument consists of the type and a type-specific name.\n" +"\n" +"For the list of encoders click the \"Encoders\" button.\n" +"For the list of decoders click on the \"Decoders\" button.\n" +"For the muxers and demuxers click on the \"Muxers and Demuxers\" button.\n" +"For the filters, select \"Show available filters\" in the drop down menu.\n" +"For the bsf, select \"Show available bitstream filters\" in the drop down menu.\n" +"For the protocols, select \"Show available protocols\" in the drop down menu.\n" +"\n" +"Some examples:" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:68 ../../vdms_dialogs/ffmpeg_help.py:301 +#: ../../vdms_dialogs/ffmpeg_help.py:315 +msgid "Help topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:69 +msgid "List basic options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:70 +msgid "List more options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:71 +msgid "List all options (very long)" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:72 +msgid "Show available devices" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:73 +msgid "Show available bit stream filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:74 +msgid "Show available protocols" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:75 +msgid "Show available filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:76 +msgid "Show available pixel formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:77 +msgid "Show available audio sample formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:78 +msgid "Show available color names" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:79 +msgid "List sources of the input device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:80 +msgid "List sinks of the output device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:81 +msgid "Show available HW acceleration methods" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:82 +msgid "Show license" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:117 ../../vdms_dialogs/filter_scale.py:76 +#: ../../vdms_dialogs/shownormlist.py:98 ../../vdms_dialogs/shownormlist.py:107 +#: ../../vdms_dialogs/shownormlist.py:116 ../../vdms_miniframes/timeline.py:263 +#: ../../vdms_miniframes/timeline.py:283 ../../vdms_panels/concatenate.py:117 +#: ../../vdms_panels/sequence_to_video.py:117 +#: ../../vdms_panels/video_to_sequence.py:81 +#: ../../vdms_ytdlp/subtitles_editor.py:100 +msgid "Read me" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:123 ../../vdms_main/main_frame.py:544 +msgid "Show configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:127 ../../vdms_main/main_frame.py:552 +msgid "Encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:131 ../../vdms_main/main_frame.py:555 +msgid "Decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:135 ../../vdms_main/main_frame.py:548 +msgid "Muxers and Demuxers" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:165 +msgid "help topic list" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:184 +msgid "Type the argument here and confirm with the enter key on your keyboard" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:192 +msgid "The search function allows you to find entries in the current topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:195 +msgid "Ignore case" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:196 +msgid "Ignore case distinctions: characters with different case will match." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:206 +msgid "FFmpeg help topics" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:254 +msgid "" +"This is a multifunctional search tool useful for local help searches\n" +"on multiple FFmpeg topics and options. The search control, to\n" +"find occurences on text obtained from the chosen argument,\n" +"is very similar to what grep does on the Unix shell, but here\n" +"it's done in real time.\n" +"\n" +"If you don't find support for a certain codec or other feature,\n" +"it's likely that your version of FFmpeg is too old or not configured\n" +"with those features." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:320 ../../vdms_dialogs/ffmpeg_help.py:345 +#: ../../vdms_dialogs/ffmpeg_help.py:371 +msgid "" +"\n" +" ..Nothing available" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:391 +msgid "" +"\n" +" ..Not found" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:91 +msgid "Before" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:97 +msgid "After" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:103 +#: ../../vdms_dialogs/filter_crop.py:239 +msgid "Search for a specific frame" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:117 +#: ../../vdms_dialogs/filter_crop.py:253 +msgid "Load" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:120 +msgid "Color EQ" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:126 +msgid "Contrast:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:134 +#: ../../vdms_dialogs/filter_colorcorrection.py:148 +msgid "-100 to +100, default value 0" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:139 +msgid "Brightness:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:158 +msgid "Saturation:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:166 +msgid "0 to 300, default value 100" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:170 +msgid "Gamma:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:179 +msgid "0 to 100, default value 10" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:187 +#: ../../vdms_dialogs/filter_crop.py:306 +#: ../../vdms_dialogs/filter_deinterlace.py:209 +#: ../../vdms_dialogs/filter_denoisers.py:110 +#: ../../vdms_dialogs/filter_scale.py:210 ../../vdms_dialogs/filter_stab.py:316 +#: ../../vdms_dialogs/filter_transpose.py:105 +#: ../../vdms_miniframes/timeline.py:262 ../../vdms_miniframes/timeline.py:281 +msgid "Reset" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:207 +msgid "Color Correction EQ Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:228 ../../vdms_dialogs/filter_scale.py:109 +msgid "Source size: {0} x {1} pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:236 +msgid "Crop color" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:256 +msgid "Cropping area selection " +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:261 ../../vdms_dialogs/filter_scale.py:121 +msgid "Height" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:281 +msgid "Center" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:292 ../../vdms_dialogs/filter_scale.py:121 +msgid "Width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:334 +msgid "Crop Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:335 +msgid "Choose the color to draw the cropping area" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:337 +msgid "Crop to width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:338 +msgid "Move vertically (set to -1 to center the vertical axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:340 +msgid "Move horizontally (set to -1 to center the horizontal axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:342 +msgid "Crop to height" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:56 +msgid "Advanced Options" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:57 +#: ../../vdms_panels/av_conversions.py:351 +msgid "Deinterlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:59 +msgid "Interlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:63 +msgid "Deinterlaces with w3fdif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:77 +msgid "Deinterlaces with yadif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:101 +msgid "Interlaces with interlace filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:118 +msgid "Deinterlacing and Interlacing" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:144 +msgid "Deinterlace the input video with `w3fdif` filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:146 +msgid "Set the interlacing filter coefficients." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:148 +#: ../../vdms_dialogs/filter_deinterlace.py:158 +msgid "Specify which frames to deinterlace." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:150 +msgid "Deinterlace the input video with `yadif` filter. Using FFmpeg, this is the best and fastest choice" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:153 +msgid "" +"mode\n" +"The interlacing mode to adopt." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:155 +msgid "" +"parity\n" +"The picture field parity assumed for the input interlaced video." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:160 +msgid "Simple interlacing filter from progressive contents." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:162 +msgid "" +"scan:\n" +"determines whether the interlaced frame is taken from the even (tff - default) or odd (bff) lines of the progressive frame." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:166 +msgid "" +"lowpass:\n" +"Enable (default) or disable the vertical lowpass filter to avoid twitter interlacing and reduce moire patterns.\n" +"Default is no setting." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:56 +msgid "Denoiser Filters" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:60 +msgid "Enable nlmeans denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:73 +msgid "nlmeans options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:82 +msgid "Enable hqdn3d denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:91 +msgid "hqdn3d options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:116 +msgid "Denoiser Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:117 +msgid "" +"nlmeans:\n" +"Denoise frames using Non-Local Means algorithm is capable of restoring video sequences, even with strong noise. It is ideal for enhancing the quality of old VHS tapes." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:122 +msgid "" +"hqdn3d:\n" +"This is a high precision/quality 3d denoise filter. It aims to reduce image noise, producing smooth images and making still images really still. It should enhance compressibility." +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:81 +msgid "View result" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:85 +msgid "New size in pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:89 +msgid "Width:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:99 +msgid "Height:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:115 +msgid "Constrain proportions (keep aspect ratio)" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:120 +msgid "Which dimension to adjust?" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:129 +msgid "Aspect Ratio" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:132 +msgid "Setdar filter (display aspect ratio) example 16/9, 4/3 " +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:137 +#: ../../vdms_dialogs/filter_scale.py:171 +msgid "Numerator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:162 +#: ../../vdms_dialogs/filter_scale.py:196 +msgid "Denominator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:166 +msgid "Setsar filter (sample aspect ratio) example 1/1" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:217 +msgid "Resize Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:218 +msgid "Scale filter, set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:221 +msgid "Display Aspect Ratio. Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:224 +msgid "" +"Sample (aka Pixel) Aspect Ratio.\n" +"Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:366 +msgid "" +"If you want to keep the aspect ratio, select \"Constrain proportions\" below and\n" +"specify only one dimension, either width or height, and set the other dimension\n" +"to -1 or -2 (some codecs require -2, so you should do some testing first)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:81 +msgid "Enable stabilizer" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:83 +msgid "Create a side-by-side comparison video" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:88 +msgid "Create a snapshot" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:106 +#: ../../vdms_panels/audio_encoders/acodecs.py:167 +msgid "Preview" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:109 +msgid "Duration seconds:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:118 +msgid "Video Detect" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:176 +msgid "[TRIPOD] Enable tripod mode if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:183 +msgid "Video transform" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:202 +msgid "[OPTALGO] optimization algorithm" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:224 +msgid "[CROP] Specify how to deal with borders at movement compensation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:231 +msgid "[INVERT] Invert transforms if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:234 +msgid "[RELATIVE] Consider transforms as relative to previous frame if checked, absolute if unchecked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:279 +msgid "Specify type of interpolation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:287 +msgid "[TRIPOD2] virtual tripod mode, equivalent to relative=unchecked:smoothing=0" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:294 +msgid "Unsharp filter:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:323 +msgid "Seek to a position on the video." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:325 +msgid "Make a snapshot of the video with the settings made." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:327 +msgid "Set the snapshot duration from 3 to 15 seconds from the seek position, default is 5 seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:331 +msgid "Set how shaky the video is and how quick the camera is. A value of 1 means little shakiness, a value of 10 means strong shakiness. Default value is 5." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:335 +msgid "Set the accuracy of the detection process. A value of 1 means low accuracy, a value of 15 means high accuracy. Default value is 15." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:339 +msgid "Set stepsize of the search process. The region around minimum is scanned with 1 pixel resolution. Default value is 6." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:343 +msgid "Set minimum contrast. Below this value a local measurement field is discarded. The range is 0-1. Default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:346 +msgid "Set reference frame number for tripod mode. If enabled, the motion of the frames is compared to a reference frame in the filtered stream, identified by the specified number. The idea is to compensate all movements in a more-or-less static scene and keep the camera view absolutely still. The frames are counted starting from 1." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:355 +msgid "Set the number of frames (value*2 + 1) used for lowpass filtering the camera movements. Default value is 15. For example a number of 10 means that 21 frames are used (10 in the past and 10 in the future) to smoothen the motion in the video. A larger value leads to a smoother video, but limits the acceleration of the camera (pan/tilt movements). 0 is a special case where a static camera is simulated." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:363 +msgid "Set the camera path optimization algorithm. Values are: `gauss`: gaussian kernel low-pass filter on camera motion (default), and `avg`: averaging on transformations" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:367 +msgid "Set maximal angle in radians (degree*PI/180) to rotate frames. Default value is -1, meaning no limit." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:370 +msgid "Specify how to deal with borders that may be visible due to movement compensation. Values are: `keep` keep image information from previous frame (default), `black` fill the border black" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:375 +msgid "Invert transforms if checked. Default is unchecked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:377 +msgid "Consider transforms as relative to previous frame if checked, absolute if unchecked. Default is checked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:380 +msgid "Set percentage to zoom. A positive value will result in a zoom-in effect, a negative value in a zoom-out effect. Default value is 0 (no zoom)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:384 +msgid "Set optimal zooming to avoid borders. Accepted values are: `0` disabled, `1` optimal static zoom value is determined (only very strong movements will lead to visible borders) (default), `2` optimal adaptive zoom value is determined (no borders will be visible), see zoomspeed. Note that the value given at zoom is added to the one calculated here." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:391 +msgid "Set percent to zoom maximally each frame (enabled when optzoom is set to 2). Range is from 0 to 5, default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:395 +msgid "Specify type of interpolation. Available values are: `no` no interpolation, `linear` linear only horizontal, `bilinear` linear in both directions (default), `bicubic` cubic in both directions (slow)" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:400 +msgid "Enable virtual tripod mode if checked, which is equivalent to relative=0:smoothing=0. Default is unchecked. Use also tripod option of vidstabdetect." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:405 +msgid "Sharpen or blur the input video. Note the use of the unsharp filter which is always recommended." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:409 +msgid "Video Stabilizer Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:541 ../../vdms_io/io_tools.py:57 +#: ../../vdms_io/io_tools.py:99 +msgid "Videomass - Loading..." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:542 +msgid "" +"Please wait,\n" +"This process will take a few seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:80 +#: ../../vdms_dialogs/filter_transpose.py:293 +msgid "Default position" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:86 +msgid "Rotation setting" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:94 +msgid "90° (left)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:96 +msgid "90° (right)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:100 +msgid "180°" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:115 +msgid "Transpose Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:229 +msgid "Rotate 90 degrees right" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:251 +msgid "Rotate 180 degrees" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:272 +msgid "Rotate 90 degrees left" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:82 +msgid "Format" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:96 +msgid "Video Stream" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:109 +msgid "Audio Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:122 +msgid "Subtitle Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:126 +msgid "Copy to clipboard" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:137 +msgid "FILE SELECTION" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:139 ../../vdms_dialogs/mediainfo.py:142 +#: ../../vdms_dialogs/mediainfo.py:145 ../../vdms_dialogs/mediainfo.py:148 +#: ../../vdms_main/main_frame.py:1268 +msgid "Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:140 ../../vdms_dialogs/mediainfo.py:143 +#: ../../vdms_dialogs/mediainfo.py:146 ../../vdms_dialogs/mediainfo.py:149 +msgid "Values" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:152 +msgid "Streams Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:244 +msgid "Unable to open the clipboard on Format tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:263 +msgid "Unable to open the clipboard on Video Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:283 +msgid "Unable to open the clipboard on Audio Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:303 +msgid "Unable to open the clipboard on Subtitle Streams tab" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:92 +msgid "Where do you prefer to save your transcodes?" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:103 ../../vdms_dialogs/preferences.py:130 +#: ../../vdms_dialogs/preferences.py:151 ../../vdms_dialogs/preferences.py:163 +#: ../../vdms_dialogs/preferences.py:175 ../../vdms_dialogs/preferences.py:214 +#: ../../vdms_dialogs/preferences.py:233 ../../vdms_panels/filedrop.py:284 +#: ../../vdms_ytdlp/textdrop.py:153 ../../vdms_ytdlp/ydl_preferences.py:123 +msgid "Change" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:105 +#: ../../vdms_panels/av_conversions.py:1197 ../../vdms_panels/filedrop.py:574 +#: ../../vdms_panels/presets_manager.py:1050 +msgid "Same destination paths as source files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:110 +msgid "Assign optional suffix to destination file names:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:116 +msgid "File removal preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:120 +msgid "Trash the source files after successful encoding" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:133 +#: ../../vdms_ytdlp/ydl_preferences.py:131 +msgid "File Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:140 +msgid "Location of executables" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:142 +msgid "" +"FFmpeg can be built by enabling/disabling its options and this depends on your needs.\n" +"For some use cases it is possible to provide a custom build of FFmpeg where you can specify\n" +"it in this preferences tab." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:149 +msgid "Enable a custom location to run FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:161 +msgid "Enable a custom location to run FFprobe" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:173 +msgid "Enable a custom location to run FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:185 +msgid "FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:191 +msgid "" +"Download videos from YouTube.com and other video sites\n" +"(requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:195 +msgid "" +"Videomass uses the yt-dlp API which can be activated by selecting the checkbox below.\n" +"The next time you restart the application, the yt_dlp module will be loaded into memory." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:201 +msgid "Enable yt-dlp" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:205 +msgid "" +"Enabling a specific location of the yt-dlp executable will give you more control over downloads\n" +"stop actions and the ability to provide other backend locations." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:210 +msgid "Use the executable for downloads rather than API" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:223 +msgid "" +"Import the yt_dlp Python package externally. E.g, you can include the source package\n" +"directory or the path to the package installed in an external virtual environment." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:229 +msgid "Enable external import of yd_dlp package" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:248 +msgid "Look and Feel (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:253 +msgid "Icon themes" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:267 +msgid "At the top of window (default)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:268 +msgid "At the bottom of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:269 +msgid "At the right of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:270 +msgid "At the left of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:272 +msgid "Place the toolbar" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:281 +msgid "Toolbar's icons size:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:295 +msgid "Application Language (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:307 +msgid "Look and Language" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:313 +msgid "Upon exiting the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:318 +msgid "Always ask me to confirm" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:320 +msgid "Clean the log files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:323 +msgid "Remove cached files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:327 +msgid "On operations completion" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:330 +msgid "These settings will remain active until the application is closed, If necessary, remember to reactivate them." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:335 +msgid "Exit the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:338 +msgid "Shutdown the system" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:342 +msgid "SUDO password:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:351 +msgid "Exit and Shutdown" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:357 +msgid "Specify the character encoding format" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:360 +msgid "" +"Although UTF-8 is the default and most widely used standard encoding format, it is not the only encoding format available.\n" +"Some file metadata may still contain non-UTF-8 character encodings resulting in the error \"'utf-8' codec can't decode bytes...\".\n" +"If you know the encoding format the file was written in, you can try specifying it here, e.g. ISO 8859-1, ISO 8859-16, etc." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:370 +msgid "Character encoding:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:379 +msgid "Default application directories" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:383 +msgid "Configuration directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:396 +msgid "Cache directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:408 +msgid "Log directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:422 +msgid "Advanced" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:428 +msgid "" +"The following settings affect output messages and the log messages during transcoding processes.\n" +"Be careful, by changing these settings some functions of the application may not work correctly,\n" +"change only if you know what you are doing.\n" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:435 +msgid "Set logging level flags used by FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:442 +msgid "Set logging level flags used by FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:450 +msgid "FFmpeg logging levels" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:504 +msgid "By assigning an additional suffix you could avoid overwriting files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:507 +msgid "Type sudo password here, only for Unix-like operating systems, not for MS Windows" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:510 +msgid "Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:674 ../../vdms_dialogs/preferences.py:754 +#: ../../vdms_main/main_frame.py:859 ../../vdms_main/main_frame.py:1040 +#: ../../vdms_ytdlp/main_ytdlp.py:398 ../../vdms_ytdlp/ydl_preferences.py:504 +msgid "Choose Destination" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:705 +msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") and the underscore (\"_\"). Spaces are not allowed." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:720 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 +#: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 +#: ../../vdms_panels/av_conversions.py:612 +#: ../../vdms_panels/sequence_to_video.py:350 +#: ../../vdms_panels/video_to_sequence.py:401 +#: ../../vdms_ytdlp/main_ytdlp.py:228 ../../vdms_ytdlp/youtubedl_ui.py:422 +msgid "Videomass - Warning!" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:809 ../../vdms_dialogs/preferences.py:849 +#: ../../vdms_dialogs/preferences.py:889 ../../vdms_dialogs/wizard_dlg.py:351 +#: ../../vdms_dialogs/wizard_dlg.py:368 ../../vdms_dialogs/wizard_dlg.py:385 +msgid "{} location" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:930 +msgid "Open «{}» executable file" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:959 +msgid "Open «yt_dlp» python package directory" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:36 +#: ../../vdms_dialogs/setting_profiles.py:38 +msgid "One-Pass, Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:40 +#: ../../vdms_dialogs/setting_profiles.py:42 +msgid "Two-Pass (optional), Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:59 +msgid "Videomass - Edit the selected item in the queue" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:71 +#: ../../vdms_dialogs/setting_profiles.py:92 +msgid "Pre-input arguments for One-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:82 +#: ../../vdms_dialogs/setting_profiles.py:151 +#: ../../vdms_panels/presets_manager.py:255 +msgid "FFmpeg arguments for one-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:88 +#: ../../vdms_dialogs/setting_profiles.py:158 +#: ../../vdms_panels/presets_manager.py:259 +msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:102 +#: ../../vdms_dialogs/setting_profiles.py:98 +msgid "Pre-input arguments for Two-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:113 +#: ../../vdms_dialogs/setting_profiles.py:152 +#: ../../vdms_panels/presets_manager.py:257 +msgid "FFmpeg arguments for two-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:120 +#: ../../vdms_dialogs/setting_profiles.py:162 +#: ../../vdms_panels/presets_manager.py:263 +msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:65 ../../vdms_main/main_frame.py:518 +#: ../../vdms_panels/presets_manager.py:189 +#: ../../vdms_panels/video_to_sequence.py:171 +#: ../../vdms_ytdlp/main_ytdlp.py:301 +msgid "Edit" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:68 +msgid "Remove" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:71 +msgid "Remove all" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:74 +msgid "" +"Export\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:77 +msgid "" +"Import\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:85 ../../vdms_panels/filedrop.py:273 +msgid "Destination file name" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:137 +msgid "Remove all items in the queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:151 +msgid "Videomass - Queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:228 +msgid "Export queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:296 ../../vdms_panels/av_conversions.py:1192 +#: ../../vdms_panels/presets_manager.py:1044 +#: ../../vdms_panels/video_to_sequence.py:602 +msgid "Same as source" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:301 +msgid "" +"Source\n" +"File destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_dialogs/renamer.py:76 +msgid "# will be replaced by ascending numbers starting with:" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:87 +msgid "Font Size" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:111 +msgid "Font Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:121 +msgid "Shadow Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:132 +msgid "Show text box" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:136 +msgid "Box Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:156 +msgid "The timestamp size does not auto-adjust to the video size, you have to set the size here" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:160 ../../vdms_main/main_frame.py:569 +msgid "Timestamp settings" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:46 +msgid "Supported Formats list (optional). Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:47 +msgid "Output Format. Empty to copy format and codec. Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:70 +msgid "Profile Name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:74 +#: ../../vdms_panels/presets_manager.py:404 +msgid "Description" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:149 +msgid "A short profile name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:150 +msgid "A long description of the profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:153 +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:155 +msgid "Output format extension. Leave empty to copy codec and format" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:256 +msgid "Incomplete profile assignments" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:263 +msgid "Formats must be comma-separated" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:279 +#: ../../vdms_utils/queue_utils.py:80 +msgid "" +"ERROR: Keys mismatched for requested data.\n" +"Invalid file: «{0}»" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 +msgid "Profile already stored with same name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:293 +msgid "Profile stored successfully!" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:311 +msgid "Profile change successful!" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:81 +msgid "Log file list" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:83 ../../vdms_dialogs/showlogs.py:117 +msgid "Log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:106 +msgid "Refresh log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:108 +msgid "Clear log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:161 +msgid "Select a log file" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:168 +msgid "Are you sure you want to clear the selected log file?" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:169 ../../vdms_dialogs/wizard_dlg.py:243 +#: ../../vdms_io/checkup.py:50 ../../vdms_main/main_frame.py:207 +#: ../../vdms_main/main_frame.py:778 ../../vdms_main/main_frame.py:1619 +#: ../../vdms_panels/presets_manager.py:349 +#: ../../vdms_panels/presets_manager.py:550 +#: ../../vdms_panels/presets_manager.py:590 +#: ../../vdms_panels/presets_manager.py:649 +#: ../../vdms_panels/presets_manager.py:684 +#: ../../vdms_panels/presets_manager.py:749 +#: ../../vdms_panels/presets_manager.py:775 +#: ../../vdms_panels/presets_manager.py:874 +#: ../../vdms_panels/presets_manager.py:904 ../../vdms_ytdlp/main_ytdlp.py:201 +#: ../../vdms_ytdlp/ydl_preferences.py:438 ../../vdms_ytdlp/youtubedl_ui.py:609 +#: ../../vdms_ytdlp/youtubedl_ui.py:625 +msgid "Please confirm" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:83 +msgid "File name" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:84 +msgid "Max volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:85 +msgid "Mean volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:86 +msgid "Offset dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:87 +msgid "Result dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:92 +msgid "Post-normalization references:" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:102 +msgid "= Clipped peaks" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:111 +msgid "= No changes" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:121 +msgid "= Below max peak" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:166 +#: ../../vdms_panels/audio_encoders/acodecs.py:838 +msgid "RMS-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:191 +#: ../../vdms_panels/audio_encoders/acodecs.py:836 +msgid "PEAK-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:216 +msgid "" +"...It means the resulting audio will be clipped,\n" +"because its volume is higher than the maximum 0 db\n" +"level. This results in data loss and the audio may\n" +"sound distorted." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:242 +msgid "" +"...It means the resulting audio will not change,\n" +"because it's equal to the source." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:266 +msgid "" +"...It means an audio signal will be produced with\n" +"a lower volume than the source." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:63 +msgid "Get Latest Version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:67 +msgid "Checking for newer version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:95 +msgid "" +"\n" +"\n" +"New releases fix bugs and offer new features." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:96 +msgid "" +"\n" +"\n" +"This is Videomass v.{0}\n" +"\n" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:37 +msgid "" +"q, ESC\n" +"f\n" +"p, SPC\n" +"m\n" +"9, 0\n" +"/, *\n" +"a\n" +"v\n" +"t\n" +"c\n" +"w\n" +"s\n" +"\n" +"left/right\n" +"down/up\n" +"page down/page up\n" +"\n" +"right mouse click\n" +"left mouse double-click" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:92 +msgid "Shortcut keys while playing with FFplay" +msgstr "" + +#: ../../vdms_dialogs/widget_utils.py:120 ../../vdms_main/main_frame.py:1276 +#: ../../vdms_ytdlp/main_ytdlp.py:499 +msgid "Stop" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:65 +msgid "Please take a moment to set up the application" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:66 +msgid "Click the \"Next\" button to get started" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:81 +msgid "Welcome to the Videomass Wizard!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:123 +msgid "Videomass is an application based on FFmpeg\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:125 +msgid "If FFmpeg is not on your computer, this application will be unusable" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:128 +msgid "" +"If you have already installed FFmpeg on your operating\n" +"system, click the \"Auto-detection\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:131 +msgid "" +"If you want to use a version of FFmpeg located on your\n" +"filesystem but not installed on your operating system,\n" +"click the \"Locate\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:153 +msgid "Auto-detection" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:155 +msgid "Locate" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:206 +msgid "Click the \"Next\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:227 +msgid "'{}' is not installed on your computer. Install it or indicate another location by clicking the 'Locate' button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:241 +msgid "" +"Videomass already seems to include FFmpeg.\n" +"\n" +"Do you want to use that?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:267 +msgid "Locating FFmpeg executables\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:269 +msgid "" +"\"ffmpeg\", \"ffprobe\" and \"ffplay\" are required. Complete all\n" +"the text boxes below by clicking on the respective buttons." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:408 +msgid "Videomass has a simple graphical interface for yt-dlp\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:409 +msgid "" +"This feature allows you to download video and audio from\n" +"many sites, including YouTube.com and even Facebook." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:428 +msgid " Do you want to enable this feature?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:458 +msgid "Wizard completed successfully!\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:459 +msgid "Remember that you can always change these settings later, through the Preferences dialog." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:461 +msgid "Thank You!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:462 +msgid "To exit click the \"Finish\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:550 +msgid "< Previous" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:553 ../../vdms_dialogs/wizard_dlg.py:653 +msgid "Next >" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:558 +msgid "Videomass Wizard" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:587 ../../vdms_dialogs/wizard_dlg.py:623 +msgid "Finish" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:615 +msgid "Some text boxes are still incomplete" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:679 +msgid "Re-start is required" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:680 +msgid "Done!" +msgstr "" + +#: ../../vdms_io/checkup.py:47 +msgid "Files already exist, do you want to overwrite them?" +msgstr "" + +#: ../../vdms_io/checkup.py:49 +msgid "Already exist" +msgstr "" + +#: ../../vdms_io/checkup.py:63 +msgid "Not found" +msgstr "" + +#: ../../vdms_io/checkup.py:64 ../../vdms_panels/filedrop.py:196 +#: ../../vdms_ytdlp/textdrop.py:86 +msgid "Error list" +msgstr "" + +#: ../../vdms_io/checkup.py:65 +msgid "File(s) not found" +msgstr "" + +#: ../../vdms_io/checkup.py:74 +msgid "" +"Output folder does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_io/io_tools.py:58 +msgid "" +"Wait....\n" +"Retrieving required data." +msgstr "" + +#: ../../vdms_io/io_tools.py:82 +#, python-format +msgid "File does not exist or is invalid: %s" +msgstr "" + +#: ../../vdms_io/io_tools.py:100 +msgid "" +"Wait....\n" +"Audio peak analysis." +msgstr "" + +#: ../../vdms_io/io_tools.py:205 +msgid "Videomass - Downloading..." +msgstr "" + +#: ../../vdms_main/main_frame.py:188 ../../vdms_main/main_frame.py:1357 +#: ../../vdms_main/main_frame.py:1385 ../../vdms_ytdlp/main_ytdlp.py:98 +#: ../../vdms_ytdlp/main_ytdlp.py:146 ../../vdms_ytdlp/main_ytdlp.py:553 +#: ../../vdms_ytdlp/textdrop.py:233 ../../vdms_ytdlp/youtubedl_ui.py:437 +msgid "Ready" +msgstr "" + +#: ../../vdms_main/main_frame.py:205 +msgid "" +"Not all items in the queue were completed.\n" +"\n" +"Would you like to keep them in the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:226 +msgid "Queue ({0})" +msgstr "" + +#: ../../vdms_main/main_frame.py:231 ../../vdms_main/main_frame.py:1284 +msgid "Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:401 ../../vdms_main/main_frame.py:426 +#: ../../vdms_ytdlp/main_ytdlp.py:225 +msgid "There are still active windows with running processes, make sure you finish your work before exit." +msgstr "" + +#: ../../vdms_main/main_frame.py:408 +msgid "Are you sure you want to exit the application?" +msgstr "" + +#: ../../vdms_main/main_frame.py:410 +msgid "Exit" +msgstr "" + +#: ../../vdms_main/main_frame.py:473 +msgid "Import files\tCtrl+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:476 +msgid "Open destination folder of encodings\tCtrl+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:479 +msgid "Load queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:480 +msgid "Load a previously exported queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:483 +msgid "Open trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:484 +msgid "Open the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:486 +msgid "Empty trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:487 +msgid "Delete all files in the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:490 +msgid "Exit\tCtrl+Q" +msgstr "" + +#: ../../vdms_main/main_frame.py:491 +msgid "Completely exit the application" +msgstr "" + +#: ../../vdms_main/main_frame.py:492 ../../vdms_ytdlp/main_ytdlp.py:284 +msgid "File" +msgstr "" + +#: ../../vdms_main/main_frame.py:496 ../../vdms_panels/filedrop.py:340 +#: ../../vdms_panels/filedrop.py:359 +msgid "Rename selected file\tCtrl+R" +msgstr "" + +#: ../../vdms_main/main_frame.py:497 +msgid "Rename the destination of the selected file" +msgstr "" + +#: ../../vdms_main/main_frame.py:500 ../../vdms_panels/filedrop.py:341 +#: ../../vdms_panels/filedrop.py:362 +msgid "Batch rename files\tCtrl+B" +msgstr "" + +#: ../../vdms_main/main_frame.py:501 +msgid "Numerically renames the destination of all items in the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:506 ../../vdms_panels/filedrop.py:343 +#: ../../vdms_panels/filedrop.py:366 +msgid "Remove selected entry\tDEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:507 +msgid "Remove the selected file from the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:510 ../../vdms_panels/filedrop.py:344 +#: ../../vdms_panels/filedrop.py:369 ../../vdms_ytdlp/main_ytdlp.py:294 +#: ../../vdms_ytdlp/textdrop.py:191 ../../vdms_ytdlp/textdrop.py:212 +msgid "Clear list\tShift+DEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:511 +msgid "Clear the file list" +msgstr "" + +#: ../../vdms_main/main_frame.py:516 +msgid "Preferences\tCtrl+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:517 +msgid "Application preferences" +msgstr "" + +#: ../../vdms_main/main_frame.py:522 +msgid "Find FFmpeg topics" +msgstr "" + +#: ../../vdms_main/main_frame.py:523 +msgid "A useful tool to search for FFmpeg help topics and options" +msgstr "" + +#: ../../vdms_main/main_frame.py:528 +msgid "Check for preset updates" +msgstr "" + +#: ../../vdms_main/main_frame.py:529 +msgid "Check for new presets updates from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:531 +msgid "Get latest presets" +msgstr "" + +#: ../../vdms_main/main_frame.py:532 +msgid "Get the latest presets from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:535 ../../vdms_ytdlp/main_ytdlp.py:305 +msgid "Work notes\tCtrl+N" +msgstr "" + +#: ../../vdms_main/main_frame.py:536 ../../vdms_ytdlp/main_ytdlp.py:306 +msgid "Read and write useful notes and reminders." +msgstr "" + +#: ../../vdms_main/main_frame.py:538 ../../vdms_ytdlp/main_ytdlp.py:308 +msgid "Tools" +msgstr "" + +#: ../../vdms_main/main_frame.py:545 +msgid "Show FFmpeg's built-in configuration capabilities" +msgstr "" + +#: ../../vdms_main/main_frame.py:549 +msgid "Muxers and demuxers available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:553 +msgid "Encoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:556 +msgid "Decoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:559 +msgid "FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:560 +msgid "Enable timestamps on playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:561 +msgid "Displays timestamp when playing media with FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:564 +msgid "Auto-exit after playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:565 +msgid "If checked, the FFplay window will auto-close when playback is complete" +msgstr "" + +#: ../../vdms_main/main_frame.py:569 +msgid "Customize the timestamp style" +msgstr "" + +#: ../../vdms_main/main_frame.py:572 +msgid "While playing..." +msgstr "" + +#: ../../vdms_main/main_frame.py:573 +msgid "Show useful shortcut keys when playing or previewing using FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:577 +msgid "Show timeline editor\tCtrl+T" +msgstr "" + +#: ../../vdms_main/main_frame.py:578 +msgid "Set duration or trim slices of time to remove unwanted parts from your files" +msgstr "" + +#: ../../vdms_main/main_frame.py:582 ../../vdms_ytdlp/main_ytdlp.py:318 +msgid "View" +msgstr "" + +#: ../../vdms_main/main_frame.py:589 +msgid "Home panel\tCtrl+Shift+H" +msgstr "" + +#: ../../vdms_main/main_frame.py:590 +msgid "Go to the «Home» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:593 +msgid "Presets Manager\tCtrl+Shift+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:594 +msgid "Go to the «Presets Manager» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:596 +msgid "A/V Conversions\tCtrl+Shift+V" +msgstr "" + +#: ../../vdms_main/main_frame.py:597 +msgid "Go to the «A/V Conversions» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:599 +msgid "Concatenate Demuxer\tCtrl+Shift+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:600 +msgid "Go to the «Concatenate Demuxer» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:603 +msgid "Still Image Maker\tCtrl+Shift+I" +msgstr "" + +#: ../../vdms_main/main_frame.py:604 +msgid "Go to the «Still Image Maker» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:606 +msgid "From Movie to Pictures\tCtrl+Shift+S" +msgstr "" + +#: ../../vdms_main/main_frame.py:607 +msgid "Go to the «From Movie to Pictures» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:610 +msgid "YouTube Downloader\tCtrl+Shift+Y" +msgstr "" + +#: ../../vdms_main/main_frame.py:611 +msgid "Open «YouTube Downloader» window" +msgstr "" + +#: ../../vdms_main/main_frame.py:613 +msgid "Output monitor\tCtrl+Shift+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:614 +msgid "Keeps track of the output for debugging errors" +msgstr "" + +#: ../../vdms_main/main_frame.py:616 +msgid "Go" +msgstr "" + +#: ../../vdms_main/main_frame.py:620 +msgid "User guide" +msgstr "" + +#: ../../vdms_main/main_frame.py:623 +msgid "Issue tracker" +msgstr "" + +#: ../../vdms_main/main_frame.py:627 +msgid "Check for newer version" +msgstr "" + +#: ../../vdms_main/main_frame.py:628 +msgid "Check for the latest Videomass version" +msgstr "" + +#: ../../vdms_main/main_frame.py:630 +msgid "System version" +msgstr "" + +#: ../../vdms_main/main_frame.py:631 +msgid "Get version about your operating system, version of Python and wxPython." +msgstr "" + +#: ../../vdms_main/main_frame.py:635 +msgid "Show log files\tCtrl+L" +msgstr "" + +#: ../../vdms_main/main_frame.py:636 +msgid "Viewing log messages" +msgstr "" + +#: ../../vdms_main/main_frame.py:640 +msgid "Contribute to the project" +msgstr "" + +#: ../../vdms_main/main_frame.py:644 +msgid "About Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:645 +msgid "Help" +msgstr "" + +#: ../../vdms_main/main_frame.py:709 +msgid "Import files" +msgstr "" + +#: ../../vdms_main/main_frame.py:732 +msgid "No default folder has been set for the destination of the encodings. The current setting is \"Same destination paths as source files\"." +msgstr "" + +#: ../../vdms_main/main_frame.py:764 ../../vdms_main/main_frame.py:789 +msgid "" +"'{}':\n" +"No such file or directory" +msgstr "" + +#: ../../vdms_main/main_frame.py:777 +msgid "Are you sure to empty trash folder?" +msgstr "" + +#: ../../vdms_main/main_frame.py:785 +msgid "" +"'{}':\n" +"There are no files to delete." +msgstr "" + +#: ../../vdms_main/main_frame.py:842 +msgid "Installed release v{0}. A new presets release is available {1}" +msgstr "" + +#: ../../vdms_main/main_frame.py:846 +msgid "Installed release v{0}. No new updates found." +msgstr "" + +#: ../../vdms_main/main_frame.py:876 +msgid "" +"Wait....\n" +"The archive is being downloaded" +msgstr "" + +#: ../../vdms_main/main_frame.py:888 +msgid "Successfully downloaded to \"{0}\"" +msgstr "" + +#: ../../vdms_main/main_frame.py:1100 +msgid "Some changes require restarting the application." +msgstr "" + +#: ../../vdms_main/main_frame.py:1106 +msgid "" +"{0}\n" +"\n" +"Do you want to restart the application now?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1108 +msgid "Restart Videomass?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1157 +msgid "A new release is available - v.{0}\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1160 +msgid "You are using a development version that has not yet been released!\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1163 +msgid "Congratulation! You are already using the latest version.\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1251 +msgid "Previous panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1252 ../../vdms_ytdlp/main_ytdlp.py:477 +msgid "Back" +msgstr "" + +#: ../../vdms_main/main_frame.py:1255 +msgid "Next panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1256 ../../vdms_ytdlp/main_ytdlp.py:482 +msgid "Next" +msgstr "" + +#: ../../vdms_main/main_frame.py:1259 +msgid "Home panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1260 +msgid "Home" +msgstr "" + +#: ../../vdms_main/main_frame.py:1263 +msgid "Play the selected imput file" +msgstr "" + +#: ../../vdms_main/main_frame.py:1264 +msgid "Play" +msgstr "" + +#: ../../vdms_main/main_frame.py:1267 +msgid "Get informative data about imported media streams" +msgstr "" + +#: ../../vdms_main/main_frame.py:1271 +msgid "Start batch processing" +msgstr "" + +#: ../../vdms_main/main_frame.py:1275 ../../vdms_ytdlp/main_ytdlp.py:498 +msgid "Stops current process" +msgstr "" + +#: ../../vdms_main/main_frame.py:1279 +msgid "Add an item to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1280 +msgid "Add to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1283 +msgid "Show queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1356 ../../vdms_panels/presets_manager.py:569 +#: ../../vdms_ytdlp/main_ytdlp.py:145 +msgid "Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:1386 +msgid "Videomass - File List" +msgstr "" + +#: ../../vdms_main/main_frame.py:1403 +msgid "Videomass - AV Conversions" +msgstr "" + +#: ../../vdms_main/main_frame.py:1430 +msgid "Videomass - Presets Manager" +msgstr "" + +#: ../../vdms_main/main_frame.py:1458 +msgid "Videomass - Concatenate Demuxer" +msgstr "" + +#: ../../vdms_main/main_frame.py:1485 +msgid "Videomass - From Movie to Pictures" +msgstr "" + +#: ../../vdms_main/main_frame.py:1512 +msgid "Videomass - Still Image Maker" +msgstr "" + +#: ../../vdms_main/main_frame.py:1594 +#: ../../vdms_panels/audio_encoders/acodecs.py:786 +#: ../../vdms_panels/av_conversions.py:577 ../../vdms_panels/filedrop.py:475 +#: ../../vdms_panels/filedrop.py:588 ../../vdms_panels/sequence_to_video.py:320 +#: ../../vdms_panels/video_to_sequence.py:371 +#: ../../vdms_panels/video_to_sequence.py:503 +msgid "Have to select an item in the file list first" +msgstr "" + +#: ../../vdms_main/main_frame.py:1616 +msgid "" +"An item with the same destination file already exists.\n" +"\n" +"Do you want to replace it by adding the new item to the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1637 +msgid "Videomass - FFmpeg Message Monitoring" +msgstr "" + +#: ../../vdms_main/main_frame.py:1762 +msgid "yt-dlp is disabled. Check your preferences." +msgstr "" + +#: ../../vdms_main/main_frame.py:1765 +msgid "The application requires to be restarted." +msgstr "" + +#: ../../vdms_main/main_frame.py:1768 +msgid "The Python module «yt_dlp» was not found. Make sure you have installed yt-dlp correctly." +msgstr "" + +#: ../../vdms_main/main_frame.py:1795 +msgid "The system will turn off in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1796 +msgid "Videomass - Shutdown!" +msgstr "" + +#: ../../vdms_main/main_frame.py:1803 +msgid "Error while shutting down. Please see file log for details." +msgstr "" + +#: ../../vdms_main/main_frame.py:1815 +msgid "Exiting the application in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1816 +msgid "Videomass - Exiting!" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:46 +msgid "Start point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:48 +msgid "End point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:105 +msgid "Hours" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:106 +msgid "Minutes" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:107 +msgid "Seconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:108 +msgid "Milliseconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:189 ../../vdms_miniframes/timeline.py:312 +msgid "No source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:208 ../../vdms_miniframes/timeline.py:298 +#: ../../vdms_miniframes/timeline.py:333 ../../vdms_miniframes/timeline.py:338 +#: ../../vdms_miniframes/timeline.py:441 +msgid "{0} {1} | Segment Duration: {2}" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:260 ../../vdms_miniframes/timeline.py:277 +msgid "End adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:261 ../../vdms_miniframes/timeline.py:279 +msgid "Start adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:320 +msgid "Source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:387 +msgid "WARNING: Invalid selection, out of range." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:461 +msgid "" +"Start by dragging the bottom left handle,\n" +"or right-click for options." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:497 +msgid "Start" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:498 +msgid "End" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:548 +msgid "" +"The timeline editor is a tool that allows you to trim slices of time on selected imported media (see File List panel).\n" +"\n" +"The \"time format\" used to report durations is expressed in hours, minutes, seconds and milliseconds (HH:MM:SS.ms).\n" +"\n" +"Note that importing new files, making new selection, deselection, deleting items, sorting items (ie by LEFT clicking on the column headers), will reset any previous settings to default values.\n" +"\n" +"If the File List panel is empty or no source files are selected, the overall duration values will be set to 23:59:59.999, rather than the duration of a selected source file (see status bar messages).\n" +"\n" +"The \"Start\"/\"End\" duration values always refer to the initial position of the timeline: 00:00:00.000. For other informations as the segment duration and warnings, please refer to the status bar messages." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:565 +msgid "Timeline Editor Usage" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:153 +msgid "Media:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:169 +msgid "Container:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:180 +msgid "Save profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:183 +msgid "Target" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:316 +msgid "Miscellaneous" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:323 +msgid "Save as a new profile of the Presets Manager." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:325 +msgid "Available video encoders. \"Copy\" means that the video stream will not be re-encoded and will allow you (depending on the encoder) to change the container, audio codec and a few other parameters." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:330 +msgid "" +"Container format. It is usually represented by the file extension (output format).\n" +"\n" +"If the Media target is set to \"Video\" and the Video Encoder to \"Copy\", optionally you can set this control to \"Copy\" the same container as source file.\n" +"\n" +"If the media target is set to \"Audio\", you can extract only the audio streams from videos, or simply convert audio source files." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:338 +msgid "" +"Set output files target: \"Video\" to save output files as video files; \"Audio\" to save files using an audio encoder and format.\n" +"\n" +"Note that by using \"Audio\" as the target, you will still be able to work on the video source files but you will only be able to extract the audio streams, convert them and apply audio filters such as normalization." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:346 +msgid "Preview video filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:347 +msgid "Disable active filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:348 +#: ../../vdms_panels/sequence_to_video.py:155 +#: ../../vdms_panels/video_to_sequence.py:113 +msgid "Resize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:349 +msgid "Crop" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:350 +msgid "Transpose" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:352 +msgid "Denoise" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:353 +msgid "Stabilize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:354 +msgid "Equalize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:517 +msgid "Unable to preview Video Stabilizer filter" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:602 +msgid "" +"Unsupported file:\n" +"Missing decoder or library? Check FFmpeg configuration." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:611 +#: ../../vdms_panels/sequence_to_video.py:349 +#: ../../vdms_panels/video_to_sequence.py:400 +msgid "The file is not a frame or a video file" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:433 +#: ../../vdms_panels/av_conversions.py:861 +msgid "Undetected volume values! Click the \"Volume detect\" button to analyze audio volume data." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1186 +msgid "Off" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1203 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Video Codec\n" +"Audio Codec\n" +"Audio Normalization\n" +"Output multimedia type\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1246 +#: ../../vdms_panels/presets_manager.py:814 +msgid "Write profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1266 +#: ../../vdms_panels/presets_manager.py:513 +msgid "Enter name for new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1276 +#: ../../vdms_panels/presets_manager.py:524 +msgid "Invalid file name, make sure to provide a valid name including the «.json» extension" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1284 +msgid "Cannot save current data in file «{}»." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1289 +msgid "Open Videomass preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1307 +msgid "Videomass - Save new profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1308 +msgid "Where do you want to save this profile?" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1309 +msgid "Save the profile to a new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1310 +msgid "Save the profile to an existing preset" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:71 +msgid "Welcome to Videomass" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:73 +msgid "Version {}" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:84 +msgid "Presets Manager" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:87 +msgid "AV-Conversions" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:90 +msgid "Concatenate media files" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:93 +msgid "YouTube Downloader" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:96 +msgid "Still Image Maker" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:99 +msgid "From Movie to Pictures" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:117 +msgid "Create, edit and use quickly your favorite FFmpeg presets and profiles with full formats support and codecs." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:121 +msgid "A set of useful tools for audio and video conversions. Save your profiles and reuse them with Presets Manager." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:125 +msgid "Easily download videos and audio in different formats and quality from YouTube, Facebook and more sites." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:129 +msgid "Concatenate multiple media files based on import order without re-encoding" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:132 +msgid "Create video from a sequence of images, based on import order, with the ability to add an audio file." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:135 +msgid "Extract images (frames) from your movies in JPG, PNG, BMP, GIF formats." +msgstr "" + +#: ../../vdms_panels/concatenate.py:47 +msgid "At least two files are required to perform concatenation." +msgstr "" + +#: ../../vdms_panels/concatenate.py:63 +msgid "Invalid data found" +msgstr "" + +#: ../../vdms_panels/concatenate.py:68 +msgid "The files do not have the same \"codec_types\", same \"sample_rate\" or same \"width\" or \"height\". Unable to proceed." +msgstr "" + +#: ../../vdms_panels/concatenate.py:84 +msgid "" +"\n" +"- The concatenation function is performed only with Audio files or only with Video files.\n" +"\n" +"- The order of concatenation depends on the order in which the files were added.\n" +"\n" +"- The output file name will have the same name as the first file added (also depends on the\n" +" settings made in the preferences dialog or the renaming functions used).\n" +"\n" +"- Video files must have exactly same streams, same codecs and same\n" +" width/height, but can be wrapped in different container formats.\n" +"\n" +"- Audio files must have exactly the same formats, same codecs with equal sample rate." +msgstr "" + +#: ../../vdms_panels/concatenate.py:125 +msgid "For more details, see the Videomass User Guide:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:145 +#: ../../vdms_panels/sequence_to_video.py:208 +#: ../../vdms_panels/video_to_sequence.py:181 +msgid "For more information, visit the official FFmpeg documentation:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:264 +msgid "" +"Items to concatenate\n" +"File destination\n" +"Output Format\n" +"Output multimedia type\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:45 +msgid "File has illegal characters like:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:46 +msgid "Invalid character found in path name: (\")" +msgstr "" + +#: ../../vdms_panels/filedrop.py:47 +msgid "Directories are not allowed, just add files, please." +msgstr "" + +#: ../../vdms_panels/filedrop.py:48 +msgid "File without format extension: please give an appropriate extension to the file name, example '.mkv', '.avi', '.mp3', etc." +msgstr "" + +#: ../../vdms_panels/filedrop.py:84 +msgid "Name has illegal characters like: {0}" +msgstr "" + +#: ../../vdms_panels/filedrop.py:85 +msgid "Name already in use:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:185 +msgid "Duplicate file, it has already been added to the list." +msgstr "" + +#: ../../vdms_panels/filedrop.py:197 +msgid "Rejected files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:269 +msgid "Source file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:270 +msgid "Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:271 +msgid "Media type" +msgstr "" + +#: ../../vdms_panels/filedrop.py:272 ../../vdms_ytdlp/formatcode.py:137 +msgid "Size" +msgstr "" + +#: ../../vdms_panels/filedrop.py:275 ../../vdms_panels/filedrop.py:383 +msgid "Drag one or more files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:282 ../../vdms_ytdlp/textdrop.py:143 +msgid "Save to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:306 +msgid "Set a new destination folder for encodings" +msgstr "" + +#: ../../vdms_panels/filedrop.py:308 +msgid "Encodings destination folder" +msgstr "" + +#: ../../vdms_panels/filedrop.py:338 ../../vdms_panels/filedrop.py:372 +msgid "Play file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:386 +msgid "Drag two or more Audio/Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:390 +msgid "Drag one or more Image files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:393 +msgid "Drag one or more Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:595 +msgid "Rename the file destination" +msgstr "" + +#: ../../vdms_panels/filedrop.py:596 +msgid "Rename the selected file to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:610 ../../vdms_panels/filedrop.py:620 +#: ../../vdms_panels/filedrop.py:651 +msgid "Add Files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:627 +msgid "Rename in batch" +msgstr "" + +#: ../../vdms_panels/filedrop.py:628 +msgid "Rename the {0} items to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:630 +msgid "New Name #" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:114 +#: ../../vdms_ytdlp/long_task_ytdlp.py:47 +msgid "Sorry, all task failed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:115 +#: ../../vdms_ytdlp/long_task_ytdlp.py:48 +msgid "The process was stopped due to a fatal error." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:116 +#: ../../vdms_ytdlp/long_task_ytdlp.py:49 +msgid "Interrupted Process !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:117 +#: ../../vdms_ytdlp/long_task_ytdlp.py:50 +msgid "Successfully completed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:118 +#: ../../vdms_ytdlp/long_task_ytdlp.py:51 +msgid "Not everything was successful." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:149 +msgid "Encoding Status" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:153 +#: ../../vdms_ytdlp/long_task_ytdlp.py:86 +msgid "Current Log" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:360 +#: ../../vdms_ytdlp/long_task_ytdlp.py:270 +msgid "Fatal Error !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:369 +#: ../../vdms_ytdlp/long_task_ytdlp.py:279 +msgid "Get your files at the destination you specified" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:383 +msgid "For more details please read the Current Log." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:386 +#: ../../vdms_ytdlp/long_task_ytdlp.py:299 +msgid "...Finished" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:405 +#: ../../vdms_ytdlp/long_task_ytdlp.py:313 +msgid "Please wait... interruption in progress" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:408 +msgid "...Interrupted" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:166 +msgid "Presets" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:180 +msgid "Write" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:184 +msgid "Delete" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:194 +msgid "Duplicate" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:199 +msgid "Profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:206 +msgid "One-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:218 +msgid "Two-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:232 +msgid "Choose a preset and view its profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:233 +msgid "Write a new profile and save it in the selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:235 +msgid "Delete the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:236 +msgid "Edit the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:237 +msgid "Duplicate the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:238 +msgid "Create new preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:240 +msgid "Remove selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:242 +msgid "Backup selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:244 +msgid "Backup the presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:246 +msgid "Restore a preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:248 +msgid "Restore a presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:250 +msgid "Resets the selected preset to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:252 +msgid "Reset all presets to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:254 +msgid "Refresh the presets list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:338 +msgid "" +"Outdated presets version found: v{1}\n" +"A new version is available: v{0}\n" +"\n" +"This update provides new presets included on the latest versions of Videomass.\n" +"\n" +"To avoid data loss and allow for possible recovery, the outdated presets folder will be backed up in the program configuration directory:\n" +"«{2}»\n" +"\n" +"Do you want to perform this update now?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:403 +msgid "Name" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:405 +msgid "Output Format" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:406 +msgid "Supported Format List" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:531 +msgid "Cannot save current data in file '{}'." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:535 +msgid "You just successfully created a new preset!" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:547 +msgid "" +"Are you sure you want to remove \"{}\" preset?\n" +"\n" +" It will be moved to the \"Removals\" subfolder inside the presets folder." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:558 +msgid "" +"{}\n" +"\n" +"Sorry, removal failed, cannot continue.." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:568 +msgid "The preset \"{0}\" was successfully removed" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:583 +#: ../../vdms_panels/presets_manager.py:612 +msgid "Open a destination folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:588 +msgid "A file with this name already exists, do you want to overwrite it?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:602 +#: ../../vdms_panels/presets_manager.py:622 +msgid "Backup completed successfully" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:631 +msgid "Open the preset you want to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:645 +msgid "" +"This preset already exists and is about to be updated. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:663 +msgid "Restore successful" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:681 +msgid "" +"This will update the presets database. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:689 +msgid "Open the presets folder to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:725 +msgid "The presets database has been successfully updated" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:740 +msgid "The selected preset is not part of Videomass's default presets." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:745 +msgid "" +"Be careful! The selected preset will be overwritten with the default one. Your profiles may be deleted!\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:760 +#: ../../vdms_panels/presets_manager.py:794 +msgid "Successful recovery" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:769 +msgid "" +"Be careful! This action will restore all presets to default ones. Your profiles may be deleted!\n" +"\n" +"In any case, to avoid data loss, the presets folder will be backed up in the program's configuration directory.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:833 +msgid "Edit profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:872 +msgid "Are you sure you want to delete the selected profile? It will no longer be possible to recover it." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:891 +msgid "First select a profile in the list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:899 +msgid "" +"The selected profile command has been changed manually.\n" +"Do you want to apply it during the conversion process?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:909 +msgid "Don't show this dialog again" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:1054 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Profile Used\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:54 +msgid "Images need to be resized, please use Resize function." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:73 +msgid "" +"\n" +"1. Import one or more image files such as JPG, PNG and BMP formats, then select one.\n" +"\n" +"2. Use the Resize tool for images which have different sizes such as width and\n" +"height. It is optional in other cases.\n" +"\n" +"3. Use the Timeline editor (CTRL+T) to set the time interval between images by adjusting\n" +"the \"End\" duration value and leaving the \"Start\" value at 00:00:00.000.\n" +"\n" +"4. Run the conversion.\n" +"\n" +"\n" +"The produced video will have the name of the selected file in the 'File List' panel, which\n" +"will be saved in a folder named 'Still_Images' with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:129 +msgid "Enable a single still image" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:161 +msgid "" +"Force original aspect ratio using\n" +"padding rather than stretching" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:167 +msgid "Include audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:170 +msgid "Play the video until audio track finishes" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:177 +#: ../../vdms_panels/sequence_to_video.py:437 +msgid "Open audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:195 +msgid "Additional arguments" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:452 +msgid "Open Audio File" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:464 +msgid "" +"Invalid file: '{}'\n" +"\n" +"{}" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:469 +msgid "" +"Invalid file: '{}'\n" +"\n" +"It doesn't appear to be an audio file." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:558 +#: ../../vdms_panels/sequence_to_video.py:585 +#: ../../vdms_panels/video_to_sequence.py:513 +msgid "Invalid file: '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:568 +#: ../../vdms_panels/sequence_to_video.py:593 +msgid "Unsupported format '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:574 +#: ../../vdms_panels/sequence_to_video.py:598 +msgid "" +"File does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:575 +msgid "ERROR" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:705 +msgid "Shortest" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:713 +msgid "" +"Items to concatenate\n" +"Output filename\n" +"Destination\n" +"Output Format\n" +"Additional arguments\n" +"Audio file\n" +"Shortest\n" +"Resize\n" +"Pre-input\n" +"Frame per Second (FPS)\n" +"Still image duration\n" +"Overall video duration" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:50 +msgid "" +"\n" +"1. Import one or more video files, then select one.\n" +"\n" +"2. To select a slice of time use the Timeline editor (CTRL+T) by adjusting the\n" +"\"End\" and the \"Start\" duration values.\n" +"\n" +"3. Select an output format (jpg, png, bmp).\n" +"\n" +"4. Start the conversion.\n" +"\n" +"\n" +"The images produced will be saved in a folder named 'Movie_to_Pictures'\n" +"with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:86 +msgid "Create thumbnails" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:87 +msgid "Create tiled mosaics" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:88 +msgid "Create animated GIF" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:90 ../../vdms_ytdlp/main_ytdlp.py:492 +msgid "Options" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:119 +msgid "Output format:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:131 +msgid "Rows:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:141 +msgid "Columns:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:207 +msgid "Other unofficial resources:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:231 +msgid "Set FPS control from 0.1 to 30.0 fps. The higher this value, the more images will be extracted." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:234 +msgid "Spaces around the mosaic tiles. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:236 +msgid "Spaces around the mosaic borders. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:628 +msgid "" +"Selected File\n" +"Output Format\n" +"Destination\n" +"Rate (fps)\n" +"Resizing\n" +"Mosaic rows\n" +"Mosaic columns\n" +"Mosaic padding\n" +"Mosaic margin\n" +"Custom Arguments\n" +"Start of segment\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:118 +msgid "Audio encoder settings, mapping and filters" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:128 +msgid "Audio Encoder" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:137 +msgid "Settings" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:148 +msgid "Index Selection:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:157 +msgid "Map:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:180 +msgid "Normalization" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:191 +msgid "Volume detect" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:195 +msgid "Volume Statistics" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:199 +msgid "Target level:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:263 +msgid "Gets maximum volume and average volume data in dBFS, then calculates the offset amount for audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:266 +msgid "Limiter for the maximum peak level or the mean level (when switch to RMS) in dBFS. From -99.0 to +0.0; default for PEAK level is -1.0; default for RMS is -20.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:270 +msgid "" +"Normally on a video with correctly indexed streams and having one or more audio streams, the first audio stream should be indexed at \"1\", the second at \"2\" and so on (the video stream on the other hand is always indexed at \"0\"). In this case it is recommended to select the desired stream by setting a specific index, e.g \"1\" for for the first available audio stream.\n" +"\n" +"Set this control to \"Auto\" if the source file is simply an audio track." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:279 +msgid "" +"\"Auto\" keeps all audio streams and processes only the one selected by the \"Index Selection\" control.\n" +"\n" +"\"All\" processes all audio streams in a video with the properties of the one selected by the \"Index Selection\" control.\n" +"\n" +"\"Index Only\" processes only the audio stream selected by the \"Index Selection\" control and removes all others from the video" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:287 +msgid "Integrated Loudness Target in LUFS. From -70.0 to -5.0, default is -16.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:290 +msgid "Maximum True Peak in dBTP. From -1.5 to +0.0, default is -2.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:293 +msgid "Loudness Range Target in LUFS. From +1.0 to +20.0, default is +11.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:296 +msgid "Play the audio stream selected in the \"Index Selection\" control. Using this function you can test the result of audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:502 +msgid "Selected index does not exist or does not contain any audio streams" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:507 +msgid "" +"ERROR: Missing audio stream:\n" +"\"{}\"" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:589 +msgid "No Audio" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:723 +msgid "PEAK level normalization, which will produce a maximum peak level equal to the set target level." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:726 +msgid "RMS-based normalization, which according to mean volume calculates the amount of gain to reach same average power signal." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:730 +msgid "" +"Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements the EBU R128 algorithm.\n" +"Ideal for live normalization. It produces worse results than the High-quality two-pass Loudnorm normalization, but is faster." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:737 +msgid "" +"High-quality two-pass Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements\n" +"the EBU R128 algorithm. Ideal for postprocessing." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:63 +msgid "Subtitle Mapping" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:77 +msgid "Copy Chapters" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:79 +msgid "Copy Metadata" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:85 +msgid "" +"Select \"All\" to include any source file subtitles in the output video.\n" +"\n" +"Select \"None\" to exclude any subtitles stream in the output video.\n" +"\n" +"This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:90 +msgid "Copy the chapter markers as is from source file. This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:93 +msgid "Copy all incoming metadata from source file, such as audio/video tags, titles, unique marks, and so on." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:108 +msgid "Additional options" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:89 +#: ../../vdms_panels/video_encoders/av1_svt.py:120 +#: ../../vdms_panels/video_encoders/avc_x264.py:90 +#: ../../vdms_panels/video_encoders/hevc_x265.py:98 +#: ../../vdms_panels/video_encoders/mpeg4.py:71 +#: ../../vdms_panels/video_encoders/vp9_webm.py:131 +msgid "Reload" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:101 +#: ../../vdms_panels/video_encoders/av1_svt.py:129 +#: ../../vdms_panels/video_encoders/avc_x264.py:101 +#: ../../vdms_panels/video_encoders/hevc_x265.py:109 +#: ../../vdms_panels/video_encoders/mpeg4.py:82 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:97 +#: ../../vdms_panels/video_encoders/vp9_webm.py:141 +msgid "Optimize for Web" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:247 +#: ../../vdms_panels/video_encoders/av1_svt.py:313 +#: ../../vdms_panels/video_encoders/avc_x264.py:242 +#: ../../vdms_panels/video_encoders/hevc_x265.py:250 +#: ../../vdms_panels/video_encoders/mpeg4.py:198 +#: ../../vdms_panels/video_encoders/vp9_webm.py:288 +msgid "Reloads the selected video encoder settings. Changes will be discarded." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:250 +#: ../../vdms_panels/video_encoders/avc_x264.py:273 +#: ../../vdms_panels/video_encoders/hevc_x265.py:277 +#: ../../vdms_panels/video_encoders/vp9_webm.py:291 +msgid "Constant rate factor. Lower values correspond to higher quality and greater file size. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:254 +#: ../../vdms_panels/video_encoders/av1_svt.py:357 +#: ../../vdms_panels/video_encoders/vp9_webm.py:295 +msgid "Number of tile rows to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:256 +#: ../../vdms_panels/video_encoders/av1_svt.py:359 +#: ../../vdms_panels/video_encoders/vp9_webm.py:297 +msgid "Number of tile columns to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:259 +#: ../../vdms_panels/video_encoders/av1_svt.py:368 +#: ../../vdms_panels/video_encoders/avc_x264.py:253 +#: ../../vdms_panels/video_encoders/hevc_x265.py:261 +#: ../../vdms_panels/video_encoders/mpeg4.py:201 +#: ../../vdms_panels/video_encoders/vp9_webm.py:300 +msgid "Set the Group Of Picture (GOP). Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:262 +#: ../../vdms_panels/video_encoders/av1_svt.py:371 +#: ../../vdms_panels/video_encoders/avc_x264.py:256 +#: ../../vdms_panels/video_encoders/hevc_x265.py:264 +#: ../../vdms_panels/video_encoders/mpeg4.py:204 +#: ../../vdms_panels/video_encoders/vp9_webm.py:303 +msgid "It can reduce the file size, but takes longer." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:264 +#: ../../vdms_panels/video_encoders/av1_svt.py:373 +#: ../../vdms_panels/video_encoders/avc_x264.py:258 +#: ../../vdms_panels/video_encoders/hevc_x265.py:266 +#: ../../vdms_panels/video_encoders/mpeg4.py:206 +#: ../../vdms_panels/video_encoders/vp9_webm.py:305 +msgid "Set minimum bitrate tolerance. Most useful in setting up a CBR encode. It is of little use otherwise. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:268 +#: ../../vdms_panels/video_encoders/av1_svt.py:377 +#: ../../vdms_panels/video_encoders/avc_x264.py:262 +#: ../../vdms_panels/video_encoders/hevc_x265.py:270 +#: ../../vdms_panels/video_encoders/mpeg4.py:210 +#: ../../vdms_panels/video_encoders/vp9_webm.py:309 +msgid "Specifies a maximum tolerance. Requires bufsize to be set. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:271 +#: ../../vdms_panels/video_encoders/av1_svt.py:380 +#: ../../vdms_panels/video_encoders/avc_x264.py:265 +#: ../../vdms_panels/video_encoders/hevc_x265.py:273 +#: ../../vdms_panels/video_encoders/mpeg4.py:213 +#: ../../vdms_panels/video_encoders/vp9_webm.py:312 +msgid "Set ratecontrol buffer size, which determines the variability of the output bitrate. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:275 +#: ../../vdms_panels/video_encoders/av1_svt.py:384 +#: ../../vdms_panels/video_encoders/avc_x264.py:277 +#: ../../vdms_panels/video_encoders/hevc_x265.py:281 +#: ../../vdms_panels/video_encoders/mpeg4.py:231 +#: ../../vdms_panels/video_encoders/vp9_webm.py:316 +msgid "Specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:279 +#: ../../vdms_panels/video_encoders/av1_svt.py:388 +#: ../../vdms_panels/video_encoders/avc_x264.py:281 +#: ../../vdms_panels/video_encoders/hevc_x265.py:285 +#: ../../vdms_panels/video_encoders/mpeg4.py:235 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:131 +#: ../../vdms_panels/video_encoders/vp9_webm.py:320 +msgid "Video width and video height ratio." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:281 +#: ../../vdms_panels/video_encoders/av1_svt.py:390 +#: ../../vdms_panels/video_encoders/avc_x264.py:283 +#: ../../vdms_panels/video_encoders/hevc_x265.py:287 +#: ../../vdms_panels/video_encoders/mpeg4.py:237 +#: ../../vdms_panels/video_encoders/vp9_webm.py:322 +msgid "Frame rate (frames per second). Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:285 +msgid "Quality/Speed ratio modifier. CPU Used sets how efficient the compression will be. Lower values mean slower encoding with better quality, and vice-versa. Valid values are from 0 to 8 inclusive." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:290 +msgid "Quality and compression efficiency vs speed trade-off. \"good\" is the default and recommended for most applications; \"realtime\" is recommended for live/fast encoding (live streaming, video conferencing, etc); \"allintra\" for All Intra encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:297 +msgid "" +"Row Multi-Threading enables row-based multi-threading which maximizes CPU usage.\n" +"\n" +"To enable fast decoding performance, also set tiles (i.e. Tile Columns 4 and Tile Rows 1 or Tile Columns 2 and Tile Rows 2 for 4 tiles).\n" +"\n" +"Enabling Row Multi-Threading is only faster when the CPU has more threads than the number of encoded tiles." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:316 +msgid "" +"presets 1-3 represent extremely high efficiency, for use when encode time is not important and quality/size of the resulting video file is critical.\n" +"\n" +"Presets 4-6 are commonly used by home enthusiasts as they represent a balance of efficiency and reasonable compute time.\n" +"\n" +"Presets between 7 and 12 are used for fast and real-time encoding.\n" +"\n" +"Preset 13 is even faster but not intended for direct human consumption--it can be used, for example, as a per-scene quality metric in VOD applications. One should use the lowest preset that is tolerable." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:327 +msgid "" +"Constant rate factor. This parameter governs the quality/size trade-off.\n" +"\n" +"Higher CRF values will result in a final output that takes less space, but begins to lose detail.\n" +"\n" +"Lower CRF values retain more detail at the cost of larger file sizes. A good starting point for 1080p video is 30.\n" +"\n" +"Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:334 +msgid "" +"The \"Film Grain\" parameter allows SVT-AV1 to detect and delete film grain from the source video, and replace it with synthetic grain of the same character, resulting in significant bitrate savings.\n" +"\n" +"A value of 8 is a reasonable starting point for live-action video with a normal amount of grain.\n" +"\n" +"Higher values in the range of 10-15 enable more aggressive use of this technique for video with lots of natural grain.\n" +"\n" +"For 2D animation, lower values in the range of 4-6 are often appropriate. \n" +"\n" +"If the source video does not have natural grain, this parameter can be set to -1 to disable it or at least 0." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:346 +msgid "" +"If enabled, the \"Film Grain Denoiser\" option can mitigate the detail removal caused by high \"Film Grain\" values required to preserve the look of very grainy films\n" +"\n" +"By default, the denoised frames are passed to be encoded as the final pictures, enabling this feature will lead to the original frames to be used instead. " +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:353 +msgid "Enables encoder optimization to produce faster (less CPU intensive) bit streams to decode, similar to the fastdecode tuning in x264 and x265." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:362 +#: ../../vdms_panels/video_encoders/avc_x264.py:247 +#: ../../vdms_panels/video_encoders/hevc_x265.py:255 +msgid "Set profile restrictions" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:364 +#: ../../vdms_panels/video_encoders/avc_x264.py:249 +#: ../../vdms_panels/video_encoders/hevc_x265.py:257 +msgid "Specify level for a selected profile" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:366 +#: ../../vdms_panels/video_encoders/avc_x264.py:251 +#: ../../vdms_panels/video_encoders/hevc_x265.py:259 +msgid "Tune the encoding params" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:245 +#: ../../vdms_panels/video_encoders/hevc_x265.py:253 +msgid "Set the encoding preset (default \"medium\")" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:269 +msgid "specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:217 +msgid "Variable Bit Rate. From 0-30, with 1 being highest quality/largest filesize and 30 being the lowest quality/smallest filesize. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:222 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:133 +msgid "Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:226 +msgid "The default FourCC stored in an MPEG-4-coded file will be FMP4. If you want a different FourCC, set this option to xvid to force the FourCC xvid to be stored as the video FourCC rather than the default." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:162 +msgid "Copy Video Codec" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:163 +msgid "" +"This will just copy the video track as is, without any video re-encoding.\n" +"You will only be able to change output format, select other audio encoders and\n" +"a few other options." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:74 +msgid "Video export disabled" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:75 +msgid "" +"The Media target you just selected will only allow you to export files as audio tracks.\n" +"You can then process audio source files only or extract indexed audio streams on\n" +"video files." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:326 +msgid "" +"Speed sets how efficient the compression will be.\n" +"\n" +"When the Quality parameter is \"good\" or \"best\", values for Speed can be set between 0 and 5.\n" +"\n" +"Using 1 or 2 will increase encoding speed at the expense of having some impact on quality and rate control accuracy.\n" +"\n" +"4 or 5 will turn off rate distortion optimization, having even more of an impact on quality.\n" +"\n" +"When the Quality is set to realtime, the available values for Speed are 0 to 8." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:335 +msgid "" +"Time to spend encoding.\n" +"\n" +"\"good\" is the default and recommended for most applications;\n" +"\n" +"\"best\" is recommended if you have lots of time and want the best compression efficiency;\n" +"\n" +"\"realtime\" is recommended for live / fast encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:341 +msgid "If enabled, adds support for row based multithreading which greatly enhances the number of threads the encoder can utilise. This improves encoding speed significantly on systems that are otherwise underutilised when encoding VP9. Since the amount of additional threads depends on the number of \"tiles\", which itself depends on the video resolution, encoding higher resolution videos will see a larger performance improvement." +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:46 +msgid "Supports ({0}) formats only, not ({1})" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:49 +msgid "File formats not supported by the selected profile" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:52 +msgid "Warning" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:90 +msgid "" +"No presets found.\n" +"\n" +"Possible solution: open the Presets Manager panel, go to the presets column and try to click the \"Restore all...\" button" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:54 +msgid "Import queue file" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:89 +msgid "" +"ERROR: invalid data found loading queue file.\n" +"«{0}»\n" +"\n" +"Cannot contain multiple occurrences in `destination` keys value." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:118 +msgid "Videomass - Add Items to Queue" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:119 +msgid "" +"Multiple items with identical names and destination paths cannot coexist.\n" +"Please choose one of the following actions:" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:123 +msgid "Replace occurrences with items from the imported queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:124 +msgid "Add only the currently missing items to the queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:125 +msgid "Remove the current queue and replace it with the imported one." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:98 ../../vdms_ytdlp/youtubedl_ui.py:118 +msgid "At least one \"Format Code\" must be checked for each URL selected in green." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:129 +msgid "Format Code" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:130 ../../vdms_ytdlp/textdrop.py:59 +msgid "Url" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:131 +msgid "Title" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:132 +msgid "Extension" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:133 +msgid "Resolution" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:134 +msgid "Video Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:135 +msgid "fps" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:136 +msgid "Audio Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:142 +msgid "Don't merge any files" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:145 +msgid "Download only the best selected qualities" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:249 +msgid "" +"ERROR: Unable to get format codes.\n" +"\n" +"Unsupported URL:\n" +"'{0}'" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:45 +msgid "[Videomass]: SUCCESS !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:46 +msgid "[Videomass]: FAILED !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:79 +msgid "Download Status" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:287 +#: ../../vdms_ytdlp/long_task_ytdlp.py:294 +msgid "Check the current output or read the related log file for more information." +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:328 +msgid "Done" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:198 +msgid "Do you want to close the active view keeping the data in memory and any background processes?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:232 +msgid "" +"Are you sure you want to exit this window?\n" +"All data will be lost" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:234 +msgid "Quit YouTube Downloader?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:273 +msgid "Open destination folder of downloads\tCtrl+D" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:276 +msgid "Close view\tCtrl+W" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:277 +msgid "Close the active view keeping the data in memory and any background processes" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:281 +msgid "Quit YouTube Downloader\tCtrl+Q" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:282 +msgid "Exit the window by deleting all data in memory" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:288 ../../vdms_ytdlp/textdrop.py:189 +#: ../../vdms_ytdlp/textdrop.py:206 +msgid "Paste\tCtrl+V" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:289 +msgid "Paste the copied URLs to clipboard" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:291 ../../vdms_ytdlp/textdrop.py:190 +#: ../../vdms_ytdlp/textdrop.py:209 +msgid "Remove selected URL\tDEL" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:292 +msgid "Remove the selected URL from the list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:295 +msgid "Clear the URL list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:299 +msgid "Options\tCtrl+P" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:300 ../../vdms_ytdlp/main_ytdlp.py:491 +msgid "YouTube Downloader options" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:312 +msgid "Version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:313 +msgid "Shows the version in use" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:315 +msgid "Latest version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:316 +msgid "Check the latest version available on github.com" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:372 +msgid "You are using \"yt-dlp\" version {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:389 +msgid "\"yt-dlp\": Latest version available: {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:476 +msgid "Go to the previous panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:481 +msgid "Go to the next panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:486 +msgid "Shows statistics and information" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:487 +msgid "Statistics" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:494 +msgid "Start downloading" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:495 +msgid "Download" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:554 +msgid "Videomass - List of URLs" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:562 +msgid "Videomass - YouTube Downloader" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:579 +msgid "Viewing last log" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:592 +msgid "Videomass - Downloader Message Monitoring" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:50 +#: ../../vdms_ytdlp/ydl_mediainfo.py:71 +msgid "URL" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:51 +msgid "Playlist Items" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:72 +msgid "" +"To index the media of a playlist, click on the \"Playlist Items\" column of each corresponding URL and specify the numerical indexes separated by commas, e.g. \"1,2,5,8\" if you want to download the indexed media at 1, 2, 5, 8 of the playlist.\n" +"It is also possible to specify intervals, e.g. \"1-3,7,10-13\" with which the media at index 1, 2, 3, 7, 10, 11, 12 and 13 will be downloaded.\n" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:108 +#: ../../vdms_ytdlp/youtubedl_ui.py:209 +msgid "Playlist Editor" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:117 +msgid "Help viewer" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:224 +msgid "ERROR: Invalid option" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:225 +msgid "please try again." +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:226 +msgid "OK: Indexes to download" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:255 +msgid "WARNING: The selected URL does not refer to a playlist. Only lines marked green can be indexed." +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:42 +msgid "English" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:43 +msgid "French" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:44 +msgid "German" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:45 +msgid "Greek" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:46 +msgid "Hebrew" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:47 +msgid "Italian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:48 +msgid "Dutch" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:49 +msgid "Polish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:50 +msgid "Portuguese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:51 +msgid "Russian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:52 +msgid "Spanish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:53 +msgid "Swedish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:54 +msgid "Turkish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:55 +msgid "Albanian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:56 +msgid "Chinese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:70 +msgid "Subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:74 +msgid "None" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:75 +msgid "All available subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:76 +msgid "Select by default language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:77 +msgid "Custom language subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:94 +msgid "Custom language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:110 +msgid "Subtitle options" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:114 +msgid "Include automatically generated subtitle (YouTube only)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:117 +msgid "Embed subtitles into video file" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:120 +msgid "Download subtitles only (do not include audio and video)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:137 +#: ../../vdms_ytdlp/youtubedl_ui.py:216 +msgid "Subtitles Editor" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:248 +msgid "" +"Write in the text field on the side, one or more language codes of the\n" +"subtitles to download separated by commas, e.g. \"en, ja, ar\" for English,\n" +"Japanese and Arabic respectively.\n" +"\n" +"You can use regex (regular expression), e.g. \"en.*, ja, ar.*\" where the\n" +"asterisk preceded by the dot will allow you to download everything\n" +"related to the subtitles of a certain language.\n" +"\n" +"You can prefix the language code with a \"-\" to exclude it from the\n" +"requested languages, e.g. \"all, -it.*, -nl.*\", -fr.*\" will download all\n" +"subtitles except those in Italian, Dutch and French." +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:68 +msgid "Invalid URL" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:87 +msgid "Invalid URLs" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:133 +msgid "Drag or paste URLs here" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:167 +msgid "Set a new destination folder for downloads" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:169 +msgid "Destination folder of downloads" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:67 +msgid "Statistics viewer" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:70 +msgid "TITLE SELECTION" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:65 +msgid "Workarounds" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:68 +msgid "Don’t check SSL certificate" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:73 +msgid "Filename options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:76 +msgid "Include the ID in file names" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:82 +msgid "Restrict file names to ASCII characters" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:88 +msgid "Post-Process options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:91 +msgid "Embed thumbnail in audio file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:96 +msgid "Add metadata to file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:101 +msgid "Overwrite all files and metadata" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:106 +msgid "General" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:112 +msgid "Where do you prefer to save your downloads?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:126 +msgid "Auto-create subdirectories when downloading playlists" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:137 +msgid "Choosing an external downloader" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:140 +msgid "" +"In addition to the default `native` one, yt-dlp can use the following external downloaders:\n" +"`aria2c`, `avconv`, `axel`, `curl`, `ffmpeg`, `httpie`, `wget`.\n" +"Please note that using an external downloader the download status information may not be available." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:149 +msgid "External downloader executable path" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:157 +msgid "External downloader arguments" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:165 +msgid "Download Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:171 +msgid "Using a proxy server" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:175 +msgid "" +"Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper\n" +"scheme, e.g.\t{}\n" +"Leave the text field blank for direct connection." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:183 +msgid "Proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:191 +msgid "Network" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:196 +msgid "Geo-restriction options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:199 +msgid "Use the following options to try bypassing geographic restriction." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:206 +msgid "Geo verification proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:210 +msgid "URL of the proxy to use for IP address verification on geo-restricted sites." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:215 +msgid "Geo bypass" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:219 +msgid "Bypass geographic restriction via faking X-Forwarded-For HTTP header. One of \"default\" (only when known to be useful), or \"never\"" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:226 +msgid "Geo bypass country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:230 +msgid "Two-letter ISO 3166-2 country code that will be used for explicit geographic restriction bypassing via faking X-Forwarded-For HTTP header." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:238 +msgid "Geo bypass ip block" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:242 +msgid "IP range in CIDR notation that will be used similarly to geo_bypass_country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:249 +msgid "Geo-Restriction" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:254 +msgid "Authentication with login credentials" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:257 +msgid "" +"If you need to login with your credentials please note that login with password is not\n" +"supported for some websites (e.g. YouTube, CloudFlare). In this case you can include a\n" +"cookie file for authentication (see cookies tab)." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:266 +msgid "Username" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:270 +msgid "Username for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:274 +msgid "Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:278 +msgid "Password for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:283 +msgid "Video Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:287 +msgid "Password for accessing a video" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:293 +msgid "Authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:299 +msgid "Using cookies to gain access to websites" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:302 +msgid "" +"Here you can pass your `Netscape HTTP Cookie File` in order to access websites that require authentication.\n" +"If you don't know how to obtain this type of file, you can let the application try to extract it from your browser\n" +"automatically. The currently supported browsers are: brave, chrome, chromium, edge, firefox, opera, safari, vivaldi.\n" +"\n" +"For more information please consult the documentation at the following link:" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:319 +msgid "Allow cookies for authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:323 +msgid "Cookie file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:329 +msgid "File name from where cookies should be read and dumped to" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:332 +msgid "Browse" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:335 +msgid "Extract cookies automatically from your browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:341 +msgid "Web Browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:360 +msgid "Cookies" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:403 +msgid "YouTube Downloader Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:436 +msgid "Do you want to remove the current cookie file from your system?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:489 +msgid "Locate your cookie file" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:151 +msgid "Precompiled Videos" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:152 +msgid "Download videos by resolution" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:153 +msgid "Download split audio and video" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:154 +msgid "Download Audio only" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:155 +msgid "Download by format code" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:205 +msgid "Include playlists" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:223 +msgid "Quality settings" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:235 +msgid "When not available, the chosen video resolution will be replaced with the closest one" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:239 +msgid "Video format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:260 +msgid "Audio format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:418 +msgid "" +"Unable to get format codes on {0}, unsupported URL:\n" +"\n" +"{1}" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:568 +msgid "URLs have no playlist references" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:607 +msgid "The URLs contain playlists. Are you sure you want to continue?" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:623 +msgid "The URLs contain channels. Are you sure you want to continue?" +msgstr "" + +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "" + diff --git a/videomass/data/locale/cs_CZ/LC_MESSAGES/videomass.po b/videomass/data/locale/cs_CZ/LC_MESSAGES/videomass.po new file mode 100644 index 000000000..828bae863 --- /dev/null +++ b/videomass/data/locale/cs_CZ/LC_MESSAGES/videomass.po @@ -0,0 +1,4366 @@ +# Czech (Czechia) translations for PROJECT. +# Copyright (C) 2024 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" +"PO-Revision-Date: 2024-07-17 16:33+0200\n" +"Last-Translator: FULL NAME \n" +"Language: cs_CZ\n" +"Language-Team: cs_CZ \n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.10.3\n" + +#: ../../gui_app.py:121 +msgid "To suppress this message on startup, please install yt-dlp or disable it from the preferences." +msgstr "" + +#: ../../gui_app.py:133 ../../gui_app.py:141 +#: ../../vdms_dialogs/filter_colorcorrection.py:343 +#: ../../vdms_dialogs/filter_colorcorrection.py:383 +#: ../../vdms_dialogs/filter_colorcorrection.py:390 +#: ../../vdms_dialogs/filter_crop.py:417 ../../vdms_dialogs/filter_scale.py:287 +#: ../../vdms_dialogs/filter_scale.py:394 ../../vdms_dialogs/filter_stab.py:473 +#: ../../vdms_dialogs/filter_stab.py:483 ../../vdms_dialogs/filter_stab.py:494 +#: ../../vdms_dialogs/filter_transpose.py:182 +#: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 +#: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 +#: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 +#: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 +#: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 +#: ../../vdms_panels/audio_encoders/acodecs.py:509 +#: ../../vdms_panels/audio_encoders/acodecs.py:797 +#: ../../vdms_panels/concatenate.py:197 +#: ../../vdms_panels/long_processing_task.py:60 +#: ../../vdms_panels/presets_manager.py:426 +#: ../../vdms_panels/presets_manager.py:490 +#: ../../vdms_panels/presets_manager.py:560 +#: ../../vdms_panels/presets_manager.py:599 +#: ../../vdms_panels/presets_manager.py:619 +#: ../../vdms_panels/presets_manager.py:657 +#: ../../vdms_panels/presets_manager.py:701 +#: ../../vdms_panels/presets_manager.py:714 +#: ../../vdms_panels/presets_manager.py:721 +#: ../../vdms_panels/presets_manager.py:756 +#: ../../vdms_panels/presets_manager.py:785 +#: ../../vdms_panels/presets_manager.py:791 +#: ../../vdms_panels/sequence_to_video.py:465 +#: ../../vdms_panels/sequence_to_video.py:471 +#: ../../vdms_panels/sequence_to_video.py:559 +#: ../../vdms_panels/sequence_to_video.py:569 +#: ../../vdms_panels/sequence_to_video.py:586 +#: ../../vdms_panels/sequence_to_video.py:594 +#: ../../vdms_panels/sequence_to_video.py:600 +#: ../../vdms_panels/sequence_to_video.py:641 +#: ../../vdms_panels/sequence_to_video.py:687 +#: ../../vdms_panels/video_to_sequence.py:514 +#: ../../vdms_panels/video_to_sequence.py:585 +#: ../../vdms_threads/ffplay_file.py:43 +#: ../../vdms_utils/presets_manager_utils.py:86 +#: ../../vdms_utils/presets_manager_utils.py:95 +#: ../../vdms_utils/queue_utils.py:68 ../../vdms_utils/queue_utils.py:82 +#: ../../vdms_utils/queue_utils.py:95 ../../vdms_ytdlp/youtubedl_ui.py:386 +#: ../../vdms_ytdlp/youtubedl_ui.py:426 +msgid "Videomass - Error!" +msgstr "" + +#: ../../gui_app.py:230 +msgid "" +"Unexpected error while deleting file contents:\n" +"\n" +"{0}" +msgstr "" + +#: ../../vdms_dialogs/about_dialog.py:52 +msgid "Cross-platform graphical user interface for FFmpeg and yt-dlp.\n" +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:224 +msgid "Videomass supports mono and stereo audio channels. If you are not sure set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:228 +msgid "The audio Rate (or sample-rate) is the sound sampling frequency and is measured in Hertz. The higher the frequency, the more true it will be to the sound source and the more the file will increase in size. For audio CD playback, set a sampling frequency of 44100 kHz. If you are not sure, set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:237 +msgid "The audio bitrate affects the file compression and thus the quality of listening. The higher the value, the higher the quality." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:241 +msgid "Bit depth is the number of bits of information in each sample, and it directly corresponds to the resolution of each sample. Bit depth is only meaningful in reference to a PCM digital signal. Non-PCM formats, such as lossy compression formats, do not have associated bit depths." +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:74 ../../vdms_dialogs/queuedlg.py:120 +msgid "When finished, once the operations have been completed successfully:" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:80 ../../vdms_dialogs/queuedlg.py:126 +msgid "Trash the source files" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:84 ../../vdms_dialogs/queuedlg.py:130 +msgid "Clear the File List" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:91 ../../vdms_dialogs/queuedlg.py:142 +#: ../../vdms_main/main_frame.py:1272 +msgid "Run" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:97 +msgid "Videomass - Batch Mode" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:47 +msgid "FFmpeg encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:48 +msgid "supported encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:50 +msgid "FFmpeg decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:51 +msgid "supported decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:77 +#: ../../vdms_panels/av_conversions.py:293 +msgid "Video" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:87 +#: ../../vdms_panels/av_conversions.py:305 +msgid "Audio" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:97 +msgid "Subtitle" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:114 +#: ../../vdms_dialogs/ffmpeg_codecs.py:123 +#: ../../vdms_dialogs/ffmpeg_codecs.py:132 +#: ../../vdms_dialogs/ffmpeg_formats.py:112 +#: ../../vdms_dialogs/ffmpeg_formats.py:115 +#: ../../vdms_dialogs/ffmpeg_formats.py:118 +msgid "description" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:72 +msgid "Informations" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:83 +msgid "Flags settings" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:93 +msgid "Flags enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:103 +msgid "Flags disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:116 +msgid "FFmpeg configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:124 +msgid "flags" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:125 ../../vdms_dialogs/ffmpeg_conf.py:129 +#: ../../vdms_dialogs/ffmpeg_conf.py:133 +msgid "options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:128 ../../vdms_dialogs/ffmpeg_conf.py:132 +msgid "status" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:167 +msgid "FFprobe ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:175 +msgid "FFplay ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:205 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:608 +msgid "Enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:216 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:612 +msgid "Disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:71 +msgid "Demuxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:82 +msgid "Muxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:93 +msgid "Demuxing/Muxing support" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:104 +msgid "FFmpeg file formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:111 +#: ../../vdms_dialogs/ffmpeg_formats.py:114 +#: ../../vdms_dialogs/ffmpeg_formats.py:117 +msgid "supported formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:46 +msgid "" +"Contextual help based on the argument entered in the additional text field.\n" +"Each argument consists of the type and a type-specific name.\n" +"\n" +"For the list of encoders click the \"Encoders\" button.\n" +"For the list of decoders click on the \"Decoders\" button.\n" +"For the muxers and demuxers click on the \"Muxers and Demuxers\" button.\n" +"For the filters, select \"Show available filters\" in the drop down menu.\n" +"For the bsf, select \"Show available bitstream filters\" in the drop down menu.\n" +"For the protocols, select \"Show available protocols\" in the drop down menu.\n" +"\n" +"Some examples:" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:68 ../../vdms_dialogs/ffmpeg_help.py:301 +#: ../../vdms_dialogs/ffmpeg_help.py:315 +msgid "Help topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:69 +msgid "List basic options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:70 +msgid "List more options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:71 +msgid "List all options (very long)" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:72 +msgid "Show available devices" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:73 +msgid "Show available bit stream filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:74 +msgid "Show available protocols" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:75 +msgid "Show available filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:76 +msgid "Show available pixel formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:77 +msgid "Show available audio sample formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:78 +msgid "Show available color names" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:79 +msgid "List sources of the input device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:80 +msgid "List sinks of the output device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:81 +msgid "Show available HW acceleration methods" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:82 +msgid "Show license" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:117 ../../vdms_dialogs/filter_scale.py:76 +#: ../../vdms_dialogs/shownormlist.py:98 ../../vdms_dialogs/shownormlist.py:107 +#: ../../vdms_dialogs/shownormlist.py:116 ../../vdms_miniframes/timeline.py:263 +#: ../../vdms_miniframes/timeline.py:283 ../../vdms_panels/concatenate.py:117 +#: ../../vdms_panels/sequence_to_video.py:117 +#: ../../vdms_panels/video_to_sequence.py:81 +#: ../../vdms_ytdlp/subtitles_editor.py:100 +msgid "Read me" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:123 ../../vdms_main/main_frame.py:544 +msgid "Show configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:127 ../../vdms_main/main_frame.py:552 +msgid "Encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:131 ../../vdms_main/main_frame.py:555 +msgid "Decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:135 ../../vdms_main/main_frame.py:548 +msgid "Muxers and Demuxers" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:165 +msgid "help topic list" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:184 +msgid "Type the argument here and confirm with the enter key on your keyboard" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:192 +msgid "The search function allows you to find entries in the current topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:195 +msgid "Ignore case" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:196 +msgid "Ignore case distinctions: characters with different case will match." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:206 +msgid "FFmpeg help topics" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:254 +msgid "" +"This is a multifunctional search tool useful for local help searches\n" +"on multiple FFmpeg topics and options. The search control, to\n" +"find occurences on text obtained from the chosen argument,\n" +"is very similar to what grep does on the Unix shell, but here\n" +"it's done in real time.\n" +"\n" +"If you don't find support for a certain codec or other feature,\n" +"it's likely that your version of FFmpeg is too old or not configured\n" +"with those features." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:320 ../../vdms_dialogs/ffmpeg_help.py:345 +#: ../../vdms_dialogs/ffmpeg_help.py:371 +msgid "" +"\n" +" ..Nothing available" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:391 +msgid "" +"\n" +" ..Not found" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:91 +msgid "Before" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:97 +msgid "After" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:103 +#: ../../vdms_dialogs/filter_crop.py:239 +msgid "Search for a specific frame" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:117 +#: ../../vdms_dialogs/filter_crop.py:253 +msgid "Load" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:120 +msgid "Color EQ" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:126 +msgid "Contrast:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:134 +#: ../../vdms_dialogs/filter_colorcorrection.py:148 +msgid "-100 to +100, default value 0" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:139 +msgid "Brightness:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:158 +msgid "Saturation:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:166 +msgid "0 to 300, default value 100" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:170 +msgid "Gamma:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:179 +msgid "0 to 100, default value 10" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:187 +#: ../../vdms_dialogs/filter_crop.py:306 +#: ../../vdms_dialogs/filter_deinterlace.py:209 +#: ../../vdms_dialogs/filter_denoisers.py:110 +#: ../../vdms_dialogs/filter_scale.py:210 ../../vdms_dialogs/filter_stab.py:316 +#: ../../vdms_dialogs/filter_transpose.py:105 +#: ../../vdms_miniframes/timeline.py:262 ../../vdms_miniframes/timeline.py:281 +msgid "Reset" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:207 +msgid "Color Correction EQ Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:228 ../../vdms_dialogs/filter_scale.py:109 +msgid "Source size: {0} x {1} pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:236 +msgid "Crop color" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:256 +msgid "Cropping area selection " +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:261 ../../vdms_dialogs/filter_scale.py:121 +msgid "Height" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:281 +msgid "Center" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:292 ../../vdms_dialogs/filter_scale.py:121 +msgid "Width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:334 +msgid "Crop Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:335 +msgid "Choose the color to draw the cropping area" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:337 +msgid "Crop to width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:338 +msgid "Move vertically (set to -1 to center the vertical axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:340 +msgid "Move horizontally (set to -1 to center the horizontal axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:342 +msgid "Crop to height" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:56 +msgid "Advanced Options" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:57 +#: ../../vdms_panels/av_conversions.py:351 +msgid "Deinterlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:59 +msgid "Interlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:63 +msgid "Deinterlaces with w3fdif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:77 +msgid "Deinterlaces with yadif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:101 +msgid "Interlaces with interlace filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:118 +msgid "Deinterlacing and Interlacing" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:144 +msgid "Deinterlace the input video with `w3fdif` filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:146 +msgid "Set the interlacing filter coefficients." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:148 +#: ../../vdms_dialogs/filter_deinterlace.py:158 +msgid "Specify which frames to deinterlace." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:150 +msgid "Deinterlace the input video with `yadif` filter. Using FFmpeg, this is the best and fastest choice" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:153 +msgid "" +"mode\n" +"The interlacing mode to adopt." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:155 +msgid "" +"parity\n" +"The picture field parity assumed for the input interlaced video." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:160 +msgid "Simple interlacing filter from progressive contents." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:162 +msgid "" +"scan:\n" +"determines whether the interlaced frame is taken from the even (tff - default) or odd (bff) lines of the progressive frame." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:166 +msgid "" +"lowpass:\n" +"Enable (default) or disable the vertical lowpass filter to avoid twitter interlacing and reduce moire patterns.\n" +"Default is no setting." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:56 +msgid "Denoiser Filters" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:60 +msgid "Enable nlmeans denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:73 +msgid "nlmeans options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:82 +msgid "Enable hqdn3d denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:91 +msgid "hqdn3d options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:116 +msgid "Denoiser Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:117 +msgid "" +"nlmeans:\n" +"Denoise frames using Non-Local Means algorithm is capable of restoring video sequences, even with strong noise. It is ideal for enhancing the quality of old VHS tapes." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:122 +msgid "" +"hqdn3d:\n" +"This is a high precision/quality 3d denoise filter. It aims to reduce image noise, producing smooth images and making still images really still. It should enhance compressibility." +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:81 +msgid "View result" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:85 +msgid "New size in pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:89 +msgid "Width:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:99 +msgid "Height:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:115 +msgid "Constrain proportions (keep aspect ratio)" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:120 +msgid "Which dimension to adjust?" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:129 +msgid "Aspect Ratio" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:132 +msgid "Setdar filter (display aspect ratio) example 16/9, 4/3 " +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:137 +#: ../../vdms_dialogs/filter_scale.py:171 +msgid "Numerator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:162 +#: ../../vdms_dialogs/filter_scale.py:196 +msgid "Denominator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:166 +msgid "Setsar filter (sample aspect ratio) example 1/1" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:217 +msgid "Resize Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:218 +msgid "Scale filter, set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:221 +msgid "Display Aspect Ratio. Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:224 +msgid "" +"Sample (aka Pixel) Aspect Ratio.\n" +"Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:366 +msgid "" +"If you want to keep the aspect ratio, select \"Constrain proportions\" below and\n" +"specify only one dimension, either width or height, and set the other dimension\n" +"to -1 or -2 (some codecs require -2, so you should do some testing first)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:81 +msgid "Enable stabilizer" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:83 +msgid "Create a side-by-side comparison video" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:88 +msgid "Create a snapshot" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:106 +#: ../../vdms_panels/audio_encoders/acodecs.py:167 +msgid "Preview" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:109 +msgid "Duration seconds:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:118 +msgid "Video Detect" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:176 +msgid "[TRIPOD] Enable tripod mode if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:183 +msgid "Video transform" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:202 +msgid "[OPTALGO] optimization algorithm" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:224 +msgid "[CROP] Specify how to deal with borders at movement compensation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:231 +msgid "[INVERT] Invert transforms if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:234 +msgid "[RELATIVE] Consider transforms as relative to previous frame if checked, absolute if unchecked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:279 +msgid "Specify type of interpolation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:287 +msgid "[TRIPOD2] virtual tripod mode, equivalent to relative=unchecked:smoothing=0" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:294 +msgid "Unsharp filter:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:323 +msgid "Seek to a position on the video." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:325 +msgid "Make a snapshot of the video with the settings made." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:327 +msgid "Set the snapshot duration from 3 to 15 seconds from the seek position, default is 5 seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:331 +msgid "Set how shaky the video is and how quick the camera is. A value of 1 means little shakiness, a value of 10 means strong shakiness. Default value is 5." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:335 +msgid "Set the accuracy of the detection process. A value of 1 means low accuracy, a value of 15 means high accuracy. Default value is 15." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:339 +msgid "Set stepsize of the search process. The region around minimum is scanned with 1 pixel resolution. Default value is 6." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:343 +msgid "Set minimum contrast. Below this value a local measurement field is discarded. The range is 0-1. Default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:346 +msgid "Set reference frame number for tripod mode. If enabled, the motion of the frames is compared to a reference frame in the filtered stream, identified by the specified number. The idea is to compensate all movements in a more-or-less static scene and keep the camera view absolutely still. The frames are counted starting from 1." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:355 +msgid "Set the number of frames (value*2 + 1) used for lowpass filtering the camera movements. Default value is 15. For example a number of 10 means that 21 frames are used (10 in the past and 10 in the future) to smoothen the motion in the video. A larger value leads to a smoother video, but limits the acceleration of the camera (pan/tilt movements). 0 is a special case where a static camera is simulated." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:363 +msgid "Set the camera path optimization algorithm. Values are: `gauss`: gaussian kernel low-pass filter on camera motion (default), and `avg`: averaging on transformations" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:367 +msgid "Set maximal angle in radians (degree*PI/180) to rotate frames. Default value is -1, meaning no limit." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:370 +msgid "Specify how to deal with borders that may be visible due to movement compensation. Values are: `keep` keep image information from previous frame (default), `black` fill the border black" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:375 +msgid "Invert transforms if checked. Default is unchecked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:377 +msgid "Consider transforms as relative to previous frame if checked, absolute if unchecked. Default is checked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:380 +msgid "Set percentage to zoom. A positive value will result in a zoom-in effect, a negative value in a zoom-out effect. Default value is 0 (no zoom)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:384 +msgid "Set optimal zooming to avoid borders. Accepted values are: `0` disabled, `1` optimal static zoom value is determined (only very strong movements will lead to visible borders) (default), `2` optimal adaptive zoom value is determined (no borders will be visible), see zoomspeed. Note that the value given at zoom is added to the one calculated here." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:391 +msgid "Set percent to zoom maximally each frame (enabled when optzoom is set to 2). Range is from 0 to 5, default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:395 +msgid "Specify type of interpolation. Available values are: `no` no interpolation, `linear` linear only horizontal, `bilinear` linear in both directions (default), `bicubic` cubic in both directions (slow)" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:400 +msgid "Enable virtual tripod mode if checked, which is equivalent to relative=0:smoothing=0. Default is unchecked. Use also tripod option of vidstabdetect." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:405 +msgid "Sharpen or blur the input video. Note the use of the unsharp filter which is always recommended." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:409 +msgid "Video Stabilizer Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:541 ../../vdms_io/io_tools.py:57 +#: ../../vdms_io/io_tools.py:99 +msgid "Videomass - Loading..." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:542 +msgid "" +"Please wait,\n" +"This process will take a few seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:80 +#: ../../vdms_dialogs/filter_transpose.py:293 +msgid "Default position" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:86 +msgid "Rotation setting" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:94 +msgid "90° (left)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:96 +msgid "90° (right)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:100 +msgid "180°" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:115 +msgid "Transpose Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:229 +msgid "Rotate 90 degrees right" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:251 +msgid "Rotate 180 degrees" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:272 +msgid "Rotate 90 degrees left" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:82 +msgid "Format" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:96 +msgid "Video Stream" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:109 +msgid "Audio Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:122 +msgid "Subtitle Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:126 +msgid "Copy to clipboard" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:137 +msgid "FILE SELECTION" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:139 ../../vdms_dialogs/mediainfo.py:142 +#: ../../vdms_dialogs/mediainfo.py:145 ../../vdms_dialogs/mediainfo.py:148 +#: ../../vdms_main/main_frame.py:1268 +msgid "Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:140 ../../vdms_dialogs/mediainfo.py:143 +#: ../../vdms_dialogs/mediainfo.py:146 ../../vdms_dialogs/mediainfo.py:149 +msgid "Values" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:152 +msgid "Streams Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:244 +msgid "Unable to open the clipboard on Format tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:263 +msgid "Unable to open the clipboard on Video Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:283 +msgid "Unable to open the clipboard on Audio Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:303 +msgid "Unable to open the clipboard on Subtitle Streams tab" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:92 +msgid "Where do you prefer to save your transcodes?" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:103 ../../vdms_dialogs/preferences.py:130 +#: ../../vdms_dialogs/preferences.py:151 ../../vdms_dialogs/preferences.py:163 +#: ../../vdms_dialogs/preferences.py:175 ../../vdms_dialogs/preferences.py:214 +#: ../../vdms_dialogs/preferences.py:233 ../../vdms_panels/filedrop.py:284 +#: ../../vdms_ytdlp/textdrop.py:153 ../../vdms_ytdlp/ydl_preferences.py:123 +msgid "Change" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:105 +#: ../../vdms_panels/av_conversions.py:1197 ../../vdms_panels/filedrop.py:574 +#: ../../vdms_panels/presets_manager.py:1050 +msgid "Same destination paths as source files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:110 +msgid "Assign optional suffix to destination file names:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:116 +msgid "File removal preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:120 +msgid "Trash the source files after successful encoding" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:133 +#: ../../vdms_ytdlp/ydl_preferences.py:131 +msgid "File Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:140 +msgid "Location of executables" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:142 +msgid "" +"FFmpeg can be built by enabling/disabling its options and this depends on your needs.\n" +"For some use cases it is possible to provide a custom build of FFmpeg where you can specify\n" +"it in this preferences tab." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:149 +msgid "Enable a custom location to run FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:161 +msgid "Enable a custom location to run FFprobe" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:173 +msgid "Enable a custom location to run FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:185 +msgid "FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:191 +msgid "" +"Download videos from YouTube.com and other video sites\n" +"(requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:195 +msgid "" +"Videomass uses the yt-dlp API which can be activated by selecting the checkbox below.\n" +"The next time you restart the application, the yt_dlp module will be loaded into memory." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:201 +msgid "Enable yt-dlp" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:205 +msgid "" +"Enabling a specific location of the yt-dlp executable will give you more control over downloads\n" +"stop actions and the ability to provide other backend locations." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:210 +msgid "Use the executable for downloads rather than API" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:223 +msgid "" +"Import the yt_dlp Python package externally. E.g, you can include the source package\n" +"directory or the path to the package installed in an external virtual environment." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:229 +msgid "Enable external import of yd_dlp package" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:248 +msgid "Look and Feel (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:253 +msgid "Icon themes" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:267 +msgid "At the top of window (default)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:268 +msgid "At the bottom of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:269 +msgid "At the right of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:270 +msgid "At the left of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:272 +msgid "Place the toolbar" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:281 +msgid "Toolbar's icons size:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:295 +msgid "Application Language (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:307 +msgid "Look and Language" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:313 +msgid "Upon exiting the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:318 +msgid "Always ask me to confirm" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:320 +msgid "Clean the log files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:323 +msgid "Remove cached files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:327 +msgid "On operations completion" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:330 +msgid "These settings will remain active until the application is closed, If necessary, remember to reactivate them." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:335 +msgid "Exit the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:338 +msgid "Shutdown the system" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:342 +msgid "SUDO password:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:351 +msgid "Exit and Shutdown" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:357 +msgid "Specify the character encoding format" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:360 +msgid "" +"Although UTF-8 is the default and most widely used standard encoding format, it is not the only encoding format available.\n" +"Some file metadata may still contain non-UTF-8 character encodings resulting in the error \"'utf-8' codec can't decode bytes...\".\n" +"If you know the encoding format the file was written in, you can try specifying it here, e.g. ISO 8859-1, ISO 8859-16, etc." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:370 +msgid "Character encoding:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:379 +msgid "Default application directories" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:383 +msgid "Configuration directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:396 +msgid "Cache directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:408 +msgid "Log directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:422 +msgid "Advanced" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:428 +msgid "" +"The following settings affect output messages and the log messages during transcoding processes.\n" +"Be careful, by changing these settings some functions of the application may not work correctly,\n" +"change only if you know what you are doing.\n" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:435 +msgid "Set logging level flags used by FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:442 +msgid "Set logging level flags used by FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:450 +msgid "FFmpeg logging levels" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:504 +msgid "By assigning an additional suffix you could avoid overwriting files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:507 +msgid "Type sudo password here, only for Unix-like operating systems, not for MS Windows" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:510 +msgid "Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:674 ../../vdms_dialogs/preferences.py:754 +#: ../../vdms_main/main_frame.py:859 ../../vdms_main/main_frame.py:1040 +#: ../../vdms_ytdlp/main_ytdlp.py:398 ../../vdms_ytdlp/ydl_preferences.py:504 +msgid "Choose Destination" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:705 +msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") and the underscore (\"_\"). Spaces are not allowed." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:720 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 +#: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 +#: ../../vdms_panels/av_conversions.py:612 +#: ../../vdms_panels/sequence_to_video.py:350 +#: ../../vdms_panels/video_to_sequence.py:401 +#: ../../vdms_ytdlp/main_ytdlp.py:228 ../../vdms_ytdlp/youtubedl_ui.py:422 +msgid "Videomass - Warning!" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:809 ../../vdms_dialogs/preferences.py:849 +#: ../../vdms_dialogs/preferences.py:889 ../../vdms_dialogs/wizard_dlg.py:351 +#: ../../vdms_dialogs/wizard_dlg.py:368 ../../vdms_dialogs/wizard_dlg.py:385 +msgid "{} location" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:930 +msgid "Open «{}» executable file" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:959 +msgid "Open «yt_dlp» python package directory" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:36 +#: ../../vdms_dialogs/setting_profiles.py:38 +msgid "One-Pass, Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:40 +#: ../../vdms_dialogs/setting_profiles.py:42 +msgid "Two-Pass (optional), Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:59 +msgid "Videomass - Edit the selected item in the queue" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:71 +#: ../../vdms_dialogs/setting_profiles.py:92 +msgid "Pre-input arguments for One-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:82 +#: ../../vdms_dialogs/setting_profiles.py:151 +#: ../../vdms_panels/presets_manager.py:255 +msgid "FFmpeg arguments for one-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:88 +#: ../../vdms_dialogs/setting_profiles.py:158 +#: ../../vdms_panels/presets_manager.py:259 +msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:102 +#: ../../vdms_dialogs/setting_profiles.py:98 +msgid "Pre-input arguments for Two-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:113 +#: ../../vdms_dialogs/setting_profiles.py:152 +#: ../../vdms_panels/presets_manager.py:257 +msgid "FFmpeg arguments for two-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:120 +#: ../../vdms_dialogs/setting_profiles.py:162 +#: ../../vdms_panels/presets_manager.py:263 +msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:65 ../../vdms_main/main_frame.py:518 +#: ../../vdms_panels/presets_manager.py:189 +#: ../../vdms_panels/video_to_sequence.py:171 +#: ../../vdms_ytdlp/main_ytdlp.py:301 +msgid "Edit" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:68 +msgid "Remove" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:71 +msgid "Remove all" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:74 +msgid "" +"Export\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:77 +msgid "" +"Import\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:85 ../../vdms_panels/filedrop.py:273 +msgid "Destination file name" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:137 +msgid "Remove all items in the queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:151 +msgid "Videomass - Queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:228 +msgid "Export queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:296 ../../vdms_panels/av_conversions.py:1192 +#: ../../vdms_panels/presets_manager.py:1044 +#: ../../vdms_panels/video_to_sequence.py:602 +msgid "Same as source" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:301 +msgid "" +"Source\n" +"File destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_dialogs/renamer.py:76 +msgid "# will be replaced by ascending numbers starting with:" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:87 +msgid "Font Size" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:111 +msgid "Font Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:121 +msgid "Shadow Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:132 +msgid "Show text box" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:136 +msgid "Box Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:156 +msgid "The timestamp size does not auto-adjust to the video size, you have to set the size here" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:160 ../../vdms_main/main_frame.py:569 +msgid "Timestamp settings" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:46 +msgid "Supported Formats list (optional). Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:47 +msgid "Output Format. Empty to copy format and codec. Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:70 +msgid "Profile Name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:74 +#: ../../vdms_panels/presets_manager.py:404 +msgid "Description" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:149 +msgid "A short profile name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:150 +msgid "A long description of the profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:153 +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:155 +msgid "Output format extension. Leave empty to copy codec and format" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:256 +msgid "Incomplete profile assignments" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:263 +msgid "Formats must be comma-separated" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:279 +#: ../../vdms_utils/queue_utils.py:80 +msgid "" +"ERROR: Keys mismatched for requested data.\n" +"Invalid file: «{0}»" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 +msgid "Profile already stored with same name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:293 +msgid "Profile stored successfully!" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:311 +msgid "Profile change successful!" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:81 +msgid "Log file list" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:83 ../../vdms_dialogs/showlogs.py:117 +msgid "Log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:106 +msgid "Refresh log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:108 +msgid "Clear log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:161 +msgid "Select a log file" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:168 +msgid "Are you sure you want to clear the selected log file?" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:169 ../../vdms_dialogs/wizard_dlg.py:243 +#: ../../vdms_io/checkup.py:50 ../../vdms_main/main_frame.py:207 +#: ../../vdms_main/main_frame.py:778 ../../vdms_main/main_frame.py:1619 +#: ../../vdms_panels/presets_manager.py:349 +#: ../../vdms_panels/presets_manager.py:550 +#: ../../vdms_panels/presets_manager.py:590 +#: ../../vdms_panels/presets_manager.py:649 +#: ../../vdms_panels/presets_manager.py:684 +#: ../../vdms_panels/presets_manager.py:749 +#: ../../vdms_panels/presets_manager.py:775 +#: ../../vdms_panels/presets_manager.py:874 +#: ../../vdms_panels/presets_manager.py:904 ../../vdms_ytdlp/main_ytdlp.py:201 +#: ../../vdms_ytdlp/ydl_preferences.py:438 ../../vdms_ytdlp/youtubedl_ui.py:609 +#: ../../vdms_ytdlp/youtubedl_ui.py:625 +msgid "Please confirm" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:83 +msgid "File name" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:84 +msgid "Max volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:85 +msgid "Mean volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:86 +msgid "Offset dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:87 +msgid "Result dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:92 +msgid "Post-normalization references:" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:102 +msgid "= Clipped peaks" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:111 +msgid "= No changes" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:121 +msgid "= Below max peak" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:166 +#: ../../vdms_panels/audio_encoders/acodecs.py:838 +msgid "RMS-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:191 +#: ../../vdms_panels/audio_encoders/acodecs.py:836 +msgid "PEAK-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:216 +msgid "" +"...It means the resulting audio will be clipped,\n" +"because its volume is higher than the maximum 0 db\n" +"level. This results in data loss and the audio may\n" +"sound distorted." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:242 +msgid "" +"...It means the resulting audio will not change,\n" +"because it's equal to the source." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:266 +msgid "" +"...It means an audio signal will be produced with\n" +"a lower volume than the source." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:63 +msgid "Get Latest Version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:67 +msgid "Checking for newer version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:95 +msgid "" +"\n" +"\n" +"New releases fix bugs and offer new features." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:96 +msgid "" +"\n" +"\n" +"This is Videomass v.{0}\n" +"\n" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:37 +msgid "" +"q, ESC\n" +"f\n" +"p, SPC\n" +"m\n" +"9, 0\n" +"/, *\n" +"a\n" +"v\n" +"t\n" +"c\n" +"w\n" +"s\n" +"\n" +"left/right\n" +"down/up\n" +"page down/page up\n" +"\n" +"right mouse click\n" +"left mouse double-click" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:92 +msgid "Shortcut keys while playing with FFplay" +msgstr "" + +#: ../../vdms_dialogs/widget_utils.py:120 ../../vdms_main/main_frame.py:1276 +#: ../../vdms_ytdlp/main_ytdlp.py:499 +msgid "Stop" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:65 +msgid "Please take a moment to set up the application" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:66 +msgid "Click the \"Next\" button to get started" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:81 +msgid "Welcome to the Videomass Wizard!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:123 +msgid "Videomass is an application based on FFmpeg\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:125 +msgid "If FFmpeg is not on your computer, this application will be unusable" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:128 +msgid "" +"If you have already installed FFmpeg on your operating\n" +"system, click the \"Auto-detection\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:131 +msgid "" +"If you want to use a version of FFmpeg located on your\n" +"filesystem but not installed on your operating system,\n" +"click the \"Locate\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:153 +msgid "Auto-detection" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:155 +msgid "Locate" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:206 +msgid "Click the \"Next\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:227 +msgid "'{}' is not installed on your computer. Install it or indicate another location by clicking the 'Locate' button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:241 +msgid "" +"Videomass already seems to include FFmpeg.\n" +"\n" +"Do you want to use that?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:267 +msgid "Locating FFmpeg executables\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:269 +msgid "" +"\"ffmpeg\", \"ffprobe\" and \"ffplay\" are required. Complete all\n" +"the text boxes below by clicking on the respective buttons." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:408 +msgid "Videomass has a simple graphical interface for yt-dlp\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:409 +msgid "" +"This feature allows you to download video and audio from\n" +"many sites, including YouTube.com and even Facebook." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:428 +msgid " Do you want to enable this feature?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:458 +msgid "Wizard completed successfully!\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:459 +msgid "Remember that you can always change these settings later, through the Preferences dialog." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:461 +msgid "Thank You!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:462 +msgid "To exit click the \"Finish\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:550 +msgid "< Previous" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:553 ../../vdms_dialogs/wizard_dlg.py:653 +msgid "Next >" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:558 +msgid "Videomass Wizard" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:587 ../../vdms_dialogs/wizard_dlg.py:623 +msgid "Finish" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:615 +msgid "Some text boxes are still incomplete" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:679 +msgid "Re-start is required" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:680 +msgid "Done!" +msgstr "" + +#: ../../vdms_io/checkup.py:47 +msgid "Files already exist, do you want to overwrite them?" +msgstr "" + +#: ../../vdms_io/checkup.py:49 +msgid "Already exist" +msgstr "" + +#: ../../vdms_io/checkup.py:63 +msgid "Not found" +msgstr "" + +#: ../../vdms_io/checkup.py:64 ../../vdms_panels/filedrop.py:196 +#: ../../vdms_ytdlp/textdrop.py:86 +msgid "Error list" +msgstr "" + +#: ../../vdms_io/checkup.py:65 +msgid "File(s) not found" +msgstr "" + +#: ../../vdms_io/checkup.py:74 +msgid "" +"Output folder does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_io/io_tools.py:58 +msgid "" +"Wait....\n" +"Retrieving required data." +msgstr "" + +#: ../../vdms_io/io_tools.py:82 +#, python-format +msgid "File does not exist or is invalid: %s" +msgstr "" + +#: ../../vdms_io/io_tools.py:100 +msgid "" +"Wait....\n" +"Audio peak analysis." +msgstr "" + +#: ../../vdms_io/io_tools.py:205 +msgid "Videomass - Downloading..." +msgstr "" + +#: ../../vdms_main/main_frame.py:188 ../../vdms_main/main_frame.py:1357 +#: ../../vdms_main/main_frame.py:1385 ../../vdms_ytdlp/main_ytdlp.py:98 +#: ../../vdms_ytdlp/main_ytdlp.py:146 ../../vdms_ytdlp/main_ytdlp.py:553 +#: ../../vdms_ytdlp/textdrop.py:233 ../../vdms_ytdlp/youtubedl_ui.py:437 +msgid "Ready" +msgstr "" + +#: ../../vdms_main/main_frame.py:205 +msgid "" +"Not all items in the queue were completed.\n" +"\n" +"Would you like to keep them in the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:226 +msgid "Queue ({0})" +msgstr "" + +#: ../../vdms_main/main_frame.py:231 ../../vdms_main/main_frame.py:1284 +msgid "Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:401 ../../vdms_main/main_frame.py:426 +#: ../../vdms_ytdlp/main_ytdlp.py:225 +msgid "There are still active windows with running processes, make sure you finish your work before exit." +msgstr "" + +#: ../../vdms_main/main_frame.py:408 +msgid "Are you sure you want to exit the application?" +msgstr "" + +#: ../../vdms_main/main_frame.py:410 +msgid "Exit" +msgstr "" + +#: ../../vdms_main/main_frame.py:473 +msgid "Import files\tCtrl+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:476 +msgid "Open destination folder of encodings\tCtrl+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:479 +msgid "Load queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:480 +msgid "Load a previously exported queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:483 +msgid "Open trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:484 +msgid "Open the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:486 +msgid "Empty trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:487 +msgid "Delete all files in the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:490 +msgid "Exit\tCtrl+Q" +msgstr "" + +#: ../../vdms_main/main_frame.py:491 +msgid "Completely exit the application" +msgstr "" + +#: ../../vdms_main/main_frame.py:492 ../../vdms_ytdlp/main_ytdlp.py:284 +msgid "File" +msgstr "" + +#: ../../vdms_main/main_frame.py:496 ../../vdms_panels/filedrop.py:340 +#: ../../vdms_panels/filedrop.py:359 +msgid "Rename selected file\tCtrl+R" +msgstr "" + +#: ../../vdms_main/main_frame.py:497 +msgid "Rename the destination of the selected file" +msgstr "" + +#: ../../vdms_main/main_frame.py:500 ../../vdms_panels/filedrop.py:341 +#: ../../vdms_panels/filedrop.py:362 +msgid "Batch rename files\tCtrl+B" +msgstr "" + +#: ../../vdms_main/main_frame.py:501 +msgid "Numerically renames the destination of all items in the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:506 ../../vdms_panels/filedrop.py:343 +#: ../../vdms_panels/filedrop.py:366 +msgid "Remove selected entry\tDEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:507 +msgid "Remove the selected file from the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:510 ../../vdms_panels/filedrop.py:344 +#: ../../vdms_panels/filedrop.py:369 ../../vdms_ytdlp/main_ytdlp.py:294 +#: ../../vdms_ytdlp/textdrop.py:191 ../../vdms_ytdlp/textdrop.py:212 +msgid "Clear list\tShift+DEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:511 +msgid "Clear the file list" +msgstr "" + +#: ../../vdms_main/main_frame.py:516 +msgid "Preferences\tCtrl+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:517 +msgid "Application preferences" +msgstr "" + +#: ../../vdms_main/main_frame.py:522 +msgid "Find FFmpeg topics" +msgstr "" + +#: ../../vdms_main/main_frame.py:523 +msgid "A useful tool to search for FFmpeg help topics and options" +msgstr "" + +#: ../../vdms_main/main_frame.py:528 +msgid "Check for preset updates" +msgstr "" + +#: ../../vdms_main/main_frame.py:529 +msgid "Check for new presets updates from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:531 +msgid "Get latest presets" +msgstr "" + +#: ../../vdms_main/main_frame.py:532 +msgid "Get the latest presets from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:535 ../../vdms_ytdlp/main_ytdlp.py:305 +msgid "Work notes\tCtrl+N" +msgstr "" + +#: ../../vdms_main/main_frame.py:536 ../../vdms_ytdlp/main_ytdlp.py:306 +msgid "Read and write useful notes and reminders." +msgstr "" + +#: ../../vdms_main/main_frame.py:538 ../../vdms_ytdlp/main_ytdlp.py:308 +msgid "Tools" +msgstr "" + +#: ../../vdms_main/main_frame.py:545 +msgid "Show FFmpeg's built-in configuration capabilities" +msgstr "" + +#: ../../vdms_main/main_frame.py:549 +msgid "Muxers and demuxers available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:553 +msgid "Encoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:556 +msgid "Decoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:559 +msgid "FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:560 +msgid "Enable timestamps on playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:561 +msgid "Displays timestamp when playing media with FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:564 +msgid "Auto-exit after playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:565 +msgid "If checked, the FFplay window will auto-close when playback is complete" +msgstr "" + +#: ../../vdms_main/main_frame.py:569 +msgid "Customize the timestamp style" +msgstr "" + +#: ../../vdms_main/main_frame.py:572 +msgid "While playing..." +msgstr "" + +#: ../../vdms_main/main_frame.py:573 +msgid "Show useful shortcut keys when playing or previewing using FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:577 +msgid "Show timeline editor\tCtrl+T" +msgstr "" + +#: ../../vdms_main/main_frame.py:578 +msgid "Set duration or trim slices of time to remove unwanted parts from your files" +msgstr "" + +#: ../../vdms_main/main_frame.py:582 ../../vdms_ytdlp/main_ytdlp.py:318 +msgid "View" +msgstr "" + +#: ../../vdms_main/main_frame.py:589 +msgid "Home panel\tCtrl+Shift+H" +msgstr "" + +#: ../../vdms_main/main_frame.py:590 +msgid "Go to the «Home» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:593 +msgid "Presets Manager\tCtrl+Shift+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:594 +msgid "Go to the «Presets Manager» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:596 +msgid "A/V Conversions\tCtrl+Shift+V" +msgstr "" + +#: ../../vdms_main/main_frame.py:597 +msgid "Go to the «A/V Conversions» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:599 +msgid "Concatenate Demuxer\tCtrl+Shift+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:600 +msgid "Go to the «Concatenate Demuxer» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:603 +msgid "Still Image Maker\tCtrl+Shift+I" +msgstr "" + +#: ../../vdms_main/main_frame.py:604 +msgid "Go to the «Still Image Maker» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:606 +msgid "From Movie to Pictures\tCtrl+Shift+S" +msgstr "" + +#: ../../vdms_main/main_frame.py:607 +msgid "Go to the «From Movie to Pictures» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:610 +msgid "YouTube Downloader\tCtrl+Shift+Y" +msgstr "" + +#: ../../vdms_main/main_frame.py:611 +msgid "Open «YouTube Downloader» window" +msgstr "" + +#: ../../vdms_main/main_frame.py:613 +msgid "Output monitor\tCtrl+Shift+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:614 +msgid "Keeps track of the output for debugging errors" +msgstr "" + +#: ../../vdms_main/main_frame.py:616 +msgid "Go" +msgstr "" + +#: ../../vdms_main/main_frame.py:620 +msgid "User guide" +msgstr "" + +#: ../../vdms_main/main_frame.py:623 +msgid "Issue tracker" +msgstr "" + +#: ../../vdms_main/main_frame.py:627 +msgid "Check for newer version" +msgstr "" + +#: ../../vdms_main/main_frame.py:628 +msgid "Check for the latest Videomass version" +msgstr "" + +#: ../../vdms_main/main_frame.py:630 +msgid "System version" +msgstr "" + +#: ../../vdms_main/main_frame.py:631 +msgid "Get version about your operating system, version of Python and wxPython." +msgstr "" + +#: ../../vdms_main/main_frame.py:635 +msgid "Show log files\tCtrl+L" +msgstr "" + +#: ../../vdms_main/main_frame.py:636 +msgid "Viewing log messages" +msgstr "" + +#: ../../vdms_main/main_frame.py:640 +msgid "Contribute to the project" +msgstr "" + +#: ../../vdms_main/main_frame.py:644 +msgid "About Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:645 +msgid "Help" +msgstr "" + +#: ../../vdms_main/main_frame.py:709 +msgid "Import files" +msgstr "" + +#: ../../vdms_main/main_frame.py:732 +msgid "No default folder has been set for the destination of the encodings. The current setting is \"Same destination paths as source files\"." +msgstr "" + +#: ../../vdms_main/main_frame.py:764 ../../vdms_main/main_frame.py:789 +msgid "" +"'{}':\n" +"No such file or directory" +msgstr "" + +#: ../../vdms_main/main_frame.py:777 +msgid "Are you sure to empty trash folder?" +msgstr "" + +#: ../../vdms_main/main_frame.py:785 +msgid "" +"'{}':\n" +"There are no files to delete." +msgstr "" + +#: ../../vdms_main/main_frame.py:842 +msgid "Installed release v{0}. A new presets release is available {1}" +msgstr "" + +#: ../../vdms_main/main_frame.py:846 +msgid "Installed release v{0}. No new updates found." +msgstr "" + +#: ../../vdms_main/main_frame.py:876 +msgid "" +"Wait....\n" +"The archive is being downloaded" +msgstr "" + +#: ../../vdms_main/main_frame.py:888 +msgid "Successfully downloaded to \"{0}\"" +msgstr "" + +#: ../../vdms_main/main_frame.py:1100 +msgid "Some changes require restarting the application." +msgstr "" + +#: ../../vdms_main/main_frame.py:1106 +msgid "" +"{0}\n" +"\n" +"Do you want to restart the application now?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1108 +msgid "Restart Videomass?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1157 +msgid "A new release is available - v.{0}\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1160 +msgid "You are using a development version that has not yet been released!\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1163 +msgid "Congratulation! You are already using the latest version.\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1251 +msgid "Previous panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1252 ../../vdms_ytdlp/main_ytdlp.py:477 +msgid "Back" +msgstr "" + +#: ../../vdms_main/main_frame.py:1255 +msgid "Next panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1256 ../../vdms_ytdlp/main_ytdlp.py:482 +msgid "Next" +msgstr "" + +#: ../../vdms_main/main_frame.py:1259 +msgid "Home panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1260 +msgid "Home" +msgstr "" + +#: ../../vdms_main/main_frame.py:1263 +msgid "Play the selected imput file" +msgstr "" + +#: ../../vdms_main/main_frame.py:1264 +msgid "Play" +msgstr "" + +#: ../../vdms_main/main_frame.py:1267 +msgid "Get informative data about imported media streams" +msgstr "" + +#: ../../vdms_main/main_frame.py:1271 +msgid "Start batch processing" +msgstr "" + +#: ../../vdms_main/main_frame.py:1275 ../../vdms_ytdlp/main_ytdlp.py:498 +msgid "Stops current process" +msgstr "" + +#: ../../vdms_main/main_frame.py:1279 +msgid "Add an item to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1280 +msgid "Add to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1283 +msgid "Show queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1356 ../../vdms_panels/presets_manager.py:569 +#: ../../vdms_ytdlp/main_ytdlp.py:145 +msgid "Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:1386 +msgid "Videomass - File List" +msgstr "" + +#: ../../vdms_main/main_frame.py:1403 +msgid "Videomass - AV Conversions" +msgstr "" + +#: ../../vdms_main/main_frame.py:1430 +msgid "Videomass - Presets Manager" +msgstr "" + +#: ../../vdms_main/main_frame.py:1458 +msgid "Videomass - Concatenate Demuxer" +msgstr "" + +#: ../../vdms_main/main_frame.py:1485 +msgid "Videomass - From Movie to Pictures" +msgstr "" + +#: ../../vdms_main/main_frame.py:1512 +msgid "Videomass - Still Image Maker" +msgstr "" + +#: ../../vdms_main/main_frame.py:1594 +#: ../../vdms_panels/audio_encoders/acodecs.py:786 +#: ../../vdms_panels/av_conversions.py:577 ../../vdms_panels/filedrop.py:475 +#: ../../vdms_panels/filedrop.py:588 ../../vdms_panels/sequence_to_video.py:320 +#: ../../vdms_panels/video_to_sequence.py:371 +#: ../../vdms_panels/video_to_sequence.py:503 +msgid "Have to select an item in the file list first" +msgstr "" + +#: ../../vdms_main/main_frame.py:1616 +msgid "" +"An item with the same destination file already exists.\n" +"\n" +"Do you want to replace it by adding the new item to the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1637 +msgid "Videomass - FFmpeg Message Monitoring" +msgstr "" + +#: ../../vdms_main/main_frame.py:1762 +msgid "yt-dlp is disabled. Check your preferences." +msgstr "" + +#: ../../vdms_main/main_frame.py:1765 +msgid "The application requires to be restarted." +msgstr "" + +#: ../../vdms_main/main_frame.py:1768 +msgid "The Python module «yt_dlp» was not found. Make sure you have installed yt-dlp correctly." +msgstr "" + +#: ../../vdms_main/main_frame.py:1795 +msgid "The system will turn off in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1796 +msgid "Videomass - Shutdown!" +msgstr "" + +#: ../../vdms_main/main_frame.py:1803 +msgid "Error while shutting down. Please see file log for details." +msgstr "" + +#: ../../vdms_main/main_frame.py:1815 +msgid "Exiting the application in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1816 +msgid "Videomass - Exiting!" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:46 +msgid "Start point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:48 +msgid "End point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:105 +msgid "Hours" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:106 +msgid "Minutes" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:107 +msgid "Seconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:108 +msgid "Milliseconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:189 ../../vdms_miniframes/timeline.py:312 +msgid "No source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:208 ../../vdms_miniframes/timeline.py:298 +#: ../../vdms_miniframes/timeline.py:333 ../../vdms_miniframes/timeline.py:338 +#: ../../vdms_miniframes/timeline.py:441 +msgid "{0} {1} | Segment Duration: {2}" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:260 ../../vdms_miniframes/timeline.py:277 +msgid "End adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:261 ../../vdms_miniframes/timeline.py:279 +msgid "Start adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:320 +msgid "Source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:387 +msgid "WARNING: Invalid selection, out of range." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:461 +msgid "" +"Start by dragging the bottom left handle,\n" +"or right-click for options." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:497 +msgid "Start" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:498 +msgid "End" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:548 +msgid "" +"The timeline editor is a tool that allows you to trim slices of time on selected imported media (see File List panel).\n" +"\n" +"The \"time format\" used to report durations is expressed in hours, minutes, seconds and milliseconds (HH:MM:SS.ms).\n" +"\n" +"Note that importing new files, making new selection, deselection, deleting items, sorting items (ie by LEFT clicking on the column headers), will reset any previous settings to default values.\n" +"\n" +"If the File List panel is empty or no source files are selected, the overall duration values will be set to 23:59:59.999, rather than the duration of a selected source file (see status bar messages).\n" +"\n" +"The \"Start\"/\"End\" duration values always refer to the initial position of the timeline: 00:00:00.000. For other informations as the segment duration and warnings, please refer to the status bar messages." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:565 +msgid "Timeline Editor Usage" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:153 +msgid "Media:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:169 +msgid "Container:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:180 +msgid "Save profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:183 +msgid "Target" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:316 +msgid "Miscellaneous" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:323 +msgid "Save as a new profile of the Presets Manager." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:325 +msgid "Available video encoders. \"Copy\" means that the video stream will not be re-encoded and will allow you (depending on the encoder) to change the container, audio codec and a few other parameters." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:330 +msgid "" +"Container format. It is usually represented by the file extension (output format).\n" +"\n" +"If the Media target is set to \"Video\" and the Video Encoder to \"Copy\", optionally you can set this control to \"Copy\" the same container as source file.\n" +"\n" +"If the media target is set to \"Audio\", you can extract only the audio streams from videos, or simply convert audio source files." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:338 +msgid "" +"Set output files target: \"Video\" to save output files as video files; \"Audio\" to save files using an audio encoder and format.\n" +"\n" +"Note that by using \"Audio\" as the target, you will still be able to work on the video source files but you will only be able to extract the audio streams, convert them and apply audio filters such as normalization." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:346 +msgid "Preview video filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:347 +msgid "Disable active filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:348 +#: ../../vdms_panels/sequence_to_video.py:155 +#: ../../vdms_panels/video_to_sequence.py:113 +msgid "Resize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:349 +msgid "Crop" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:350 +msgid "Transpose" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:352 +msgid "Denoise" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:353 +msgid "Stabilize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:354 +msgid "Equalize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:517 +msgid "Unable to preview Video Stabilizer filter" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:602 +msgid "" +"Unsupported file:\n" +"Missing decoder or library? Check FFmpeg configuration." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:611 +#: ../../vdms_panels/sequence_to_video.py:349 +#: ../../vdms_panels/video_to_sequence.py:400 +msgid "The file is not a frame or a video file" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:433 +#: ../../vdms_panels/av_conversions.py:861 +msgid "Undetected volume values! Click the \"Volume detect\" button to analyze audio volume data." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1186 +msgid "Off" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1203 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Video Codec\n" +"Audio Codec\n" +"Audio Normalization\n" +"Output multimedia type\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1246 +#: ../../vdms_panels/presets_manager.py:814 +msgid "Write profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1266 +#: ../../vdms_panels/presets_manager.py:513 +msgid "Enter name for new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1276 +#: ../../vdms_panels/presets_manager.py:524 +msgid "Invalid file name, make sure to provide a valid name including the «.json» extension" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1284 +msgid "Cannot save current data in file «{}»." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1289 +msgid "Open Videomass preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1307 +msgid "Videomass - Save new profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1308 +msgid "Where do you want to save this profile?" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1309 +msgid "Save the profile to a new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1310 +msgid "Save the profile to an existing preset" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:71 +msgid "Welcome to Videomass" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:73 +msgid "Version {}" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:84 +msgid "Presets Manager" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:87 +msgid "AV-Conversions" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:90 +msgid "Concatenate media files" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:93 +msgid "YouTube Downloader" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:96 +msgid "Still Image Maker" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:99 +msgid "From Movie to Pictures" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:117 +msgid "Create, edit and use quickly your favorite FFmpeg presets and profiles with full formats support and codecs." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:121 +msgid "A set of useful tools for audio and video conversions. Save your profiles and reuse them with Presets Manager." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:125 +msgid "Easily download videos and audio in different formats and quality from YouTube, Facebook and more sites." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:129 +msgid "Concatenate multiple media files based on import order without re-encoding" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:132 +msgid "Create video from a sequence of images, based on import order, with the ability to add an audio file." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:135 +msgid "Extract images (frames) from your movies in JPG, PNG, BMP, GIF formats." +msgstr "" + +#: ../../vdms_panels/concatenate.py:47 +msgid "At least two files are required to perform concatenation." +msgstr "" + +#: ../../vdms_panels/concatenate.py:63 +msgid "Invalid data found" +msgstr "" + +#: ../../vdms_panels/concatenate.py:68 +msgid "The files do not have the same \"codec_types\", same \"sample_rate\" or same \"width\" or \"height\". Unable to proceed." +msgstr "" + +#: ../../vdms_panels/concatenate.py:84 +msgid "" +"\n" +"- The concatenation function is performed only with Audio files or only with Video files.\n" +"\n" +"- The order of concatenation depends on the order in which the files were added.\n" +"\n" +"- The output file name will have the same name as the first file added (also depends on the\n" +" settings made in the preferences dialog or the renaming functions used).\n" +"\n" +"- Video files must have exactly same streams, same codecs and same\n" +" width/height, but can be wrapped in different container formats.\n" +"\n" +"- Audio files must have exactly the same formats, same codecs with equal sample rate." +msgstr "" + +#: ../../vdms_panels/concatenate.py:125 +msgid "For more details, see the Videomass User Guide:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:145 +#: ../../vdms_panels/sequence_to_video.py:208 +#: ../../vdms_panels/video_to_sequence.py:181 +msgid "For more information, visit the official FFmpeg documentation:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:264 +msgid "" +"Items to concatenate\n" +"File destination\n" +"Output Format\n" +"Output multimedia type\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:45 +msgid "File has illegal characters like:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:46 +msgid "Invalid character found in path name: (\")" +msgstr "" + +#: ../../vdms_panels/filedrop.py:47 +msgid "Directories are not allowed, just add files, please." +msgstr "" + +#: ../../vdms_panels/filedrop.py:48 +msgid "File without format extension: please give an appropriate extension to the file name, example '.mkv', '.avi', '.mp3', etc." +msgstr "" + +#: ../../vdms_panels/filedrop.py:84 +msgid "Name has illegal characters like: {0}" +msgstr "" + +#: ../../vdms_panels/filedrop.py:85 +msgid "Name already in use:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:185 +msgid "Duplicate file, it has already been added to the list." +msgstr "" + +#: ../../vdms_panels/filedrop.py:197 +msgid "Rejected files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:269 +msgid "Source file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:270 +msgid "Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:271 +msgid "Media type" +msgstr "" + +#: ../../vdms_panels/filedrop.py:272 ../../vdms_ytdlp/formatcode.py:137 +msgid "Size" +msgstr "" + +#: ../../vdms_panels/filedrop.py:275 ../../vdms_panels/filedrop.py:383 +msgid "Drag one or more files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:282 ../../vdms_ytdlp/textdrop.py:143 +msgid "Save to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:306 +msgid "Set a new destination folder for encodings" +msgstr "" + +#: ../../vdms_panels/filedrop.py:308 +msgid "Encodings destination folder" +msgstr "" + +#: ../../vdms_panels/filedrop.py:338 ../../vdms_panels/filedrop.py:372 +msgid "Play file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:386 +msgid "Drag two or more Audio/Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:390 +msgid "Drag one or more Image files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:393 +msgid "Drag one or more Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:595 +msgid "Rename the file destination" +msgstr "" + +#: ../../vdms_panels/filedrop.py:596 +msgid "Rename the selected file to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:610 ../../vdms_panels/filedrop.py:620 +#: ../../vdms_panels/filedrop.py:651 +msgid "Add Files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:627 +msgid "Rename in batch" +msgstr "" + +#: ../../vdms_panels/filedrop.py:628 +msgid "Rename the {0} items to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:630 +msgid "New Name #" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:114 +#: ../../vdms_ytdlp/long_task_ytdlp.py:47 +msgid "Sorry, all task failed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:115 +#: ../../vdms_ytdlp/long_task_ytdlp.py:48 +msgid "The process was stopped due to a fatal error." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:116 +#: ../../vdms_ytdlp/long_task_ytdlp.py:49 +msgid "Interrupted Process !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:117 +#: ../../vdms_ytdlp/long_task_ytdlp.py:50 +msgid "Successfully completed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:118 +#: ../../vdms_ytdlp/long_task_ytdlp.py:51 +msgid "Not everything was successful." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:149 +msgid "Encoding Status" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:153 +#: ../../vdms_ytdlp/long_task_ytdlp.py:86 +msgid "Current Log" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:360 +#: ../../vdms_ytdlp/long_task_ytdlp.py:270 +msgid "Fatal Error !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:369 +#: ../../vdms_ytdlp/long_task_ytdlp.py:279 +msgid "Get your files at the destination you specified" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:383 +msgid "For more details please read the Current Log." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:386 +#: ../../vdms_ytdlp/long_task_ytdlp.py:299 +msgid "...Finished" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:405 +#: ../../vdms_ytdlp/long_task_ytdlp.py:313 +msgid "Please wait... interruption in progress" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:408 +msgid "...Interrupted" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:166 +msgid "Presets" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:180 +msgid "Write" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:184 +msgid "Delete" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:194 +msgid "Duplicate" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:199 +msgid "Profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:206 +msgid "One-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:218 +msgid "Two-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:232 +msgid "Choose a preset and view its profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:233 +msgid "Write a new profile and save it in the selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:235 +msgid "Delete the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:236 +msgid "Edit the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:237 +msgid "Duplicate the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:238 +msgid "Create new preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:240 +msgid "Remove selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:242 +msgid "Backup selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:244 +msgid "Backup the presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:246 +msgid "Restore a preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:248 +msgid "Restore a presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:250 +msgid "Resets the selected preset to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:252 +msgid "Reset all presets to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:254 +msgid "Refresh the presets list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:338 +msgid "" +"Outdated presets version found: v{1}\n" +"A new version is available: v{0}\n" +"\n" +"This update provides new presets included on the latest versions of Videomass.\n" +"\n" +"To avoid data loss and allow for possible recovery, the outdated presets folder will be backed up in the program configuration directory:\n" +"«{2}»\n" +"\n" +"Do you want to perform this update now?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:403 +msgid "Name" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:405 +msgid "Output Format" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:406 +msgid "Supported Format List" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:531 +msgid "Cannot save current data in file '{}'." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:535 +msgid "You just successfully created a new preset!" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:547 +msgid "" +"Are you sure you want to remove \"{}\" preset?\n" +"\n" +" It will be moved to the \"Removals\" subfolder inside the presets folder." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:558 +msgid "" +"{}\n" +"\n" +"Sorry, removal failed, cannot continue.." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:568 +msgid "The preset \"{0}\" was successfully removed" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:583 +#: ../../vdms_panels/presets_manager.py:612 +msgid "Open a destination folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:588 +msgid "A file with this name already exists, do you want to overwrite it?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:602 +#: ../../vdms_panels/presets_manager.py:622 +msgid "Backup completed successfully" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:631 +msgid "Open the preset you want to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:645 +msgid "" +"This preset already exists and is about to be updated. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:663 +msgid "Restore successful" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:681 +msgid "" +"This will update the presets database. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:689 +msgid "Open the presets folder to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:725 +msgid "The presets database has been successfully updated" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:740 +msgid "The selected preset is not part of Videomass's default presets." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:745 +msgid "" +"Be careful! The selected preset will be overwritten with the default one. Your profiles may be deleted!\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:760 +#: ../../vdms_panels/presets_manager.py:794 +msgid "Successful recovery" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:769 +msgid "" +"Be careful! This action will restore all presets to default ones. Your profiles may be deleted!\n" +"\n" +"In any case, to avoid data loss, the presets folder will be backed up in the program's configuration directory.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:833 +msgid "Edit profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:872 +msgid "Are you sure you want to delete the selected profile? It will no longer be possible to recover it." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:891 +msgid "First select a profile in the list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:899 +msgid "" +"The selected profile command has been changed manually.\n" +"Do you want to apply it during the conversion process?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:909 +msgid "Don't show this dialog again" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:1054 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Profile Used\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:54 +msgid "Images need to be resized, please use Resize function." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:73 +msgid "" +"\n" +"1. Import one or more image files such as JPG, PNG and BMP formats, then select one.\n" +"\n" +"2. Use the Resize tool for images which have different sizes such as width and\n" +"height. It is optional in other cases.\n" +"\n" +"3. Use the Timeline editor (CTRL+T) to set the time interval between images by adjusting\n" +"the \"End\" duration value and leaving the \"Start\" value at 00:00:00.000.\n" +"\n" +"4. Run the conversion.\n" +"\n" +"\n" +"The produced video will have the name of the selected file in the 'File List' panel, which\n" +"will be saved in a folder named 'Still_Images' with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:129 +msgid "Enable a single still image" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:161 +msgid "" +"Force original aspect ratio using\n" +"padding rather than stretching" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:167 +msgid "Include audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:170 +msgid "Play the video until audio track finishes" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:177 +#: ../../vdms_panels/sequence_to_video.py:437 +msgid "Open audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:195 +msgid "Additional arguments" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:452 +msgid "Open Audio File" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:464 +msgid "" +"Invalid file: '{}'\n" +"\n" +"{}" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:469 +msgid "" +"Invalid file: '{}'\n" +"\n" +"It doesn't appear to be an audio file." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:558 +#: ../../vdms_panels/sequence_to_video.py:585 +#: ../../vdms_panels/video_to_sequence.py:513 +msgid "Invalid file: '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:568 +#: ../../vdms_panels/sequence_to_video.py:593 +msgid "Unsupported format '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:574 +#: ../../vdms_panels/sequence_to_video.py:598 +msgid "" +"File does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:575 +msgid "ERROR" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:705 +msgid "Shortest" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:713 +msgid "" +"Items to concatenate\n" +"Output filename\n" +"Destination\n" +"Output Format\n" +"Additional arguments\n" +"Audio file\n" +"Shortest\n" +"Resize\n" +"Pre-input\n" +"Frame per Second (FPS)\n" +"Still image duration\n" +"Overall video duration" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:50 +msgid "" +"\n" +"1. Import one or more video files, then select one.\n" +"\n" +"2. To select a slice of time use the Timeline editor (CTRL+T) by adjusting the\n" +"\"End\" and the \"Start\" duration values.\n" +"\n" +"3. Select an output format (jpg, png, bmp).\n" +"\n" +"4. Start the conversion.\n" +"\n" +"\n" +"The images produced will be saved in a folder named 'Movie_to_Pictures'\n" +"with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:86 +msgid "Create thumbnails" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:87 +msgid "Create tiled mosaics" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:88 +msgid "Create animated GIF" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:90 ../../vdms_ytdlp/main_ytdlp.py:492 +msgid "Options" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:119 +msgid "Output format:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:131 +msgid "Rows:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:141 +msgid "Columns:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:207 +msgid "Other unofficial resources:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:231 +msgid "Set FPS control from 0.1 to 30.0 fps. The higher this value, the more images will be extracted." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:234 +msgid "Spaces around the mosaic tiles. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:236 +msgid "Spaces around the mosaic borders. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:628 +msgid "" +"Selected File\n" +"Output Format\n" +"Destination\n" +"Rate (fps)\n" +"Resizing\n" +"Mosaic rows\n" +"Mosaic columns\n" +"Mosaic padding\n" +"Mosaic margin\n" +"Custom Arguments\n" +"Start of segment\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:118 +msgid "Audio encoder settings, mapping and filters" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:128 +msgid "Audio Encoder" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:137 +msgid "Settings" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:148 +msgid "Index Selection:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:157 +msgid "Map:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:180 +msgid "Normalization" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:191 +msgid "Volume detect" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:195 +msgid "Volume Statistics" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:199 +msgid "Target level:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:263 +msgid "Gets maximum volume and average volume data in dBFS, then calculates the offset amount for audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:266 +msgid "Limiter for the maximum peak level or the mean level (when switch to RMS) in dBFS. From -99.0 to +0.0; default for PEAK level is -1.0; default for RMS is -20.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:270 +msgid "" +"Normally on a video with correctly indexed streams and having one or more audio streams, the first audio stream should be indexed at \"1\", the second at \"2\" and so on (the video stream on the other hand is always indexed at \"0\"). In this case it is recommended to select the desired stream by setting a specific index, e.g \"1\" for for the first available audio stream.\n" +"\n" +"Set this control to \"Auto\" if the source file is simply an audio track." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:279 +msgid "" +"\"Auto\" keeps all audio streams and processes only the one selected by the \"Index Selection\" control.\n" +"\n" +"\"All\" processes all audio streams in a video with the properties of the one selected by the \"Index Selection\" control.\n" +"\n" +"\"Index Only\" processes only the audio stream selected by the \"Index Selection\" control and removes all others from the video" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:287 +msgid "Integrated Loudness Target in LUFS. From -70.0 to -5.0, default is -16.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:290 +msgid "Maximum True Peak in dBTP. From -1.5 to +0.0, default is -2.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:293 +msgid "Loudness Range Target in LUFS. From +1.0 to +20.0, default is +11.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:296 +msgid "Play the audio stream selected in the \"Index Selection\" control. Using this function you can test the result of audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:502 +msgid "Selected index does not exist or does not contain any audio streams" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:507 +msgid "" +"ERROR: Missing audio stream:\n" +"\"{}\"" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:589 +msgid "No Audio" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:723 +msgid "PEAK level normalization, which will produce a maximum peak level equal to the set target level." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:726 +msgid "RMS-based normalization, which according to mean volume calculates the amount of gain to reach same average power signal." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:730 +msgid "" +"Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements the EBU R128 algorithm.\n" +"Ideal for live normalization. It produces worse results than the High-quality two-pass Loudnorm normalization, but is faster." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:737 +msgid "" +"High-quality two-pass Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements\n" +"the EBU R128 algorithm. Ideal for postprocessing." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:63 +msgid "Subtitle Mapping" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:77 +msgid "Copy Chapters" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:79 +msgid "Copy Metadata" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:85 +msgid "" +"Select \"All\" to include any source file subtitles in the output video.\n" +"\n" +"Select \"None\" to exclude any subtitles stream in the output video.\n" +"\n" +"This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:90 +msgid "Copy the chapter markers as is from source file. This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:93 +msgid "Copy all incoming metadata from source file, such as audio/video tags, titles, unique marks, and so on." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:108 +msgid "Additional options" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:89 +#: ../../vdms_panels/video_encoders/av1_svt.py:120 +#: ../../vdms_panels/video_encoders/avc_x264.py:90 +#: ../../vdms_panels/video_encoders/hevc_x265.py:98 +#: ../../vdms_panels/video_encoders/mpeg4.py:71 +#: ../../vdms_panels/video_encoders/vp9_webm.py:131 +msgid "Reload" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:101 +#: ../../vdms_panels/video_encoders/av1_svt.py:129 +#: ../../vdms_panels/video_encoders/avc_x264.py:101 +#: ../../vdms_panels/video_encoders/hevc_x265.py:109 +#: ../../vdms_panels/video_encoders/mpeg4.py:82 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:97 +#: ../../vdms_panels/video_encoders/vp9_webm.py:141 +msgid "Optimize for Web" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:247 +#: ../../vdms_panels/video_encoders/av1_svt.py:313 +#: ../../vdms_panels/video_encoders/avc_x264.py:242 +#: ../../vdms_panels/video_encoders/hevc_x265.py:250 +#: ../../vdms_panels/video_encoders/mpeg4.py:198 +#: ../../vdms_panels/video_encoders/vp9_webm.py:288 +msgid "Reloads the selected video encoder settings. Changes will be discarded." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:250 +#: ../../vdms_panels/video_encoders/avc_x264.py:273 +#: ../../vdms_panels/video_encoders/hevc_x265.py:277 +#: ../../vdms_panels/video_encoders/vp9_webm.py:291 +msgid "Constant rate factor. Lower values correspond to higher quality and greater file size. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:254 +#: ../../vdms_panels/video_encoders/av1_svt.py:357 +#: ../../vdms_panels/video_encoders/vp9_webm.py:295 +msgid "Number of tile rows to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:256 +#: ../../vdms_panels/video_encoders/av1_svt.py:359 +#: ../../vdms_panels/video_encoders/vp9_webm.py:297 +msgid "Number of tile columns to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:259 +#: ../../vdms_panels/video_encoders/av1_svt.py:368 +#: ../../vdms_panels/video_encoders/avc_x264.py:253 +#: ../../vdms_panels/video_encoders/hevc_x265.py:261 +#: ../../vdms_panels/video_encoders/mpeg4.py:201 +#: ../../vdms_panels/video_encoders/vp9_webm.py:300 +msgid "Set the Group Of Picture (GOP). Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:262 +#: ../../vdms_panels/video_encoders/av1_svt.py:371 +#: ../../vdms_panels/video_encoders/avc_x264.py:256 +#: ../../vdms_panels/video_encoders/hevc_x265.py:264 +#: ../../vdms_panels/video_encoders/mpeg4.py:204 +#: ../../vdms_panels/video_encoders/vp9_webm.py:303 +msgid "It can reduce the file size, but takes longer." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:264 +#: ../../vdms_panels/video_encoders/av1_svt.py:373 +#: ../../vdms_panels/video_encoders/avc_x264.py:258 +#: ../../vdms_panels/video_encoders/hevc_x265.py:266 +#: ../../vdms_panels/video_encoders/mpeg4.py:206 +#: ../../vdms_panels/video_encoders/vp9_webm.py:305 +msgid "Set minimum bitrate tolerance. Most useful in setting up a CBR encode. It is of little use otherwise. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:268 +#: ../../vdms_panels/video_encoders/av1_svt.py:377 +#: ../../vdms_panels/video_encoders/avc_x264.py:262 +#: ../../vdms_panels/video_encoders/hevc_x265.py:270 +#: ../../vdms_panels/video_encoders/mpeg4.py:210 +#: ../../vdms_panels/video_encoders/vp9_webm.py:309 +msgid "Specifies a maximum tolerance. Requires bufsize to be set. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:271 +#: ../../vdms_panels/video_encoders/av1_svt.py:380 +#: ../../vdms_panels/video_encoders/avc_x264.py:265 +#: ../../vdms_panels/video_encoders/hevc_x265.py:273 +#: ../../vdms_panels/video_encoders/mpeg4.py:213 +#: ../../vdms_panels/video_encoders/vp9_webm.py:312 +msgid "Set ratecontrol buffer size, which determines the variability of the output bitrate. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:275 +#: ../../vdms_panels/video_encoders/av1_svt.py:384 +#: ../../vdms_panels/video_encoders/avc_x264.py:277 +#: ../../vdms_panels/video_encoders/hevc_x265.py:281 +#: ../../vdms_panels/video_encoders/mpeg4.py:231 +#: ../../vdms_panels/video_encoders/vp9_webm.py:316 +msgid "Specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:279 +#: ../../vdms_panels/video_encoders/av1_svt.py:388 +#: ../../vdms_panels/video_encoders/avc_x264.py:281 +#: ../../vdms_panels/video_encoders/hevc_x265.py:285 +#: ../../vdms_panels/video_encoders/mpeg4.py:235 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:131 +#: ../../vdms_panels/video_encoders/vp9_webm.py:320 +msgid "Video width and video height ratio." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:281 +#: ../../vdms_panels/video_encoders/av1_svt.py:390 +#: ../../vdms_panels/video_encoders/avc_x264.py:283 +#: ../../vdms_panels/video_encoders/hevc_x265.py:287 +#: ../../vdms_panels/video_encoders/mpeg4.py:237 +#: ../../vdms_panels/video_encoders/vp9_webm.py:322 +msgid "Frame rate (frames per second). Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:285 +msgid "Quality/Speed ratio modifier. CPU Used sets how efficient the compression will be. Lower values mean slower encoding with better quality, and vice-versa. Valid values are from 0 to 8 inclusive." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:290 +msgid "Quality and compression efficiency vs speed trade-off. \"good\" is the default and recommended for most applications; \"realtime\" is recommended for live/fast encoding (live streaming, video conferencing, etc); \"allintra\" for All Intra encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:297 +msgid "" +"Row Multi-Threading enables row-based multi-threading which maximizes CPU usage.\n" +"\n" +"To enable fast decoding performance, also set tiles (i.e. Tile Columns 4 and Tile Rows 1 or Tile Columns 2 and Tile Rows 2 for 4 tiles).\n" +"\n" +"Enabling Row Multi-Threading is only faster when the CPU has more threads than the number of encoded tiles." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:316 +msgid "" +"presets 1-3 represent extremely high efficiency, for use when encode time is not important and quality/size of the resulting video file is critical.\n" +"\n" +"Presets 4-6 are commonly used by home enthusiasts as they represent a balance of efficiency and reasonable compute time.\n" +"\n" +"Presets between 7 and 12 are used for fast and real-time encoding.\n" +"\n" +"Preset 13 is even faster but not intended for direct human consumption--it can be used, for example, as a per-scene quality metric in VOD applications. One should use the lowest preset that is tolerable." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:327 +msgid "" +"Constant rate factor. This parameter governs the quality/size trade-off.\n" +"\n" +"Higher CRF values will result in a final output that takes less space, but begins to lose detail.\n" +"\n" +"Lower CRF values retain more detail at the cost of larger file sizes. A good starting point for 1080p video is 30.\n" +"\n" +"Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:334 +msgid "" +"The \"Film Grain\" parameter allows SVT-AV1 to detect and delete film grain from the source video, and replace it with synthetic grain of the same character, resulting in significant bitrate savings.\n" +"\n" +"A value of 8 is a reasonable starting point for live-action video with a normal amount of grain.\n" +"\n" +"Higher values in the range of 10-15 enable more aggressive use of this technique for video with lots of natural grain.\n" +"\n" +"For 2D animation, lower values in the range of 4-6 are often appropriate. \n" +"\n" +"If the source video does not have natural grain, this parameter can be set to -1 to disable it or at least 0." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:346 +msgid "" +"If enabled, the \"Film Grain Denoiser\" option can mitigate the detail removal caused by high \"Film Grain\" values required to preserve the look of very grainy films\n" +"\n" +"By default, the denoised frames are passed to be encoded as the final pictures, enabling this feature will lead to the original frames to be used instead. " +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:353 +msgid "Enables encoder optimization to produce faster (less CPU intensive) bit streams to decode, similar to the fastdecode tuning in x264 and x265." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:362 +#: ../../vdms_panels/video_encoders/avc_x264.py:247 +#: ../../vdms_panels/video_encoders/hevc_x265.py:255 +msgid "Set profile restrictions" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:364 +#: ../../vdms_panels/video_encoders/avc_x264.py:249 +#: ../../vdms_panels/video_encoders/hevc_x265.py:257 +msgid "Specify level for a selected profile" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:366 +#: ../../vdms_panels/video_encoders/avc_x264.py:251 +#: ../../vdms_panels/video_encoders/hevc_x265.py:259 +msgid "Tune the encoding params" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:245 +#: ../../vdms_panels/video_encoders/hevc_x265.py:253 +msgid "Set the encoding preset (default \"medium\")" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:269 +msgid "specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:217 +msgid "Variable Bit Rate. From 0-30, with 1 being highest quality/largest filesize and 30 being the lowest quality/smallest filesize. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:222 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:133 +msgid "Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:226 +msgid "The default FourCC stored in an MPEG-4-coded file will be FMP4. If you want a different FourCC, set this option to xvid to force the FourCC xvid to be stored as the video FourCC rather than the default." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:162 +msgid "Copy Video Codec" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:163 +msgid "" +"This will just copy the video track as is, without any video re-encoding.\n" +"You will only be able to change output format, select other audio encoders and\n" +"a few other options." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:74 +msgid "Video export disabled" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:75 +msgid "" +"The Media target you just selected will only allow you to export files as audio tracks.\n" +"You can then process audio source files only or extract indexed audio streams on\n" +"video files." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:326 +msgid "" +"Speed sets how efficient the compression will be.\n" +"\n" +"When the Quality parameter is \"good\" or \"best\", values for Speed can be set between 0 and 5.\n" +"\n" +"Using 1 or 2 will increase encoding speed at the expense of having some impact on quality and rate control accuracy.\n" +"\n" +"4 or 5 will turn off rate distortion optimization, having even more of an impact on quality.\n" +"\n" +"When the Quality is set to realtime, the available values for Speed are 0 to 8." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:335 +msgid "" +"Time to spend encoding.\n" +"\n" +"\"good\" is the default and recommended for most applications;\n" +"\n" +"\"best\" is recommended if you have lots of time and want the best compression efficiency;\n" +"\n" +"\"realtime\" is recommended for live / fast encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:341 +msgid "If enabled, adds support for row based multithreading which greatly enhances the number of threads the encoder can utilise. This improves encoding speed significantly on systems that are otherwise underutilised when encoding VP9. Since the amount of additional threads depends on the number of \"tiles\", which itself depends on the video resolution, encoding higher resolution videos will see a larger performance improvement." +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:46 +msgid "Supports ({0}) formats only, not ({1})" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:49 +msgid "File formats not supported by the selected profile" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:52 +msgid "Warning" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:90 +msgid "" +"No presets found.\n" +"\n" +"Possible solution: open the Presets Manager panel, go to the presets column and try to click the \"Restore all...\" button" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:54 +msgid "Import queue file" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:89 +msgid "" +"ERROR: invalid data found loading queue file.\n" +"«{0}»\n" +"\n" +"Cannot contain multiple occurrences in `destination` keys value." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:118 +msgid "Videomass - Add Items to Queue" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:119 +msgid "" +"Multiple items with identical names and destination paths cannot coexist.\n" +"Please choose one of the following actions:" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:123 +msgid "Replace occurrences with items from the imported queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:124 +msgid "Add only the currently missing items to the queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:125 +msgid "Remove the current queue and replace it with the imported one." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:98 ../../vdms_ytdlp/youtubedl_ui.py:118 +msgid "At least one \"Format Code\" must be checked for each URL selected in green." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:129 +msgid "Format Code" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:130 ../../vdms_ytdlp/textdrop.py:59 +msgid "Url" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:131 +msgid "Title" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:132 +msgid "Extension" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:133 +msgid "Resolution" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:134 +msgid "Video Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:135 +msgid "fps" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:136 +msgid "Audio Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:142 +msgid "Don't merge any files" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:145 +msgid "Download only the best selected qualities" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:249 +msgid "" +"ERROR: Unable to get format codes.\n" +"\n" +"Unsupported URL:\n" +"'{0}'" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:45 +msgid "[Videomass]: SUCCESS !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:46 +msgid "[Videomass]: FAILED !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:79 +msgid "Download Status" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:287 +#: ../../vdms_ytdlp/long_task_ytdlp.py:294 +msgid "Check the current output or read the related log file for more information." +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:328 +msgid "Done" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:198 +msgid "Do you want to close the active view keeping the data in memory and any background processes?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:232 +msgid "" +"Are you sure you want to exit this window?\n" +"All data will be lost" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:234 +msgid "Quit YouTube Downloader?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:273 +msgid "Open destination folder of downloads\tCtrl+D" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:276 +msgid "Close view\tCtrl+W" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:277 +msgid "Close the active view keeping the data in memory and any background processes" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:281 +msgid "Quit YouTube Downloader\tCtrl+Q" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:282 +msgid "Exit the window by deleting all data in memory" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:288 ../../vdms_ytdlp/textdrop.py:189 +#: ../../vdms_ytdlp/textdrop.py:206 +msgid "Paste\tCtrl+V" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:289 +msgid "Paste the copied URLs to clipboard" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:291 ../../vdms_ytdlp/textdrop.py:190 +#: ../../vdms_ytdlp/textdrop.py:209 +msgid "Remove selected URL\tDEL" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:292 +msgid "Remove the selected URL from the list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:295 +msgid "Clear the URL list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:299 +msgid "Options\tCtrl+P" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:300 ../../vdms_ytdlp/main_ytdlp.py:491 +msgid "YouTube Downloader options" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:312 +msgid "Version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:313 +msgid "Shows the version in use" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:315 +msgid "Latest version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:316 +msgid "Check the latest version available on github.com" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:372 +msgid "You are using \"yt-dlp\" version {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:389 +msgid "\"yt-dlp\": Latest version available: {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:476 +msgid "Go to the previous panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:481 +msgid "Go to the next panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:486 +msgid "Shows statistics and information" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:487 +msgid "Statistics" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:494 +msgid "Start downloading" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:495 +msgid "Download" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:554 +msgid "Videomass - List of URLs" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:562 +msgid "Videomass - YouTube Downloader" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:579 +msgid "Viewing last log" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:592 +msgid "Videomass - Downloader Message Monitoring" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:50 +#: ../../vdms_ytdlp/ydl_mediainfo.py:71 +msgid "URL" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:51 +msgid "Playlist Items" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:72 +msgid "" +"To index the media of a playlist, click on the \"Playlist Items\" column of each corresponding URL and specify the numerical indexes separated by commas, e.g. \"1,2,5,8\" if you want to download the indexed media at 1, 2, 5, 8 of the playlist.\n" +"It is also possible to specify intervals, e.g. \"1-3,7,10-13\" with which the media at index 1, 2, 3, 7, 10, 11, 12 and 13 will be downloaded.\n" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:108 +#: ../../vdms_ytdlp/youtubedl_ui.py:209 +msgid "Playlist Editor" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:117 +msgid "Help viewer" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:224 +msgid "ERROR: Invalid option" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:225 +msgid "please try again." +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:226 +msgid "OK: Indexes to download" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:255 +msgid "WARNING: The selected URL does not refer to a playlist. Only lines marked green can be indexed." +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:42 +msgid "English" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:43 +msgid "French" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:44 +msgid "German" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:45 +msgid "Greek" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:46 +msgid "Hebrew" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:47 +msgid "Italian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:48 +msgid "Dutch" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:49 +msgid "Polish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:50 +msgid "Portuguese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:51 +msgid "Russian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:52 +msgid "Spanish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:53 +msgid "Swedish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:54 +msgid "Turkish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:55 +msgid "Albanian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:56 +msgid "Chinese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:70 +msgid "Subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:74 +msgid "None" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:75 +msgid "All available subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:76 +msgid "Select by default language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:77 +msgid "Custom language subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:94 +msgid "Custom language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:110 +msgid "Subtitle options" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:114 +msgid "Include automatically generated subtitle (YouTube only)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:117 +msgid "Embed subtitles into video file" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:120 +msgid "Download subtitles only (do not include audio and video)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:137 +#: ../../vdms_ytdlp/youtubedl_ui.py:216 +msgid "Subtitles Editor" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:248 +msgid "" +"Write in the text field on the side, one or more language codes of the\n" +"subtitles to download separated by commas, e.g. \"en, ja, ar\" for English,\n" +"Japanese and Arabic respectively.\n" +"\n" +"You can use regex (regular expression), e.g. \"en.*, ja, ar.*\" where the\n" +"asterisk preceded by the dot will allow you to download everything\n" +"related to the subtitles of a certain language.\n" +"\n" +"You can prefix the language code with a \"-\" to exclude it from the\n" +"requested languages, e.g. \"all, -it.*, -nl.*\", -fr.*\" will download all\n" +"subtitles except those in Italian, Dutch and French." +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:68 +msgid "Invalid URL" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:87 +msgid "Invalid URLs" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:133 +msgid "Drag or paste URLs here" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:167 +msgid "Set a new destination folder for downloads" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:169 +msgid "Destination folder of downloads" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:67 +msgid "Statistics viewer" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:70 +msgid "TITLE SELECTION" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:65 +msgid "Workarounds" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:68 +msgid "Don’t check SSL certificate" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:73 +msgid "Filename options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:76 +msgid "Include the ID in file names" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:82 +msgid "Restrict file names to ASCII characters" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:88 +msgid "Post-Process options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:91 +msgid "Embed thumbnail in audio file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:96 +msgid "Add metadata to file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:101 +msgid "Overwrite all files and metadata" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:106 +msgid "General" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:112 +msgid "Where do you prefer to save your downloads?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:126 +msgid "Auto-create subdirectories when downloading playlists" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:137 +msgid "Choosing an external downloader" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:140 +msgid "" +"In addition to the default `native` one, yt-dlp can use the following external downloaders:\n" +"`aria2c`, `avconv`, `axel`, `curl`, `ffmpeg`, `httpie`, `wget`.\n" +"Please note that using an external downloader the download status information may not be available." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:149 +msgid "External downloader executable path" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:157 +msgid "External downloader arguments" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:165 +msgid "Download Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:171 +msgid "Using a proxy server" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:175 +msgid "" +"Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper\n" +"scheme, e.g.\t{}\n" +"Leave the text field blank for direct connection." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:183 +msgid "Proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:191 +msgid "Network" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:196 +msgid "Geo-restriction options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:199 +msgid "Use the following options to try bypassing geographic restriction." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:206 +msgid "Geo verification proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:210 +msgid "URL of the proxy to use for IP address verification on geo-restricted sites." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:215 +msgid "Geo bypass" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:219 +msgid "Bypass geographic restriction via faking X-Forwarded-For HTTP header. One of \"default\" (only when known to be useful), or \"never\"" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:226 +msgid "Geo bypass country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:230 +msgid "Two-letter ISO 3166-2 country code that will be used for explicit geographic restriction bypassing via faking X-Forwarded-For HTTP header." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:238 +msgid "Geo bypass ip block" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:242 +msgid "IP range in CIDR notation that will be used similarly to geo_bypass_country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:249 +msgid "Geo-Restriction" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:254 +msgid "Authentication with login credentials" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:257 +msgid "" +"If you need to login with your credentials please note that login with password is not\n" +"supported for some websites (e.g. YouTube, CloudFlare). In this case you can include a\n" +"cookie file for authentication (see cookies tab)." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:266 +msgid "Username" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:270 +msgid "Username for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:274 +msgid "Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:278 +msgid "Password for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:283 +msgid "Video Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:287 +msgid "Password for accessing a video" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:293 +msgid "Authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:299 +msgid "Using cookies to gain access to websites" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:302 +msgid "" +"Here you can pass your `Netscape HTTP Cookie File` in order to access websites that require authentication.\n" +"If you don't know how to obtain this type of file, you can let the application try to extract it from your browser\n" +"automatically. The currently supported browsers are: brave, chrome, chromium, edge, firefox, opera, safari, vivaldi.\n" +"\n" +"For more information please consult the documentation at the following link:" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:319 +msgid "Allow cookies for authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:323 +msgid "Cookie file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:329 +msgid "File name from where cookies should be read and dumped to" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:332 +msgid "Browse" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:335 +msgid "Extract cookies automatically from your browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:341 +msgid "Web Browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:360 +msgid "Cookies" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:403 +msgid "YouTube Downloader Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:436 +msgid "Do you want to remove the current cookie file from your system?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:489 +msgid "Locate your cookie file" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:151 +msgid "Precompiled Videos" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:152 +msgid "Download videos by resolution" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:153 +msgid "Download split audio and video" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:154 +msgid "Download Audio only" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:155 +msgid "Download by format code" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:205 +msgid "Include playlists" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:223 +msgid "Quality settings" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:235 +msgid "When not available, the chosen video resolution will be replaced with the closest one" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:239 +msgid "Video format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:260 +msgid "Audio format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:418 +msgid "" +"Unable to get format codes on {0}, unsupported URL:\n" +"\n" +"{1}" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:568 +msgid "URLs have no playlist references" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:607 +msgid "The URLs contain playlists. Are you sure you want to continue?" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:623 +msgid "The URLs contain channels. Are you sure you want to continue?" +msgstr "" + +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "" + diff --git a/videomass/data/locale/de_DE/LC_MESSAGES/videomass.po b/videomass/data/locale/de_DE/LC_MESSAGES/videomass.po new file mode 100644 index 000000000..543e1e88c --- /dev/null +++ b/videomass/data/locale/de_DE/LC_MESSAGES/videomass.po @@ -0,0 +1,4366 @@ +# German (Germany) translations for PROJECT. +# Copyright (C) 2024 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" +"PO-Revision-Date: 2024-07-17 16:40+0200\n" +"Last-Translator: FULL NAME \n" +"Language: de_DE\n" +"Language-Team: de_DE \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.10.3\n" + +#: ../../gui_app.py:121 +msgid "To suppress this message on startup, please install yt-dlp or disable it from the preferences." +msgstr "" + +#: ../../gui_app.py:133 ../../gui_app.py:141 +#: ../../vdms_dialogs/filter_colorcorrection.py:343 +#: ../../vdms_dialogs/filter_colorcorrection.py:383 +#: ../../vdms_dialogs/filter_colorcorrection.py:390 +#: ../../vdms_dialogs/filter_crop.py:417 ../../vdms_dialogs/filter_scale.py:287 +#: ../../vdms_dialogs/filter_scale.py:394 ../../vdms_dialogs/filter_stab.py:473 +#: ../../vdms_dialogs/filter_stab.py:483 ../../vdms_dialogs/filter_stab.py:494 +#: ../../vdms_dialogs/filter_transpose.py:182 +#: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 +#: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 +#: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 +#: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 +#: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 +#: ../../vdms_panels/audio_encoders/acodecs.py:509 +#: ../../vdms_panels/audio_encoders/acodecs.py:797 +#: ../../vdms_panels/concatenate.py:197 +#: ../../vdms_panels/long_processing_task.py:60 +#: ../../vdms_panels/presets_manager.py:426 +#: ../../vdms_panels/presets_manager.py:490 +#: ../../vdms_panels/presets_manager.py:560 +#: ../../vdms_panels/presets_manager.py:599 +#: ../../vdms_panels/presets_manager.py:619 +#: ../../vdms_panels/presets_manager.py:657 +#: ../../vdms_panels/presets_manager.py:701 +#: ../../vdms_panels/presets_manager.py:714 +#: ../../vdms_panels/presets_manager.py:721 +#: ../../vdms_panels/presets_manager.py:756 +#: ../../vdms_panels/presets_manager.py:785 +#: ../../vdms_panels/presets_manager.py:791 +#: ../../vdms_panels/sequence_to_video.py:465 +#: ../../vdms_panels/sequence_to_video.py:471 +#: ../../vdms_panels/sequence_to_video.py:559 +#: ../../vdms_panels/sequence_to_video.py:569 +#: ../../vdms_panels/sequence_to_video.py:586 +#: ../../vdms_panels/sequence_to_video.py:594 +#: ../../vdms_panels/sequence_to_video.py:600 +#: ../../vdms_panels/sequence_to_video.py:641 +#: ../../vdms_panels/sequence_to_video.py:687 +#: ../../vdms_panels/video_to_sequence.py:514 +#: ../../vdms_panels/video_to_sequence.py:585 +#: ../../vdms_threads/ffplay_file.py:43 +#: ../../vdms_utils/presets_manager_utils.py:86 +#: ../../vdms_utils/presets_manager_utils.py:95 +#: ../../vdms_utils/queue_utils.py:68 ../../vdms_utils/queue_utils.py:82 +#: ../../vdms_utils/queue_utils.py:95 ../../vdms_ytdlp/youtubedl_ui.py:386 +#: ../../vdms_ytdlp/youtubedl_ui.py:426 +msgid "Videomass - Error!" +msgstr "" + +#: ../../gui_app.py:230 +msgid "" +"Unexpected error while deleting file contents:\n" +"\n" +"{0}" +msgstr "" + +#: ../../vdms_dialogs/about_dialog.py:52 +msgid "Cross-platform graphical user interface for FFmpeg and yt-dlp.\n" +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:224 +msgid "Videomass supports mono and stereo audio channels. If you are not sure set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:228 +msgid "The audio Rate (or sample-rate) is the sound sampling frequency and is measured in Hertz. The higher the frequency, the more true it will be to the sound source and the more the file will increase in size. For audio CD playback, set a sampling frequency of 44100 kHz. If you are not sure, set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:237 +msgid "The audio bitrate affects the file compression and thus the quality of listening. The higher the value, the higher the quality." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:241 +msgid "Bit depth is the number of bits of information in each sample, and it directly corresponds to the resolution of each sample. Bit depth is only meaningful in reference to a PCM digital signal. Non-PCM formats, such as lossy compression formats, do not have associated bit depths." +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:74 ../../vdms_dialogs/queuedlg.py:120 +msgid "When finished, once the operations have been completed successfully:" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:80 ../../vdms_dialogs/queuedlg.py:126 +msgid "Trash the source files" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:84 ../../vdms_dialogs/queuedlg.py:130 +msgid "Clear the File List" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:91 ../../vdms_dialogs/queuedlg.py:142 +#: ../../vdms_main/main_frame.py:1272 +msgid "Run" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:97 +msgid "Videomass - Batch Mode" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:47 +msgid "FFmpeg encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:48 +msgid "supported encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:50 +msgid "FFmpeg decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:51 +msgid "supported decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:77 +#: ../../vdms_panels/av_conversions.py:293 +msgid "Video" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:87 +#: ../../vdms_panels/av_conversions.py:305 +msgid "Audio" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:97 +msgid "Subtitle" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:114 +#: ../../vdms_dialogs/ffmpeg_codecs.py:123 +#: ../../vdms_dialogs/ffmpeg_codecs.py:132 +#: ../../vdms_dialogs/ffmpeg_formats.py:112 +#: ../../vdms_dialogs/ffmpeg_formats.py:115 +#: ../../vdms_dialogs/ffmpeg_formats.py:118 +msgid "description" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:72 +msgid "Informations" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:83 +msgid "Flags settings" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:93 +msgid "Flags enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:103 +msgid "Flags disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:116 +msgid "FFmpeg configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:124 +msgid "flags" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:125 ../../vdms_dialogs/ffmpeg_conf.py:129 +#: ../../vdms_dialogs/ffmpeg_conf.py:133 +msgid "options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:128 ../../vdms_dialogs/ffmpeg_conf.py:132 +msgid "status" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:167 +msgid "FFprobe ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:175 +msgid "FFplay ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:205 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:608 +msgid "Enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:216 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:612 +msgid "Disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:71 +msgid "Demuxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:82 +msgid "Muxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:93 +msgid "Demuxing/Muxing support" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:104 +msgid "FFmpeg file formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:111 +#: ../../vdms_dialogs/ffmpeg_formats.py:114 +#: ../../vdms_dialogs/ffmpeg_formats.py:117 +msgid "supported formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:46 +msgid "" +"Contextual help based on the argument entered in the additional text field.\n" +"Each argument consists of the type and a type-specific name.\n" +"\n" +"For the list of encoders click the \"Encoders\" button.\n" +"For the list of decoders click on the \"Decoders\" button.\n" +"For the muxers and demuxers click on the \"Muxers and Demuxers\" button.\n" +"For the filters, select \"Show available filters\" in the drop down menu.\n" +"For the bsf, select \"Show available bitstream filters\" in the drop down menu.\n" +"For the protocols, select \"Show available protocols\" in the drop down menu.\n" +"\n" +"Some examples:" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:68 ../../vdms_dialogs/ffmpeg_help.py:301 +#: ../../vdms_dialogs/ffmpeg_help.py:315 +msgid "Help topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:69 +msgid "List basic options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:70 +msgid "List more options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:71 +msgid "List all options (very long)" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:72 +msgid "Show available devices" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:73 +msgid "Show available bit stream filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:74 +msgid "Show available protocols" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:75 +msgid "Show available filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:76 +msgid "Show available pixel formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:77 +msgid "Show available audio sample formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:78 +msgid "Show available color names" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:79 +msgid "List sources of the input device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:80 +msgid "List sinks of the output device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:81 +msgid "Show available HW acceleration methods" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:82 +msgid "Show license" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:117 ../../vdms_dialogs/filter_scale.py:76 +#: ../../vdms_dialogs/shownormlist.py:98 ../../vdms_dialogs/shownormlist.py:107 +#: ../../vdms_dialogs/shownormlist.py:116 ../../vdms_miniframes/timeline.py:263 +#: ../../vdms_miniframes/timeline.py:283 ../../vdms_panels/concatenate.py:117 +#: ../../vdms_panels/sequence_to_video.py:117 +#: ../../vdms_panels/video_to_sequence.py:81 +#: ../../vdms_ytdlp/subtitles_editor.py:100 +msgid "Read me" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:123 ../../vdms_main/main_frame.py:544 +msgid "Show configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:127 ../../vdms_main/main_frame.py:552 +msgid "Encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:131 ../../vdms_main/main_frame.py:555 +msgid "Decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:135 ../../vdms_main/main_frame.py:548 +msgid "Muxers and Demuxers" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:165 +msgid "help topic list" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:184 +msgid "Type the argument here and confirm with the enter key on your keyboard" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:192 +msgid "The search function allows you to find entries in the current topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:195 +msgid "Ignore case" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:196 +msgid "Ignore case distinctions: characters with different case will match." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:206 +msgid "FFmpeg help topics" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:254 +msgid "" +"This is a multifunctional search tool useful for local help searches\n" +"on multiple FFmpeg topics and options. The search control, to\n" +"find occurences on text obtained from the chosen argument,\n" +"is very similar to what grep does on the Unix shell, but here\n" +"it's done in real time.\n" +"\n" +"If you don't find support for a certain codec or other feature,\n" +"it's likely that your version of FFmpeg is too old or not configured\n" +"with those features." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:320 ../../vdms_dialogs/ffmpeg_help.py:345 +#: ../../vdms_dialogs/ffmpeg_help.py:371 +msgid "" +"\n" +" ..Nothing available" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:391 +msgid "" +"\n" +" ..Not found" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:91 +msgid "Before" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:97 +msgid "After" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:103 +#: ../../vdms_dialogs/filter_crop.py:239 +msgid "Search for a specific frame" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:117 +#: ../../vdms_dialogs/filter_crop.py:253 +msgid "Load" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:120 +msgid "Color EQ" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:126 +msgid "Contrast:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:134 +#: ../../vdms_dialogs/filter_colorcorrection.py:148 +msgid "-100 to +100, default value 0" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:139 +msgid "Brightness:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:158 +msgid "Saturation:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:166 +msgid "0 to 300, default value 100" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:170 +msgid "Gamma:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:179 +msgid "0 to 100, default value 10" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:187 +#: ../../vdms_dialogs/filter_crop.py:306 +#: ../../vdms_dialogs/filter_deinterlace.py:209 +#: ../../vdms_dialogs/filter_denoisers.py:110 +#: ../../vdms_dialogs/filter_scale.py:210 ../../vdms_dialogs/filter_stab.py:316 +#: ../../vdms_dialogs/filter_transpose.py:105 +#: ../../vdms_miniframes/timeline.py:262 ../../vdms_miniframes/timeline.py:281 +msgid "Reset" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:207 +msgid "Color Correction EQ Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:228 ../../vdms_dialogs/filter_scale.py:109 +msgid "Source size: {0} x {1} pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:236 +msgid "Crop color" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:256 +msgid "Cropping area selection " +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:261 ../../vdms_dialogs/filter_scale.py:121 +msgid "Height" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:281 +msgid "Center" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:292 ../../vdms_dialogs/filter_scale.py:121 +msgid "Width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:334 +msgid "Crop Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:335 +msgid "Choose the color to draw the cropping area" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:337 +msgid "Crop to width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:338 +msgid "Move vertically (set to -1 to center the vertical axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:340 +msgid "Move horizontally (set to -1 to center the horizontal axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:342 +msgid "Crop to height" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:56 +msgid "Advanced Options" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:57 +#: ../../vdms_panels/av_conversions.py:351 +msgid "Deinterlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:59 +msgid "Interlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:63 +msgid "Deinterlaces with w3fdif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:77 +msgid "Deinterlaces with yadif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:101 +msgid "Interlaces with interlace filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:118 +msgid "Deinterlacing and Interlacing" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:144 +msgid "Deinterlace the input video with `w3fdif` filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:146 +msgid "Set the interlacing filter coefficients." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:148 +#: ../../vdms_dialogs/filter_deinterlace.py:158 +msgid "Specify which frames to deinterlace." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:150 +msgid "Deinterlace the input video with `yadif` filter. Using FFmpeg, this is the best and fastest choice" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:153 +msgid "" +"mode\n" +"The interlacing mode to adopt." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:155 +msgid "" +"parity\n" +"The picture field parity assumed for the input interlaced video." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:160 +msgid "Simple interlacing filter from progressive contents." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:162 +msgid "" +"scan:\n" +"determines whether the interlaced frame is taken from the even (tff - default) or odd (bff) lines of the progressive frame." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:166 +msgid "" +"lowpass:\n" +"Enable (default) or disable the vertical lowpass filter to avoid twitter interlacing and reduce moire patterns.\n" +"Default is no setting." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:56 +msgid "Denoiser Filters" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:60 +msgid "Enable nlmeans denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:73 +msgid "nlmeans options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:82 +msgid "Enable hqdn3d denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:91 +msgid "hqdn3d options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:116 +msgid "Denoiser Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:117 +msgid "" +"nlmeans:\n" +"Denoise frames using Non-Local Means algorithm is capable of restoring video sequences, even with strong noise. It is ideal for enhancing the quality of old VHS tapes." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:122 +msgid "" +"hqdn3d:\n" +"This is a high precision/quality 3d denoise filter. It aims to reduce image noise, producing smooth images and making still images really still. It should enhance compressibility." +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:81 +msgid "View result" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:85 +msgid "New size in pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:89 +msgid "Width:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:99 +msgid "Height:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:115 +msgid "Constrain proportions (keep aspect ratio)" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:120 +msgid "Which dimension to adjust?" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:129 +msgid "Aspect Ratio" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:132 +msgid "Setdar filter (display aspect ratio) example 16/9, 4/3 " +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:137 +#: ../../vdms_dialogs/filter_scale.py:171 +msgid "Numerator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:162 +#: ../../vdms_dialogs/filter_scale.py:196 +msgid "Denominator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:166 +msgid "Setsar filter (sample aspect ratio) example 1/1" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:217 +msgid "Resize Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:218 +msgid "Scale filter, set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:221 +msgid "Display Aspect Ratio. Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:224 +msgid "" +"Sample (aka Pixel) Aspect Ratio.\n" +"Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:366 +msgid "" +"If you want to keep the aspect ratio, select \"Constrain proportions\" below and\n" +"specify only one dimension, either width or height, and set the other dimension\n" +"to -1 or -2 (some codecs require -2, so you should do some testing first)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:81 +msgid "Enable stabilizer" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:83 +msgid "Create a side-by-side comparison video" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:88 +msgid "Create a snapshot" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:106 +#: ../../vdms_panels/audio_encoders/acodecs.py:167 +msgid "Preview" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:109 +msgid "Duration seconds:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:118 +msgid "Video Detect" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:176 +msgid "[TRIPOD] Enable tripod mode if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:183 +msgid "Video transform" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:202 +msgid "[OPTALGO] optimization algorithm" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:224 +msgid "[CROP] Specify how to deal with borders at movement compensation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:231 +msgid "[INVERT] Invert transforms if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:234 +msgid "[RELATIVE] Consider transforms as relative to previous frame if checked, absolute if unchecked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:279 +msgid "Specify type of interpolation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:287 +msgid "[TRIPOD2] virtual tripod mode, equivalent to relative=unchecked:smoothing=0" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:294 +msgid "Unsharp filter:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:323 +msgid "Seek to a position on the video." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:325 +msgid "Make a snapshot of the video with the settings made." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:327 +msgid "Set the snapshot duration from 3 to 15 seconds from the seek position, default is 5 seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:331 +msgid "Set how shaky the video is and how quick the camera is. A value of 1 means little shakiness, a value of 10 means strong shakiness. Default value is 5." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:335 +msgid "Set the accuracy of the detection process. A value of 1 means low accuracy, a value of 15 means high accuracy. Default value is 15." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:339 +msgid "Set stepsize of the search process. The region around minimum is scanned with 1 pixel resolution. Default value is 6." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:343 +msgid "Set minimum contrast. Below this value a local measurement field is discarded. The range is 0-1. Default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:346 +msgid "Set reference frame number for tripod mode. If enabled, the motion of the frames is compared to a reference frame in the filtered stream, identified by the specified number. The idea is to compensate all movements in a more-or-less static scene and keep the camera view absolutely still. The frames are counted starting from 1." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:355 +msgid "Set the number of frames (value*2 + 1) used for lowpass filtering the camera movements. Default value is 15. For example a number of 10 means that 21 frames are used (10 in the past and 10 in the future) to smoothen the motion in the video. A larger value leads to a smoother video, but limits the acceleration of the camera (pan/tilt movements). 0 is a special case where a static camera is simulated." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:363 +msgid "Set the camera path optimization algorithm. Values are: `gauss`: gaussian kernel low-pass filter on camera motion (default), and `avg`: averaging on transformations" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:367 +msgid "Set maximal angle in radians (degree*PI/180) to rotate frames. Default value is -1, meaning no limit." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:370 +msgid "Specify how to deal with borders that may be visible due to movement compensation. Values are: `keep` keep image information from previous frame (default), `black` fill the border black" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:375 +msgid "Invert transforms if checked. Default is unchecked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:377 +msgid "Consider transforms as relative to previous frame if checked, absolute if unchecked. Default is checked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:380 +msgid "Set percentage to zoom. A positive value will result in a zoom-in effect, a negative value in a zoom-out effect. Default value is 0 (no zoom)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:384 +msgid "Set optimal zooming to avoid borders. Accepted values are: `0` disabled, `1` optimal static zoom value is determined (only very strong movements will lead to visible borders) (default), `2` optimal adaptive zoom value is determined (no borders will be visible), see zoomspeed. Note that the value given at zoom is added to the one calculated here." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:391 +msgid "Set percent to zoom maximally each frame (enabled when optzoom is set to 2). Range is from 0 to 5, default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:395 +msgid "Specify type of interpolation. Available values are: `no` no interpolation, `linear` linear only horizontal, `bilinear` linear in both directions (default), `bicubic` cubic in both directions (slow)" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:400 +msgid "Enable virtual tripod mode if checked, which is equivalent to relative=0:smoothing=0. Default is unchecked. Use also tripod option of vidstabdetect." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:405 +msgid "Sharpen or blur the input video. Note the use of the unsharp filter which is always recommended." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:409 +msgid "Video Stabilizer Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:541 ../../vdms_io/io_tools.py:57 +#: ../../vdms_io/io_tools.py:99 +msgid "Videomass - Loading..." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:542 +msgid "" +"Please wait,\n" +"This process will take a few seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:80 +#: ../../vdms_dialogs/filter_transpose.py:293 +msgid "Default position" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:86 +msgid "Rotation setting" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:94 +msgid "90° (left)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:96 +msgid "90° (right)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:100 +msgid "180°" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:115 +msgid "Transpose Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:229 +msgid "Rotate 90 degrees right" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:251 +msgid "Rotate 180 degrees" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:272 +msgid "Rotate 90 degrees left" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:82 +msgid "Format" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:96 +msgid "Video Stream" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:109 +msgid "Audio Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:122 +msgid "Subtitle Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:126 +msgid "Copy to clipboard" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:137 +msgid "FILE SELECTION" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:139 ../../vdms_dialogs/mediainfo.py:142 +#: ../../vdms_dialogs/mediainfo.py:145 ../../vdms_dialogs/mediainfo.py:148 +#: ../../vdms_main/main_frame.py:1268 +msgid "Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:140 ../../vdms_dialogs/mediainfo.py:143 +#: ../../vdms_dialogs/mediainfo.py:146 ../../vdms_dialogs/mediainfo.py:149 +msgid "Values" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:152 +msgid "Streams Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:244 +msgid "Unable to open the clipboard on Format tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:263 +msgid "Unable to open the clipboard on Video Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:283 +msgid "Unable to open the clipboard on Audio Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:303 +msgid "Unable to open the clipboard on Subtitle Streams tab" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:92 +msgid "Where do you prefer to save your transcodes?" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:103 ../../vdms_dialogs/preferences.py:130 +#: ../../vdms_dialogs/preferences.py:151 ../../vdms_dialogs/preferences.py:163 +#: ../../vdms_dialogs/preferences.py:175 ../../vdms_dialogs/preferences.py:214 +#: ../../vdms_dialogs/preferences.py:233 ../../vdms_panels/filedrop.py:284 +#: ../../vdms_ytdlp/textdrop.py:153 ../../vdms_ytdlp/ydl_preferences.py:123 +msgid "Change" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:105 +#: ../../vdms_panels/av_conversions.py:1197 ../../vdms_panels/filedrop.py:574 +#: ../../vdms_panels/presets_manager.py:1050 +msgid "Same destination paths as source files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:110 +msgid "Assign optional suffix to destination file names:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:116 +msgid "File removal preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:120 +msgid "Trash the source files after successful encoding" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:133 +#: ../../vdms_ytdlp/ydl_preferences.py:131 +msgid "File Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:140 +msgid "Location of executables" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:142 +msgid "" +"FFmpeg can be built by enabling/disabling its options and this depends on your needs.\n" +"For some use cases it is possible to provide a custom build of FFmpeg where you can specify\n" +"it in this preferences tab." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:149 +msgid "Enable a custom location to run FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:161 +msgid "Enable a custom location to run FFprobe" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:173 +msgid "Enable a custom location to run FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:185 +msgid "FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:191 +msgid "" +"Download videos from YouTube.com and other video sites\n" +"(requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:195 +msgid "" +"Videomass uses the yt-dlp API which can be activated by selecting the checkbox below.\n" +"The next time you restart the application, the yt_dlp module will be loaded into memory." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:201 +msgid "Enable yt-dlp" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:205 +msgid "" +"Enabling a specific location of the yt-dlp executable will give you more control over downloads\n" +"stop actions and the ability to provide other backend locations." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:210 +msgid "Use the executable for downloads rather than API" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:223 +msgid "" +"Import the yt_dlp Python package externally. E.g, you can include the source package\n" +"directory or the path to the package installed in an external virtual environment." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:229 +msgid "Enable external import of yd_dlp package" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:248 +msgid "Look and Feel (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:253 +msgid "Icon themes" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:267 +msgid "At the top of window (default)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:268 +msgid "At the bottom of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:269 +msgid "At the right of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:270 +msgid "At the left of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:272 +msgid "Place the toolbar" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:281 +msgid "Toolbar's icons size:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:295 +msgid "Application Language (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:307 +msgid "Look and Language" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:313 +msgid "Upon exiting the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:318 +msgid "Always ask me to confirm" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:320 +msgid "Clean the log files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:323 +msgid "Remove cached files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:327 +msgid "On operations completion" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:330 +msgid "These settings will remain active until the application is closed, If necessary, remember to reactivate them." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:335 +msgid "Exit the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:338 +msgid "Shutdown the system" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:342 +msgid "SUDO password:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:351 +msgid "Exit and Shutdown" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:357 +msgid "Specify the character encoding format" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:360 +msgid "" +"Although UTF-8 is the default and most widely used standard encoding format, it is not the only encoding format available.\n" +"Some file metadata may still contain non-UTF-8 character encodings resulting in the error \"'utf-8' codec can't decode bytes...\".\n" +"If you know the encoding format the file was written in, you can try specifying it here, e.g. ISO 8859-1, ISO 8859-16, etc." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:370 +msgid "Character encoding:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:379 +msgid "Default application directories" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:383 +msgid "Configuration directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:396 +msgid "Cache directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:408 +msgid "Log directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:422 +msgid "Advanced" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:428 +msgid "" +"The following settings affect output messages and the log messages during transcoding processes.\n" +"Be careful, by changing these settings some functions of the application may not work correctly,\n" +"change only if you know what you are doing.\n" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:435 +msgid "Set logging level flags used by FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:442 +msgid "Set logging level flags used by FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:450 +msgid "FFmpeg logging levels" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:504 +msgid "By assigning an additional suffix you could avoid overwriting files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:507 +msgid "Type sudo password here, only for Unix-like operating systems, not for MS Windows" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:510 +msgid "Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:674 ../../vdms_dialogs/preferences.py:754 +#: ../../vdms_main/main_frame.py:859 ../../vdms_main/main_frame.py:1040 +#: ../../vdms_ytdlp/main_ytdlp.py:398 ../../vdms_ytdlp/ydl_preferences.py:504 +msgid "Choose Destination" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:705 +msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") and the underscore (\"_\"). Spaces are not allowed." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:720 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 +#: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 +#: ../../vdms_panels/av_conversions.py:612 +#: ../../vdms_panels/sequence_to_video.py:350 +#: ../../vdms_panels/video_to_sequence.py:401 +#: ../../vdms_ytdlp/main_ytdlp.py:228 ../../vdms_ytdlp/youtubedl_ui.py:422 +msgid "Videomass - Warning!" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:809 ../../vdms_dialogs/preferences.py:849 +#: ../../vdms_dialogs/preferences.py:889 ../../vdms_dialogs/wizard_dlg.py:351 +#: ../../vdms_dialogs/wizard_dlg.py:368 ../../vdms_dialogs/wizard_dlg.py:385 +msgid "{} location" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:930 +msgid "Open «{}» executable file" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:959 +msgid "Open «yt_dlp» python package directory" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:36 +#: ../../vdms_dialogs/setting_profiles.py:38 +msgid "One-Pass, Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:40 +#: ../../vdms_dialogs/setting_profiles.py:42 +msgid "Two-Pass (optional), Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:59 +msgid "Videomass - Edit the selected item in the queue" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:71 +#: ../../vdms_dialogs/setting_profiles.py:92 +msgid "Pre-input arguments for One-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:82 +#: ../../vdms_dialogs/setting_profiles.py:151 +#: ../../vdms_panels/presets_manager.py:255 +msgid "FFmpeg arguments for one-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:88 +#: ../../vdms_dialogs/setting_profiles.py:158 +#: ../../vdms_panels/presets_manager.py:259 +msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:102 +#: ../../vdms_dialogs/setting_profiles.py:98 +msgid "Pre-input arguments for Two-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:113 +#: ../../vdms_dialogs/setting_profiles.py:152 +#: ../../vdms_panels/presets_manager.py:257 +msgid "FFmpeg arguments for two-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:120 +#: ../../vdms_dialogs/setting_profiles.py:162 +#: ../../vdms_panels/presets_manager.py:263 +msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:65 ../../vdms_main/main_frame.py:518 +#: ../../vdms_panels/presets_manager.py:189 +#: ../../vdms_panels/video_to_sequence.py:171 +#: ../../vdms_ytdlp/main_ytdlp.py:301 +msgid "Edit" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:68 +msgid "Remove" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:71 +msgid "Remove all" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:74 +msgid "" +"Export\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:77 +msgid "" +"Import\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:85 ../../vdms_panels/filedrop.py:273 +msgid "Destination file name" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:137 +msgid "Remove all items in the queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:151 +msgid "Videomass - Queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:228 +msgid "Export queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:296 ../../vdms_panels/av_conversions.py:1192 +#: ../../vdms_panels/presets_manager.py:1044 +#: ../../vdms_panels/video_to_sequence.py:602 +msgid "Same as source" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:301 +msgid "" +"Source\n" +"File destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_dialogs/renamer.py:76 +msgid "# will be replaced by ascending numbers starting with:" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:87 +msgid "Font Size" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:111 +msgid "Font Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:121 +msgid "Shadow Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:132 +msgid "Show text box" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:136 +msgid "Box Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:156 +msgid "The timestamp size does not auto-adjust to the video size, you have to set the size here" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:160 ../../vdms_main/main_frame.py:569 +msgid "Timestamp settings" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:46 +msgid "Supported Formats list (optional). Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:47 +msgid "Output Format. Empty to copy format and codec. Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:70 +msgid "Profile Name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:74 +#: ../../vdms_panels/presets_manager.py:404 +msgid "Description" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:149 +msgid "A short profile name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:150 +msgid "A long description of the profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:153 +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:155 +msgid "Output format extension. Leave empty to copy codec and format" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:256 +msgid "Incomplete profile assignments" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:263 +msgid "Formats must be comma-separated" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:279 +#: ../../vdms_utils/queue_utils.py:80 +msgid "" +"ERROR: Keys mismatched for requested data.\n" +"Invalid file: «{0}»" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 +msgid "Profile already stored with same name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:293 +msgid "Profile stored successfully!" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:311 +msgid "Profile change successful!" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:81 +msgid "Log file list" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:83 ../../vdms_dialogs/showlogs.py:117 +msgid "Log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:106 +msgid "Refresh log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:108 +msgid "Clear log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:161 +msgid "Select a log file" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:168 +msgid "Are you sure you want to clear the selected log file?" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:169 ../../vdms_dialogs/wizard_dlg.py:243 +#: ../../vdms_io/checkup.py:50 ../../vdms_main/main_frame.py:207 +#: ../../vdms_main/main_frame.py:778 ../../vdms_main/main_frame.py:1619 +#: ../../vdms_panels/presets_manager.py:349 +#: ../../vdms_panels/presets_manager.py:550 +#: ../../vdms_panels/presets_manager.py:590 +#: ../../vdms_panels/presets_manager.py:649 +#: ../../vdms_panels/presets_manager.py:684 +#: ../../vdms_panels/presets_manager.py:749 +#: ../../vdms_panels/presets_manager.py:775 +#: ../../vdms_panels/presets_manager.py:874 +#: ../../vdms_panels/presets_manager.py:904 ../../vdms_ytdlp/main_ytdlp.py:201 +#: ../../vdms_ytdlp/ydl_preferences.py:438 ../../vdms_ytdlp/youtubedl_ui.py:609 +#: ../../vdms_ytdlp/youtubedl_ui.py:625 +msgid "Please confirm" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:83 +msgid "File name" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:84 +msgid "Max volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:85 +msgid "Mean volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:86 +msgid "Offset dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:87 +msgid "Result dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:92 +msgid "Post-normalization references:" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:102 +msgid "= Clipped peaks" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:111 +msgid "= No changes" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:121 +msgid "= Below max peak" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:166 +#: ../../vdms_panels/audio_encoders/acodecs.py:838 +msgid "RMS-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:191 +#: ../../vdms_panels/audio_encoders/acodecs.py:836 +msgid "PEAK-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:216 +msgid "" +"...It means the resulting audio will be clipped,\n" +"because its volume is higher than the maximum 0 db\n" +"level. This results in data loss and the audio may\n" +"sound distorted." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:242 +msgid "" +"...It means the resulting audio will not change,\n" +"because it's equal to the source." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:266 +msgid "" +"...It means an audio signal will be produced with\n" +"a lower volume than the source." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:63 +msgid "Get Latest Version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:67 +msgid "Checking for newer version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:95 +msgid "" +"\n" +"\n" +"New releases fix bugs and offer new features." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:96 +msgid "" +"\n" +"\n" +"This is Videomass v.{0}\n" +"\n" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:37 +msgid "" +"q, ESC\n" +"f\n" +"p, SPC\n" +"m\n" +"9, 0\n" +"/, *\n" +"a\n" +"v\n" +"t\n" +"c\n" +"w\n" +"s\n" +"\n" +"left/right\n" +"down/up\n" +"page down/page up\n" +"\n" +"right mouse click\n" +"left mouse double-click" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:92 +msgid "Shortcut keys while playing with FFplay" +msgstr "" + +#: ../../vdms_dialogs/widget_utils.py:120 ../../vdms_main/main_frame.py:1276 +#: ../../vdms_ytdlp/main_ytdlp.py:499 +msgid "Stop" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:65 +msgid "Please take a moment to set up the application" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:66 +msgid "Click the \"Next\" button to get started" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:81 +msgid "Welcome to the Videomass Wizard!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:123 +msgid "Videomass is an application based on FFmpeg\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:125 +msgid "If FFmpeg is not on your computer, this application will be unusable" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:128 +msgid "" +"If you have already installed FFmpeg on your operating\n" +"system, click the \"Auto-detection\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:131 +msgid "" +"If you want to use a version of FFmpeg located on your\n" +"filesystem but not installed on your operating system,\n" +"click the \"Locate\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:153 +msgid "Auto-detection" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:155 +msgid "Locate" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:206 +msgid "Click the \"Next\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:227 +msgid "'{}' is not installed on your computer. Install it or indicate another location by clicking the 'Locate' button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:241 +msgid "" +"Videomass already seems to include FFmpeg.\n" +"\n" +"Do you want to use that?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:267 +msgid "Locating FFmpeg executables\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:269 +msgid "" +"\"ffmpeg\", \"ffprobe\" and \"ffplay\" are required. Complete all\n" +"the text boxes below by clicking on the respective buttons." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:408 +msgid "Videomass has a simple graphical interface for yt-dlp\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:409 +msgid "" +"This feature allows you to download video and audio from\n" +"many sites, including YouTube.com and even Facebook." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:428 +msgid " Do you want to enable this feature?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:458 +msgid "Wizard completed successfully!\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:459 +msgid "Remember that you can always change these settings later, through the Preferences dialog." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:461 +msgid "Thank You!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:462 +msgid "To exit click the \"Finish\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:550 +msgid "< Previous" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:553 ../../vdms_dialogs/wizard_dlg.py:653 +msgid "Next >" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:558 +msgid "Videomass Wizard" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:587 ../../vdms_dialogs/wizard_dlg.py:623 +msgid "Finish" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:615 +msgid "Some text boxes are still incomplete" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:679 +msgid "Re-start is required" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:680 +msgid "Done!" +msgstr "" + +#: ../../vdms_io/checkup.py:47 +msgid "Files already exist, do you want to overwrite them?" +msgstr "" + +#: ../../vdms_io/checkup.py:49 +msgid "Already exist" +msgstr "" + +#: ../../vdms_io/checkup.py:63 +msgid "Not found" +msgstr "" + +#: ../../vdms_io/checkup.py:64 ../../vdms_panels/filedrop.py:196 +#: ../../vdms_ytdlp/textdrop.py:86 +msgid "Error list" +msgstr "" + +#: ../../vdms_io/checkup.py:65 +msgid "File(s) not found" +msgstr "" + +#: ../../vdms_io/checkup.py:74 +msgid "" +"Output folder does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_io/io_tools.py:58 +msgid "" +"Wait....\n" +"Retrieving required data." +msgstr "" + +#: ../../vdms_io/io_tools.py:82 +#, python-format +msgid "File does not exist or is invalid: %s" +msgstr "" + +#: ../../vdms_io/io_tools.py:100 +msgid "" +"Wait....\n" +"Audio peak analysis." +msgstr "" + +#: ../../vdms_io/io_tools.py:205 +msgid "Videomass - Downloading..." +msgstr "" + +#: ../../vdms_main/main_frame.py:188 ../../vdms_main/main_frame.py:1357 +#: ../../vdms_main/main_frame.py:1385 ../../vdms_ytdlp/main_ytdlp.py:98 +#: ../../vdms_ytdlp/main_ytdlp.py:146 ../../vdms_ytdlp/main_ytdlp.py:553 +#: ../../vdms_ytdlp/textdrop.py:233 ../../vdms_ytdlp/youtubedl_ui.py:437 +msgid "Ready" +msgstr "" + +#: ../../vdms_main/main_frame.py:205 +msgid "" +"Not all items in the queue were completed.\n" +"\n" +"Would you like to keep them in the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:226 +msgid "Queue ({0})" +msgstr "" + +#: ../../vdms_main/main_frame.py:231 ../../vdms_main/main_frame.py:1284 +msgid "Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:401 ../../vdms_main/main_frame.py:426 +#: ../../vdms_ytdlp/main_ytdlp.py:225 +msgid "There are still active windows with running processes, make sure you finish your work before exit." +msgstr "" + +#: ../../vdms_main/main_frame.py:408 +msgid "Are you sure you want to exit the application?" +msgstr "" + +#: ../../vdms_main/main_frame.py:410 +msgid "Exit" +msgstr "" + +#: ../../vdms_main/main_frame.py:473 +msgid "Import files\tCtrl+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:476 +msgid "Open destination folder of encodings\tCtrl+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:479 +msgid "Load queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:480 +msgid "Load a previously exported queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:483 +msgid "Open trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:484 +msgid "Open the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:486 +msgid "Empty trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:487 +msgid "Delete all files in the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:490 +msgid "Exit\tCtrl+Q" +msgstr "" + +#: ../../vdms_main/main_frame.py:491 +msgid "Completely exit the application" +msgstr "" + +#: ../../vdms_main/main_frame.py:492 ../../vdms_ytdlp/main_ytdlp.py:284 +msgid "File" +msgstr "" + +#: ../../vdms_main/main_frame.py:496 ../../vdms_panels/filedrop.py:340 +#: ../../vdms_panels/filedrop.py:359 +msgid "Rename selected file\tCtrl+R" +msgstr "" + +#: ../../vdms_main/main_frame.py:497 +msgid "Rename the destination of the selected file" +msgstr "" + +#: ../../vdms_main/main_frame.py:500 ../../vdms_panels/filedrop.py:341 +#: ../../vdms_panels/filedrop.py:362 +msgid "Batch rename files\tCtrl+B" +msgstr "" + +#: ../../vdms_main/main_frame.py:501 +msgid "Numerically renames the destination of all items in the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:506 ../../vdms_panels/filedrop.py:343 +#: ../../vdms_panels/filedrop.py:366 +msgid "Remove selected entry\tDEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:507 +msgid "Remove the selected file from the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:510 ../../vdms_panels/filedrop.py:344 +#: ../../vdms_panels/filedrop.py:369 ../../vdms_ytdlp/main_ytdlp.py:294 +#: ../../vdms_ytdlp/textdrop.py:191 ../../vdms_ytdlp/textdrop.py:212 +msgid "Clear list\tShift+DEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:511 +msgid "Clear the file list" +msgstr "" + +#: ../../vdms_main/main_frame.py:516 +msgid "Preferences\tCtrl+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:517 +msgid "Application preferences" +msgstr "" + +#: ../../vdms_main/main_frame.py:522 +msgid "Find FFmpeg topics" +msgstr "" + +#: ../../vdms_main/main_frame.py:523 +msgid "A useful tool to search for FFmpeg help topics and options" +msgstr "" + +#: ../../vdms_main/main_frame.py:528 +msgid "Check for preset updates" +msgstr "" + +#: ../../vdms_main/main_frame.py:529 +msgid "Check for new presets updates from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:531 +msgid "Get latest presets" +msgstr "" + +#: ../../vdms_main/main_frame.py:532 +msgid "Get the latest presets from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:535 ../../vdms_ytdlp/main_ytdlp.py:305 +msgid "Work notes\tCtrl+N" +msgstr "" + +#: ../../vdms_main/main_frame.py:536 ../../vdms_ytdlp/main_ytdlp.py:306 +msgid "Read and write useful notes and reminders." +msgstr "" + +#: ../../vdms_main/main_frame.py:538 ../../vdms_ytdlp/main_ytdlp.py:308 +msgid "Tools" +msgstr "" + +#: ../../vdms_main/main_frame.py:545 +msgid "Show FFmpeg's built-in configuration capabilities" +msgstr "" + +#: ../../vdms_main/main_frame.py:549 +msgid "Muxers and demuxers available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:553 +msgid "Encoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:556 +msgid "Decoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:559 +msgid "FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:560 +msgid "Enable timestamps on playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:561 +msgid "Displays timestamp when playing media with FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:564 +msgid "Auto-exit after playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:565 +msgid "If checked, the FFplay window will auto-close when playback is complete" +msgstr "" + +#: ../../vdms_main/main_frame.py:569 +msgid "Customize the timestamp style" +msgstr "" + +#: ../../vdms_main/main_frame.py:572 +msgid "While playing..." +msgstr "" + +#: ../../vdms_main/main_frame.py:573 +msgid "Show useful shortcut keys when playing or previewing using FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:577 +msgid "Show timeline editor\tCtrl+T" +msgstr "" + +#: ../../vdms_main/main_frame.py:578 +msgid "Set duration or trim slices of time to remove unwanted parts from your files" +msgstr "" + +#: ../../vdms_main/main_frame.py:582 ../../vdms_ytdlp/main_ytdlp.py:318 +msgid "View" +msgstr "" + +#: ../../vdms_main/main_frame.py:589 +msgid "Home panel\tCtrl+Shift+H" +msgstr "" + +#: ../../vdms_main/main_frame.py:590 +msgid "Go to the «Home» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:593 +msgid "Presets Manager\tCtrl+Shift+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:594 +msgid "Go to the «Presets Manager» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:596 +msgid "A/V Conversions\tCtrl+Shift+V" +msgstr "" + +#: ../../vdms_main/main_frame.py:597 +msgid "Go to the «A/V Conversions» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:599 +msgid "Concatenate Demuxer\tCtrl+Shift+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:600 +msgid "Go to the «Concatenate Demuxer» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:603 +msgid "Still Image Maker\tCtrl+Shift+I" +msgstr "" + +#: ../../vdms_main/main_frame.py:604 +msgid "Go to the «Still Image Maker» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:606 +msgid "From Movie to Pictures\tCtrl+Shift+S" +msgstr "" + +#: ../../vdms_main/main_frame.py:607 +msgid "Go to the «From Movie to Pictures» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:610 +msgid "YouTube Downloader\tCtrl+Shift+Y" +msgstr "" + +#: ../../vdms_main/main_frame.py:611 +msgid "Open «YouTube Downloader» window" +msgstr "" + +#: ../../vdms_main/main_frame.py:613 +msgid "Output monitor\tCtrl+Shift+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:614 +msgid "Keeps track of the output for debugging errors" +msgstr "" + +#: ../../vdms_main/main_frame.py:616 +msgid "Go" +msgstr "" + +#: ../../vdms_main/main_frame.py:620 +msgid "User guide" +msgstr "" + +#: ../../vdms_main/main_frame.py:623 +msgid "Issue tracker" +msgstr "" + +#: ../../vdms_main/main_frame.py:627 +msgid "Check for newer version" +msgstr "" + +#: ../../vdms_main/main_frame.py:628 +msgid "Check for the latest Videomass version" +msgstr "" + +#: ../../vdms_main/main_frame.py:630 +msgid "System version" +msgstr "" + +#: ../../vdms_main/main_frame.py:631 +msgid "Get version about your operating system, version of Python and wxPython." +msgstr "" + +#: ../../vdms_main/main_frame.py:635 +msgid "Show log files\tCtrl+L" +msgstr "" + +#: ../../vdms_main/main_frame.py:636 +msgid "Viewing log messages" +msgstr "" + +#: ../../vdms_main/main_frame.py:640 +msgid "Contribute to the project" +msgstr "" + +#: ../../vdms_main/main_frame.py:644 +msgid "About Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:645 +msgid "Help" +msgstr "" + +#: ../../vdms_main/main_frame.py:709 +msgid "Import files" +msgstr "" + +#: ../../vdms_main/main_frame.py:732 +msgid "No default folder has been set for the destination of the encodings. The current setting is \"Same destination paths as source files\"." +msgstr "" + +#: ../../vdms_main/main_frame.py:764 ../../vdms_main/main_frame.py:789 +msgid "" +"'{}':\n" +"No such file or directory" +msgstr "" + +#: ../../vdms_main/main_frame.py:777 +msgid "Are you sure to empty trash folder?" +msgstr "" + +#: ../../vdms_main/main_frame.py:785 +msgid "" +"'{}':\n" +"There are no files to delete." +msgstr "" + +#: ../../vdms_main/main_frame.py:842 +msgid "Installed release v{0}. A new presets release is available {1}" +msgstr "" + +#: ../../vdms_main/main_frame.py:846 +msgid "Installed release v{0}. No new updates found." +msgstr "" + +#: ../../vdms_main/main_frame.py:876 +msgid "" +"Wait....\n" +"The archive is being downloaded" +msgstr "" + +#: ../../vdms_main/main_frame.py:888 +msgid "Successfully downloaded to \"{0}\"" +msgstr "" + +#: ../../vdms_main/main_frame.py:1100 +msgid "Some changes require restarting the application." +msgstr "" + +#: ../../vdms_main/main_frame.py:1106 +msgid "" +"{0}\n" +"\n" +"Do you want to restart the application now?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1108 +msgid "Restart Videomass?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1157 +msgid "A new release is available - v.{0}\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1160 +msgid "You are using a development version that has not yet been released!\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1163 +msgid "Congratulation! You are already using the latest version.\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1251 +msgid "Previous panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1252 ../../vdms_ytdlp/main_ytdlp.py:477 +msgid "Back" +msgstr "" + +#: ../../vdms_main/main_frame.py:1255 +msgid "Next panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1256 ../../vdms_ytdlp/main_ytdlp.py:482 +msgid "Next" +msgstr "" + +#: ../../vdms_main/main_frame.py:1259 +msgid "Home panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1260 +msgid "Home" +msgstr "" + +#: ../../vdms_main/main_frame.py:1263 +msgid "Play the selected imput file" +msgstr "" + +#: ../../vdms_main/main_frame.py:1264 +msgid "Play" +msgstr "" + +#: ../../vdms_main/main_frame.py:1267 +msgid "Get informative data about imported media streams" +msgstr "" + +#: ../../vdms_main/main_frame.py:1271 +msgid "Start batch processing" +msgstr "" + +#: ../../vdms_main/main_frame.py:1275 ../../vdms_ytdlp/main_ytdlp.py:498 +msgid "Stops current process" +msgstr "" + +#: ../../vdms_main/main_frame.py:1279 +msgid "Add an item to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1280 +msgid "Add to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1283 +msgid "Show queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1356 ../../vdms_panels/presets_manager.py:569 +#: ../../vdms_ytdlp/main_ytdlp.py:145 +msgid "Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:1386 +msgid "Videomass - File List" +msgstr "" + +#: ../../vdms_main/main_frame.py:1403 +msgid "Videomass - AV Conversions" +msgstr "" + +#: ../../vdms_main/main_frame.py:1430 +msgid "Videomass - Presets Manager" +msgstr "" + +#: ../../vdms_main/main_frame.py:1458 +msgid "Videomass - Concatenate Demuxer" +msgstr "" + +#: ../../vdms_main/main_frame.py:1485 +msgid "Videomass - From Movie to Pictures" +msgstr "" + +#: ../../vdms_main/main_frame.py:1512 +msgid "Videomass - Still Image Maker" +msgstr "" + +#: ../../vdms_main/main_frame.py:1594 +#: ../../vdms_panels/audio_encoders/acodecs.py:786 +#: ../../vdms_panels/av_conversions.py:577 ../../vdms_panels/filedrop.py:475 +#: ../../vdms_panels/filedrop.py:588 ../../vdms_panels/sequence_to_video.py:320 +#: ../../vdms_panels/video_to_sequence.py:371 +#: ../../vdms_panels/video_to_sequence.py:503 +msgid "Have to select an item in the file list first" +msgstr "" + +#: ../../vdms_main/main_frame.py:1616 +msgid "" +"An item with the same destination file already exists.\n" +"\n" +"Do you want to replace it by adding the new item to the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1637 +msgid "Videomass - FFmpeg Message Monitoring" +msgstr "" + +#: ../../vdms_main/main_frame.py:1762 +msgid "yt-dlp is disabled. Check your preferences." +msgstr "" + +#: ../../vdms_main/main_frame.py:1765 +msgid "The application requires to be restarted." +msgstr "" + +#: ../../vdms_main/main_frame.py:1768 +msgid "The Python module «yt_dlp» was not found. Make sure you have installed yt-dlp correctly." +msgstr "" + +#: ../../vdms_main/main_frame.py:1795 +msgid "The system will turn off in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1796 +msgid "Videomass - Shutdown!" +msgstr "" + +#: ../../vdms_main/main_frame.py:1803 +msgid "Error while shutting down. Please see file log for details." +msgstr "" + +#: ../../vdms_main/main_frame.py:1815 +msgid "Exiting the application in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1816 +msgid "Videomass - Exiting!" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:46 +msgid "Start point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:48 +msgid "End point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:105 +msgid "Hours" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:106 +msgid "Minutes" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:107 +msgid "Seconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:108 +msgid "Milliseconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:189 ../../vdms_miniframes/timeline.py:312 +msgid "No source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:208 ../../vdms_miniframes/timeline.py:298 +#: ../../vdms_miniframes/timeline.py:333 ../../vdms_miniframes/timeline.py:338 +#: ../../vdms_miniframes/timeline.py:441 +msgid "{0} {1} | Segment Duration: {2}" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:260 ../../vdms_miniframes/timeline.py:277 +msgid "End adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:261 ../../vdms_miniframes/timeline.py:279 +msgid "Start adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:320 +msgid "Source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:387 +msgid "WARNING: Invalid selection, out of range." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:461 +msgid "" +"Start by dragging the bottom left handle,\n" +"or right-click for options." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:497 +msgid "Start" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:498 +msgid "End" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:548 +msgid "" +"The timeline editor is a tool that allows you to trim slices of time on selected imported media (see File List panel).\n" +"\n" +"The \"time format\" used to report durations is expressed in hours, minutes, seconds and milliseconds (HH:MM:SS.ms).\n" +"\n" +"Note that importing new files, making new selection, deselection, deleting items, sorting items (ie by LEFT clicking on the column headers), will reset any previous settings to default values.\n" +"\n" +"If the File List panel is empty or no source files are selected, the overall duration values will be set to 23:59:59.999, rather than the duration of a selected source file (see status bar messages).\n" +"\n" +"The \"Start\"/\"End\" duration values always refer to the initial position of the timeline: 00:00:00.000. For other informations as the segment duration and warnings, please refer to the status bar messages." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:565 +msgid "Timeline Editor Usage" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:153 +msgid "Media:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:169 +msgid "Container:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:180 +msgid "Save profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:183 +msgid "Target" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:316 +msgid "Miscellaneous" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:323 +msgid "Save as a new profile of the Presets Manager." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:325 +msgid "Available video encoders. \"Copy\" means that the video stream will not be re-encoded and will allow you (depending on the encoder) to change the container, audio codec and a few other parameters." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:330 +msgid "" +"Container format. It is usually represented by the file extension (output format).\n" +"\n" +"If the Media target is set to \"Video\" and the Video Encoder to \"Copy\", optionally you can set this control to \"Copy\" the same container as source file.\n" +"\n" +"If the media target is set to \"Audio\", you can extract only the audio streams from videos, or simply convert audio source files." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:338 +msgid "" +"Set output files target: \"Video\" to save output files as video files; \"Audio\" to save files using an audio encoder and format.\n" +"\n" +"Note that by using \"Audio\" as the target, you will still be able to work on the video source files but you will only be able to extract the audio streams, convert them and apply audio filters such as normalization." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:346 +msgid "Preview video filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:347 +msgid "Disable active filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:348 +#: ../../vdms_panels/sequence_to_video.py:155 +#: ../../vdms_panels/video_to_sequence.py:113 +msgid "Resize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:349 +msgid "Crop" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:350 +msgid "Transpose" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:352 +msgid "Denoise" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:353 +msgid "Stabilize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:354 +msgid "Equalize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:517 +msgid "Unable to preview Video Stabilizer filter" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:602 +msgid "" +"Unsupported file:\n" +"Missing decoder or library? Check FFmpeg configuration." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:611 +#: ../../vdms_panels/sequence_to_video.py:349 +#: ../../vdms_panels/video_to_sequence.py:400 +msgid "The file is not a frame or a video file" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:433 +#: ../../vdms_panels/av_conversions.py:861 +msgid "Undetected volume values! Click the \"Volume detect\" button to analyze audio volume data." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1186 +msgid "Off" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1203 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Video Codec\n" +"Audio Codec\n" +"Audio Normalization\n" +"Output multimedia type\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1246 +#: ../../vdms_panels/presets_manager.py:814 +msgid "Write profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1266 +#: ../../vdms_panels/presets_manager.py:513 +msgid "Enter name for new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1276 +#: ../../vdms_panels/presets_manager.py:524 +msgid "Invalid file name, make sure to provide a valid name including the «.json» extension" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1284 +msgid "Cannot save current data in file «{}»." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1289 +msgid "Open Videomass preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1307 +msgid "Videomass - Save new profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1308 +msgid "Where do you want to save this profile?" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1309 +msgid "Save the profile to a new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1310 +msgid "Save the profile to an existing preset" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:71 +msgid "Welcome to Videomass" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:73 +msgid "Version {}" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:84 +msgid "Presets Manager" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:87 +msgid "AV-Conversions" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:90 +msgid "Concatenate media files" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:93 +msgid "YouTube Downloader" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:96 +msgid "Still Image Maker" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:99 +msgid "From Movie to Pictures" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:117 +msgid "Create, edit and use quickly your favorite FFmpeg presets and profiles with full formats support and codecs." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:121 +msgid "A set of useful tools for audio and video conversions. Save your profiles and reuse them with Presets Manager." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:125 +msgid "Easily download videos and audio in different formats and quality from YouTube, Facebook and more sites." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:129 +msgid "Concatenate multiple media files based on import order without re-encoding" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:132 +msgid "Create video from a sequence of images, based on import order, with the ability to add an audio file." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:135 +msgid "Extract images (frames) from your movies in JPG, PNG, BMP, GIF formats." +msgstr "" + +#: ../../vdms_panels/concatenate.py:47 +msgid "At least two files are required to perform concatenation." +msgstr "" + +#: ../../vdms_panels/concatenate.py:63 +msgid "Invalid data found" +msgstr "" + +#: ../../vdms_panels/concatenate.py:68 +msgid "The files do not have the same \"codec_types\", same \"sample_rate\" or same \"width\" or \"height\". Unable to proceed." +msgstr "" + +#: ../../vdms_panels/concatenate.py:84 +msgid "" +"\n" +"- The concatenation function is performed only with Audio files or only with Video files.\n" +"\n" +"- The order of concatenation depends on the order in which the files were added.\n" +"\n" +"- The output file name will have the same name as the first file added (also depends on the\n" +" settings made in the preferences dialog or the renaming functions used).\n" +"\n" +"- Video files must have exactly same streams, same codecs and same\n" +" width/height, but can be wrapped in different container formats.\n" +"\n" +"- Audio files must have exactly the same formats, same codecs with equal sample rate." +msgstr "" + +#: ../../vdms_panels/concatenate.py:125 +msgid "For more details, see the Videomass User Guide:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:145 +#: ../../vdms_panels/sequence_to_video.py:208 +#: ../../vdms_panels/video_to_sequence.py:181 +msgid "For more information, visit the official FFmpeg documentation:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:264 +msgid "" +"Items to concatenate\n" +"File destination\n" +"Output Format\n" +"Output multimedia type\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:45 +msgid "File has illegal characters like:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:46 +msgid "Invalid character found in path name: (\")" +msgstr "" + +#: ../../vdms_panels/filedrop.py:47 +msgid "Directories are not allowed, just add files, please." +msgstr "" + +#: ../../vdms_panels/filedrop.py:48 +msgid "File without format extension: please give an appropriate extension to the file name, example '.mkv', '.avi', '.mp3', etc." +msgstr "" + +#: ../../vdms_panels/filedrop.py:84 +msgid "Name has illegal characters like: {0}" +msgstr "" + +#: ../../vdms_panels/filedrop.py:85 +msgid "Name already in use:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:185 +msgid "Duplicate file, it has already been added to the list." +msgstr "" + +#: ../../vdms_panels/filedrop.py:197 +msgid "Rejected files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:269 +msgid "Source file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:270 +msgid "Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:271 +msgid "Media type" +msgstr "" + +#: ../../vdms_panels/filedrop.py:272 ../../vdms_ytdlp/formatcode.py:137 +msgid "Size" +msgstr "" + +#: ../../vdms_panels/filedrop.py:275 ../../vdms_panels/filedrop.py:383 +msgid "Drag one or more files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:282 ../../vdms_ytdlp/textdrop.py:143 +msgid "Save to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:306 +msgid "Set a new destination folder for encodings" +msgstr "" + +#: ../../vdms_panels/filedrop.py:308 +msgid "Encodings destination folder" +msgstr "" + +#: ../../vdms_panels/filedrop.py:338 ../../vdms_panels/filedrop.py:372 +msgid "Play file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:386 +msgid "Drag two or more Audio/Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:390 +msgid "Drag one or more Image files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:393 +msgid "Drag one or more Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:595 +msgid "Rename the file destination" +msgstr "" + +#: ../../vdms_panels/filedrop.py:596 +msgid "Rename the selected file to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:610 ../../vdms_panels/filedrop.py:620 +#: ../../vdms_panels/filedrop.py:651 +msgid "Add Files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:627 +msgid "Rename in batch" +msgstr "" + +#: ../../vdms_panels/filedrop.py:628 +msgid "Rename the {0} items to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:630 +msgid "New Name #" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:114 +#: ../../vdms_ytdlp/long_task_ytdlp.py:47 +msgid "Sorry, all task failed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:115 +#: ../../vdms_ytdlp/long_task_ytdlp.py:48 +msgid "The process was stopped due to a fatal error." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:116 +#: ../../vdms_ytdlp/long_task_ytdlp.py:49 +msgid "Interrupted Process !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:117 +#: ../../vdms_ytdlp/long_task_ytdlp.py:50 +msgid "Successfully completed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:118 +#: ../../vdms_ytdlp/long_task_ytdlp.py:51 +msgid "Not everything was successful." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:149 +msgid "Encoding Status" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:153 +#: ../../vdms_ytdlp/long_task_ytdlp.py:86 +msgid "Current Log" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:360 +#: ../../vdms_ytdlp/long_task_ytdlp.py:270 +msgid "Fatal Error !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:369 +#: ../../vdms_ytdlp/long_task_ytdlp.py:279 +msgid "Get your files at the destination you specified" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:383 +msgid "For more details please read the Current Log." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:386 +#: ../../vdms_ytdlp/long_task_ytdlp.py:299 +msgid "...Finished" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:405 +#: ../../vdms_ytdlp/long_task_ytdlp.py:313 +msgid "Please wait... interruption in progress" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:408 +msgid "...Interrupted" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:166 +msgid "Presets" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:180 +msgid "Write" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:184 +msgid "Delete" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:194 +msgid "Duplicate" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:199 +msgid "Profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:206 +msgid "One-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:218 +msgid "Two-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:232 +msgid "Choose a preset and view its profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:233 +msgid "Write a new profile and save it in the selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:235 +msgid "Delete the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:236 +msgid "Edit the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:237 +msgid "Duplicate the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:238 +msgid "Create new preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:240 +msgid "Remove selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:242 +msgid "Backup selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:244 +msgid "Backup the presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:246 +msgid "Restore a preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:248 +msgid "Restore a presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:250 +msgid "Resets the selected preset to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:252 +msgid "Reset all presets to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:254 +msgid "Refresh the presets list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:338 +msgid "" +"Outdated presets version found: v{1}\n" +"A new version is available: v{0}\n" +"\n" +"This update provides new presets included on the latest versions of Videomass.\n" +"\n" +"To avoid data loss and allow for possible recovery, the outdated presets folder will be backed up in the program configuration directory:\n" +"«{2}»\n" +"\n" +"Do you want to perform this update now?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:403 +msgid "Name" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:405 +msgid "Output Format" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:406 +msgid "Supported Format List" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:531 +msgid "Cannot save current data in file '{}'." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:535 +msgid "You just successfully created a new preset!" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:547 +msgid "" +"Are you sure you want to remove \"{}\" preset?\n" +"\n" +" It will be moved to the \"Removals\" subfolder inside the presets folder." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:558 +msgid "" +"{}\n" +"\n" +"Sorry, removal failed, cannot continue.." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:568 +msgid "The preset \"{0}\" was successfully removed" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:583 +#: ../../vdms_panels/presets_manager.py:612 +msgid "Open a destination folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:588 +msgid "A file with this name already exists, do you want to overwrite it?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:602 +#: ../../vdms_panels/presets_manager.py:622 +msgid "Backup completed successfully" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:631 +msgid "Open the preset you want to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:645 +msgid "" +"This preset already exists and is about to be updated. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:663 +msgid "Restore successful" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:681 +msgid "" +"This will update the presets database. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:689 +msgid "Open the presets folder to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:725 +msgid "The presets database has been successfully updated" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:740 +msgid "The selected preset is not part of Videomass's default presets." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:745 +msgid "" +"Be careful! The selected preset will be overwritten with the default one. Your profiles may be deleted!\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:760 +#: ../../vdms_panels/presets_manager.py:794 +msgid "Successful recovery" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:769 +msgid "" +"Be careful! This action will restore all presets to default ones. Your profiles may be deleted!\n" +"\n" +"In any case, to avoid data loss, the presets folder will be backed up in the program's configuration directory.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:833 +msgid "Edit profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:872 +msgid "Are you sure you want to delete the selected profile? It will no longer be possible to recover it." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:891 +msgid "First select a profile in the list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:899 +msgid "" +"The selected profile command has been changed manually.\n" +"Do you want to apply it during the conversion process?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:909 +msgid "Don't show this dialog again" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:1054 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Profile Used\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:54 +msgid "Images need to be resized, please use Resize function." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:73 +msgid "" +"\n" +"1. Import one or more image files such as JPG, PNG and BMP formats, then select one.\n" +"\n" +"2. Use the Resize tool for images which have different sizes such as width and\n" +"height. It is optional in other cases.\n" +"\n" +"3. Use the Timeline editor (CTRL+T) to set the time interval between images by adjusting\n" +"the \"End\" duration value and leaving the \"Start\" value at 00:00:00.000.\n" +"\n" +"4. Run the conversion.\n" +"\n" +"\n" +"The produced video will have the name of the selected file in the 'File List' panel, which\n" +"will be saved in a folder named 'Still_Images' with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:129 +msgid "Enable a single still image" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:161 +msgid "" +"Force original aspect ratio using\n" +"padding rather than stretching" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:167 +msgid "Include audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:170 +msgid "Play the video until audio track finishes" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:177 +#: ../../vdms_panels/sequence_to_video.py:437 +msgid "Open audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:195 +msgid "Additional arguments" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:452 +msgid "Open Audio File" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:464 +msgid "" +"Invalid file: '{}'\n" +"\n" +"{}" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:469 +msgid "" +"Invalid file: '{}'\n" +"\n" +"It doesn't appear to be an audio file." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:558 +#: ../../vdms_panels/sequence_to_video.py:585 +#: ../../vdms_panels/video_to_sequence.py:513 +msgid "Invalid file: '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:568 +#: ../../vdms_panels/sequence_to_video.py:593 +msgid "Unsupported format '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:574 +#: ../../vdms_panels/sequence_to_video.py:598 +msgid "" +"File does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:575 +msgid "ERROR" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:705 +msgid "Shortest" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:713 +msgid "" +"Items to concatenate\n" +"Output filename\n" +"Destination\n" +"Output Format\n" +"Additional arguments\n" +"Audio file\n" +"Shortest\n" +"Resize\n" +"Pre-input\n" +"Frame per Second (FPS)\n" +"Still image duration\n" +"Overall video duration" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:50 +msgid "" +"\n" +"1. Import one or more video files, then select one.\n" +"\n" +"2. To select a slice of time use the Timeline editor (CTRL+T) by adjusting the\n" +"\"End\" and the \"Start\" duration values.\n" +"\n" +"3. Select an output format (jpg, png, bmp).\n" +"\n" +"4. Start the conversion.\n" +"\n" +"\n" +"The images produced will be saved in a folder named 'Movie_to_Pictures'\n" +"with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:86 +msgid "Create thumbnails" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:87 +msgid "Create tiled mosaics" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:88 +msgid "Create animated GIF" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:90 ../../vdms_ytdlp/main_ytdlp.py:492 +msgid "Options" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:119 +msgid "Output format:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:131 +msgid "Rows:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:141 +msgid "Columns:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:207 +msgid "Other unofficial resources:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:231 +msgid "Set FPS control from 0.1 to 30.0 fps. The higher this value, the more images will be extracted." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:234 +msgid "Spaces around the mosaic tiles. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:236 +msgid "Spaces around the mosaic borders. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:628 +msgid "" +"Selected File\n" +"Output Format\n" +"Destination\n" +"Rate (fps)\n" +"Resizing\n" +"Mosaic rows\n" +"Mosaic columns\n" +"Mosaic padding\n" +"Mosaic margin\n" +"Custom Arguments\n" +"Start of segment\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:118 +msgid "Audio encoder settings, mapping and filters" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:128 +msgid "Audio Encoder" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:137 +msgid "Settings" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:148 +msgid "Index Selection:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:157 +msgid "Map:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:180 +msgid "Normalization" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:191 +msgid "Volume detect" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:195 +msgid "Volume Statistics" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:199 +msgid "Target level:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:263 +msgid "Gets maximum volume and average volume data in dBFS, then calculates the offset amount for audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:266 +msgid "Limiter for the maximum peak level or the mean level (when switch to RMS) in dBFS. From -99.0 to +0.0; default for PEAK level is -1.0; default for RMS is -20.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:270 +msgid "" +"Normally on a video with correctly indexed streams and having one or more audio streams, the first audio stream should be indexed at \"1\", the second at \"2\" and so on (the video stream on the other hand is always indexed at \"0\"). In this case it is recommended to select the desired stream by setting a specific index, e.g \"1\" for for the first available audio stream.\n" +"\n" +"Set this control to \"Auto\" if the source file is simply an audio track." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:279 +msgid "" +"\"Auto\" keeps all audio streams and processes only the one selected by the \"Index Selection\" control.\n" +"\n" +"\"All\" processes all audio streams in a video with the properties of the one selected by the \"Index Selection\" control.\n" +"\n" +"\"Index Only\" processes only the audio stream selected by the \"Index Selection\" control and removes all others from the video" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:287 +msgid "Integrated Loudness Target in LUFS. From -70.0 to -5.0, default is -16.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:290 +msgid "Maximum True Peak in dBTP. From -1.5 to +0.0, default is -2.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:293 +msgid "Loudness Range Target in LUFS. From +1.0 to +20.0, default is +11.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:296 +msgid "Play the audio stream selected in the \"Index Selection\" control. Using this function you can test the result of audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:502 +msgid "Selected index does not exist or does not contain any audio streams" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:507 +msgid "" +"ERROR: Missing audio stream:\n" +"\"{}\"" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:589 +msgid "No Audio" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:723 +msgid "PEAK level normalization, which will produce a maximum peak level equal to the set target level." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:726 +msgid "RMS-based normalization, which according to mean volume calculates the amount of gain to reach same average power signal." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:730 +msgid "" +"Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements the EBU R128 algorithm.\n" +"Ideal for live normalization. It produces worse results than the High-quality two-pass Loudnorm normalization, but is faster." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:737 +msgid "" +"High-quality two-pass Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements\n" +"the EBU R128 algorithm. Ideal for postprocessing." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:63 +msgid "Subtitle Mapping" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:77 +msgid "Copy Chapters" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:79 +msgid "Copy Metadata" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:85 +msgid "" +"Select \"All\" to include any source file subtitles in the output video.\n" +"\n" +"Select \"None\" to exclude any subtitles stream in the output video.\n" +"\n" +"This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:90 +msgid "Copy the chapter markers as is from source file. This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:93 +msgid "Copy all incoming metadata from source file, such as audio/video tags, titles, unique marks, and so on." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:108 +msgid "Additional options" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:89 +#: ../../vdms_panels/video_encoders/av1_svt.py:120 +#: ../../vdms_panels/video_encoders/avc_x264.py:90 +#: ../../vdms_panels/video_encoders/hevc_x265.py:98 +#: ../../vdms_panels/video_encoders/mpeg4.py:71 +#: ../../vdms_panels/video_encoders/vp9_webm.py:131 +msgid "Reload" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:101 +#: ../../vdms_panels/video_encoders/av1_svt.py:129 +#: ../../vdms_panels/video_encoders/avc_x264.py:101 +#: ../../vdms_panels/video_encoders/hevc_x265.py:109 +#: ../../vdms_panels/video_encoders/mpeg4.py:82 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:97 +#: ../../vdms_panels/video_encoders/vp9_webm.py:141 +msgid "Optimize for Web" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:247 +#: ../../vdms_panels/video_encoders/av1_svt.py:313 +#: ../../vdms_panels/video_encoders/avc_x264.py:242 +#: ../../vdms_panels/video_encoders/hevc_x265.py:250 +#: ../../vdms_panels/video_encoders/mpeg4.py:198 +#: ../../vdms_panels/video_encoders/vp9_webm.py:288 +msgid "Reloads the selected video encoder settings. Changes will be discarded." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:250 +#: ../../vdms_panels/video_encoders/avc_x264.py:273 +#: ../../vdms_panels/video_encoders/hevc_x265.py:277 +#: ../../vdms_panels/video_encoders/vp9_webm.py:291 +msgid "Constant rate factor. Lower values correspond to higher quality and greater file size. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:254 +#: ../../vdms_panels/video_encoders/av1_svt.py:357 +#: ../../vdms_panels/video_encoders/vp9_webm.py:295 +msgid "Number of tile rows to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:256 +#: ../../vdms_panels/video_encoders/av1_svt.py:359 +#: ../../vdms_panels/video_encoders/vp9_webm.py:297 +msgid "Number of tile columns to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:259 +#: ../../vdms_panels/video_encoders/av1_svt.py:368 +#: ../../vdms_panels/video_encoders/avc_x264.py:253 +#: ../../vdms_panels/video_encoders/hevc_x265.py:261 +#: ../../vdms_panels/video_encoders/mpeg4.py:201 +#: ../../vdms_panels/video_encoders/vp9_webm.py:300 +msgid "Set the Group Of Picture (GOP). Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:262 +#: ../../vdms_panels/video_encoders/av1_svt.py:371 +#: ../../vdms_panels/video_encoders/avc_x264.py:256 +#: ../../vdms_panels/video_encoders/hevc_x265.py:264 +#: ../../vdms_panels/video_encoders/mpeg4.py:204 +#: ../../vdms_panels/video_encoders/vp9_webm.py:303 +msgid "It can reduce the file size, but takes longer." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:264 +#: ../../vdms_panels/video_encoders/av1_svt.py:373 +#: ../../vdms_panels/video_encoders/avc_x264.py:258 +#: ../../vdms_panels/video_encoders/hevc_x265.py:266 +#: ../../vdms_panels/video_encoders/mpeg4.py:206 +#: ../../vdms_panels/video_encoders/vp9_webm.py:305 +msgid "Set minimum bitrate tolerance. Most useful in setting up a CBR encode. It is of little use otherwise. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:268 +#: ../../vdms_panels/video_encoders/av1_svt.py:377 +#: ../../vdms_panels/video_encoders/avc_x264.py:262 +#: ../../vdms_panels/video_encoders/hevc_x265.py:270 +#: ../../vdms_panels/video_encoders/mpeg4.py:210 +#: ../../vdms_panels/video_encoders/vp9_webm.py:309 +msgid "Specifies a maximum tolerance. Requires bufsize to be set. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:271 +#: ../../vdms_panels/video_encoders/av1_svt.py:380 +#: ../../vdms_panels/video_encoders/avc_x264.py:265 +#: ../../vdms_panels/video_encoders/hevc_x265.py:273 +#: ../../vdms_panels/video_encoders/mpeg4.py:213 +#: ../../vdms_panels/video_encoders/vp9_webm.py:312 +msgid "Set ratecontrol buffer size, which determines the variability of the output bitrate. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:275 +#: ../../vdms_panels/video_encoders/av1_svt.py:384 +#: ../../vdms_panels/video_encoders/avc_x264.py:277 +#: ../../vdms_panels/video_encoders/hevc_x265.py:281 +#: ../../vdms_panels/video_encoders/mpeg4.py:231 +#: ../../vdms_panels/video_encoders/vp9_webm.py:316 +msgid "Specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:279 +#: ../../vdms_panels/video_encoders/av1_svt.py:388 +#: ../../vdms_panels/video_encoders/avc_x264.py:281 +#: ../../vdms_panels/video_encoders/hevc_x265.py:285 +#: ../../vdms_panels/video_encoders/mpeg4.py:235 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:131 +#: ../../vdms_panels/video_encoders/vp9_webm.py:320 +msgid "Video width and video height ratio." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:281 +#: ../../vdms_panels/video_encoders/av1_svt.py:390 +#: ../../vdms_panels/video_encoders/avc_x264.py:283 +#: ../../vdms_panels/video_encoders/hevc_x265.py:287 +#: ../../vdms_panels/video_encoders/mpeg4.py:237 +#: ../../vdms_panels/video_encoders/vp9_webm.py:322 +msgid "Frame rate (frames per second). Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:285 +msgid "Quality/Speed ratio modifier. CPU Used sets how efficient the compression will be. Lower values mean slower encoding with better quality, and vice-versa. Valid values are from 0 to 8 inclusive." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:290 +msgid "Quality and compression efficiency vs speed trade-off. \"good\" is the default and recommended for most applications; \"realtime\" is recommended for live/fast encoding (live streaming, video conferencing, etc); \"allintra\" for All Intra encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:297 +msgid "" +"Row Multi-Threading enables row-based multi-threading which maximizes CPU usage.\n" +"\n" +"To enable fast decoding performance, also set tiles (i.e. Tile Columns 4 and Tile Rows 1 or Tile Columns 2 and Tile Rows 2 for 4 tiles).\n" +"\n" +"Enabling Row Multi-Threading is only faster when the CPU has more threads than the number of encoded tiles." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:316 +msgid "" +"presets 1-3 represent extremely high efficiency, for use when encode time is not important and quality/size of the resulting video file is critical.\n" +"\n" +"Presets 4-6 are commonly used by home enthusiasts as they represent a balance of efficiency and reasonable compute time.\n" +"\n" +"Presets between 7 and 12 are used for fast and real-time encoding.\n" +"\n" +"Preset 13 is even faster but not intended for direct human consumption--it can be used, for example, as a per-scene quality metric in VOD applications. One should use the lowest preset that is tolerable." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:327 +msgid "" +"Constant rate factor. This parameter governs the quality/size trade-off.\n" +"\n" +"Higher CRF values will result in a final output that takes less space, but begins to lose detail.\n" +"\n" +"Lower CRF values retain more detail at the cost of larger file sizes. A good starting point for 1080p video is 30.\n" +"\n" +"Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:334 +msgid "" +"The \"Film Grain\" parameter allows SVT-AV1 to detect and delete film grain from the source video, and replace it with synthetic grain of the same character, resulting in significant bitrate savings.\n" +"\n" +"A value of 8 is a reasonable starting point for live-action video with a normal amount of grain.\n" +"\n" +"Higher values in the range of 10-15 enable more aggressive use of this technique for video with lots of natural grain.\n" +"\n" +"For 2D animation, lower values in the range of 4-6 are often appropriate. \n" +"\n" +"If the source video does not have natural grain, this parameter can be set to -1 to disable it or at least 0." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:346 +msgid "" +"If enabled, the \"Film Grain Denoiser\" option can mitigate the detail removal caused by high \"Film Grain\" values required to preserve the look of very grainy films\n" +"\n" +"By default, the denoised frames are passed to be encoded as the final pictures, enabling this feature will lead to the original frames to be used instead. " +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:353 +msgid "Enables encoder optimization to produce faster (less CPU intensive) bit streams to decode, similar to the fastdecode tuning in x264 and x265." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:362 +#: ../../vdms_panels/video_encoders/avc_x264.py:247 +#: ../../vdms_panels/video_encoders/hevc_x265.py:255 +msgid "Set profile restrictions" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:364 +#: ../../vdms_panels/video_encoders/avc_x264.py:249 +#: ../../vdms_panels/video_encoders/hevc_x265.py:257 +msgid "Specify level for a selected profile" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:366 +#: ../../vdms_panels/video_encoders/avc_x264.py:251 +#: ../../vdms_panels/video_encoders/hevc_x265.py:259 +msgid "Tune the encoding params" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:245 +#: ../../vdms_panels/video_encoders/hevc_x265.py:253 +msgid "Set the encoding preset (default \"medium\")" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:269 +msgid "specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:217 +msgid "Variable Bit Rate. From 0-30, with 1 being highest quality/largest filesize and 30 being the lowest quality/smallest filesize. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:222 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:133 +msgid "Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:226 +msgid "The default FourCC stored in an MPEG-4-coded file will be FMP4. If you want a different FourCC, set this option to xvid to force the FourCC xvid to be stored as the video FourCC rather than the default." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:162 +msgid "Copy Video Codec" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:163 +msgid "" +"This will just copy the video track as is, without any video re-encoding.\n" +"You will only be able to change output format, select other audio encoders and\n" +"a few other options." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:74 +msgid "Video export disabled" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:75 +msgid "" +"The Media target you just selected will only allow you to export files as audio tracks.\n" +"You can then process audio source files only or extract indexed audio streams on\n" +"video files." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:326 +msgid "" +"Speed sets how efficient the compression will be.\n" +"\n" +"When the Quality parameter is \"good\" or \"best\", values for Speed can be set between 0 and 5.\n" +"\n" +"Using 1 or 2 will increase encoding speed at the expense of having some impact on quality and rate control accuracy.\n" +"\n" +"4 or 5 will turn off rate distortion optimization, having even more of an impact on quality.\n" +"\n" +"When the Quality is set to realtime, the available values for Speed are 0 to 8." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:335 +msgid "" +"Time to spend encoding.\n" +"\n" +"\"good\" is the default and recommended for most applications;\n" +"\n" +"\"best\" is recommended if you have lots of time and want the best compression efficiency;\n" +"\n" +"\"realtime\" is recommended for live / fast encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:341 +msgid "If enabled, adds support for row based multithreading which greatly enhances the number of threads the encoder can utilise. This improves encoding speed significantly on systems that are otherwise underutilised when encoding VP9. Since the amount of additional threads depends on the number of \"tiles\", which itself depends on the video resolution, encoding higher resolution videos will see a larger performance improvement." +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:46 +msgid "Supports ({0}) formats only, not ({1})" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:49 +msgid "File formats not supported by the selected profile" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:52 +msgid "Warning" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:90 +msgid "" +"No presets found.\n" +"\n" +"Possible solution: open the Presets Manager panel, go to the presets column and try to click the \"Restore all...\" button" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:54 +msgid "Import queue file" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:89 +msgid "" +"ERROR: invalid data found loading queue file.\n" +"«{0}»\n" +"\n" +"Cannot contain multiple occurrences in `destination` keys value." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:118 +msgid "Videomass - Add Items to Queue" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:119 +msgid "" +"Multiple items with identical names and destination paths cannot coexist.\n" +"Please choose one of the following actions:" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:123 +msgid "Replace occurrences with items from the imported queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:124 +msgid "Add only the currently missing items to the queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:125 +msgid "Remove the current queue and replace it with the imported one." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:98 ../../vdms_ytdlp/youtubedl_ui.py:118 +msgid "At least one \"Format Code\" must be checked for each URL selected in green." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:129 +msgid "Format Code" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:130 ../../vdms_ytdlp/textdrop.py:59 +msgid "Url" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:131 +msgid "Title" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:132 +msgid "Extension" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:133 +msgid "Resolution" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:134 +msgid "Video Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:135 +msgid "fps" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:136 +msgid "Audio Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:142 +msgid "Don't merge any files" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:145 +msgid "Download only the best selected qualities" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:249 +msgid "" +"ERROR: Unable to get format codes.\n" +"\n" +"Unsupported URL:\n" +"'{0}'" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:45 +msgid "[Videomass]: SUCCESS !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:46 +msgid "[Videomass]: FAILED !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:79 +msgid "Download Status" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:287 +#: ../../vdms_ytdlp/long_task_ytdlp.py:294 +msgid "Check the current output or read the related log file for more information." +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:328 +msgid "Done" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:198 +msgid "Do you want to close the active view keeping the data in memory and any background processes?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:232 +msgid "" +"Are you sure you want to exit this window?\n" +"All data will be lost" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:234 +msgid "Quit YouTube Downloader?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:273 +msgid "Open destination folder of downloads\tCtrl+D" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:276 +msgid "Close view\tCtrl+W" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:277 +msgid "Close the active view keeping the data in memory and any background processes" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:281 +msgid "Quit YouTube Downloader\tCtrl+Q" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:282 +msgid "Exit the window by deleting all data in memory" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:288 ../../vdms_ytdlp/textdrop.py:189 +#: ../../vdms_ytdlp/textdrop.py:206 +msgid "Paste\tCtrl+V" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:289 +msgid "Paste the copied URLs to clipboard" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:291 ../../vdms_ytdlp/textdrop.py:190 +#: ../../vdms_ytdlp/textdrop.py:209 +msgid "Remove selected URL\tDEL" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:292 +msgid "Remove the selected URL from the list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:295 +msgid "Clear the URL list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:299 +msgid "Options\tCtrl+P" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:300 ../../vdms_ytdlp/main_ytdlp.py:491 +msgid "YouTube Downloader options" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:312 +msgid "Version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:313 +msgid "Shows the version in use" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:315 +msgid "Latest version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:316 +msgid "Check the latest version available on github.com" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:372 +msgid "You are using \"yt-dlp\" version {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:389 +msgid "\"yt-dlp\": Latest version available: {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:476 +msgid "Go to the previous panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:481 +msgid "Go to the next panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:486 +msgid "Shows statistics and information" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:487 +msgid "Statistics" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:494 +msgid "Start downloading" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:495 +msgid "Download" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:554 +msgid "Videomass - List of URLs" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:562 +msgid "Videomass - YouTube Downloader" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:579 +msgid "Viewing last log" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:592 +msgid "Videomass - Downloader Message Monitoring" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:50 +#: ../../vdms_ytdlp/ydl_mediainfo.py:71 +msgid "URL" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:51 +msgid "Playlist Items" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:72 +msgid "" +"To index the media of a playlist, click on the \"Playlist Items\" column of each corresponding URL and specify the numerical indexes separated by commas, e.g. \"1,2,5,8\" if you want to download the indexed media at 1, 2, 5, 8 of the playlist.\n" +"It is also possible to specify intervals, e.g. \"1-3,7,10-13\" with which the media at index 1, 2, 3, 7, 10, 11, 12 and 13 will be downloaded.\n" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:108 +#: ../../vdms_ytdlp/youtubedl_ui.py:209 +msgid "Playlist Editor" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:117 +msgid "Help viewer" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:224 +msgid "ERROR: Invalid option" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:225 +msgid "please try again." +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:226 +msgid "OK: Indexes to download" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:255 +msgid "WARNING: The selected URL does not refer to a playlist. Only lines marked green can be indexed." +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:42 +msgid "English" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:43 +msgid "French" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:44 +msgid "German" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:45 +msgid "Greek" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:46 +msgid "Hebrew" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:47 +msgid "Italian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:48 +msgid "Dutch" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:49 +msgid "Polish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:50 +msgid "Portuguese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:51 +msgid "Russian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:52 +msgid "Spanish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:53 +msgid "Swedish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:54 +msgid "Turkish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:55 +msgid "Albanian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:56 +msgid "Chinese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:70 +msgid "Subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:74 +msgid "None" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:75 +msgid "All available subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:76 +msgid "Select by default language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:77 +msgid "Custom language subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:94 +msgid "Custom language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:110 +msgid "Subtitle options" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:114 +msgid "Include automatically generated subtitle (YouTube only)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:117 +msgid "Embed subtitles into video file" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:120 +msgid "Download subtitles only (do not include audio and video)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:137 +#: ../../vdms_ytdlp/youtubedl_ui.py:216 +msgid "Subtitles Editor" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:248 +msgid "" +"Write in the text field on the side, one or more language codes of the\n" +"subtitles to download separated by commas, e.g. \"en, ja, ar\" for English,\n" +"Japanese and Arabic respectively.\n" +"\n" +"You can use regex (regular expression), e.g. \"en.*, ja, ar.*\" where the\n" +"asterisk preceded by the dot will allow you to download everything\n" +"related to the subtitles of a certain language.\n" +"\n" +"You can prefix the language code with a \"-\" to exclude it from the\n" +"requested languages, e.g. \"all, -it.*, -nl.*\", -fr.*\" will download all\n" +"subtitles except those in Italian, Dutch and French." +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:68 +msgid "Invalid URL" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:87 +msgid "Invalid URLs" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:133 +msgid "Drag or paste URLs here" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:167 +msgid "Set a new destination folder for downloads" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:169 +msgid "Destination folder of downloads" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:67 +msgid "Statistics viewer" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:70 +msgid "TITLE SELECTION" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:65 +msgid "Workarounds" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:68 +msgid "Don’t check SSL certificate" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:73 +msgid "Filename options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:76 +msgid "Include the ID in file names" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:82 +msgid "Restrict file names to ASCII characters" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:88 +msgid "Post-Process options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:91 +msgid "Embed thumbnail in audio file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:96 +msgid "Add metadata to file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:101 +msgid "Overwrite all files and metadata" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:106 +msgid "General" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:112 +msgid "Where do you prefer to save your downloads?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:126 +msgid "Auto-create subdirectories when downloading playlists" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:137 +msgid "Choosing an external downloader" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:140 +msgid "" +"In addition to the default `native` one, yt-dlp can use the following external downloaders:\n" +"`aria2c`, `avconv`, `axel`, `curl`, `ffmpeg`, `httpie`, `wget`.\n" +"Please note that using an external downloader the download status information may not be available." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:149 +msgid "External downloader executable path" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:157 +msgid "External downloader arguments" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:165 +msgid "Download Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:171 +msgid "Using a proxy server" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:175 +msgid "" +"Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper\n" +"scheme, e.g.\t{}\n" +"Leave the text field blank for direct connection." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:183 +msgid "Proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:191 +msgid "Network" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:196 +msgid "Geo-restriction options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:199 +msgid "Use the following options to try bypassing geographic restriction." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:206 +msgid "Geo verification proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:210 +msgid "URL of the proxy to use for IP address verification on geo-restricted sites." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:215 +msgid "Geo bypass" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:219 +msgid "Bypass geographic restriction via faking X-Forwarded-For HTTP header. One of \"default\" (only when known to be useful), or \"never\"" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:226 +msgid "Geo bypass country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:230 +msgid "Two-letter ISO 3166-2 country code that will be used for explicit geographic restriction bypassing via faking X-Forwarded-For HTTP header." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:238 +msgid "Geo bypass ip block" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:242 +msgid "IP range in CIDR notation that will be used similarly to geo_bypass_country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:249 +msgid "Geo-Restriction" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:254 +msgid "Authentication with login credentials" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:257 +msgid "" +"If you need to login with your credentials please note that login with password is not\n" +"supported for some websites (e.g. YouTube, CloudFlare). In this case you can include a\n" +"cookie file for authentication (see cookies tab)." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:266 +msgid "Username" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:270 +msgid "Username for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:274 +msgid "Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:278 +msgid "Password for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:283 +msgid "Video Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:287 +msgid "Password for accessing a video" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:293 +msgid "Authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:299 +msgid "Using cookies to gain access to websites" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:302 +msgid "" +"Here you can pass your `Netscape HTTP Cookie File` in order to access websites that require authentication.\n" +"If you don't know how to obtain this type of file, you can let the application try to extract it from your browser\n" +"automatically. The currently supported browsers are: brave, chrome, chromium, edge, firefox, opera, safari, vivaldi.\n" +"\n" +"For more information please consult the documentation at the following link:" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:319 +msgid "Allow cookies for authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:323 +msgid "Cookie file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:329 +msgid "File name from where cookies should be read and dumped to" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:332 +msgid "Browse" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:335 +msgid "Extract cookies automatically from your browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:341 +msgid "Web Browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:360 +msgid "Cookies" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:403 +msgid "YouTube Downloader Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:436 +msgid "Do you want to remove the current cookie file from your system?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:489 +msgid "Locate your cookie file" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:151 +msgid "Precompiled Videos" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:152 +msgid "Download videos by resolution" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:153 +msgid "Download split audio and video" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:154 +msgid "Download Audio only" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:155 +msgid "Download by format code" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:205 +msgid "Include playlists" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:223 +msgid "Quality settings" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:235 +msgid "When not available, the chosen video resolution will be replaced with the closest one" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:239 +msgid "Video format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:260 +msgid "Audio format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:418 +msgid "" +"Unable to get format codes on {0}, unsupported URL:\n" +"\n" +"{1}" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:568 +msgid "URLs have no playlist references" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:607 +msgid "The URLs contain playlists. Are you sure you want to continue?" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:623 +msgid "The URLs contain channels. Are you sure you want to continue?" +msgstr "" + +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "" + diff --git a/videomass/data/locale/en_US/LC_MESSAGES/videomass.po b/videomass/data/locale/en_US/LC_MESSAGES/videomass.po index 2d9e3d0aa..6b52c83f2 100644 --- a/videomass/data/locale/en_US/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/en_US/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:44+0200\n" "Last-Translator: \n" "Language: en_US\n" @@ -32,8 +32,8 @@ msgstr "" #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1187,10 +1187,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "" #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1239,7 +1239,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1256,7 +1256,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1379,22 +1379,22 @@ msgid "A long description of the profile" msgstr "" #: ../../vdms_dialogs/setting_profiles.py:153 -msgid "One or more comma-separated format names that are not compatible with this profile." +msgid "One or more comma-separated format names compatible with this profile" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1402,16 +1402,16 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 msgid "Profile stored successfully!" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -4388,3 +4388,6 @@ msgstr "" msgid "The URLs contain channels. Are you sure you want to continue?" msgstr "" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "" + diff --git a/videomass/data/locale/es_CU/LC_MESSAGES/videomass.po b/videomass/data/locale/es_CU/LC_MESSAGES/videomass.po index f465dd945..601a8a078 100644 --- a/videomass/data/locale/es_CU/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/es_CU/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:44+0200\n" "Last-Translator: José Alberto Valle Cid j.alberto.vc@gmail.com\n" "Language: es_CU\n" @@ -32,8 +32,8 @@ msgstr "Para dejar de ver este mensaje al inicio, por favor instale yt-dlp o des #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1268,10 +1268,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Teclee solo caracteres alfanuméricos. Puede utilizar el guion (\"-\") y el guion bajo (\"_\"). No se permiten espacios." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1324,7 +1324,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1341,7 +1341,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1483,23 +1483,22 @@ msgid "A long description of the profile" msgstr "Una descripción amplia del perfil" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Uno o más nombres de formato separados con coma a incluir en el perfil" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Extensión del formato de salida. Deje vació para copiar codec y formato" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Asignaciones de perfil incompletas" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Debe separar con coma los formatos" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1507,17 +1506,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Ya existe perfil con ese nombre" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "¡Asistente completado con éxito!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -5520,3 +5519,6 @@ msgstr "Las URLs contienen canales. ¿Seguro que desea continuar?" #~ msgid "Sorry, this preset is not part of default Videomass presets." #~ msgstr "Este preset no es parte de los presets predeterminados de Videomass." +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Uno o más nombres de formato separados con coma a incluir en el perfil" + diff --git a/videomass/data/locale/es_ES/LC_MESSAGES/videomass.po b/videomass/data/locale/es_ES/LC_MESSAGES/videomass.po index 00a22f202..bce09dd5b 100644 --- a/videomass/data/locale/es_ES/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/es_ES/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:45+0200\n" "Last-Translator: José Alberto Valle Cid j.alberto.vc@gmail.com\n" "Language: es_ES\n" @@ -32,8 +32,8 @@ msgstr "Para dejar de ver este mensaje al inicio, por favor instale yt-dlp o des #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1268,10 +1268,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Teclee solo caracteres alfanuméricos. Puede utilizar el guion (\"-\") y el guion bajo (\"_\"). No se permiten espacios." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1324,7 +1324,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1341,7 +1341,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1483,23 +1483,22 @@ msgid "A long description of the profile" msgstr "Una descripción amplia del perfil" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Uno o más nombres de formato separados con coma a incluir en el perfil" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Extensión del formato de salida. Deje vació para copiar codec y formato" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Asignaciones de perfil incompletas" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Debe separar con coma los formatos" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1507,17 +1506,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Ya existe perfil con ese nombre" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "¡Asistente completado con éxito!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -5520,3 +5519,6 @@ msgstr "Las URLs contienen canales. ¿Seguro que desea continuar?" #~ msgid "Sorry, this preset is not part of default Videomass presets." #~ msgstr "Este preset no es parte de los presets predeterminados de Videomass." +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Uno o más nombres de formato separados con coma a incluir en el perfil" + diff --git a/videomass/data/locale/es_MX/LC_MESSAGES/videomass.po b/videomass/data/locale/es_MX/LC_MESSAGES/videomass.po index 38aacc100..5f8fca0b0 100644 --- a/videomass/data/locale/es_MX/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/es_MX/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:46+0200\n" "Last-Translator: José Alberto Valle Cid j.alberto.vc@gmail.com\n" "Language: es_MX\n" @@ -32,8 +32,8 @@ msgstr "Para dejar de ver este mensaje al inicio, por favor instale yt-dlp o des #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1268,10 +1268,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Teclee solo caracteres alfanuméricos. Puede utilizar el guion (\"-\") y el guion bajo (\"_\"). No se permiten espacios." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1324,7 +1324,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1341,7 +1341,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1483,23 +1483,22 @@ msgid "A long description of the profile" msgstr "Una descripción amplia del perfil" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Uno o más nombres de formato separados con coma a incluir en el perfil" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Extensión del formato de salida. Deje vació para copiar codec y formato" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Asignaciones de perfil incompletas" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Debe separar con coma los formatos" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1507,17 +1506,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Ya existe perfil con ese nombre" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "¡Asistente completado con éxito!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -5514,3 +5513,6 @@ msgstr "Las URLs contienen canales. ¿Seguro que desea continuar?" #~ msgid "Sorry, this preset is not part of default Videomass presets." #~ msgstr "Este preset no es parte de los presets predeterminados de Videomass." +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Uno o más nombres de formato separados con coma a incluir en el perfil" + diff --git a/videomass/data/locale/fr_FR/LC_MESSAGES/videomass.po b/videomass/data/locale/fr_FR/LC_MESSAGES/videomass.po index 862bdd892..fc51f6165 100644 --- a/videomass/data/locale/fr_FR/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/fr_FR/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:47+0200\n" "Last-Translator: Phil Aug \n" "Language: fr_FR\n" @@ -32,8 +32,8 @@ msgstr "Pour ne plus afficher ce message au démarrage, installer ou désactiver #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1266,10 +1266,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Nentrez que des caractères alphanumériques.Vous pouvez également utiliser le trait d'union (\"-\") et le trait de soulignement (\"_\").Les espaces ne sont pas autorisés." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1322,7 +1322,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1339,7 +1339,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1481,23 +1481,22 @@ msgid "A long description of the profile" msgstr "Description longue du profil" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Un ou plusieurs noms de format séparés par une virgule à inclure dans le profil" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Extension du format de sortie.Laisser vide pour copier le codec et le format" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Profil incomplet" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Les formats doivent être séparés par une virgule" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1505,17 +1504,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Profil déjà enregistré sous le même nom" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "Assistant complété avec succès!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -5945,3 +5944,6 @@ msgstr "Les URL contiennent des canaux. Êtes vous sûr de vouloir continuer?" #~ msgid "Failed! {}" #~ msgstr "Échec! {}" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Un ou plusieurs noms de format séparés par une virgule à inclure dans le profil" + diff --git a/videomass/data/locale/hu_HU/LC_MESSAGES/videomass.po b/videomass/data/locale/hu_HU/LC_MESSAGES/videomass.po new file mode 100644 index 000000000..e93246254 --- /dev/null +++ b/videomass/data/locale/hu_HU/LC_MESSAGES/videomass.po @@ -0,0 +1,4366 @@ +# Hungarian (Hungary) translations for PROJECT. +# Copyright (C) 2024 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" +"PO-Revision-Date: 2024-07-17 16:31+0200\n" +"Last-Translator: FULL NAME \n" +"Language: hu_HU\n" +"Language-Team: hu_HU \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.10.3\n" + +#: ../../gui_app.py:121 +msgid "To suppress this message on startup, please install yt-dlp or disable it from the preferences." +msgstr "" + +#: ../../gui_app.py:133 ../../gui_app.py:141 +#: ../../vdms_dialogs/filter_colorcorrection.py:343 +#: ../../vdms_dialogs/filter_colorcorrection.py:383 +#: ../../vdms_dialogs/filter_colorcorrection.py:390 +#: ../../vdms_dialogs/filter_crop.py:417 ../../vdms_dialogs/filter_scale.py:287 +#: ../../vdms_dialogs/filter_scale.py:394 ../../vdms_dialogs/filter_stab.py:473 +#: ../../vdms_dialogs/filter_stab.py:483 ../../vdms_dialogs/filter_stab.py:494 +#: ../../vdms_dialogs/filter_transpose.py:182 +#: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 +#: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 +#: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 +#: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 +#: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 +#: ../../vdms_panels/audio_encoders/acodecs.py:509 +#: ../../vdms_panels/audio_encoders/acodecs.py:797 +#: ../../vdms_panels/concatenate.py:197 +#: ../../vdms_panels/long_processing_task.py:60 +#: ../../vdms_panels/presets_manager.py:426 +#: ../../vdms_panels/presets_manager.py:490 +#: ../../vdms_panels/presets_manager.py:560 +#: ../../vdms_panels/presets_manager.py:599 +#: ../../vdms_panels/presets_manager.py:619 +#: ../../vdms_panels/presets_manager.py:657 +#: ../../vdms_panels/presets_manager.py:701 +#: ../../vdms_panels/presets_manager.py:714 +#: ../../vdms_panels/presets_manager.py:721 +#: ../../vdms_panels/presets_manager.py:756 +#: ../../vdms_panels/presets_manager.py:785 +#: ../../vdms_panels/presets_manager.py:791 +#: ../../vdms_panels/sequence_to_video.py:465 +#: ../../vdms_panels/sequence_to_video.py:471 +#: ../../vdms_panels/sequence_to_video.py:559 +#: ../../vdms_panels/sequence_to_video.py:569 +#: ../../vdms_panels/sequence_to_video.py:586 +#: ../../vdms_panels/sequence_to_video.py:594 +#: ../../vdms_panels/sequence_to_video.py:600 +#: ../../vdms_panels/sequence_to_video.py:641 +#: ../../vdms_panels/sequence_to_video.py:687 +#: ../../vdms_panels/video_to_sequence.py:514 +#: ../../vdms_panels/video_to_sequence.py:585 +#: ../../vdms_threads/ffplay_file.py:43 +#: ../../vdms_utils/presets_manager_utils.py:86 +#: ../../vdms_utils/presets_manager_utils.py:95 +#: ../../vdms_utils/queue_utils.py:68 ../../vdms_utils/queue_utils.py:82 +#: ../../vdms_utils/queue_utils.py:95 ../../vdms_ytdlp/youtubedl_ui.py:386 +#: ../../vdms_ytdlp/youtubedl_ui.py:426 +msgid "Videomass - Error!" +msgstr "" + +#: ../../gui_app.py:230 +msgid "" +"Unexpected error while deleting file contents:\n" +"\n" +"{0}" +msgstr "" + +#: ../../vdms_dialogs/about_dialog.py:52 +msgid "Cross-platform graphical user interface for FFmpeg and yt-dlp.\n" +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:224 +msgid "Videomass supports mono and stereo audio channels. If you are not sure set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:228 +msgid "The audio Rate (or sample-rate) is the sound sampling frequency and is measured in Hertz. The higher the frequency, the more true it will be to the sound source and the more the file will increase in size. For audio CD playback, set a sampling frequency of 44100 kHz. If you are not sure, set to \"Auto\" and source values will be copied." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:237 +msgid "The audio bitrate affects the file compression and thus the quality of listening. The higher the value, the higher the quality." +msgstr "" + +#: ../../vdms_dialogs/audioproperties.py:241 +msgid "Bit depth is the number of bits of information in each sample, and it directly corresponds to the resolution of each sample. Bit depth is only meaningful in reference to a PCM digital signal. Non-PCM formats, such as lossy compression formats, do not have associated bit depths." +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:74 ../../vdms_dialogs/queuedlg.py:120 +msgid "When finished, once the operations have been completed successfully:" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:80 ../../vdms_dialogs/queuedlg.py:126 +msgid "Trash the source files" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:84 ../../vdms_dialogs/queuedlg.py:130 +msgid "Clear the File List" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:91 ../../vdms_dialogs/queuedlg.py:142 +#: ../../vdms_main/main_frame.py:1272 +msgid "Run" +msgstr "" + +#: ../../vdms_dialogs/epilogue.py:97 +msgid "Videomass - Batch Mode" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:47 +msgid "FFmpeg encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:48 +msgid "supported encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:50 +msgid "FFmpeg decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:51 +msgid "supported decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:77 +#: ../../vdms_panels/av_conversions.py:293 +msgid "Video" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:87 +#: ../../vdms_panels/av_conversions.py:305 +msgid "Audio" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:97 +msgid "Subtitle" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_codecs.py:114 +#: ../../vdms_dialogs/ffmpeg_codecs.py:123 +#: ../../vdms_dialogs/ffmpeg_codecs.py:132 +#: ../../vdms_dialogs/ffmpeg_formats.py:112 +#: ../../vdms_dialogs/ffmpeg_formats.py:115 +#: ../../vdms_dialogs/ffmpeg_formats.py:118 +msgid "description" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:72 +msgid "Informations" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:83 +msgid "Flags settings" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:93 +msgid "Flags enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:103 +msgid "Flags disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:116 +msgid "FFmpeg configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:124 +msgid "flags" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:125 ../../vdms_dialogs/ffmpeg_conf.py:129 +#: ../../vdms_dialogs/ffmpeg_conf.py:133 +msgid "options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:128 ../../vdms_dialogs/ffmpeg_conf.py:132 +msgid "status" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:167 +msgid "FFprobe ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:175 +msgid "FFplay ...not found !" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:205 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:608 +msgid "Enabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_conf.py:216 +#: ../../vdms_panels/sequence_to_video.py:704 +#: ../../vdms_panels/video_to_sequence.py:612 +msgid "Disabled" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:71 +msgid "Demuxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:82 +msgid "Muxing only" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:93 +msgid "Demuxing/Muxing support" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:104 +msgid "FFmpeg file formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_formats.py:111 +#: ../../vdms_dialogs/ffmpeg_formats.py:114 +#: ../../vdms_dialogs/ffmpeg_formats.py:117 +msgid "supported formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:46 +msgid "" +"Contextual help based on the argument entered in the additional text field.\n" +"Each argument consists of the type and a type-specific name.\n" +"\n" +"For the list of encoders click the \"Encoders\" button.\n" +"For the list of decoders click on the \"Decoders\" button.\n" +"For the muxers and demuxers click on the \"Muxers and Demuxers\" button.\n" +"For the filters, select \"Show available filters\" in the drop down menu.\n" +"For the bsf, select \"Show available bitstream filters\" in the drop down menu.\n" +"For the protocols, select \"Show available protocols\" in the drop down menu.\n" +"\n" +"Some examples:" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:68 ../../vdms_dialogs/ffmpeg_help.py:301 +#: ../../vdms_dialogs/ffmpeg_help.py:315 +msgid "Help topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:69 +msgid "List basic options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:70 +msgid "List more options" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:71 +msgid "List all options (very long)" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:72 +msgid "Show available devices" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:73 +msgid "Show available bit stream filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:74 +msgid "Show available protocols" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:75 +msgid "Show available filters" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:76 +msgid "Show available pixel formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:77 +msgid "Show available audio sample formats" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:78 +msgid "Show available color names" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:79 +msgid "List sources of the input device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:80 +msgid "List sinks of the output device" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:81 +msgid "Show available HW acceleration methods" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:82 +msgid "Show license" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:117 ../../vdms_dialogs/filter_scale.py:76 +#: ../../vdms_dialogs/shownormlist.py:98 ../../vdms_dialogs/shownormlist.py:107 +#: ../../vdms_dialogs/shownormlist.py:116 ../../vdms_miniframes/timeline.py:263 +#: ../../vdms_miniframes/timeline.py:283 ../../vdms_panels/concatenate.py:117 +#: ../../vdms_panels/sequence_to_video.py:117 +#: ../../vdms_panels/video_to_sequence.py:81 +#: ../../vdms_ytdlp/subtitles_editor.py:100 +msgid "Read me" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:123 ../../vdms_main/main_frame.py:544 +msgid "Show configuration" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:127 ../../vdms_main/main_frame.py:552 +msgid "Encoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:131 ../../vdms_main/main_frame.py:555 +msgid "Decoders" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:135 ../../vdms_main/main_frame.py:548 +msgid "Muxers and Demuxers" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:165 +msgid "help topic list" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:184 +msgid "Type the argument here and confirm with the enter key on your keyboard" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:192 +msgid "The search function allows you to find entries in the current topic" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:195 +msgid "Ignore case" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:196 +msgid "Ignore case distinctions: characters with different case will match." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:206 +msgid "FFmpeg help topics" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:254 +msgid "" +"This is a multifunctional search tool useful for local help searches\n" +"on multiple FFmpeg topics and options. The search control, to\n" +"find occurences on text obtained from the chosen argument,\n" +"is very similar to what grep does on the Unix shell, but here\n" +"it's done in real time.\n" +"\n" +"If you don't find support for a certain codec or other feature,\n" +"it's likely that your version of FFmpeg is too old or not configured\n" +"with those features." +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:320 ../../vdms_dialogs/ffmpeg_help.py:345 +#: ../../vdms_dialogs/ffmpeg_help.py:371 +msgid "" +"\n" +" ..Nothing available" +msgstr "" + +#: ../../vdms_dialogs/ffmpeg_help.py:391 +msgid "" +"\n" +" ..Not found" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:91 +msgid "Before" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:97 +msgid "After" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:103 +#: ../../vdms_dialogs/filter_crop.py:239 +msgid "Search for a specific frame" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:117 +#: ../../vdms_dialogs/filter_crop.py:253 +msgid "Load" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:120 +msgid "Color EQ" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:126 +msgid "Contrast:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:134 +#: ../../vdms_dialogs/filter_colorcorrection.py:148 +msgid "-100 to +100, default value 0" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:139 +msgid "Brightness:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:158 +msgid "Saturation:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:166 +msgid "0 to 300, default value 100" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:170 +msgid "Gamma:" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:179 +msgid "0 to 100, default value 10" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:187 +#: ../../vdms_dialogs/filter_crop.py:306 +#: ../../vdms_dialogs/filter_deinterlace.py:209 +#: ../../vdms_dialogs/filter_denoisers.py:110 +#: ../../vdms_dialogs/filter_scale.py:210 ../../vdms_dialogs/filter_stab.py:316 +#: ../../vdms_dialogs/filter_transpose.py:105 +#: ../../vdms_miniframes/timeline.py:262 ../../vdms_miniframes/timeline.py:281 +msgid "Reset" +msgstr "" + +#: ../../vdms_dialogs/filter_colorcorrection.py:207 +msgid "Color Correction EQ Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:228 ../../vdms_dialogs/filter_scale.py:109 +msgid "Source size: {0} x {1} pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:236 +msgid "Crop color" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:256 +msgid "Cropping area selection " +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:261 ../../vdms_dialogs/filter_scale.py:121 +msgid "Height" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:281 +msgid "Center" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:292 ../../vdms_dialogs/filter_scale.py:121 +msgid "Width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:334 +msgid "Crop Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:335 +msgid "Choose the color to draw the cropping area" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:337 +msgid "Crop to width" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:338 +msgid "Move vertically (set to -1 to center the vertical axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:340 +msgid "Move horizontally (set to -1 to center the horizontal axis)" +msgstr "" + +#: ../../vdms_dialogs/filter_crop.py:342 +msgid "Crop to height" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:56 +msgid "Advanced Options" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:57 +#: ../../vdms_panels/av_conversions.py:351 +msgid "Deinterlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:59 +msgid "Interlace" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:63 +msgid "Deinterlaces with w3fdif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:77 +msgid "Deinterlaces with yadif filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:101 +msgid "Interlaces with interlace filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:118 +msgid "Deinterlacing and Interlacing" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:144 +msgid "Deinterlace the input video with `w3fdif` filter" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:146 +msgid "Set the interlacing filter coefficients." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:148 +#: ../../vdms_dialogs/filter_deinterlace.py:158 +msgid "Specify which frames to deinterlace." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:150 +msgid "Deinterlace the input video with `yadif` filter. Using FFmpeg, this is the best and fastest choice" +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:153 +msgid "" +"mode\n" +"The interlacing mode to adopt." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:155 +msgid "" +"parity\n" +"The picture field parity assumed for the input interlaced video." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:160 +msgid "Simple interlacing filter from progressive contents." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:162 +msgid "" +"scan:\n" +"determines whether the interlaced frame is taken from the even (tff - default) or odd (bff) lines of the progressive frame." +msgstr "" + +#: ../../vdms_dialogs/filter_deinterlace.py:166 +msgid "" +"lowpass:\n" +"Enable (default) or disable the vertical lowpass filter to avoid twitter interlacing and reduce moire patterns.\n" +"Default is no setting." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:56 +msgid "Denoiser Filters" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:60 +msgid "Enable nlmeans denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:73 +msgid "nlmeans options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:82 +msgid "Enable hqdn3d denoiser" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:91 +msgid "hqdn3d options" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:116 +msgid "Denoiser Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:117 +msgid "" +"nlmeans:\n" +"Denoise frames using Non-Local Means algorithm is capable of restoring video sequences, even with strong noise. It is ideal for enhancing the quality of old VHS tapes." +msgstr "" + +#: ../../vdms_dialogs/filter_denoisers.py:122 +msgid "" +"hqdn3d:\n" +"This is a high precision/quality 3d denoise filter. It aims to reduce image noise, producing smooth images and making still images really still. It should enhance compressibility." +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:81 +msgid "View result" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:85 +msgid "New size in pixels" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:89 +msgid "Width:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:99 +msgid "Height:" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:115 +msgid "Constrain proportions (keep aspect ratio)" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:120 +msgid "Which dimension to adjust?" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:129 +msgid "Aspect Ratio" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:132 +msgid "Setdar filter (display aspect ratio) example 16/9, 4/3 " +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:137 +#: ../../vdms_dialogs/filter_scale.py:171 +msgid "Numerator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:162 +#: ../../vdms_dialogs/filter_scale.py:196 +msgid "Denominator" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:166 +msgid "Setsar filter (sample aspect ratio) example 1/1" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:217 +msgid "Resize Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:218 +msgid "Scale filter, set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:221 +msgid "Display Aspect Ratio. Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:224 +msgid "" +"Sample (aka Pixel) Aspect Ratio.\n" +"Set to 0 to disable" +msgstr "" + +#: ../../vdms_dialogs/filter_scale.py:366 +msgid "" +"If you want to keep the aspect ratio, select \"Constrain proportions\" below and\n" +"specify only one dimension, either width or height, and set the other dimension\n" +"to -1 or -2 (some codecs require -2, so you should do some testing first)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:81 +msgid "Enable stabilizer" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:83 +msgid "Create a side-by-side comparison video" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:88 +msgid "Create a snapshot" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:106 +#: ../../vdms_panels/audio_encoders/acodecs.py:167 +msgid "Preview" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:109 +msgid "Duration seconds:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:118 +msgid "Video Detect" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:176 +msgid "[TRIPOD] Enable tripod mode if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:183 +msgid "Video transform" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:202 +msgid "[OPTALGO] optimization algorithm" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:224 +msgid "[CROP] Specify how to deal with borders at movement compensation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:231 +msgid "[INVERT] Invert transforms if checked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:234 +msgid "[RELATIVE] Consider transforms as relative to previous frame if checked, absolute if unchecked" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:279 +msgid "Specify type of interpolation" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:287 +msgid "[TRIPOD2] virtual tripod mode, equivalent to relative=unchecked:smoothing=0" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:294 +msgid "Unsharp filter:" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:323 +msgid "Seek to a position on the video." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:325 +msgid "Make a snapshot of the video with the settings made." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:327 +msgid "Set the snapshot duration from 3 to 15 seconds from the seek position, default is 5 seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:331 +msgid "Set how shaky the video is and how quick the camera is. A value of 1 means little shakiness, a value of 10 means strong shakiness. Default value is 5." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:335 +msgid "Set the accuracy of the detection process. A value of 1 means low accuracy, a value of 15 means high accuracy. Default value is 15." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:339 +msgid "Set stepsize of the search process. The region around minimum is scanned with 1 pixel resolution. Default value is 6." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:343 +msgid "Set minimum contrast. Below this value a local measurement field is discarded. The range is 0-1. Default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:346 +msgid "Set reference frame number for tripod mode. If enabled, the motion of the frames is compared to a reference frame in the filtered stream, identified by the specified number. The idea is to compensate all movements in a more-or-less static scene and keep the camera view absolutely still. The frames are counted starting from 1." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:355 +msgid "Set the number of frames (value*2 + 1) used for lowpass filtering the camera movements. Default value is 15. For example a number of 10 means that 21 frames are used (10 in the past and 10 in the future) to smoothen the motion in the video. A larger value leads to a smoother video, but limits the acceleration of the camera (pan/tilt movements). 0 is a special case where a static camera is simulated." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:363 +msgid "Set the camera path optimization algorithm. Values are: `gauss`: gaussian kernel low-pass filter on camera motion (default), and `avg`: averaging on transformations" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:367 +msgid "Set maximal angle in radians (degree*PI/180) to rotate frames. Default value is -1, meaning no limit." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:370 +msgid "Specify how to deal with borders that may be visible due to movement compensation. Values are: `keep` keep image information from previous frame (default), `black` fill the border black" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:375 +msgid "Invert transforms if checked. Default is unchecked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:377 +msgid "Consider transforms as relative to previous frame if checked, absolute if unchecked. Default is checked." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:380 +msgid "Set percentage to zoom. A positive value will result in a zoom-in effect, a negative value in a zoom-out effect. Default value is 0 (no zoom)." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:384 +msgid "Set optimal zooming to avoid borders. Accepted values are: `0` disabled, `1` optimal static zoom value is determined (only very strong movements will lead to visible borders) (default), `2` optimal adaptive zoom value is determined (no borders will be visible), see zoomspeed. Note that the value given at zoom is added to the one calculated here." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:391 +msgid "Set percent to zoom maximally each frame (enabled when optzoom is set to 2). Range is from 0 to 5, default value is 0.25." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:395 +msgid "Specify type of interpolation. Available values are: `no` no interpolation, `linear` linear only horizontal, `bilinear` linear in both directions (default), `bicubic` cubic in both directions (slow)" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:400 +msgid "Enable virtual tripod mode if checked, which is equivalent to relative=0:smoothing=0. Default is unchecked. Use also tripod option of vidstabdetect." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:405 +msgid "Sharpen or blur the input video. Note the use of the unsharp filter which is always recommended." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:409 +msgid "Video Stabilizer Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:541 ../../vdms_io/io_tools.py:57 +#: ../../vdms_io/io_tools.py:99 +msgid "Videomass - Loading..." +msgstr "" + +#: ../../vdms_dialogs/filter_stab.py:542 +msgid "" +"Please wait,\n" +"This process will take a few seconds." +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:80 +#: ../../vdms_dialogs/filter_transpose.py:293 +msgid "Default position" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:86 +msgid "Rotation setting" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:94 +msgid "90° (left)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:96 +msgid "90° (right)" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:100 +msgid "180°" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:115 +msgid "Transpose Tool" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:229 +msgid "Rotate 90 degrees right" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:251 +msgid "Rotate 180 degrees" +msgstr "" + +#: ../../vdms_dialogs/filter_transpose.py:272 +msgid "Rotate 90 degrees left" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:82 +msgid "Format" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:96 +msgid "Video Stream" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:109 +msgid "Audio Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:122 +msgid "Subtitle Streams" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:126 +msgid "Copy to clipboard" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:137 +msgid "FILE SELECTION" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:139 ../../vdms_dialogs/mediainfo.py:142 +#: ../../vdms_dialogs/mediainfo.py:145 ../../vdms_dialogs/mediainfo.py:148 +#: ../../vdms_main/main_frame.py:1268 +msgid "Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:140 ../../vdms_dialogs/mediainfo.py:143 +#: ../../vdms_dialogs/mediainfo.py:146 ../../vdms_dialogs/mediainfo.py:149 +msgid "Values" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:152 +msgid "Streams Properties" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:244 +msgid "Unable to open the clipboard on Format tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:263 +msgid "Unable to open the clipboard on Video Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:283 +msgid "Unable to open the clipboard on Audio Streams tab" +msgstr "" + +#: ../../vdms_dialogs/mediainfo.py:303 +msgid "Unable to open the clipboard on Subtitle Streams tab" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:92 +msgid "Where do you prefer to save your transcodes?" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:103 ../../vdms_dialogs/preferences.py:130 +#: ../../vdms_dialogs/preferences.py:151 ../../vdms_dialogs/preferences.py:163 +#: ../../vdms_dialogs/preferences.py:175 ../../vdms_dialogs/preferences.py:214 +#: ../../vdms_dialogs/preferences.py:233 ../../vdms_panels/filedrop.py:284 +#: ../../vdms_ytdlp/textdrop.py:153 ../../vdms_ytdlp/ydl_preferences.py:123 +msgid "Change" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:105 +#: ../../vdms_panels/av_conversions.py:1197 ../../vdms_panels/filedrop.py:574 +#: ../../vdms_panels/presets_manager.py:1050 +msgid "Same destination paths as source files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:110 +msgid "Assign optional suffix to destination file names:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:116 +msgid "File removal preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:120 +msgid "Trash the source files after successful encoding" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:133 +#: ../../vdms_ytdlp/ydl_preferences.py:131 +msgid "File Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:140 +msgid "Location of executables" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:142 +msgid "" +"FFmpeg can be built by enabling/disabling its options and this depends on your needs.\n" +"For some use cases it is possible to provide a custom build of FFmpeg where you can specify\n" +"it in this preferences tab." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:149 +msgid "Enable a custom location to run FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:161 +msgid "Enable a custom location to run FFprobe" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:173 +msgid "Enable a custom location to run FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:185 +msgid "FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:191 +msgid "" +"Download videos from YouTube.com and other video sites\n" +"(requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:195 +msgid "" +"Videomass uses the yt-dlp API which can be activated by selecting the checkbox below.\n" +"The next time you restart the application, the yt_dlp module will be loaded into memory." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:201 +msgid "Enable yt-dlp" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:205 +msgid "" +"Enabling a specific location of the yt-dlp executable will give you more control over downloads\n" +"stop actions and the ability to provide other backend locations." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:210 +msgid "Use the executable for downloads rather than API" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:223 +msgid "" +"Import the yt_dlp Python package externally. E.g, you can include the source package\n" +"directory or the path to the package installed in an external virtual environment." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:229 +msgid "Enable external import of yd_dlp package" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:248 +msgid "Look and Feel (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:253 +msgid "Icon themes" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:267 +msgid "At the top of window (default)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:268 +msgid "At the bottom of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:269 +msgid "At the right of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:270 +msgid "At the left of window" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:272 +msgid "Place the toolbar" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:281 +msgid "Toolbar's icons size:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:295 +msgid "Application Language (requires application restart)" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:307 +msgid "Look and Language" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:313 +msgid "Upon exiting the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:318 +msgid "Always ask me to confirm" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:320 +msgid "Clean the log files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:323 +msgid "Remove cached files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:327 +msgid "On operations completion" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:330 +msgid "These settings will remain active until the application is closed, If necessary, remember to reactivate them." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:335 +msgid "Exit the application" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:338 +msgid "Shutdown the system" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:342 +msgid "SUDO password:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:351 +msgid "Exit and Shutdown" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:357 +msgid "Specify the character encoding format" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:360 +msgid "" +"Although UTF-8 is the default and most widely used standard encoding format, it is not the only encoding format available.\n" +"Some file metadata may still contain non-UTF-8 character encodings resulting in the error \"'utf-8' codec can't decode bytes...\".\n" +"If you know the encoding format the file was written in, you can try specifying it here, e.g. ISO 8859-1, ISO 8859-16, etc." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:370 +msgid "Character encoding:" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:379 +msgid "Default application directories" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:383 +msgid "Configuration directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:396 +msgid "Cache directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:408 +msgid "Log directory" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:422 +msgid "Advanced" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:428 +msgid "" +"The following settings affect output messages and the log messages during transcoding processes.\n" +"Be careful, by changing these settings some functions of the application may not work correctly,\n" +"change only if you know what you are doing.\n" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:435 +msgid "Set logging level flags used by FFmpeg" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:442 +msgid "Set logging level flags used by FFplay" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:450 +msgid "FFmpeg logging levels" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:504 +msgid "By assigning an additional suffix you could avoid overwriting files" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:507 +msgid "Type sudo password here, only for Unix-like operating systems, not for MS Windows" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:510 +msgid "Preferences" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:674 ../../vdms_dialogs/preferences.py:754 +#: ../../vdms_main/main_frame.py:859 ../../vdms_main/main_frame.py:1040 +#: ../../vdms_ytdlp/main_ytdlp.py:398 ../../vdms_ytdlp/ydl_preferences.py:504 +msgid "Choose Destination" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:705 +msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") and the underscore (\"_\"). Spaces are not allowed." +msgstr "" + +#: ../../vdms_dialogs/preferences.py:720 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 +#: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 +#: ../../vdms_panels/av_conversions.py:612 +#: ../../vdms_panels/sequence_to_video.py:350 +#: ../../vdms_panels/video_to_sequence.py:401 +#: ../../vdms_ytdlp/main_ytdlp.py:228 ../../vdms_ytdlp/youtubedl_ui.py:422 +msgid "Videomass - Warning!" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:809 ../../vdms_dialogs/preferences.py:849 +#: ../../vdms_dialogs/preferences.py:889 ../../vdms_dialogs/wizard_dlg.py:351 +#: ../../vdms_dialogs/wizard_dlg.py:368 ../../vdms_dialogs/wizard_dlg.py:385 +msgid "{} location" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:930 +msgid "Open «{}» executable file" +msgstr "" + +#: ../../vdms_dialogs/preferences.py:959 +msgid "Open «yt_dlp» python package directory" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:36 +#: ../../vdms_dialogs/setting_profiles.py:38 +msgid "One-Pass, Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:40 +#: ../../vdms_dialogs/setting_profiles.py:42 +msgid "Two-Pass (optional), Do not start with `ffmpeg -i filename`; do not end with `output-filename`" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:59 +msgid "Videomass - Edit the selected item in the queue" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:71 +#: ../../vdms_dialogs/setting_profiles.py:92 +msgid "Pre-input arguments for One-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:82 +#: ../../vdms_dialogs/setting_profiles.py:151 +#: ../../vdms_panels/presets_manager.py:255 +msgid "FFmpeg arguments for one-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:88 +#: ../../vdms_dialogs/setting_profiles.py:158 +#: ../../vdms_panels/presets_manager.py:259 +msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:102 +#: ../../vdms_dialogs/setting_profiles.py:98 +msgid "Pre-input arguments for Two-Pass (optional)" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:113 +#: ../../vdms_dialogs/setting_profiles.py:152 +#: ../../vdms_panels/presets_manager.py:257 +msgid "FFmpeg arguments for two-pass encoding" +msgstr "" + +#: ../../vdms_dialogs/queue_edit.py:120 +#: ../../vdms_dialogs/setting_profiles.py:162 +#: ../../vdms_panels/presets_manager.py:263 +msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:65 ../../vdms_main/main_frame.py:518 +#: ../../vdms_panels/presets_manager.py:189 +#: ../../vdms_panels/video_to_sequence.py:171 +#: ../../vdms_ytdlp/main_ytdlp.py:301 +msgid "Edit" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:68 +msgid "Remove" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:71 +msgid "Remove all" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:74 +msgid "" +"Export\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:77 +msgid "" +"Import\n" +"queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:85 ../../vdms_panels/filedrop.py:273 +msgid "Destination file name" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:137 +msgid "Remove all items in the queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:151 +msgid "Videomass - Queue" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:228 +msgid "Export queue file" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:296 ../../vdms_panels/av_conversions.py:1192 +#: ../../vdms_panels/presets_manager.py:1044 +#: ../../vdms_panels/video_to_sequence.py:602 +msgid "Same as source" +msgstr "" + +#: ../../vdms_dialogs/queuedlg.py:301 +msgid "" +"Source\n" +"File destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_dialogs/renamer.py:76 +msgid "# will be replaced by ascending numbers starting with:" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:87 +msgid "Font Size" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:111 +msgid "Font Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:121 +msgid "Shadow Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:132 +msgid "Show text box" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:136 +msgid "Box Color" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:156 +msgid "The timestamp size does not auto-adjust to the video size, you have to set the size here" +msgstr "" + +#: ../../vdms_dialogs/set_timestamp.py:160 ../../vdms_main/main_frame.py:569 +msgid "Timestamp settings" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:46 +msgid "Supported Formats list (optional). Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:47 +msgid "Output Format. Empty to copy format and codec. Do not include the `.`" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:70 +msgid "Profile Name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:74 +#: ../../vdms_panels/presets_manager.py:404 +msgid "Description" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:149 +msgid "A short profile name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:150 +msgid "A long description of the profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:153 +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:155 +msgid "Output format extension. Leave empty to copy codec and format" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:256 +msgid "Incomplete profile assignments" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:263 +msgid "Formats must be comma-separated" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:279 +#: ../../vdms_utils/queue_utils.py:80 +msgid "" +"ERROR: Keys mismatched for requested data.\n" +"Invalid file: «{0}»" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 +msgid "Profile already stored with same name" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:293 +msgid "Profile stored successfully!" +msgstr "" + +#: ../../vdms_dialogs/setting_profiles.py:311 +msgid "Profile change successful!" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:81 +msgid "Log file list" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:83 ../../vdms_dialogs/showlogs.py:117 +msgid "Log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:106 +msgid "Refresh log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:108 +msgid "Clear log messages" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:161 +msgid "Select a log file" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:168 +msgid "Are you sure you want to clear the selected log file?" +msgstr "" + +#: ../../vdms_dialogs/showlogs.py:169 ../../vdms_dialogs/wizard_dlg.py:243 +#: ../../vdms_io/checkup.py:50 ../../vdms_main/main_frame.py:207 +#: ../../vdms_main/main_frame.py:778 ../../vdms_main/main_frame.py:1619 +#: ../../vdms_panels/presets_manager.py:349 +#: ../../vdms_panels/presets_manager.py:550 +#: ../../vdms_panels/presets_manager.py:590 +#: ../../vdms_panels/presets_manager.py:649 +#: ../../vdms_panels/presets_manager.py:684 +#: ../../vdms_panels/presets_manager.py:749 +#: ../../vdms_panels/presets_manager.py:775 +#: ../../vdms_panels/presets_manager.py:874 +#: ../../vdms_panels/presets_manager.py:904 ../../vdms_ytdlp/main_ytdlp.py:201 +#: ../../vdms_ytdlp/ydl_preferences.py:438 ../../vdms_ytdlp/youtubedl_ui.py:609 +#: ../../vdms_ytdlp/youtubedl_ui.py:625 +msgid "Please confirm" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:83 +msgid "File name" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:84 +msgid "Max volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:85 +msgid "Mean volume dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:86 +msgid "Offset dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:87 +msgid "Result dBFS" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:92 +msgid "Post-normalization references:" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:102 +msgid "= Clipped peaks" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:111 +msgid "= No changes" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:121 +msgid "= Below max peak" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:166 +#: ../../vdms_panels/audio_encoders/acodecs.py:838 +msgid "RMS-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:191 +#: ../../vdms_panels/audio_encoders/acodecs.py:836 +msgid "PEAK-based volume statistics" +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:216 +msgid "" +"...It means the resulting audio will be clipped,\n" +"because its volume is higher than the maximum 0 db\n" +"level. This results in data loss and the audio may\n" +"sound distorted." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:242 +msgid "" +"...It means the resulting audio will not change,\n" +"because it's equal to the source." +msgstr "" + +#: ../../vdms_dialogs/shownormlist.py:266 +msgid "" +"...It means an audio signal will be produced with\n" +"a lower volume than the source." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:63 +msgid "Get Latest Version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:67 +msgid "Checking for newer version" +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:95 +msgid "" +"\n" +"\n" +"New releases fix bugs and offer new features." +msgstr "" + +#: ../../vdms_dialogs/videomass_check_version.py:96 +msgid "" +"\n" +"\n" +"This is Videomass v.{0}\n" +"\n" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:37 +msgid "" +"q, ESC\n" +"f\n" +"p, SPC\n" +"m\n" +"9, 0\n" +"/, *\n" +"a\n" +"v\n" +"t\n" +"c\n" +"w\n" +"s\n" +"\n" +"left/right\n" +"down/up\n" +"page down/page up\n" +"\n" +"right mouse click\n" +"left mouse double-click" +msgstr "" + +#: ../../vdms_dialogs/while_playing.py:92 +msgid "Shortcut keys while playing with FFplay" +msgstr "" + +#: ../../vdms_dialogs/widget_utils.py:120 ../../vdms_main/main_frame.py:1276 +#: ../../vdms_ytdlp/main_ytdlp.py:499 +msgid "Stop" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:65 +msgid "Please take a moment to set up the application" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:66 +msgid "Click the \"Next\" button to get started" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:81 +msgid "Welcome to the Videomass Wizard!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:123 +msgid "Videomass is an application based on FFmpeg\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:125 +msgid "If FFmpeg is not on your computer, this application will be unusable" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:128 +msgid "" +"If you have already installed FFmpeg on your operating\n" +"system, click the \"Auto-detection\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:131 +msgid "" +"If you want to use a version of FFmpeg located on your\n" +"filesystem but not installed on your operating system,\n" +"click the \"Locate\" button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:153 +msgid "Auto-detection" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:155 +msgid "Locate" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:206 +msgid "Click the \"Next\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:227 +msgid "'{}' is not installed on your computer. Install it or indicate another location by clicking the 'Locate' button." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:241 +msgid "" +"Videomass already seems to include FFmpeg.\n" +"\n" +"Do you want to use that?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:267 +msgid "Locating FFmpeg executables\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:269 +msgid "" +"\"ffmpeg\", \"ffprobe\" and \"ffplay\" are required. Complete all\n" +"the text boxes below by clicking on the respective buttons." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:408 +msgid "Videomass has a simple graphical interface for yt-dlp\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:409 +msgid "" +"This feature allows you to download video and audio from\n" +"many sites, including YouTube.com and even Facebook." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:428 +msgid " Do you want to enable this feature?" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:458 +msgid "Wizard completed successfully!\n" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:459 +msgid "Remember that you can always change these settings later, through the Preferences dialog." +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:461 +msgid "Thank You!" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:462 +msgid "To exit click the \"Finish\" button" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:550 +msgid "< Previous" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:553 ../../vdms_dialogs/wizard_dlg.py:653 +msgid "Next >" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:558 +msgid "Videomass Wizard" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:587 ../../vdms_dialogs/wizard_dlg.py:623 +msgid "Finish" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:615 +msgid "Some text boxes are still incomplete" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:679 +msgid "Re-start is required" +msgstr "" + +#: ../../vdms_dialogs/wizard_dlg.py:680 +msgid "Done!" +msgstr "" + +#: ../../vdms_io/checkup.py:47 +msgid "Files already exist, do you want to overwrite them?" +msgstr "" + +#: ../../vdms_io/checkup.py:49 +msgid "Already exist" +msgstr "" + +#: ../../vdms_io/checkup.py:63 +msgid "Not found" +msgstr "" + +#: ../../vdms_io/checkup.py:64 ../../vdms_panels/filedrop.py:196 +#: ../../vdms_ytdlp/textdrop.py:86 +msgid "Error list" +msgstr "" + +#: ../../vdms_io/checkup.py:65 +msgid "File(s) not found" +msgstr "" + +#: ../../vdms_io/checkup.py:74 +msgid "" +"Output folder does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_io/io_tools.py:58 +msgid "" +"Wait....\n" +"Retrieving required data." +msgstr "" + +#: ../../vdms_io/io_tools.py:82 +#, python-format +msgid "File does not exist or is invalid: %s" +msgstr "" + +#: ../../vdms_io/io_tools.py:100 +msgid "" +"Wait....\n" +"Audio peak analysis." +msgstr "" + +#: ../../vdms_io/io_tools.py:205 +msgid "Videomass - Downloading..." +msgstr "" + +#: ../../vdms_main/main_frame.py:188 ../../vdms_main/main_frame.py:1357 +#: ../../vdms_main/main_frame.py:1385 ../../vdms_ytdlp/main_ytdlp.py:98 +#: ../../vdms_ytdlp/main_ytdlp.py:146 ../../vdms_ytdlp/main_ytdlp.py:553 +#: ../../vdms_ytdlp/textdrop.py:233 ../../vdms_ytdlp/youtubedl_ui.py:437 +msgid "Ready" +msgstr "" + +#: ../../vdms_main/main_frame.py:205 +msgid "" +"Not all items in the queue were completed.\n" +"\n" +"Would you like to keep them in the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:226 +msgid "Queue ({0})" +msgstr "" + +#: ../../vdms_main/main_frame.py:231 ../../vdms_main/main_frame.py:1284 +msgid "Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:401 ../../vdms_main/main_frame.py:426 +#: ../../vdms_ytdlp/main_ytdlp.py:225 +msgid "There are still active windows with running processes, make sure you finish your work before exit." +msgstr "" + +#: ../../vdms_main/main_frame.py:408 +msgid "Are you sure you want to exit the application?" +msgstr "" + +#: ../../vdms_main/main_frame.py:410 +msgid "Exit" +msgstr "" + +#: ../../vdms_main/main_frame.py:473 +msgid "Import files\tCtrl+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:476 +msgid "Open destination folder of encodings\tCtrl+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:479 +msgid "Load queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:480 +msgid "Load a previously exported queue file" +msgstr "" + +#: ../../vdms_main/main_frame.py:483 +msgid "Open trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:484 +msgid "Open the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:486 +msgid "Empty trash" +msgstr "" + +#: ../../vdms_main/main_frame.py:487 +msgid "Delete all files in the Videomass trash folder" +msgstr "" + +#: ../../vdms_main/main_frame.py:490 +msgid "Exit\tCtrl+Q" +msgstr "" + +#: ../../vdms_main/main_frame.py:491 +msgid "Completely exit the application" +msgstr "" + +#: ../../vdms_main/main_frame.py:492 ../../vdms_ytdlp/main_ytdlp.py:284 +msgid "File" +msgstr "" + +#: ../../vdms_main/main_frame.py:496 ../../vdms_panels/filedrop.py:340 +#: ../../vdms_panels/filedrop.py:359 +msgid "Rename selected file\tCtrl+R" +msgstr "" + +#: ../../vdms_main/main_frame.py:497 +msgid "Rename the destination of the selected file" +msgstr "" + +#: ../../vdms_main/main_frame.py:500 ../../vdms_panels/filedrop.py:341 +#: ../../vdms_panels/filedrop.py:362 +msgid "Batch rename files\tCtrl+B" +msgstr "" + +#: ../../vdms_main/main_frame.py:501 +msgid "Numerically renames the destination of all items in the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:506 ../../vdms_panels/filedrop.py:343 +#: ../../vdms_panels/filedrop.py:366 +msgid "Remove selected entry\tDEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:507 +msgid "Remove the selected file from the list" +msgstr "" + +#: ../../vdms_main/main_frame.py:510 ../../vdms_panels/filedrop.py:344 +#: ../../vdms_panels/filedrop.py:369 ../../vdms_ytdlp/main_ytdlp.py:294 +#: ../../vdms_ytdlp/textdrop.py:191 ../../vdms_ytdlp/textdrop.py:212 +msgid "Clear list\tShift+DEL" +msgstr "" + +#: ../../vdms_main/main_frame.py:511 +msgid "Clear the file list" +msgstr "" + +#: ../../vdms_main/main_frame.py:516 +msgid "Preferences\tCtrl+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:517 +msgid "Application preferences" +msgstr "" + +#: ../../vdms_main/main_frame.py:522 +msgid "Find FFmpeg topics" +msgstr "" + +#: ../../vdms_main/main_frame.py:523 +msgid "A useful tool to search for FFmpeg help topics and options" +msgstr "" + +#: ../../vdms_main/main_frame.py:528 +msgid "Check for preset updates" +msgstr "" + +#: ../../vdms_main/main_frame.py:529 +msgid "Check for new presets updates from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:531 +msgid "Get latest presets" +msgstr "" + +#: ../../vdms_main/main_frame.py:532 +msgid "Get the latest presets from {0}" +msgstr "" + +#: ../../vdms_main/main_frame.py:535 ../../vdms_ytdlp/main_ytdlp.py:305 +msgid "Work notes\tCtrl+N" +msgstr "" + +#: ../../vdms_main/main_frame.py:536 ../../vdms_ytdlp/main_ytdlp.py:306 +msgid "Read and write useful notes and reminders." +msgstr "" + +#: ../../vdms_main/main_frame.py:538 ../../vdms_ytdlp/main_ytdlp.py:308 +msgid "Tools" +msgstr "" + +#: ../../vdms_main/main_frame.py:545 +msgid "Show FFmpeg's built-in configuration capabilities" +msgstr "" + +#: ../../vdms_main/main_frame.py:549 +msgid "Muxers and demuxers available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:553 +msgid "Encoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:556 +msgid "Decoders available on your version of FFmpeg" +msgstr "" + +#: ../../vdms_main/main_frame.py:559 +msgid "FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:560 +msgid "Enable timestamps on playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:561 +msgid "Displays timestamp when playing media with FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:564 +msgid "Auto-exit after playback" +msgstr "" + +#: ../../vdms_main/main_frame.py:565 +msgid "If checked, the FFplay window will auto-close when playback is complete" +msgstr "" + +#: ../../vdms_main/main_frame.py:569 +msgid "Customize the timestamp style" +msgstr "" + +#: ../../vdms_main/main_frame.py:572 +msgid "While playing..." +msgstr "" + +#: ../../vdms_main/main_frame.py:573 +msgid "Show useful shortcut keys when playing or previewing using FFplay" +msgstr "" + +#: ../../vdms_main/main_frame.py:577 +msgid "Show timeline editor\tCtrl+T" +msgstr "" + +#: ../../vdms_main/main_frame.py:578 +msgid "Set duration or trim slices of time to remove unwanted parts from your files" +msgstr "" + +#: ../../vdms_main/main_frame.py:582 ../../vdms_ytdlp/main_ytdlp.py:318 +msgid "View" +msgstr "" + +#: ../../vdms_main/main_frame.py:589 +msgid "Home panel\tCtrl+Shift+H" +msgstr "" + +#: ../../vdms_main/main_frame.py:590 +msgid "Go to the «Home» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:593 +msgid "Presets Manager\tCtrl+Shift+P" +msgstr "" + +#: ../../vdms_main/main_frame.py:594 +msgid "Go to the «Presets Manager» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:596 +msgid "A/V Conversions\tCtrl+Shift+V" +msgstr "" + +#: ../../vdms_main/main_frame.py:597 +msgid "Go to the «A/V Conversions» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:599 +msgid "Concatenate Demuxer\tCtrl+Shift+D" +msgstr "" + +#: ../../vdms_main/main_frame.py:600 +msgid "Go to the «Concatenate Demuxer» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:603 +msgid "Still Image Maker\tCtrl+Shift+I" +msgstr "" + +#: ../../vdms_main/main_frame.py:604 +msgid "Go to the «Still Image Maker» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:606 +msgid "From Movie to Pictures\tCtrl+Shift+S" +msgstr "" + +#: ../../vdms_main/main_frame.py:607 +msgid "Go to the «From Movie to Pictures» panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:610 +msgid "YouTube Downloader\tCtrl+Shift+Y" +msgstr "" + +#: ../../vdms_main/main_frame.py:611 +msgid "Open «YouTube Downloader» window" +msgstr "" + +#: ../../vdms_main/main_frame.py:613 +msgid "Output monitor\tCtrl+Shift+O" +msgstr "" + +#: ../../vdms_main/main_frame.py:614 +msgid "Keeps track of the output for debugging errors" +msgstr "" + +#: ../../vdms_main/main_frame.py:616 +msgid "Go" +msgstr "" + +#: ../../vdms_main/main_frame.py:620 +msgid "User guide" +msgstr "" + +#: ../../vdms_main/main_frame.py:623 +msgid "Issue tracker" +msgstr "" + +#: ../../vdms_main/main_frame.py:627 +msgid "Check for newer version" +msgstr "" + +#: ../../vdms_main/main_frame.py:628 +msgid "Check for the latest Videomass version" +msgstr "" + +#: ../../vdms_main/main_frame.py:630 +msgid "System version" +msgstr "" + +#: ../../vdms_main/main_frame.py:631 +msgid "Get version about your operating system, version of Python and wxPython." +msgstr "" + +#: ../../vdms_main/main_frame.py:635 +msgid "Show log files\tCtrl+L" +msgstr "" + +#: ../../vdms_main/main_frame.py:636 +msgid "Viewing log messages" +msgstr "" + +#: ../../vdms_main/main_frame.py:640 +msgid "Contribute to the project" +msgstr "" + +#: ../../vdms_main/main_frame.py:644 +msgid "About Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:645 +msgid "Help" +msgstr "" + +#: ../../vdms_main/main_frame.py:709 +msgid "Import files" +msgstr "" + +#: ../../vdms_main/main_frame.py:732 +msgid "No default folder has been set for the destination of the encodings. The current setting is \"Same destination paths as source files\"." +msgstr "" + +#: ../../vdms_main/main_frame.py:764 ../../vdms_main/main_frame.py:789 +msgid "" +"'{}':\n" +"No such file or directory" +msgstr "" + +#: ../../vdms_main/main_frame.py:777 +msgid "Are you sure to empty trash folder?" +msgstr "" + +#: ../../vdms_main/main_frame.py:785 +msgid "" +"'{}':\n" +"There are no files to delete." +msgstr "" + +#: ../../vdms_main/main_frame.py:842 +msgid "Installed release v{0}. A new presets release is available {1}" +msgstr "" + +#: ../../vdms_main/main_frame.py:846 +msgid "Installed release v{0}. No new updates found." +msgstr "" + +#: ../../vdms_main/main_frame.py:876 +msgid "" +"Wait....\n" +"The archive is being downloaded" +msgstr "" + +#: ../../vdms_main/main_frame.py:888 +msgid "Successfully downloaded to \"{0}\"" +msgstr "" + +#: ../../vdms_main/main_frame.py:1100 +msgid "Some changes require restarting the application." +msgstr "" + +#: ../../vdms_main/main_frame.py:1106 +msgid "" +"{0}\n" +"\n" +"Do you want to restart the application now?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1108 +msgid "Restart Videomass?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1157 +msgid "A new release is available - v.{0}\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1160 +msgid "You are using a development version that has not yet been released!\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1163 +msgid "Congratulation! You are already using the latest version.\n" +msgstr "" + +#: ../../vdms_main/main_frame.py:1251 +msgid "Previous panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1252 ../../vdms_ytdlp/main_ytdlp.py:477 +msgid "Back" +msgstr "" + +#: ../../vdms_main/main_frame.py:1255 +msgid "Next panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1256 ../../vdms_ytdlp/main_ytdlp.py:482 +msgid "Next" +msgstr "" + +#: ../../vdms_main/main_frame.py:1259 +msgid "Home panel" +msgstr "" + +#: ../../vdms_main/main_frame.py:1260 +msgid "Home" +msgstr "" + +#: ../../vdms_main/main_frame.py:1263 +msgid "Play the selected imput file" +msgstr "" + +#: ../../vdms_main/main_frame.py:1264 +msgid "Play" +msgstr "" + +#: ../../vdms_main/main_frame.py:1267 +msgid "Get informative data about imported media streams" +msgstr "" + +#: ../../vdms_main/main_frame.py:1271 +msgid "Start batch processing" +msgstr "" + +#: ../../vdms_main/main_frame.py:1275 ../../vdms_ytdlp/main_ytdlp.py:498 +msgid "Stops current process" +msgstr "" + +#: ../../vdms_main/main_frame.py:1279 +msgid "Add an item to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1280 +msgid "Add to Queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1283 +msgid "Show queue" +msgstr "" + +#: ../../vdms_main/main_frame.py:1356 ../../vdms_panels/presets_manager.py:569 +#: ../../vdms_ytdlp/main_ytdlp.py:145 +msgid "Videomass" +msgstr "" + +#: ../../vdms_main/main_frame.py:1386 +msgid "Videomass - File List" +msgstr "" + +#: ../../vdms_main/main_frame.py:1403 +msgid "Videomass - AV Conversions" +msgstr "" + +#: ../../vdms_main/main_frame.py:1430 +msgid "Videomass - Presets Manager" +msgstr "" + +#: ../../vdms_main/main_frame.py:1458 +msgid "Videomass - Concatenate Demuxer" +msgstr "" + +#: ../../vdms_main/main_frame.py:1485 +msgid "Videomass - From Movie to Pictures" +msgstr "" + +#: ../../vdms_main/main_frame.py:1512 +msgid "Videomass - Still Image Maker" +msgstr "" + +#: ../../vdms_main/main_frame.py:1594 +#: ../../vdms_panels/audio_encoders/acodecs.py:786 +#: ../../vdms_panels/av_conversions.py:577 ../../vdms_panels/filedrop.py:475 +#: ../../vdms_panels/filedrop.py:588 ../../vdms_panels/sequence_to_video.py:320 +#: ../../vdms_panels/video_to_sequence.py:371 +#: ../../vdms_panels/video_to_sequence.py:503 +msgid "Have to select an item in the file list first" +msgstr "" + +#: ../../vdms_main/main_frame.py:1616 +msgid "" +"An item with the same destination file already exists.\n" +"\n" +"Do you want to replace it by adding the new item to the queue?" +msgstr "" + +#: ../../vdms_main/main_frame.py:1637 +msgid "Videomass - FFmpeg Message Monitoring" +msgstr "" + +#: ../../vdms_main/main_frame.py:1762 +msgid "yt-dlp is disabled. Check your preferences." +msgstr "" + +#: ../../vdms_main/main_frame.py:1765 +msgid "The application requires to be restarted." +msgstr "" + +#: ../../vdms_main/main_frame.py:1768 +msgid "The Python module «yt_dlp» was not found. Make sure you have installed yt-dlp correctly." +msgstr "" + +#: ../../vdms_main/main_frame.py:1795 +msgid "The system will turn off in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1796 +msgid "Videomass - Shutdown!" +msgstr "" + +#: ../../vdms_main/main_frame.py:1803 +msgid "Error while shutting down. Please see file log for details." +msgstr "" + +#: ../../vdms_main/main_frame.py:1815 +msgid "Exiting the application in {0} seconds" +msgstr "" + +#: ../../vdms_main/main_frame.py:1816 +msgid "Videomass - Exiting!" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:46 +msgid "Start point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:48 +msgid "End point adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:105 +msgid "Hours" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:106 +msgid "Minutes" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:107 +msgid "Seconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:108 +msgid "Milliseconds" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:189 ../../vdms_miniframes/timeline.py:312 +msgid "No source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:208 ../../vdms_miniframes/timeline.py:298 +#: ../../vdms_miniframes/timeline.py:333 ../../vdms_miniframes/timeline.py:338 +#: ../../vdms_miniframes/timeline.py:441 +msgid "{0} {1} | Segment Duration: {2}" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:260 ../../vdms_miniframes/timeline.py:277 +msgid "End adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:261 ../../vdms_miniframes/timeline.py:279 +msgid "Start adjustment" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:320 +msgid "Source duration:" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:387 +msgid "WARNING: Invalid selection, out of range." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:461 +msgid "" +"Start by dragging the bottom left handle,\n" +"or right-click for options." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:497 +msgid "Start" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:498 +msgid "End" +msgstr "" + +#: ../../vdms_miniframes/timeline.py:548 +msgid "" +"The timeline editor is a tool that allows you to trim slices of time on selected imported media (see File List panel).\n" +"\n" +"The \"time format\" used to report durations is expressed in hours, minutes, seconds and milliseconds (HH:MM:SS.ms).\n" +"\n" +"Note that importing new files, making new selection, deselection, deleting items, sorting items (ie by LEFT clicking on the column headers), will reset any previous settings to default values.\n" +"\n" +"If the File List panel is empty or no source files are selected, the overall duration values will be set to 23:59:59.999, rather than the duration of a selected source file (see status bar messages).\n" +"\n" +"The \"Start\"/\"End\" duration values always refer to the initial position of the timeline: 00:00:00.000. For other informations as the segment duration and warnings, please refer to the status bar messages." +msgstr "" + +#: ../../vdms_miniframes/timeline.py:565 +msgid "Timeline Editor Usage" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:153 +msgid "Media:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:169 +msgid "Container:" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:180 +msgid "Save profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:183 +msgid "Target" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:316 +msgid "Miscellaneous" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:323 +msgid "Save as a new profile of the Presets Manager." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:325 +msgid "Available video encoders. \"Copy\" means that the video stream will not be re-encoded and will allow you (depending on the encoder) to change the container, audio codec and a few other parameters." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:330 +msgid "" +"Container format. It is usually represented by the file extension (output format).\n" +"\n" +"If the Media target is set to \"Video\" and the Video Encoder to \"Copy\", optionally you can set this control to \"Copy\" the same container as source file.\n" +"\n" +"If the media target is set to \"Audio\", you can extract only the audio streams from videos, or simply convert audio source files." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:338 +msgid "" +"Set output files target: \"Video\" to save output files as video files; \"Audio\" to save files using an audio encoder and format.\n" +"\n" +"Note that by using \"Audio\" as the target, you will still be able to work on the video source files but you will only be able to extract the audio streams, convert them and apply audio filters such as normalization." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:346 +msgid "Preview video filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:347 +msgid "Disable active filters" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:348 +#: ../../vdms_panels/sequence_to_video.py:155 +#: ../../vdms_panels/video_to_sequence.py:113 +msgid "Resize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:349 +msgid "Crop" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:350 +msgid "Transpose" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:352 +msgid "Denoise" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:353 +msgid "Stabilize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:354 +msgid "Equalize" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:517 +msgid "Unable to preview Video Stabilizer filter" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:602 +msgid "" +"Unsupported file:\n" +"Missing decoder or library? Check FFmpeg configuration." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:611 +#: ../../vdms_panels/sequence_to_video.py:349 +#: ../../vdms_panels/video_to_sequence.py:400 +msgid "The file is not a frame or a video file" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:433 +#: ../../vdms_panels/av_conversions.py:861 +msgid "Undetected volume values! Click the \"Volume detect\" button to analyze audio volume data." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1186 +msgid "Off" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1203 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Output Format\n" +"Video Codec\n" +"Audio Codec\n" +"Audio Normalization\n" +"Output multimedia type\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1246 +#: ../../vdms_panels/presets_manager.py:814 +msgid "Write profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1266 +#: ../../vdms_panels/presets_manager.py:513 +msgid "Enter name for new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1276 +#: ../../vdms_panels/presets_manager.py:524 +msgid "Invalid file name, make sure to provide a valid name including the «.json» extension" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1284 +msgid "Cannot save current data in file «{}»." +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1289 +msgid "Open Videomass preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1307 +msgid "Videomass - Save new profile" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1308 +msgid "Where do you want to save this profile?" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1309 +msgid "Save the profile to a new preset" +msgstr "" + +#: ../../vdms_panels/av_conversions.py:1310 +msgid "Save the profile to an existing preset" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:71 +msgid "Welcome to Videomass" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:73 +msgid "Version {}" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:84 +msgid "Presets Manager" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:87 +msgid "AV-Conversions" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:90 +msgid "Concatenate media files" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:93 +msgid "YouTube Downloader" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:96 +msgid "Still Image Maker" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:99 +msgid "From Movie to Pictures" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:117 +msgid "Create, edit and use quickly your favorite FFmpeg presets and profiles with full formats support and codecs." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:121 +msgid "A set of useful tools for audio and video conversions. Save your profiles and reuse them with Presets Manager." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:125 +msgid "Easily download videos and audio in different formats and quality from YouTube, Facebook and more sites." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:129 +msgid "Concatenate multiple media files based on import order without re-encoding" +msgstr "" + +#: ../../vdms_panels/choose_topic.py:132 +msgid "Create video from a sequence of images, based on import order, with the ability to add an audio file." +msgstr "" + +#: ../../vdms_panels/choose_topic.py:135 +msgid "Extract images (frames) from your movies in JPG, PNG, BMP, GIF formats." +msgstr "" + +#: ../../vdms_panels/concatenate.py:47 +msgid "At least two files are required to perform concatenation." +msgstr "" + +#: ../../vdms_panels/concatenate.py:63 +msgid "Invalid data found" +msgstr "" + +#: ../../vdms_panels/concatenate.py:68 +msgid "The files do not have the same \"codec_types\", same \"sample_rate\" or same \"width\" or \"height\". Unable to proceed." +msgstr "" + +#: ../../vdms_panels/concatenate.py:84 +msgid "" +"\n" +"- The concatenation function is performed only with Audio files or only with Video files.\n" +"\n" +"- The order of concatenation depends on the order in which the files were added.\n" +"\n" +"- The output file name will have the same name as the first file added (also depends on the\n" +" settings made in the preferences dialog or the renaming functions used).\n" +"\n" +"- Video files must have exactly same streams, same codecs and same\n" +" width/height, but can be wrapped in different container formats.\n" +"\n" +"- Audio files must have exactly the same formats, same codecs with equal sample rate." +msgstr "" + +#: ../../vdms_panels/concatenate.py:125 +msgid "For more details, see the Videomass User Guide:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:145 +#: ../../vdms_panels/sequence_to_video.py:208 +#: ../../vdms_panels/video_to_sequence.py:181 +msgid "For more information, visit the official FFmpeg documentation:" +msgstr "" + +#: ../../vdms_panels/concatenate.py:264 +msgid "" +"Items to concatenate\n" +"File destination\n" +"Output Format\n" +"Output multimedia type\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:45 +msgid "File has illegal characters like:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:46 +msgid "Invalid character found in path name: (\")" +msgstr "" + +#: ../../vdms_panels/filedrop.py:47 +msgid "Directories are not allowed, just add files, please." +msgstr "" + +#: ../../vdms_panels/filedrop.py:48 +msgid "File without format extension: please give an appropriate extension to the file name, example '.mkv', '.avi', '.mp3', etc." +msgstr "" + +#: ../../vdms_panels/filedrop.py:84 +msgid "Name has illegal characters like: {0}" +msgstr "" + +#: ../../vdms_panels/filedrop.py:85 +msgid "Name already in use:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:185 +msgid "Duplicate file, it has already been added to the list." +msgstr "" + +#: ../../vdms_panels/filedrop.py:197 +msgid "Rejected files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:269 +msgid "Source file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:270 +msgid "Duration" +msgstr "" + +#: ../../vdms_panels/filedrop.py:271 +msgid "Media type" +msgstr "" + +#: ../../vdms_panels/filedrop.py:272 ../../vdms_ytdlp/formatcode.py:137 +msgid "Size" +msgstr "" + +#: ../../vdms_panels/filedrop.py:275 ../../vdms_panels/filedrop.py:383 +msgid "Drag one or more files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:282 ../../vdms_ytdlp/textdrop.py:143 +msgid "Save to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:306 +msgid "Set a new destination folder for encodings" +msgstr "" + +#: ../../vdms_panels/filedrop.py:308 +msgid "Encodings destination folder" +msgstr "" + +#: ../../vdms_panels/filedrop.py:338 ../../vdms_panels/filedrop.py:372 +msgid "Play file" +msgstr "" + +#: ../../vdms_panels/filedrop.py:386 +msgid "Drag two or more Audio/Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:390 +msgid "Drag one or more Image files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:393 +msgid "Drag one or more Video files below" +msgstr "" + +#: ../../vdms_panels/filedrop.py:595 +msgid "Rename the file destination" +msgstr "" + +#: ../../vdms_panels/filedrop.py:596 +msgid "Rename the selected file to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:610 ../../vdms_panels/filedrop.py:620 +#: ../../vdms_panels/filedrop.py:651 +msgid "Add Files" +msgstr "" + +#: ../../vdms_panels/filedrop.py:627 +msgid "Rename in batch" +msgstr "" + +#: ../../vdms_panels/filedrop.py:628 +msgid "Rename the {0} items to:" +msgstr "" + +#: ../../vdms_panels/filedrop.py:630 +msgid "New Name #" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:114 +#: ../../vdms_ytdlp/long_task_ytdlp.py:47 +msgid "Sorry, all task failed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:115 +#: ../../vdms_ytdlp/long_task_ytdlp.py:48 +msgid "The process was stopped due to a fatal error." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:116 +#: ../../vdms_ytdlp/long_task_ytdlp.py:49 +msgid "Interrupted Process !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:117 +#: ../../vdms_ytdlp/long_task_ytdlp.py:50 +msgid "Successfully completed !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:118 +#: ../../vdms_ytdlp/long_task_ytdlp.py:51 +msgid "Not everything was successful." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:149 +msgid "Encoding Status" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:153 +#: ../../vdms_ytdlp/long_task_ytdlp.py:86 +msgid "Current Log" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:360 +#: ../../vdms_ytdlp/long_task_ytdlp.py:270 +msgid "Fatal Error !" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:369 +#: ../../vdms_ytdlp/long_task_ytdlp.py:279 +msgid "Get your files at the destination you specified" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:383 +msgid "For more details please read the Current Log." +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:386 +#: ../../vdms_ytdlp/long_task_ytdlp.py:299 +msgid "...Finished" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:405 +#: ../../vdms_ytdlp/long_task_ytdlp.py:313 +msgid "Please wait... interruption in progress" +msgstr "" + +#: ../../vdms_panels/long_processing_task.py:408 +msgid "...Interrupted" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:166 +msgid "Presets" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:180 +msgid "Write" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:184 +msgid "Delete" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:194 +msgid "Duplicate" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:199 +msgid "Profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:206 +msgid "One-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:218 +msgid "Two-Pass Encoding" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:232 +msgid "Choose a preset and view its profiles" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:233 +msgid "Write a new profile and save it in the selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:235 +msgid "Delete the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:236 +msgid "Edit the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:237 +msgid "Duplicate the selected profile" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:238 +msgid "Create new preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:240 +msgid "Remove selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:242 +msgid "Backup selected preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:244 +msgid "Backup the presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:246 +msgid "Restore a preset" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:248 +msgid "Restore a presets folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:250 +msgid "Resets the selected preset to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:252 +msgid "Reset all presets to default values" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:254 +msgid "Refresh the presets list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:338 +msgid "" +"Outdated presets version found: v{1}\n" +"A new version is available: v{0}\n" +"\n" +"This update provides new presets included on the latest versions of Videomass.\n" +"\n" +"To avoid data loss and allow for possible recovery, the outdated presets folder will be backed up in the program configuration directory:\n" +"«{2}»\n" +"\n" +"Do you want to perform this update now?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:403 +msgid "Name" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:405 +msgid "Output Format" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:406 +msgid "Supported Format List" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:531 +msgid "Cannot save current data in file '{}'." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:535 +msgid "You just successfully created a new preset!" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:547 +msgid "" +"Are you sure you want to remove \"{}\" preset?\n" +"\n" +" It will be moved to the \"Removals\" subfolder inside the presets folder." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:558 +msgid "" +"{}\n" +"\n" +"Sorry, removal failed, cannot continue.." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:568 +msgid "The preset \"{0}\" was successfully removed" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:583 +#: ../../vdms_panels/presets_manager.py:612 +msgid "Open a destination folder" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:588 +msgid "A file with this name already exists, do you want to overwrite it?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:602 +#: ../../vdms_panels/presets_manager.py:622 +msgid "Backup completed successfully" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:631 +msgid "Open the preset you want to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:645 +msgid "" +"This preset already exists and is about to be updated. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:663 +msgid "Restore successful" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:681 +msgid "" +"This will update the presets database. Don't worry, it will keep all your saved profiles.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:689 +msgid "Open the presets folder to restore" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:725 +msgid "The presets database has been successfully updated" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:740 +msgid "The selected preset is not part of Videomass's default presets." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:745 +msgid "" +"Be careful! The selected preset will be overwritten with the default one. Your profiles may be deleted!\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:760 +#: ../../vdms_panels/presets_manager.py:794 +msgid "Successful recovery" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:769 +msgid "" +"Be careful! This action will restore all presets to default ones. Your profiles may be deleted!\n" +"\n" +"In any case, to avoid data loss, the presets folder will be backed up in the program's configuration directory.\n" +"\n" +"Do you want to continue?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:833 +msgid "Edit profile on «{0}»" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:872 +msgid "Are you sure you want to delete the selected profile? It will no longer be possible to recover it." +msgstr "" + +#: ../../vdms_panels/presets_manager.py:891 +msgid "First select a profile in the list" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:899 +msgid "" +"The selected profile command has been changed manually.\n" +"Do you want to apply it during the conversion process?" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:909 +msgid "Don't show this dialog again" +msgstr "" + +#: ../../vdms_panels/presets_manager.py:1054 +msgid "" +"Batch processing items\n" +"Destination\n" +"Automation/Preset\n" +"Encoding passes\n" +"Profile Used\n" +"Output Format\n" +"Start of segment\n" +"Clip duration" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:54 +msgid "Images need to be resized, please use Resize function." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:73 +msgid "" +"\n" +"1. Import one or more image files such as JPG, PNG and BMP formats, then select one.\n" +"\n" +"2. Use the Resize tool for images which have different sizes such as width and\n" +"height. It is optional in other cases.\n" +"\n" +"3. Use the Timeline editor (CTRL+T) to set the time interval between images by adjusting\n" +"the \"End\" duration value and leaving the \"Start\" value at 00:00:00.000.\n" +"\n" +"4. Run the conversion.\n" +"\n" +"\n" +"The produced video will have the name of the selected file in the 'File List' panel, which\n" +"will be saved in a folder named 'Still_Images' with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:129 +msgid "Enable a single still image" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:161 +msgid "" +"Force original aspect ratio using\n" +"padding rather than stretching" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:167 +msgid "Include audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:170 +msgid "Play the video until audio track finishes" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:177 +#: ../../vdms_panels/sequence_to_video.py:437 +msgid "Open audio file" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:195 +msgid "Additional arguments" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:452 +msgid "Open Audio File" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:464 +msgid "" +"Invalid file: '{}'\n" +"\n" +"{}" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:469 +msgid "" +"Invalid file: '{}'\n" +"\n" +"It doesn't appear to be an audio file." +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:558 +#: ../../vdms_panels/sequence_to_video.py:585 +#: ../../vdms_panels/video_to_sequence.py:513 +msgid "Invalid file: '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:568 +#: ../../vdms_panels/sequence_to_video.py:593 +msgid "Unsupported format '{}'" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:574 +#: ../../vdms_panels/sequence_to_video.py:598 +msgid "" +"File does not exist:\n" +"\n" +"\"{}\"\n" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:575 +msgid "ERROR" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:705 +msgid "Shortest" +msgstr "" + +#: ../../vdms_panels/sequence_to_video.py:713 +msgid "" +"Items to concatenate\n" +"Output filename\n" +"Destination\n" +"Output Format\n" +"Additional arguments\n" +"Audio file\n" +"Shortest\n" +"Resize\n" +"Pre-input\n" +"Frame per Second (FPS)\n" +"Still image duration\n" +"Overall video duration" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:50 +msgid "" +"\n" +"1. Import one or more video files, then select one.\n" +"\n" +"2. To select a slice of time use the Timeline editor (CTRL+T) by adjusting the\n" +"\"End\" and the \"Start\" duration values.\n" +"\n" +"3. Select an output format (jpg, png, bmp).\n" +"\n" +"4. Start the conversion.\n" +"\n" +"\n" +"The images produced will be saved in a folder named 'Movie_to_Pictures'\n" +"with a progressive digit, in the path you specify." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:86 +msgid "Create thumbnails" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:87 +msgid "Create tiled mosaics" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:88 +msgid "Create animated GIF" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:90 ../../vdms_ytdlp/main_ytdlp.py:492 +msgid "Options" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:119 +msgid "Output format:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:131 +msgid "Rows:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:141 +msgid "Columns:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:207 +msgid "Other unofficial resources:" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:231 +msgid "Set FPS control from 0.1 to 30.0 fps. The higher this value, the more images will be extracted." +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:234 +msgid "Spaces around the mosaic tiles. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:236 +msgid "Spaces around the mosaic borders. From 0 to 32 pixels" +msgstr "" + +#: ../../vdms_panels/video_to_sequence.py:628 +msgid "" +"Selected File\n" +"Output Format\n" +"Destination\n" +"Rate (fps)\n" +"Resizing\n" +"Mosaic rows\n" +"Mosaic columns\n" +"Mosaic padding\n" +"Mosaic margin\n" +"Custom Arguments\n" +"Start of segment\n" +"Duration" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:118 +msgid "Audio encoder settings, mapping and filters" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:128 +msgid "Audio Encoder" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:137 +msgid "Settings" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:148 +msgid "Index Selection:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:157 +msgid "Map:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:180 +msgid "Normalization" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:191 +msgid "Volume detect" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:195 +msgid "Volume Statistics" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:199 +msgid "Target level:" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:263 +msgid "Gets maximum volume and average volume data in dBFS, then calculates the offset amount for audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:266 +msgid "Limiter for the maximum peak level or the mean level (when switch to RMS) in dBFS. From -99.0 to +0.0; default for PEAK level is -1.0; default for RMS is -20.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:270 +msgid "" +"Normally on a video with correctly indexed streams and having one or more audio streams, the first audio stream should be indexed at \"1\", the second at \"2\" and so on (the video stream on the other hand is always indexed at \"0\"). In this case it is recommended to select the desired stream by setting a specific index, e.g \"1\" for for the first available audio stream.\n" +"\n" +"Set this control to \"Auto\" if the source file is simply an audio track." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:279 +msgid "" +"\"Auto\" keeps all audio streams and processes only the one selected by the \"Index Selection\" control.\n" +"\n" +"\"All\" processes all audio streams in a video with the properties of the one selected by the \"Index Selection\" control.\n" +"\n" +"\"Index Only\" processes only the audio stream selected by the \"Index Selection\" control and removes all others from the video" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:287 +msgid "Integrated Loudness Target in LUFS. From -70.0 to -5.0, default is -16.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:290 +msgid "Maximum True Peak in dBTP. From -1.5 to +0.0, default is -2.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:293 +msgid "Loudness Range Target in LUFS. From +1.0 to +20.0, default is +11.0" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:296 +msgid "Play the audio stream selected in the \"Index Selection\" control. Using this function you can test the result of audio normalization." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:502 +msgid "Selected index does not exist or does not contain any audio streams" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:507 +msgid "" +"ERROR: Missing audio stream:\n" +"\"{}\"" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:589 +msgid "No Audio" +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:723 +msgid "PEAK level normalization, which will produce a maximum peak level equal to the set target level." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:726 +msgid "RMS-based normalization, which according to mean volume calculates the amount of gain to reach same average power signal." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:730 +msgid "" +"Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements the EBU R128 algorithm.\n" +"Ideal for live normalization. It produces worse results than the High-quality two-pass Loudnorm normalization, but is faster." +msgstr "" + +#: ../../vdms_panels/audio_encoders/acodecs.py:737 +msgid "" +"High-quality two-pass Loudnorm normalization. Normalizes the perceived loudness using the \"loudnorm\" filter, which implements\n" +"the EBU R128 algorithm. Ideal for postprocessing." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:63 +msgid "Subtitle Mapping" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:77 +msgid "Copy Chapters" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:79 +msgid "Copy Metadata" +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:85 +msgid "" +"Select \"All\" to include any source file subtitles in the output video.\n" +"\n" +"Select \"None\" to exclude any subtitles stream in the output video.\n" +"\n" +"This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:90 +msgid "Copy the chapter markers as is from source file. This option is automatically ignored for output audio files." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:93 +msgid "Copy all incoming metadata from source file, such as audio/video tags, titles, unique marks, and so on." +msgstr "" + +#: ../../vdms_panels/miscellaneous/miscell.py:108 +msgid "Additional options" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:89 +#: ../../vdms_panels/video_encoders/av1_svt.py:120 +#: ../../vdms_panels/video_encoders/avc_x264.py:90 +#: ../../vdms_panels/video_encoders/hevc_x265.py:98 +#: ../../vdms_panels/video_encoders/mpeg4.py:71 +#: ../../vdms_panels/video_encoders/vp9_webm.py:131 +msgid "Reload" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:101 +#: ../../vdms_panels/video_encoders/av1_svt.py:129 +#: ../../vdms_panels/video_encoders/avc_x264.py:101 +#: ../../vdms_panels/video_encoders/hevc_x265.py:109 +#: ../../vdms_panels/video_encoders/mpeg4.py:82 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:97 +#: ../../vdms_panels/video_encoders/vp9_webm.py:141 +msgid "Optimize for Web" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:247 +#: ../../vdms_panels/video_encoders/av1_svt.py:313 +#: ../../vdms_panels/video_encoders/avc_x264.py:242 +#: ../../vdms_panels/video_encoders/hevc_x265.py:250 +#: ../../vdms_panels/video_encoders/mpeg4.py:198 +#: ../../vdms_panels/video_encoders/vp9_webm.py:288 +msgid "Reloads the selected video encoder settings. Changes will be discarded." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:250 +#: ../../vdms_panels/video_encoders/avc_x264.py:273 +#: ../../vdms_panels/video_encoders/hevc_x265.py:277 +#: ../../vdms_panels/video_encoders/vp9_webm.py:291 +msgid "Constant rate factor. Lower values correspond to higher quality and greater file size. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:254 +#: ../../vdms_panels/video_encoders/av1_svt.py:357 +#: ../../vdms_panels/video_encoders/vp9_webm.py:295 +msgid "Number of tile rows to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:256 +#: ../../vdms_panels/video_encoders/av1_svt.py:359 +#: ../../vdms_panels/video_encoders/vp9_webm.py:297 +msgid "Number of tile columns to use, default changes per resolution" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:259 +#: ../../vdms_panels/video_encoders/av1_svt.py:368 +#: ../../vdms_panels/video_encoders/avc_x264.py:253 +#: ../../vdms_panels/video_encoders/hevc_x265.py:261 +#: ../../vdms_panels/video_encoders/mpeg4.py:201 +#: ../../vdms_panels/video_encoders/vp9_webm.py:300 +msgid "Set the Group Of Picture (GOP). Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:262 +#: ../../vdms_panels/video_encoders/av1_svt.py:371 +#: ../../vdms_panels/video_encoders/avc_x264.py:256 +#: ../../vdms_panels/video_encoders/hevc_x265.py:264 +#: ../../vdms_panels/video_encoders/mpeg4.py:204 +#: ../../vdms_panels/video_encoders/vp9_webm.py:303 +msgid "It can reduce the file size, but takes longer." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:264 +#: ../../vdms_panels/video_encoders/av1_svt.py:373 +#: ../../vdms_panels/video_encoders/avc_x264.py:258 +#: ../../vdms_panels/video_encoders/hevc_x265.py:266 +#: ../../vdms_panels/video_encoders/mpeg4.py:206 +#: ../../vdms_panels/video_encoders/vp9_webm.py:305 +msgid "Set minimum bitrate tolerance. Most useful in setting up a CBR encode. It is of little use otherwise. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:268 +#: ../../vdms_panels/video_encoders/av1_svt.py:377 +#: ../../vdms_panels/video_encoders/avc_x264.py:262 +#: ../../vdms_panels/video_encoders/hevc_x265.py:270 +#: ../../vdms_panels/video_encoders/mpeg4.py:210 +#: ../../vdms_panels/video_encoders/vp9_webm.py:309 +msgid "Specifies a maximum tolerance. Requires bufsize to be set. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:271 +#: ../../vdms_panels/video_encoders/av1_svt.py:380 +#: ../../vdms_panels/video_encoders/avc_x264.py:265 +#: ../../vdms_panels/video_encoders/hevc_x265.py:273 +#: ../../vdms_panels/video_encoders/mpeg4.py:213 +#: ../../vdms_panels/video_encoders/vp9_webm.py:312 +msgid "Set ratecontrol buffer size, which determines the variability of the output bitrate. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:275 +#: ../../vdms_panels/video_encoders/av1_svt.py:384 +#: ../../vdms_panels/video_encoders/avc_x264.py:277 +#: ../../vdms_panels/video_encoders/hevc_x265.py:281 +#: ../../vdms_panels/video_encoders/mpeg4.py:231 +#: ../../vdms_panels/video_encoders/vp9_webm.py:316 +msgid "Specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:279 +#: ../../vdms_panels/video_encoders/av1_svt.py:388 +#: ../../vdms_panels/video_encoders/avc_x264.py:281 +#: ../../vdms_panels/video_encoders/hevc_x265.py:285 +#: ../../vdms_panels/video_encoders/mpeg4.py:235 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:131 +#: ../../vdms_panels/video_encoders/vp9_webm.py:320 +msgid "Video width and video height ratio." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:281 +#: ../../vdms_panels/video_encoders/av1_svt.py:390 +#: ../../vdms_panels/video_encoders/avc_x264.py:283 +#: ../../vdms_panels/video_encoders/hevc_x265.py:287 +#: ../../vdms_panels/video_encoders/mpeg4.py:237 +#: ../../vdms_panels/video_encoders/vp9_webm.py:322 +msgid "Frame rate (frames per second). Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:285 +msgid "Quality/Speed ratio modifier. CPU Used sets how efficient the compression will be. Lower values mean slower encoding with better quality, and vice-versa. Valid values are from 0 to 8 inclusive." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:290 +msgid "Quality and compression efficiency vs speed trade-off. \"good\" is the default and recommended for most applications; \"realtime\" is recommended for live/fast encoding (live streaming, video conferencing, etc); \"allintra\" for All Intra encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_aom.py:297 +msgid "" +"Row Multi-Threading enables row-based multi-threading which maximizes CPU usage.\n" +"\n" +"To enable fast decoding performance, also set tiles (i.e. Tile Columns 4 and Tile Rows 1 or Tile Columns 2 and Tile Rows 2 for 4 tiles).\n" +"\n" +"Enabling Row Multi-Threading is only faster when the CPU has more threads than the number of encoded tiles." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:316 +msgid "" +"presets 1-3 represent extremely high efficiency, for use when encode time is not important and quality/size of the resulting video file is critical.\n" +"\n" +"Presets 4-6 are commonly used by home enthusiasts as they represent a balance of efficiency and reasonable compute time.\n" +"\n" +"Presets between 7 and 12 are used for fast and real-time encoding.\n" +"\n" +"Preset 13 is even faster but not intended for direct human consumption--it can be used, for example, as a per-scene quality metric in VOD applications. One should use the lowest preset that is tolerable." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:327 +msgid "" +"Constant rate factor. This parameter governs the quality/size trade-off.\n" +"\n" +"Higher CRF values will result in a final output that takes less space, but begins to lose detail.\n" +"\n" +"Lower CRF values retain more detail at the cost of larger file sizes. A good starting point for 1080p video is 30.\n" +"\n" +"Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:334 +msgid "" +"The \"Film Grain\" parameter allows SVT-AV1 to detect and delete film grain from the source video, and replace it with synthetic grain of the same character, resulting in significant bitrate savings.\n" +"\n" +"A value of 8 is a reasonable starting point for live-action video with a normal amount of grain.\n" +"\n" +"Higher values in the range of 10-15 enable more aggressive use of this technique for video with lots of natural grain.\n" +"\n" +"For 2D animation, lower values in the range of 4-6 are often appropriate. \n" +"\n" +"If the source video does not have natural grain, this parameter can be set to -1 to disable it or at least 0." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:346 +msgid "" +"If enabled, the \"Film Grain Denoiser\" option can mitigate the detail removal caused by high \"Film Grain\" values required to preserve the look of very grainy films\n" +"\n" +"By default, the denoised frames are passed to be encoded as the final pictures, enabling this feature will lead to the original frames to be used instead. " +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:353 +msgid "Enables encoder optimization to produce faster (less CPU intensive) bit streams to decode, similar to the fastdecode tuning in x264 and x265." +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:362 +#: ../../vdms_panels/video_encoders/avc_x264.py:247 +#: ../../vdms_panels/video_encoders/hevc_x265.py:255 +msgid "Set profile restrictions" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:364 +#: ../../vdms_panels/video_encoders/avc_x264.py:249 +#: ../../vdms_panels/video_encoders/hevc_x265.py:257 +msgid "Specify level for a selected profile" +msgstr "" + +#: ../../vdms_panels/video_encoders/av1_svt.py:366 +#: ../../vdms_panels/video_encoders/avc_x264.py:251 +#: ../../vdms_panels/video_encoders/hevc_x265.py:259 +msgid "Tune the encoding params" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:245 +#: ../../vdms_panels/video_encoders/hevc_x265.py:253 +msgid "Set the encoding preset (default \"medium\")" +msgstr "" + +#: ../../vdms_panels/video_encoders/avc_x264.py:269 +msgid "specifies the target (average) bit rate for the encoder to use. Higher value = higher quality. Set -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:217 +msgid "Variable Bit Rate. From 0-30, with 1 being highest quality/largest filesize and 30 being the lowest quality/smallest filesize. Set to -1 to disable this control." +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:222 +#: ../../vdms_panels/video_encoders/video_encodercopy.py:133 +msgid "Frames repeat a given number of times per second. In some countries this is 30 for NTSC, other countries (like Italy) use 25 for PAL" +msgstr "" + +#: ../../vdms_panels/video_encoders/mpeg4.py:226 +msgid "The default FourCC stored in an MPEG-4-coded file will be FMP4. If you want a different FourCC, set this option to xvid to force the FourCC xvid to be stored as the video FourCC rather than the default." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:162 +msgid "Copy Video Codec" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_encodercopy.py:163 +msgid "" +"This will just copy the video track as is, without any video re-encoding.\n" +"You will only be able to change output format, select other audio encoders and\n" +"a few other options." +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:74 +msgid "Video export disabled" +msgstr "" + +#: ../../vdms_panels/video_encoders/video_no_enc.py:75 +msgid "" +"The Media target you just selected will only allow you to export files as audio tracks.\n" +"You can then process audio source files only or extract indexed audio streams on\n" +"video files." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:326 +msgid "" +"Speed sets how efficient the compression will be.\n" +"\n" +"When the Quality parameter is \"good\" or \"best\", values for Speed can be set between 0 and 5.\n" +"\n" +"Using 1 or 2 will increase encoding speed at the expense of having some impact on quality and rate control accuracy.\n" +"\n" +"4 or 5 will turn off rate distortion optimization, having even more of an impact on quality.\n" +"\n" +"When the Quality is set to realtime, the available values for Speed are 0 to 8." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:335 +msgid "" +"Time to spend encoding.\n" +"\n" +"\"good\" is the default and recommended for most applications;\n" +"\n" +"\"best\" is recommended if you have lots of time and want the best compression efficiency;\n" +"\n" +"\"realtime\" is recommended for live / fast encoding." +msgstr "" + +#: ../../vdms_panels/video_encoders/vp9_webm.py:341 +msgid "If enabled, adds support for row based multithreading which greatly enhances the number of threads the encoder can utilise. This improves encoding speed significantly on systems that are otherwise underutilised when encoding VP9. Since the amount of additional threads depends on the number of \"tiles\", which itself depends on the video resolution, encoding higher resolution videos will see a larger performance improvement." +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:46 +msgid "Supports ({0}) formats only, not ({1})" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:49 +msgid "File formats not supported by the selected profile" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:52 +msgid "Warning" +msgstr "" + +#: ../../vdms_utils/presets_manager_utils.py:90 +msgid "" +"No presets found.\n" +"\n" +"Possible solution: open the Presets Manager panel, go to the presets column and try to click the \"Restore all...\" button" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:54 +msgid "Import queue file" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:89 +msgid "" +"ERROR: invalid data found loading queue file.\n" +"«{0}»\n" +"\n" +"Cannot contain multiple occurrences in `destination` keys value." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:118 +msgid "Videomass - Add Items to Queue" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:119 +msgid "" +"Multiple items with identical names and destination paths cannot coexist.\n" +"Please choose one of the following actions:" +msgstr "" + +#: ../../vdms_utils/queue_utils.py:123 +msgid "Replace occurrences with items from the imported queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:124 +msgid "Add only the currently missing items to the queue." +msgstr "" + +#: ../../vdms_utils/queue_utils.py:125 +msgid "Remove the current queue and replace it with the imported one." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:98 ../../vdms_ytdlp/youtubedl_ui.py:118 +msgid "At least one \"Format Code\" must be checked for each URL selected in green." +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:129 +msgid "Format Code" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:130 ../../vdms_ytdlp/textdrop.py:59 +msgid "Url" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:131 +msgid "Title" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:132 +msgid "Extension" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:133 +msgid "Resolution" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:134 +msgid "Video Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:135 +msgid "fps" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:136 +msgid "Audio Codec" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:142 +msgid "Don't merge any files" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:145 +msgid "Download only the best selected qualities" +msgstr "" + +#: ../../vdms_ytdlp/formatcode.py:249 +msgid "" +"ERROR: Unable to get format codes.\n" +"\n" +"Unsupported URL:\n" +"'{0}'" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:45 +msgid "[Videomass]: SUCCESS !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:46 +msgid "[Videomass]: FAILED !" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:79 +msgid "Download Status" +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:287 +#: ../../vdms_ytdlp/long_task_ytdlp.py:294 +msgid "Check the current output or read the related log file for more information." +msgstr "" + +#: ../../vdms_ytdlp/long_task_ytdlp.py:328 +msgid "Done" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:198 +msgid "Do you want to close the active view keeping the data in memory and any background processes?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:232 +msgid "" +"Are you sure you want to exit this window?\n" +"All data will be lost" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:234 +msgid "Quit YouTube Downloader?" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:273 +msgid "Open destination folder of downloads\tCtrl+D" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:276 +msgid "Close view\tCtrl+W" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:277 +msgid "Close the active view keeping the data in memory and any background processes" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:281 +msgid "Quit YouTube Downloader\tCtrl+Q" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:282 +msgid "Exit the window by deleting all data in memory" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:288 ../../vdms_ytdlp/textdrop.py:189 +#: ../../vdms_ytdlp/textdrop.py:206 +msgid "Paste\tCtrl+V" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:289 +msgid "Paste the copied URLs to clipboard" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:291 ../../vdms_ytdlp/textdrop.py:190 +#: ../../vdms_ytdlp/textdrop.py:209 +msgid "Remove selected URL\tDEL" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:292 +msgid "Remove the selected URL from the list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:295 +msgid "Clear the URL list" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:299 +msgid "Options\tCtrl+P" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:300 ../../vdms_ytdlp/main_ytdlp.py:491 +msgid "YouTube Downloader options" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:312 +msgid "Version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:313 +msgid "Shows the version in use" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:315 +msgid "Latest version of yt-dlp" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:316 +msgid "Check the latest version available on github.com" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:372 +msgid "You are using \"yt-dlp\" version {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:389 +msgid "\"yt-dlp\": Latest version available: {0}" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:476 +msgid "Go to the previous panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:481 +msgid "Go to the next panel" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:486 +msgid "Shows statistics and information" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:487 +msgid "Statistics" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:494 +msgid "Start downloading" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:495 +msgid "Download" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:554 +msgid "Videomass - List of URLs" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:562 +msgid "Videomass - YouTube Downloader" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:579 +msgid "Viewing last log" +msgstr "" + +#: ../../vdms_ytdlp/main_ytdlp.py:592 +msgid "Videomass - Downloader Message Monitoring" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:50 +#: ../../vdms_ytdlp/ydl_mediainfo.py:71 +msgid "URL" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:51 +msgid "Playlist Items" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:72 +msgid "" +"To index the media of a playlist, click on the \"Playlist Items\" column of each corresponding URL and specify the numerical indexes separated by commas, e.g. \"1,2,5,8\" if you want to download the indexed media at 1, 2, 5, 8 of the playlist.\n" +"It is also possible to specify intervals, e.g. \"1-3,7,10-13\" with which the media at index 1, 2, 3, 7, 10, 11, 12 and 13 will be downloaded.\n" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:108 +#: ../../vdms_ytdlp/youtubedl_ui.py:209 +msgid "Playlist Editor" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:117 +msgid "Help viewer" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:224 +msgid "ERROR: Invalid option" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:225 +msgid "please try again." +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:226 +msgid "OK: Indexes to download" +msgstr "" + +#: ../../vdms_ytdlp/playlist_indexing.py:255 +msgid "WARNING: The selected URL does not refer to a playlist. Only lines marked green can be indexed." +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:42 +msgid "English" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:43 +msgid "French" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:44 +msgid "German" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:45 +msgid "Greek" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:46 +msgid "Hebrew" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:47 +msgid "Italian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:48 +msgid "Dutch" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:49 +msgid "Polish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:50 +msgid "Portuguese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:51 +msgid "Russian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:52 +msgid "Spanish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:53 +msgid "Swedish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:54 +msgid "Turkish" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:55 +msgid "Albanian" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:56 +msgid "Chinese" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:70 +msgid "Subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:74 +msgid "None" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:75 +msgid "All available subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:76 +msgid "Select by default language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:77 +msgid "Custom language subtitles" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:94 +msgid "Custom language" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:110 +msgid "Subtitle options" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:114 +msgid "Include automatically generated subtitle (YouTube only)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:117 +msgid "Embed subtitles into video file" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:120 +msgid "Download subtitles only (do not include audio and video)" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:137 +#: ../../vdms_ytdlp/youtubedl_ui.py:216 +msgid "Subtitles Editor" +msgstr "" + +#: ../../vdms_ytdlp/subtitles_editor.py:248 +msgid "" +"Write in the text field on the side, one or more language codes of the\n" +"subtitles to download separated by commas, e.g. \"en, ja, ar\" for English,\n" +"Japanese and Arabic respectively.\n" +"\n" +"You can use regex (regular expression), e.g. \"en.*, ja, ar.*\" where the\n" +"asterisk preceded by the dot will allow you to download everything\n" +"related to the subtitles of a certain language.\n" +"\n" +"You can prefix the language code with a \"-\" to exclude it from the\n" +"requested languages, e.g. \"all, -it.*, -nl.*\", -fr.*\" will download all\n" +"subtitles except those in Italian, Dutch and French." +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:68 +msgid "Invalid URL" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:87 +msgid "Invalid URLs" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:133 +msgid "Drag or paste URLs here" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:167 +msgid "Set a new destination folder for downloads" +msgstr "" + +#: ../../vdms_ytdlp/textdrop.py:169 +msgid "Destination folder of downloads" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:67 +msgid "Statistics viewer" +msgstr "" + +#: ../../vdms_ytdlp/ydl_mediainfo.py:70 +msgid "TITLE SELECTION" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:65 +msgid "Workarounds" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:68 +msgid "Don’t check SSL certificate" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:73 +msgid "Filename options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:76 +msgid "Include the ID in file names" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:82 +msgid "Restrict file names to ASCII characters" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:88 +msgid "Post-Process options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:91 +msgid "Embed thumbnail in audio file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:96 +msgid "Add metadata to file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:101 +msgid "Overwrite all files and metadata" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:106 +msgid "General" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:112 +msgid "Where do you prefer to save your downloads?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:126 +msgid "Auto-create subdirectories when downloading playlists" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:137 +msgid "Choosing an external downloader" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:140 +msgid "" +"In addition to the default `native` one, yt-dlp can use the following external downloaders:\n" +"`aria2c`, `avconv`, `axel`, `curl`, `ffmpeg`, `httpie`, `wget`.\n" +"Please note that using an external downloader the download status information may not be available." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:149 +msgid "External downloader executable path" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:157 +msgid "External downloader arguments" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:165 +msgid "Download Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:171 +msgid "Using a proxy server" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:175 +msgid "" +"Use the specified HTTP/HTTPS/SOCKS proxy. To enable SOCKS proxy, specify a proper\n" +"scheme, e.g.\t{}\n" +"Leave the text field blank for direct connection." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:183 +msgid "Proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:191 +msgid "Network" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:196 +msgid "Geo-restriction options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:199 +msgid "Use the following options to try bypassing geographic restriction." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:206 +msgid "Geo verification proxy" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:210 +msgid "URL of the proxy to use for IP address verification on geo-restricted sites." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:215 +msgid "Geo bypass" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:219 +msgid "Bypass geographic restriction via faking X-Forwarded-For HTTP header. One of \"default\" (only when known to be useful), or \"never\"" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:226 +msgid "Geo bypass country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:230 +msgid "Two-letter ISO 3166-2 country code that will be used for explicit geographic restriction bypassing via faking X-Forwarded-For HTTP header." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:238 +msgid "Geo bypass ip block" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:242 +msgid "IP range in CIDR notation that will be used similarly to geo_bypass_country" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:249 +msgid "Geo-Restriction" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:254 +msgid "Authentication with login credentials" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:257 +msgid "" +"If you need to login with your credentials please note that login with password is not\n" +"supported for some websites (e.g. YouTube, CloudFlare). In this case you can include a\n" +"cookie file for authentication (see cookies tab)." +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:266 +msgid "Username" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:270 +msgid "Username for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:274 +msgid "Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:278 +msgid "Password for authentication purposes" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:283 +msgid "Video Password" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:287 +msgid "Password for accessing a video" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:293 +msgid "Authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:299 +msgid "Using cookies to gain access to websites" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:302 +msgid "" +"Here you can pass your `Netscape HTTP Cookie File` in order to access websites that require authentication.\n" +"If you don't know how to obtain this type of file, you can let the application try to extract it from your browser\n" +"automatically. The currently supported browsers are: brave, chrome, chromium, edge, firefox, opera, safari, vivaldi.\n" +"\n" +"For more information please consult the documentation at the following link:" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:319 +msgid "Allow cookies for authentication" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:323 +msgid "Cookie file" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:329 +msgid "File name from where cookies should be read and dumped to" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:332 +msgid "Browse" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:335 +msgid "Extract cookies automatically from your browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:341 +msgid "Web Browser" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:360 +msgid "Cookies" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:403 +msgid "YouTube Downloader Options" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:436 +msgid "Do you want to remove the current cookie file from your system?" +msgstr "" + +#: ../../vdms_ytdlp/ydl_preferences.py:489 +msgid "Locate your cookie file" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:151 +msgid "Precompiled Videos" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:152 +msgid "Download videos by resolution" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:153 +msgid "Download split audio and video" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:154 +msgid "Download Audio only" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:155 +msgid "Download by format code" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:205 +msgid "Include playlists" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:223 +msgid "Quality settings" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:235 +msgid "When not available, the chosen video resolution will be replaced with the closest one" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:239 +msgid "Video format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:260 +msgid "Audio format:" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:418 +msgid "" +"Unable to get format codes on {0}, unsupported URL:\n" +"\n" +"{1}" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:568 +msgid "URLs have no playlist references" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:607 +msgid "The URLs contain playlists. Are you sure you want to continue?" +msgstr "" + +#: ../../vdms_ytdlp/youtubedl_ui.py:623 +msgid "The URLs contain channels. Are you sure you want to continue?" +msgstr "" + +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "" + diff --git a/videomass/data/locale/it_IT/LC_MESSAGES/videomass.po b/videomass/data/locale/it_IT/LC_MESSAGES/videomass.po index 8ed0019bb..91e53ca7e 100644 --- a/videomass/data/locale/it_IT/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/it_IT/LC_MESSAGES/videomass.po @@ -7,16 +7,17 @@ msgid "" msgstr "" "Project-Id-Version: Traduzione Videomass 17.07.2024\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" -"PO-Revision-Date: 2024-07-13 13:16+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" +"PO-Revision-Date: 2024-07-18 22:46+0200\n" "Last-Translator: bovirus \n" -"Language: it_IT\n" "Language-Team: bovirus (bovirus@gmail.com)\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: it_IT\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.10.3\n" +"X-Generator: Poedit 3.2.2\n" #: ../../gui_app.py:121 msgid "To suppress this message on startup, please install yt-dlp or disable it from the preferences." @@ -32,8 +33,8 @@ msgstr "Per non viaulizzare questo messaggio all'avvio, installa yt-dlp o disabi #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1258,10 +1259,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Immettere solo caratteri alfanumerici. È inoltre possibile utilizzare il trattino (\"-\") e il trattino basso (\"_\"). Non sono ammessi spazi vuoti." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1310,7 +1311,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "Argomenti FFmpeg per la codifica a passaggio singolo" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "Eventuali argomenti facoltativi da aggiungere prima del file sorgente codifica a singolo, ad esempio i nomi richiesti di alcune accelerazioni hardware come -hwaccel da usare con CUDA." @@ -1327,7 +1328,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "Argomenti FFmpeg per la codifica a doppio passaggio" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "Eventuali argomenti facoltativi da aggiungere prima del file sorgente nella codifica a due passaggi, ad esempio i nomi richiesti di alcune accelerazioni hardware come -hwaccel da usare con CUDA." @@ -1461,22 +1462,22 @@ msgid "A long description of the profile" msgstr "Una lunga descrizione per il profilo" #: ../../vdms_dialogs/setting_profiles.py:153 -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Uno o più nomi di formato separati da virgole che non sono compatibili con questo profilo." +msgid "One or more comma-separated format names compatible with this profile" +msgstr "Uno o più nomi di formato separati da virgole compatibili con questo profilo" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Estensione del formato destinazione. Lascia vuoto per copiare codec e formato" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Le assegnazioni del profilo sono incomplete" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "I formati devono essere separati da una virgola" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1486,16 +1487,16 @@ msgstr "" "ERRORE: chiavi non corrispondenti per i dati richiesti.\n" "File invalido: «{0}»" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "È già stato salvato un profilo con lo stesso nome" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 msgid "Profile stored successfully!" msgstr "Memorizzazione profilo completata!" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "Modifica profilo completata!" @@ -4848,3 +4849,5 @@ msgstr "Gli URL contengono playlist. Sei sicuro di voler continuare?" msgid "The URLs contain channels. Are you sure you want to continue?" msgstr "Gli URL contengono canali. Sei sicuro di voler continuare?" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Uno o più nomi di formato separati da virgole che non sono compatibili con questo profilo." diff --git a/videomass/data/locale/nl_NL/LC_MESSAGES/videomass.po b/videomass/data/locale/nl_NL/LC_MESSAGES/videomass.po index 994a7f218..f768316c3 100644 --- a/videomass/data/locale/nl_NL/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/nl_NL/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:48+0200\n" "Last-Translator: johannesdedoper \n" "Language: nl_NL\n" @@ -32,8 +32,8 @@ msgstr "" #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1282,10 +1282,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Gebruik alleen alpha-numerieke tekens 0-9 A-Z. Het streepje (\"-\") en de underscore (\"_\") kunt u ook gebruiken. Spaties zijn niet toegestaan." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1337,7 +1337,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1354,7 +1354,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1495,23 +1495,22 @@ msgid "A long description of the profile" msgstr "Een uitgebreide beschrijving van het profiel" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Een of meerdere komma-gescheiden formaat namen voor het profiel" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Bestandsextensie van output formaat. Laat leeg om codec en bestandsformaat te kopiëren" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Onvolledige profiel-toewijzingen" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Formaten moeten gescheiden zijn door komma's" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1519,17 +1518,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Profiel reeds opgeslagen onder dezelfde naam" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "Wizard met succes afgerond!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -6285,3 +6284,6 @@ msgstr "De URLs bevatten kanalen. Wilt u toch doorgaan?" #~ msgid "Notice" #~ msgstr "Opmerking" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Een of meerdere komma-gescheiden formaat namen voor het profiel" + diff --git a/videomass/data/locale/pt_BR/LC_MESSAGES/videomass.po b/videomass/data/locale/pt_BR/LC_MESSAGES/videomass.po index e429a61e2..88181670e 100644 --- a/videomass/data/locale/pt_BR/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/pt_BR/LC_MESSAGES/videomass.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:48+0200\n" "Last-Translator: Samuel / http://littlesvr.ca/ostd/\n" "Language: pt_BR\n" @@ -31,8 +31,8 @@ msgstr "" #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1276,10 +1276,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Insira apenas caracteres alfanuméricos. Você também pode usar o hífen (\"-\") e o sublinhado (\"_\"). Espaços em branco não são permitidos." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1331,7 +1331,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1348,7 +1348,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1491,23 +1491,22 @@ msgid "A long description of the profile" msgstr "Uma longa descrição do perfil" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Um ou mais nomes de formato separados por vírgula para incluir no perfil" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Extensão do formato de saída. Deixe em branco para copiar o codec e formatar" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Atribuições de perfil incompletas" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Os formatos devem ser separados por vírgulas" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1515,17 +1514,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Perfil já armazenado com o mesmo nome" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "Assistente concluído com sucesso!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -6166,3 +6165,6 @@ msgstr "Os URLs contêm canais . Você tem certeza que quer continuar?" #~ msgid "No video filter enabled" #~ msgstr "Nenhum filtro de vídeo ativado" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Um ou mais nomes de formato separados por vírgula para incluir no perfil" + diff --git a/videomass/data/locale/ru_RU/LC_MESSAGES/videomass.po b/videomass/data/locale/ru_RU/LC_MESSAGES/videomass.po index 8ca2a7103..f20c29d08 100644 --- a/videomass/data/locale/ru_RU/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/ru_RU/LC_MESSAGES/videomass.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:49+0200\n" "Last-Translator: Chour \n" "Language: ru_RU\n" -"Language-Team: Russian (RU)\n" +"Language-Team: Chour \n\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -32,8 +32,8 @@ msgstr "Чтобы скрыть это сообщение при запуске, #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1268,10 +1268,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "Вводите только буквенно-цифровые символы. Вы также можете использовать дефис (\"-\") и подчеркивание (\"_\"). Пробелы не допускаются." #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1321,7 +1321,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "Аргументы FFmpeg для однопроходного кодирования" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "Любые необязательные аргументы, добавляемые перед входным файлом при однопроходном кодировании, например, обязательные имена некоторых аппаратных ускорений, таких как -hwaccel, для использования с CUDA." @@ -1338,7 +1338,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "Аргументы FFmpeg для двухпроходного кодирования" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "Любые необязательные аргументы, добавляемые перед входным файлом при двухпроходном кодировании, например, обязательные имена некоторых аппаратных ускорений, таких как -hwaccel, для использования с CUDA." @@ -1476,22 +1476,22 @@ msgid "A long description of the profile" msgstr "Подробное описание профиля" #: ../../vdms_dialogs/setting_profiles.py:153 -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "Одно или несколько названий форматов, разделенных запятыми, которые несовместимы с этим профилем." +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "Расширение формата вывода. Оставьте пустым, чтобы скопировать кодек и формат" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "Неполные данные профиля" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "Форматы должны быть разделены запятыми" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1499,17 +1499,17 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "Профиль с таким именем уже сохранен" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "Помощник успешно завершен!\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -6842,3 +6842,6 @@ msgstr "URL-адреса содержат видеоканалы. Вы увер #~ msgid "A new group of presets was successfully imported" #~ msgstr "Новая группа пресетов была успешно импортирована" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "Одно или несколько названий форматов, разделенных запятыми, которые несовместимы с этим профилем." + diff --git a/videomass/data/locale/videomass.pot b/videomass/data/locale/videomass.pot index cca3f7fee..f046e49e0 100644 --- a/videomass/data/locale/videomass.pot +++ b/videomass/data/locale/videomass.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -31,8 +31,8 @@ msgstr "" #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1184,10 +1184,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "" #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1236,7 +1236,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1253,7 +1253,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1376,38 +1376,38 @@ msgid "A long description of the profile" msgstr "" #: ../../vdms_dialogs/setting_profiles.py:153 -msgid "One or more comma-separated format names that are not compatible with this profile." +msgid "One or more comma-separated format names compatible with this profile" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 msgid "Incomplete profile assignments" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 msgid "" "ERROR: Keys mismatched for requested data.\n" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 msgid "Profile stored successfully!" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" diff --git a/videomass/data/locale/zh_CN/LC_MESSAGES/videomass.po b/videomass/data/locale/zh_CN/LC_MESSAGES/videomass.po index b0feb83dd..b9569df6d 100644 --- a/videomass/data/locale/zh_CN/LC_MESSAGES/videomass.po +++ b/videomass/data/locale/zh_CN/LC_MESSAGES/videomass.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Videomass 5.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-07-15 13:07+0200\n" +"POT-Creation-Date: 2024-07-18 22:40+0200\n" "PO-Revision-Date: 2024-07-03 18:50+0200\n" "Last-Translator: MaiJZ https://github.com/maijz128\n" "Language: zh_CN\n" @@ -32,8 +32,8 @@ msgstr "" #: ../../vdms_dialogs/filter_transpose.py:182 #: ../../vdms_dialogs/mediainfo.py:245 ../../vdms_dialogs/mediainfo.py:265 #: ../../vdms_dialogs/mediainfo.py:285 ../../vdms_dialogs/mediainfo.py:305 -#: ../../vdms_dialogs/setting_profiles.py:282 -#: ../../vdms_dialogs/setting_profiles.py:290 ../../vdms_io/checkup.py:75 +#: ../../vdms_dialogs/setting_profiles.py:281 +#: ../../vdms_dialogs/setting_profiles.py:289 ../../vdms_io/checkup.py:75 #: ../../vdms_io/io_tools.py:170 ../../vdms_main/main_frame.py:884 #: ../../vdms_main/main_frame.py:919 ../../vdms_main/main_frame.py:941 #: ../../vdms_main/main_frame.py:959 ../../vdms_main/main_frame.py:979 @@ -1343,10 +1343,10 @@ msgid "Enter only alphanumeric characters. You can also use the hyphen (\"-\") a msgstr "只输入字母数字字符。你也可以使用连字符(\"-\")和下划线(\"_\")。不允许有空格。" #: ../../vdms_dialogs/preferences.py:720 -#: ../../vdms_dialogs/setting_profiles.py:258 -#: ../../vdms_dialogs/setting_profiles.py:265 -#: ../../vdms_dialogs/setting_profiles.py:287 -#: ../../vdms_dialogs/setting_profiles.py:310 ../../vdms_main/main_frame.py:404 +#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:286 +#: ../../vdms_dialogs/setting_profiles.py:309 ../../vdms_main/main_frame.py:404 #: ../../vdms_main/main_frame.py:429 ../../vdms_panels/av_conversions.py:605 #: ../../vdms_panels/av_conversions.py:612 #: ../../vdms_panels/sequence_to_video.py:350 @@ -1400,7 +1400,7 @@ msgid "FFmpeg arguments for one-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:88 -#: ../../vdms_dialogs/setting_profiles.py:159 +#: ../../vdms_dialogs/setting_profiles.py:158 #: ../../vdms_panels/presets_manager.py:259 msgid "Any optional arguments to add before input file on the one-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1417,7 +1417,7 @@ msgid "FFmpeg arguments for two-pass encoding" msgstr "" #: ../../vdms_dialogs/queue_edit.py:120 -#: ../../vdms_dialogs/setting_profiles.py:163 +#: ../../vdms_dialogs/setting_profiles.py:162 #: ../../vdms_panels/presets_manager.py:263 msgid "Any optional arguments to add before input file on the two-pass encoding, e.g required names of some hardware accelerations like -hwaccel to use with CUDA." msgstr "" @@ -1565,24 +1565,23 @@ msgid "A long description of the profile" msgstr "对简介的长篇描述" #: ../../vdms_dialogs/setting_profiles.py:153 -#, fuzzy -msgid "One or more comma-separated format names that are not compatible with this profile." -msgstr "一个或多个逗号分隔的格式名称,以包括在简介中。" +msgid "One or more comma-separated format names compatible with this profile" +msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:156 +#: ../../vdms_dialogs/setting_profiles.py:155 msgid "Output format extension. Leave empty to copy codec and format" msgstr "输出格式的扩展名。留空以复制编解码器和格式" -#: ../../vdms_dialogs/setting_profiles.py:257 +#: ../../vdms_dialogs/setting_profiles.py:256 #, fuzzy msgid "Incomplete profile assignments" msgstr "不完整的个人资料分配" -#: ../../vdms_dialogs/setting_profiles.py:264 +#: ../../vdms_dialogs/setting_profiles.py:263 msgid "Formats must be comma-separated" msgstr "格式必须是以逗号分隔的" -#: ../../vdms_dialogs/setting_profiles.py:280 +#: ../../vdms_dialogs/setting_profiles.py:279 #: ../../vdms_utils/queue_utils.py:80 #, python-brace-format msgid "" @@ -1590,19 +1589,19 @@ msgid "" "Invalid file: «{0}»" msgstr "" -#: ../../vdms_dialogs/setting_profiles.py:286 -#: ../../vdms_dialogs/setting_profiles.py:309 +#: ../../vdms_dialogs/setting_profiles.py:285 +#: ../../vdms_dialogs/setting_profiles.py:308 msgid "Profile already stored with same name" msgstr "已有相同名称的配置文件" -#: ../../vdms_dialogs/setting_profiles.py:294 +#: ../../vdms_dialogs/setting_profiles.py:293 #, fuzzy msgid "Profile stored successfully!" msgstr "" "向导已成功完成!\n" "\n" -#: ../../vdms_dialogs/setting_profiles.py:312 +#: ../../vdms_dialogs/setting_profiles.py:311 msgid "Profile change successful!" msgstr "" @@ -6110,3 +6109,6 @@ msgstr "URL包含通道。你确定要继续吗?" #~ msgid "Failed! {}" #~ msgstr "失败了! {}" +#~ msgid "One or more comma-separated format names that are not compatible with this profile." +#~ msgstr "一个或多个逗号分隔的格式名称,以包括在简介中。" + diff --git a/videomass/data/presets/Utilities.json b/videomass/data/presets/Utilities.json index 46ebd70b5..ccf907292 100644 --- a/videomass/data/presets/Utilities.json +++ b/videomass/data/presets/Utilities.json @@ -9,6 +9,26 @@ "Preinput_1": "", "Preinput_2": "" }, + { + "Name": "Album art", + "Description": "Add an album art to one or more audio files.", + "First_pass": "-i \"/path/to/file.jpg\" -map 0 -map 1 -c copy -disposition:v:0 attached_pic -sn -map_metadata 0", + "Second_pass": "", + "Supported_list": "mp3, m4a, mp4, flac", + "Output_extension": "copy", + "Preinput_1": "", + "Preinput_2": "" + }, + { + "Name": "Album art 2", + "Description": "Add an album art to one or more audio files in ogg format.", + "First_pass": "-i \"/path/to/file.jpg\" -map 0 -map 1 -c:a copy -sn -map_metadata 0", + "Second_pass": "", + "Supported_list": "ogg", + "Output_extension": "copy", + "Preinput_1": "", + "Preinput_2": "" + }, { "Name": "Drawing text", "Description": "Complex system for printing text on video", diff --git a/videomass/data/presets/version/version.txt b/videomass/data/presets/version/version.txt index 39010d220..fd137eb17 100644 --- a/videomass/data/presets/version/version.txt +++ b/videomass/data/presets/version/version.txt @@ -1 +1 @@ -0.23 +0.24 diff --git a/videomass/vdms_dialogs/setting_profiles.py b/videomass/vdms_dialogs/setting_profiles.py index f52c5a339..0c8bbd093 100644 --- a/videomass/vdms_dialogs/setting_profiles.py +++ b/videomass/vdms_dialogs/setting_profiles.py @@ -151,8 +151,7 @@ def __init__(self, parent, arg, filename, array, title): self.pass_1_cmd.SetToolTip(_('FFmpeg arguments for one-pass encoding')) self.pass_2_cmd.SetToolTip(_('FFmpeg arguments for two-pass encoding')) self.txt_supp.SetToolTip(_('One or more comma-separated format names ' - 'that are not compatible with this ' - 'profile.')) + 'compatible with this profile')) self.txt_ext.SetToolTip(_('Output format extension. Leave empty to ' 'copy codec and format')) diff --git a/videomass/vdms_sys/app_const.py b/videomass/vdms_sys/app_const.py index 6990f117c..bb59fe043 100644 --- a/videomass/vdms_sys/app_const.py +++ b/videomass/vdms_sys/app_const.py @@ -4,7 +4,7 @@ # Created: 06/04/2012 # # Edited by Gianluca (jeanslack) Pernigotto -# Update: July 13 2024 +# Update: July 17 2024 # NOTE for translators: when you add new languages you # also add them to "langnames" @@ -20,10 +20,14 @@ # languages you want to support supLang = { "Default": (wx.LANGUAGE_DEFAULT, ("System default language")), + "ar_SA": (wx.LANGUAGE_ARABIC_SAUDI_ARABIA, ("Arabic (Saudi Arabia)")), "zh_CN": (wx.LANGUAGE_CHINESE_SIMPLIFIED, ("Chinese (simplified)")), + "cs_CZ": (wx.LANGUAGE_CZECH_CZECHIA, ("Czech (Czechia)")), "nl_NL": (wx.LANGUAGE_DUTCH, ("Dutch")), "en_US": (wx.LANGUAGE_ENGLISH_US, ("English (United States)")), "fr_FR": (wx.LANGUAGE_FRENCH, ("French")), + "de_DE": (wx.LANGUAGE_GERMAN, ("German (Germany)")), + "hu_HU": (wx.LANGUAGE_HUNGARIAN_HUNGARY, ("Hungarian (Hungary)")), "it_IT": (wx.LANGUAGE_ITALIAN, ("Italian")), "pt_BR": (wx.LANGUAGE_PORTUGUESE_BRAZILIAN, ("Portuguese (Brazilian)")), "ru_RU": (wx.LANGUAGE_RUSSIAN, ("Russian")),