Skip to content

Commit cba27a2

Browse files
authored
V2025.5.0-next (#1065)
1 parent 92f5d9b commit cba27a2

File tree

208 files changed

+29674
-19775
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+29674
-19775
lines changed

.github/workflows/flatpak.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: ${{ github.event.pull_request.user.login != 'weblate' }}
1717
container:
18-
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-47
18+
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48
1919
options: --privileged
2020
strategy:
2121
matrix:
2222
arch: [x86_64]
2323
fail-fast: false
2424
steps:
2525
- uses: actions/checkout@v4
26-
- uses: flathub-infra/flatpak-github-actions/flatpak-builder@master
26+
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
2727
with:
2828
bundle: org.nickvision.tubeconverter.gnome.flatpak
2929
manifest-path: flatpak/org.nickvision.tubeconverter.gnome.json
3030
cache-key: flatpak-builder-gnome-${{ github.sha }}
3131
arch: ${{ matrix.arch }}
3232
restore-cache: true
3333
qt-flatpak:
34-
name: "QT on Flatpak"
34+
name: "Qt on Flatpak"
3535
runs-on: ubuntu-latest
3636
if: ${{ github.event.pull_request.user.login != 'weblate' }}
3737
container:
@@ -43,7 +43,7 @@ jobs:
4343
fail-fast: false
4444
steps:
4545
- uses: actions/checkout@v4
46-
- uses: flathub-infra/flatpak-github-actions/flatpak-builder@master
46+
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
4747
with:
4848
bundle: org.nickvision.tubeconverter.qt.flatpak
4949
manifest-path: flatpak/org.nickvision.tubeconverter.qt.json

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
uses: johnwason/vcpkg-action@v6
3636
id: vcpkg
3737
with:
38-
pkgs: boost-date-time libnick qtbase qtsvg qttools
38+
pkgs: boost-date-time libnick qtbase qtsvg qttools qlementine qlementine-icons
3939
triplet: x64-windows
40-
revision: 9b93d255be4be2eda2f9b139afd7f4e8c1026a55
40+
revision: 69e3d824b1a0f1d5f88a2908daa43763f84c2b9a
4141
token: ${{ secrets.GITHUB_TOKEN }}
4242
github-binarycache: true
4343
- name: "Build"
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
$ProgressPreference = 'SilentlyContinue'
5353
Invoke-WebRequest https://aka.ms/vs/17/release/vc_redist.x64.exe -OutFile vc_redist.x64.exe
54-
Invoke-WebRequest https://github.com/yt-dlp/yt-dlp/releases/download/2025.01.26/yt-dlp.exe -OutFile yt-dlp.exe
54+
Invoke-WebRequest https://github.com/yt-dlp/yt-dlp/releases/download/2025.04.30/yt-dlp.exe -OutFile yt-dlp.exe
5555
Invoke-WebRequest https://github.com/aria2/aria2/releases/download/release-1.37.0/aria2-1.37.0-win-64bit-build1.zip -OutFile aria2.zip
5656
Invoke-WebRequest https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-n7.1-latest-win64-gpl-7.1.zip -OutFile ffmpeg.zip
5757
Expand-Archive -Force 'aria2.zip'

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (POLICY CMP0141)
1515
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
1616
endif()
1717

18-
project("org.nickvision.tubeconverter" LANGUAGES C CXX VERSION 2025.1.4 DESCRIPTION "Download web video and audio.")
18+
project("org.nickvision.tubeconverter" LANGUAGES C CXX VERSION 2025.5.0 DESCRIPTION "Download web video and audio.")
1919
set(SHORT_NAME "parabolic")
2020
set(DISPLAY_NAME "Parabolic")
2121
include(GNUInstallDirs)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how can you help the proje
3333
</details>
3434

3535
<details>
36-
<summary>QT</summary>
36+
<summary>Qt</summary>
3737

3838
![Home Page](org.nickvision.tubeconverter.qt/screenshots/home.png)
3939
![Downloading](org.nickvision.tubeconverter.qt/screenshots/downloading.png)
@@ -58,7 +58,7 @@ A C++20 compiler is also required to build Parabolic.
5858
#### Linux (GNOME)
5959
1. Set the `VCPKG_DEFAULT_TRIPLET` environment variable to `x64-linux`
6060
1. Run `vcpkg install boost-date-time gtest libnick libxmlpp`
61-
#### Linux (QT)
61+
#### Linux (Qt)
6262
1. Set the `VCPKG_DEFAULT_TRIPLET` environment variable to `x64-linux`
6363
1. Run `vcpkg install boost-date-time gtest libnick qtbase qtsvg qttools`
6464

@@ -74,7 +74,7 @@ A C++20 compiler is also required to build Parabolic.
7474
1. From the `build` folder, run `cmake .. -DCMAKE_BUILD_TYPE=Release -DUI_PLATFORM=gnome`.
7575
1. From the `build` folder, run `cmake --build .`.
7676
1. After these commands complete, Parabolic will be successfully built and its binaries can be found in the `org.nickvision.tubeconverter.gnome` folder of the `build` folder.
77-
#### Linux (QT)
77+
#### Linux (Qt)
7878
1. From the `build` folder, run `cmake .. -DCMAKE_BUILD_TYPE=Release -DUI_PLATFORM=qt`.
7979
1. From the `build` folder, run `cmake --build .`.
8080
1. After these commands complete, Parabolic will be successfully built and its binaries can be found in the `org.nickvision.tubeconverter.qt` folder of the `build` folder.

docs/html/bg/converter.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@
6969
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Default: Off</p></div></div></div>
7070
</div>
7171
</dd>
72-
<dt class="terms">Embed Thumbnails</dt>
72+
<dt class="terms">Вграждане на миниатюра</dt>
7373
<dd class="terms">
7474
<p class="p">If enabled, Parabolic will embed a media with its thumbnail if available.</p>
75-
<p class="p">If the file type does not support embedding, the thumbnail will be written to a separate image file.</p>
75+
<p class="p">Ако видът на файла не поддържа вграждане, миниатюрата ще бъде записана в отделен файл с изображение.</p>
7676
<div class="note note-advanced" title="Допълнителна информация">
7777
<svg height="24" width="24" version="1.1">
7878
<g>
@@ -140,7 +140,7 @@
140140
</dd>
141141
<dt class="terms">Вграждане на субтитри</dt>
142142
<dd class="terms">
143-
<p class="p">If disabled or if embedding is not supported, downloaded subtitles will be saved to a separate file.</p>
143+
<p class="p">Ако е изключено или вграждането не се поддържа, изтеглените субтитри ще бъдат запазени в отделен файл.</p>
144144
<div class="note note-advanced" title="Допълнителна информация">
145145
<svg height="24" width="24" version="1.1">
146146
<g>

docs/html/bg/newDownload.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Selecting the <span class="code">Video (Generic)</span> or <span class="code">Audio (Generic)</span> file types will cause Parabolic to download the media in the original file type of the media without performing any conversions.</p></div></div></div>
8585
</div>
8686
</dd>
87-
<dt class="terms">Video Format</dt>
87+
<dt class="terms">Видео формат</dt>
8888
<dd class="terms">
8989
<p class="p">The list of video formats available for download, sorted by resolution and bitrate.</p>
9090
<p class="p">Each format is the form: <span class="code">resolution | bitrate | codec (id)</span>.</p>
@@ -98,7 +98,7 @@
9898
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">The previously used video format will be remembered and pre-selected for the next download.</p></div></div></div>
9999
</div>
100100
</dd>
101-
<dt class="terms">Audio Format</dt>
101+
<dt class="terms">Аудио формат</dt>
102102
<dd class="terms">
103103
<p class="p">The list of audio formats available for download, sorted by bitrate.</p>
104104
<p class="p">Each format is the form: <span class="code">bitrate | language (id)</span>.</p>

docs/html/cs/converter.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<div class="terms"><div class="inner"><div class="region"><dl class="terms">
2323
<dt class="terms">Vložit metadata</dt>
2424
<dd class="terms">
25-
<p class="p">If enabled, Parabolic will tag a media with its relevant information (title, genre, etc...) if available.</p>
25+
<p class="p">Pokud je tato funkce povolena, aplikace Parabolic označí médium příslušnými informacemi (název, žánr atd.), pokud jsou k dispozici.</p>
2626
<div class="note note-advanced" title="Pokročilé">
2727
<svg height="24" width="24" version="1.1">
2828
<g>
@@ -69,10 +69,10 @@
6969
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Výchozí: vypnuto</p></div></div></div>
7070
</div>
7171
</dd>
72-
<dt class="terms">Embed Thumbnails</dt>
72+
<dt class="terms">Vkládat miniatury</dt>
7373
<dd class="terms">
74-
<p class="p">If enabled, Parabolic will embed a media with its thumbnail if available.</p>
75-
<p class="p">If the file type does not support embedding, the thumbnail will be written to a separate image file.</p>
74+
<p class="p">Pokud je tato funkce povolena, aplikace Parabolic vloží do média jeho miniaturu, pokud jsou dostupná.</p>
75+
<p class="p">Pokud typ souboru nepodporuje vkládání, bude miniatura uložena do samostatného souboru.</p>
7676
<div class="note note-advanced" title="Pokročilé">
7777
<svg height="24" width="24" version="1.1">
7878
<g>
@@ -99,7 +99,7 @@
9999
<path class="yelp-svg-fill" d="m4 3h16c0.554 0 1 0.446 1 1v11h-6v6h-11c-0.554 0-1-0.446-1-1v-16c0-0.554 0.446-1 1-1z"></path>
100100
<path class="yelp-svg-fill" d="m17 16h4l-5 5v-4c0-0.554 0.446-1 1-1z"></path>
101101
</g>
102-
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">This option is only configurable if <span class="code">Embed Thumbnails</span> is on.</p></div></div></div>
102+
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Tato možnost je nastavitelná pouze při zapnutém nastavení <span class="code">Vkládat miniatury</span>.</p></div></div></div>
103103
</div>
104104
<div class="note note-advanced" title="Pokročilé">
105105
<svg height="24" width="24" version="1.1">
@@ -140,7 +140,7 @@
140140
</dd>
141141
<dt class="terms">Vložit titulky</dt>
142142
<dd class="terms">
143-
<p class="p">If disabled or if embedding is not supported, downloaded subtitles will be saved to a separate file.</p>
143+
<p class="p">Pokud je vložení zakázáno nebo selže, budou stažené titulky uloženy do samostatného souboru.</p>
144144
<div class="note note-advanced" title="Pokročilé">
145145
<svg height="24" width="24" version="1.1">
146146
<g>

docs/html/de/converter.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@
6969
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Standardeinstellung: Aus</p></div></div></div>
7070
</div>
7171
</dd>
72-
<dt class="terms">Embed Thumbnails</dt>
72+
<dt class="terms">Vorschaubilder einbetten</dt>
7373
<dd class="terms">
7474
<p class="p">If enabled, Parabolic will embed a media with its thumbnail if available.</p>
75-
<p class="p">If the file type does not support embedding, the thumbnail will be written to a separate image file.</p>
75+
<p class="p">Wenn der Dateityp Einbetten nicht unterstützt, wird das Vorschaubild in einer separaten Bilddatei abgespeichert.</p>
7676
<div class="note note-advanced" title="Erweitert">
7777
<svg height="24" width="24" version="1.1">
7878
<g>
@@ -140,7 +140,7 @@
140140
</dd>
141141
<dt class="terms">Untertitel einbetten</dt>
142142
<dd class="terms">
143-
<p class="p">If disabled or if embedding is not supported, downloaded subtitles will be saved to a separate file.</p>
143+
<p class="p">Wenn die Option deaktiviert ist oder das Einbetten nicht unterstützt wird, werden die heruntergeladenen Untertitel in einer separaten Datei gespeichert.</p>
144144
<div class="note note-advanced" title="Erweitert">
145145
<svg height="24" width="24" version="1.1">
146146
<g>

docs/html/de/downloader.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div class="contents pagewide">
2121
<p class="p">Diese Seite erklärt alle Optionen zur Konfiguration des Downloaders in den Einstellungen in <span class="app">Parabolic</span>.</p>
2222
<div class="terms"><div class="inner"><div class="region"><dl class="terms">
23-
<dt class="terms">Verbose Logging</dt>
23+
<dt class="terms">Ausführliche Protokollierung</dt>
2424
<dd class="terms">
2525
<p class="p">If enabled, more verbose logs will be provided by <span class="code">yt-dlp</span> for each download.</p>
2626
<div class="note note-advanced" title="Erweitert">

docs/html/de/newDownload.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Der zuvor verwendete Status wird gespeichert und für den nächsten Download vorausgewählt.</p></div></div></div>
148148
</div>
149149
</dd>
150-
<dt class="terms">Export Description</dt>
150+
<dt class="terms">Beschreibung exportieren</dt>
151151
<dd class="terms">
152152
<p class="p">If enabled, Parabolic will export the media's description to a <span class="code">.description</span> file alongside the downloaded file.</p>
153153
<div class="note" title="Anmerkung">

docs/html/es/converter.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<div class="terms"><div class="inner"><div class="region"><dl class="terms">
2323
<dt class="terms">Incrustar metadatos</dt>
2424
<dd class="terms">
25-
<p class="p">If enabled, Parabolic will tag a media with its relevant information (title, genre, etc...) if available.</p>
25+
<p class="p">Si se activa, Parabolic etiquetará un medio con su información relevante (título, género, etc...) si está disponible.</p>
2626
<div class="note note-advanced" title="Avanzada">
2727
<svg height="24" width="24" version="1.1">
2828
<g>
@@ -69,10 +69,10 @@
6969
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Predeterminado: Apagado</p></div></div></div>
7070
</div>
7171
</dd>
72-
<dt class="terms">Embed Thumbnails</dt>
72+
<dt class="terms">Incrustar miniaturas</dt>
7373
<dd class="terms">
74-
<p class="p">If enabled, Parabolic will embed a media with its thumbnail if available.</p>
75-
<p class="p">If the file type does not support embedding, the thumbnail will be written to a separate image file.</p>
74+
<p class="p">Si está activada, Parabolic incrustará un medio con su miniatura si está disponible.</p>
75+
<p class="p">Si el tipo de archivo no admite la incrustación, la miniatura se escribirá en un archivo de imagen independiente.</p>
7676
<div class="note note-advanced" title="Avanzada">
7777
<svg height="24" width="24" version="1.1">
7878
<g>
@@ -99,7 +99,7 @@
9999
<path class="yelp-svg-fill" d="m4 3h16c0.554 0 1 0.446 1 1v11h-6v6h-11c-0.554 0-1-0.446-1-1v-16c0-0.554 0.446-1 1-1z"></path>
100100
<path class="yelp-svg-fill" d="m17 16h4l-5 5v-4c0-0.554 0.446-1 1-1z"></path>
101101
</g>
102-
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">This option is only configurable if <span class="code">Embed Thumbnails</span> is on.</p></div></div></div>
102+
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Esta opción solo es configurable si <span class="code">Incrustar miniaturas</span> está activada.</p></div></div></div>
103103
</div>
104104
<div class="note note-advanced" title="Avanzada">
105105
<svg height="24" width="24" version="1.1">
@@ -140,7 +140,7 @@
140140
</dd>
141141
<dt class="terms">Incrustar los subtítulos</dt>
142142
<dd class="terms">
143-
<p class="p">If disabled or if embedding is not supported, downloaded subtitles will be saved to a separate file.</p>
143+
<p class="p">Si se desactiva o si no se admite la incrustación, los subtítulos descargados se guardarán en un archivo independiente.</p>
144144
<div class="note note-advanced" title="Avanzada">
145145
<svg height="24" width="24" version="1.1">
146146
<g>

docs/html/es/newDownload.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,31 +84,31 @@
8484
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Al seleccionar los tipos de archivo <span class="code"> Video (Genérico) </span> o <span class="code"> Audio (Genérico) </span>, Parabolic descargará el contenido multimedia en el tipo de archivo original del mismo sin realizar ninguna conversión.</p></div></div></div>
8585
</div>
8686
</dd>
87-
<dt class="terms">Video Format</dt>
87+
<dt class="terms">Formato de vídeo</dt>
8888
<dd class="terms">
89-
<p class="p">The list of video formats available for download, sorted by resolution and bitrate.</p>
90-
<p class="p">Each format is the form: <span class="code">resolution | bitrate | codec (id)</span>.</p>
91-
<p class="p">If the file type is an audio type, this option will not be available.</p>
89+
<p class="p">La lista de formatos de vídeo disponibles para descarga, ordenados por resolución y tasa de bits.</p>
90+
<p class="p">Cada formato es de la forma: <span class="code">resolution | bitrate | codec (id)</span>.</p>
91+
<p class="p">Si el tipo de archivo es de audio, esta opción no estará disponible.</p>
9292
<div class="note" title="Nota">
9393
<svg height="24" width="24" version="1.1">
9494
<g>
9595
<path class="yelp-svg-fill" d="m4 3h16c0.554 0 1 0.446 1 1v11h-6v6h-11c-0.554 0-1-0.446-1-1v-16c0-0.554 0.446-1 1-1z"></path>
9696
<path class="yelp-svg-fill" d="m17 16h4l-5 5v-4c0-0.554 0.446-1 1-1z"></path>
9797
</g>
98-
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">The previously used video format will be remembered and pre-selected for the next download.</p></div></div></div>
98+
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">El formato de vídeo usado anteriormente será recordado y preseleccionado para la siguiente descarga.</p></div></div></div>
9999
</div>
100100
</dd>
101-
<dt class="terms">Audio Format</dt>
101+
<dt class="terms">Formato de audio</dt>
102102
<dd class="terms">
103-
<p class="p">The list of audio formats available for download, sorted by bitrate.</p>
104-
<p class="p">Each format is the form: <span class="code">bitrate | language (id)</span>.</p>
103+
<p class="p">La lista de formatos de audio disponibles para descarga, ordenados por tasa de bits.</p>
104+
<p class="p">Cada formato es de la forma: <span class="code">bitrate | language (id)</span>.</p>
105105
<div class="note" title="Nota">
106106
<svg height="24" width="24" version="1.1">
107107
<g>
108108
<path class="yelp-svg-fill" d="m4 3h16c0.554 0 1 0.446 1 1v11h-6v6h-11c-0.554 0-1-0.446-1-1v-16c0-0.554 0.446-1 1-1z"></path>
109109
<path class="yelp-svg-fill" d="m17 16h4l-5 5v-4c0-0.554 0.446-1 1-1z"></path>
110110
</g>
111-
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">The previously used audio format will be remembered and pre-selected for the next download.</p></div></div></div>
111+
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">El formato de audio usado anteriormente será recordado y preseleccionado para la siguiente descarga.</p></div></div></div>
112112
</div>
113113
</dd>
114114
<dt class="terms">Subtítulos</dt>
@@ -147,7 +147,7 @@
147147
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">El estado usado anteriormente será recordado y preseleccionado para la siguiente descarga.</p></div></div></div>
148148
</div>
149149
</dd>
150-
<dt class="terms">Export Description</dt>
150+
<dt class="terms">Exportar la descripción</dt>
151151
<dd class="terms">
152152
<p class="p">Si está habilitado, Parabolic exportará la descripción del medio a un archivo <span class="code"> .description </span> junto con el archivo descargado.</p>
153153
<div class="note" title="Nota">

docs/html/et/aria.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
<a class="trail" href="index.html" title="Parabolic Help">Parabolic Help</a> » </div></div></div></header><article><div class="hgroup pagewide"><h1 class="title"><span class="title">aria2</span></h1></div>
1919
<div class="region">
2020
<div class="contents pagewide">
21-
<p class="p">This page explains all options for configuring aria2 in Preferences in <span class="app">Parabolic</span>.</p>
21+
<p class="p">See leht selgitab kõiki võimalusi aria2 seadistamisel <span class="app">Parabolic</span>u eelistustest.</p>
2222
<div class="terms"><div class="inner"><div class="region"><dl class="terms">
23-
<dt class="terms">Use aria2</dt>
23+
<dt class="terms">Kasuta aria2 teenust</dt>
2424
<dd class="terms">
25-
<p class="p">If enabled, Parabolic will use aria2c to download media.</p>
26-
<p class="p">Although using aria2c can improve download speed, download progress will not be displayed in the UI.</p>
25+
<p class="p">Kui eelistus on kasutusel, siis Parabolic kasutab allalaadimiseks aria2c teenust.</p>
26+
<p class="p">Kuigi aria2c ilmselt parandab allalaadimise kiirust, ei ole sel puhul kasutajaliideses võimalik edenemist näidata.</p>
2727
<div class="note note-advanced" title="Täiendav">
2828
<svg height="24" width="24" version="1.1">
2929
<g>
@@ -38,7 +38,7 @@
3838
<path class="yelp-svg-fill" d="m8.2435 7.0719-1.9004-3.3145 1.4143-1.4143 3.1596 1.7457z"></path>
3939
<path class="yelp-svg-fill" d="m11.072 11.757-3.3146 1.9-1.4143-1.414 1.7457-3.1602z"></path>
4040
</g>
41-
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Default: Off</p></div></div></div>
41+
</svg><div class="inner"><div class="region"><div class="contents"><p class="p">Vakimisi: pole kasutusel</p></div></div></div>
4242
</div>
4343
</dd>
4444
<dt class="terms">Maximum Connections Per Server</dt>

0 commit comments

Comments
 (0)